
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');


body{
  font-family: "Hind Siliguri", sans-serif;
}
img,
.img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}



/*=============================
    - Input Placeholder
=============================*/
*::-moz-placeholder {
  color: #191B1E;
  font-size: 14px;
  opacity: 1; }

*::placeholder {
  color: #191B1E;
  font-size: 14px;
  opacity: 1; }

/*=============================
    - Common Classes
=============================*/
.fix {
  overflow: hidden; }

.clear {
  clear: both; }

/*=============================
    - Background color
=============================*/
.grey-bg {
  background: #F7F7F7;
 }

.white-bg {
  background: #fff;
}

.black-bg {
  background: #191B1E;
}

.theme-bg {
  background: #0054FF;
}

/*=============================
    - color
=============================*/
.white-color {
  color: #fff; }

.black-color {
  color: #191B1E; }

.theme-color {
  color: #0054FF; }

/*=============================
    - Bootstrap Custom
=============================*/


.row {
  --bs-gutter-x: 30px; }

.gutter-y-30 {
  --bs-gutter-y: 30px; }

.gx-0 {
  --bs-gutter-x: 0; }



/*=============================
    - Button Style
=============================*/
.btn {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  margin: 0 auto;


  border: medium none;
  border-radius:20px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2em;
  margin-bottom: 0;
  padding: 5px 0px px 0px;
  text-align: center;
  align-items: center;
  text-transform: uppercase;
  touch-action: manipulation;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  vertical-align: middle;
  white-space: break-spaces;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
  .btn::before {
    content: '';
    position: absolute;
    bottom: 0%;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #FCAF17;
    display: block;
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
    transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
    z-index: -1;
 }

/*=============================
    - scrollUp
=============================*/
.scroll-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  bottom: 105%;
  right: 30px;
  font-size: 16px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  z-index: 99;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: #0054FF;
  transition: 1s ease;
  border: none;
  opacity: 0; }
  @media (max-width: 767.98px) {
    .scroll-top {
      right: 15px; }
     }

.scroll-top.open {
  bottom: 30px;
  opacity: 1; }

.scroll-top::after {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%); }

.scroll-top:hover {
  background: #FCAF17;
 }


/*=============================
    - Overlay
=============================*/
[data-overlay] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  [data-overlay]::before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: ""; }

/*==== Overlay Color ====*/
[data-overlay="light"]::before {
  background-color: #fff; }

[data-overlay="dark"]::before {
  background-color: #191B1E; }

/*==== Overlay Opacity ====*/
[data-opacity="1"]::before {
  opacity: 0.1; }

[data-opacity="2"]::before {
  opacity: 0.2; }

[data-opacity="3"]::before {
  opacity: 0.3; }

[data-opacity="4"]::before {
  opacity: 0.4; }

[data-opacity="5"]::before {
  opacity: 0.5; }

[data-opacity="6"]::before {
  opacity: 0.6; }

[data-opacity="7"]::before {
  opacity: 0.7; }

[data-opacity="8"]::before {
  opacity: 0.8; }

[data-opacity="9"]::before {
  opacity: 0.9; }

/*=============================
 Color Switcher
=============================*/
.switcher__tab {
  position: absolute;
  font-weight: 500;
  display: flex;
  align-items: center;
  right: 0;
  top: 52%;
  -webkit-transform: translateY(-50%) translateX(71px) rotate(90deg);
  -ms-transform: translateY(-50%) translateX(71px) rotate(90deg);
  transform: translateY(-50%) translateX(71px) rotate(90deg);
  z-index: 3; }
  @media (max-width: 991.98px) {
    .switcher__tab {
      right: 15px;
      top: 40%; } }
  @media (max-width: 767.98px) {
    .switcher__tab {
      right: -25px;
      top: 30%; } }
  .switcher__tab__btn {
    cursor: pointer; }
  .switcher__tab .light__mode__title,
  .switcher__tab .dark__mode__title {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 15px;
    font-weight: 700;
    color: #68666C;
    display: flex;
    align-items: center; }
  .switcher__tab .light__mode__title::after {
    content: "\f185";

    margin-left: 13px;
    color: #FCAF17; }
  .switcher__tab .dark__mode__title::before {
    content: "\f755";

    margin-right: 13px;
    color: #191B1E; }
  .switcher__tab .mode__switcher {
    height: 34px;
    width: 71px;
    display: inline-block;
    position: relative;
    margin: 0 12px;
    background: #191B1E;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    .switcher__tab .mode__switcher::before {
      content: "";
      position: absolute;
      left: 3px;
      top: 3px;
      background: #fff;
      width: 28px;
      height: 28px;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
    .switcher__tab .mode__switcher.active::before {
      left: calc(100% - 31px); }

.active-dark-mode .light__mode__title::after {
  color: #fff; }

.active-dark-mode .dark__mode__title::before {
  color: #FCAF17; }

/*=============================
02. Header
=============================*/
.menu__area {
  padding: 39px 0; }
  @media (max-width: 1500px) {
    .menu__area {
      padding: 10px 0; } }
  @media (max-width: 1199.98px) {
    .menu__area {
      padding: 25px 0; } }
  .menu__area .mobile__nav__toggler {
    position: relative;
    float: right;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    color: #191B1E;
    display: none;
    margin-top: 6px;
    border: 1px solid #191B1E;
    padding: 6px 10px;
    width: 50px;
    text-align: center; }
    @media (max-width: 767.98px) {
      .menu__area .mobile__nav__toggler {
        margin-top: 1px; } }
  @media (max-width: 1199.98px) {
    .menu__area .mobile__nav__toggler {
      display: block; } }
  .menu__area.transparent-header {
    padding: 25px 0;
    background: transparent;
    position: absolute;
    width: 100%;

    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    z-index: 999; }
  .menu__area.sticky-menu {
    position: fixed;
    top: 0;
    background: #ffffff;
    padding: 0px 0 !important;
    -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
    -webkit-animation: sticky 0.5s linear;
    animation: sticky 0.5s linear;
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
    border-radius: 0; }
    @media (max-width: 1199.98px) {
      .menu__area.sticky-menu {
        padding: 15px 0; } }

.menu__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start; }
  @media (max-width: 1199.98px) {
    .menu__nav {
      justify-content: space-between; } }
  .menu__nav .logo img {
    max-width: 197px; }
  .menu__nav .logo__white {
    display: none; }

.footer_logo{
    width: 150px;
    height: 70px;
}
.navbar__wrap {
  display: flex;
  flex-grow: 1; }
  .navbar__wrap ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 auto 0 160px;
 }
    @media (max-width: 1500px) {
      .navbar__wrap ul {
        margin: 0 auto; } }
    .navbar__wrap ul li {
      display: block;
      position: relative; }
      .navbar__wrap ul li a {
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        color: #191B1E;
        padding: 40px 25px;
        display: inline-flex;
        line-height: 1;
        position: relative;
        z-index: 1; }
        .navbar__wrap ul li a::after {
          content: "";
          position: absolute;
          left: 0;
          right: 0;
          bottom: 20px;
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 0 7px 14px 7px;
          border-color: transparent transparent #FCAF17 transparent;
          margin: 0 auto;
          opacity: 0;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -ms-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s; }
      .navbar__wrap ul li:hover > a::after {
        opacity: 1; }
      .navbar__wrap ul li.active > a::after {
        opacity: 1; }
      .navbar__wrap ul li .sub-menu {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        border-radius: 0;
        display: block;
        padding: 18px 0;
        visibility: hidden;
        min-width: 230px;
        margin: 0;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        transform: scale(1, 0);
        transform-origin: 0 0;
        border: 1px solid #f5f5f5;
        background: #ffffff;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
        opacity: 0;
        z-index: 9; }
        .navbar__wrap ul li .sub-menu li {
          margin-left: 0;
          text-align: left;
          display: block; }
          .navbar__wrap ul li .sub-menu li a {
            padding: 8px 10px 8px 25px;
            font-weight: 500;
            line-height: 1.75;
            color: #191B1E;
            text-transform: capitalize;
            display: block;
            text-transform: uppercase;
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
           }
            .navbar__wrap ul li .sub-menu li a::after {
              display: none; }
          .navbar__wrap ul li .sub-menu li:hover > a {
            padding-left: 35px;
            color: #FCAF17; }
          .navbar__wrap ul li .sub-menu li.active > a {
            padding-left: 35px;
            color: #FCAF17; }
      .navbar__wrap ul li:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1); }
      .navbar__wrap ul li:hover > a {
        color: #191B1E; }
      .navbar__wrap ul li.menu-item-has-children .dropdown__btn {
        display: none; }

/*=============================
03. Mobile Menu
=============================*/
.mobile__menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  border-radius: 0px;
  -webkit-transition: all 700ms ease-out 0s;
  -moz-transition: all 700ms ease-out 0s;
  -ms-transition: all 700ms ease-out 0s;
  -o-transition: all 700ms ease-out 0s;
  transition: all 700ms ease-out 0s;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%); }
  .mobile__menu .menu__box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    padding: 0px 0px;
    z-index: 5;
    box-shadow: -9px 0 14px 0px rgba(0, 0, 0, 0.06); }
    .mobile__menu .menu__box .nav-logo {
      position: relative;
      padding: 30px 25px;
      text-align: left; }
      .mobile__menu .menu__box .nav-logo img {
        max-width: 197px; }
      .mobile__menu .menu__box .nav-logo .logo__white {
        display: none; }
  .mobile__menu .menu__outer ul {
    position: relative;
    display: block;
    width: 100%;
    float: none; }

    .mobile__menu .menu__outer ul li {
      position: relative;
      display: block;
      border-top: 1px solid rgba(0, 0, 0, 0.1); }
      .mobile__menu .menu__outer ul li > ul {
        display: none; }
        .mobile__menu .menu__outer ul li > ul > li > ul {
          display: none; }
      .mobile__menu .menu__outer ul li > a {
        position: relative;
        display: block;
        line-height: 24px;
        padding: 10px 25px;
        font-size: 14px;
        font-weight: 500;
        color: #191B1E;
        text-transform: uppercase;
        -webkit-transition: all 500ms ease-out 0s;
        -moz-transition: all 500ms ease-out 0s;
        -ms-transition: all 500ms ease-out 0s;
        -o-transition: all 500ms ease-out 0s;
        transition: all 500ms ease-out 0s;
        border: none; }
      .mobile__menu .menu__outer ul li.current > a:before {
        height: 100%; }
      .mobile__menu .menu__outer ul li > ul > li:first-child {
        border-top: 1px solid rgba(0, 0, 0, 0.1); }
      .mobile__menu .menu__outer ul li ul li a {
        margin-left: 20px; }
      .mobile__menu .menu__outer ul li ul li ul li a {
        margin-left: 40px; }
      .mobile__menu .menu__outer ul li ul li ul li ul li a {
        margin-left: 60px; }
      .mobile__menu .menu__outer ul li.menu-item-has-children .dropdown__btn {
        position: absolute;
        right: 6px;
        top: 6px;
        width: 32px;
        height: 32px;
        text-align: center;
        font-size: 16px;
        line-height: 32px;
        color: #312620;
        background: #efefef;
        cursor: pointer;
        border-radius: 2px;
        -webkit-transition: all 500ms ease-out 0s;
        -moz-transition: all 500ms ease-out 0s;
        -ms-transition: all 500ms ease-out 0s;
        -o-transition: all 500ms ease-out 0s;
        transition: all 500ms ease-out 0s;
        z-index: 5; }
        .mobile__menu .menu__outer ul li.menu-item-has-children .dropdown__btn.open {
          background: #0054FF;
          color: #fff;
          -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
          transform: rotate(90deg); }
      .mobile__menu .menu__outer ul li.active > a {
        color: #0054FF; }
    .mobile__menu .menu__outer ul:last-child {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .mobile__menu .social-links {
    position: relative;
    text-align: center;
    padding: 30px 25px; }
    .mobile__menu .social-links ul li {
      position: relative;
      display: inline-block;
      margin: 0px 10px 10px; }
      .mobile__menu .social-links ul li a {
        position: relative;
        line-height: 32px;
        font-size: 16px;
        color: #312620;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
  .mobile__menu .navbar-collapse {
    display: block !important; }
  .mobile__menu .close__btn {
    position: absolute;
    right: 25px;
    top: 28px;
    line-height: 30px;
    width: 35px;
    text-align: center;
    font-size: 20px;
    color: #312620;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease-out 0s;
    -moz-transition: all 0.9s ease-out 0s;
    -ms-transition: all 0.9s ease-out 0s;
    -o-transition: all 0.9s ease-out 0s;
    transition: all 0.9s ease-out 0s; }

.menu__backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  -webkit-transition: all 700ms ease-out 0s;
  -moz-transition: all 700ms ease-out 0s;
  -ms-transition: all 700ms ease-out 0s;
  -o-transition: all 700ms ease-out 0s;
  transition: all 700ms ease-out 0s;
  opacity: 0;
  visibility: hidden;
  background: #fff; }

.mobile-menu-visible {
  overflow: hidden; }
  .mobile-menu-visible .mobile__menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
    .mobile-menu-visible .mobile__menu .menu__box {
      opacity: 1;
      visibility: visible; }
    .mobile-menu-visible .mobile__menu .close__btn {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg); }
  .mobile-menu-visible .menu__backdrop {
    opacity: 0.80;
    visibility: visible; }

/*=============================
Breadcrumb
=============================*/
.breadcrumb__wrap {
  background: #F7F7F7;
  padding: 185px 0 0px;
  position: relative;
  overflow: hidden;
  z-index: 1; }
  @media (max-width: 1500px) {
    .breadcrumb__wrap {
      padding: 185px 0 115px; } }
  .breadcrumb__wrap__content {
    text-align: center;
}
    .breadcrumb__wrap__content .title {
      font-size: 52px;
      letter-spacing: -0.01em;
      text-transform: capitalize;
      line-height: 1.1;
      margin-bottom: 15px;
     }
      @media (max-width: 767.98px) {
        .breadcrumb__wrap__content .title {
          font-size: 46px;
        } }
  .breadcrumb__wrap .breadcrumb {
    margin-bottom: 0;
    justify-content: center; }
    .breadcrumb__wrap .breadcrumb li {
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 700;
      color: #FCAF17; }
      .breadcrumb__wrap .breadcrumb li a {
        color: #68666C; }
  .breadcrumb__wrap__icon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 52px;
    max-width: 1560px;
    min-height: 285px;
    margin: 0 auto;
    z-index: -1; }
    @media (max-width: 1500px) {
      .breadcrumb__wrap__icon {
        bottom: 30px;
        min-height: 235px; } }
    @media (max-width: 1199.98px) {
      .breadcrumb__wrap__icon {
        max-width: 960px; } }
    @media (max-width: 991.98px) {
      .breadcrumb__wrap__icon {
        display: none; } }
    .breadcrumb__wrap__icon ul li {
      position: absolute; }
      .breadcrumb__wrap__icon ul li img {
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%; }
      .breadcrumb__wrap__icon ul li:nth-child(1) {
        left: 9%;
        top: 0; }
        .breadcrumb__wrap__icon ul li:nth-child(1) img {
          max-width: 62px; }
      .breadcrumb__wrap__icon ul li:nth-child(2) {
        left: 1%;
        bottom: 21%; }
        .breadcrumb__wrap__icon ul li:nth-child(2) img {
          max-width: 68px; }
      .breadcrumb__wrap__icon ul li:nth-child(3) {
        left: 15%;
        bottom: 0; }
        .breadcrumb__wrap__icon ul li:nth-child(3) img {
          max-width: 40px; }
      .breadcrumb__wrap__icon ul li:nth-child(4) {
        right: 14%;
        top: 0; }
        .breadcrumb__wrap__icon ul li:nth-child(4) img {
          max-width: 58px; }
      .breadcrumb__wrap__icon ul li:nth-child(5) {
        right: 1%;
        top: 13%; }
        .breadcrumb__wrap__icon ul li:nth-child(5) img {
          max-width: 42px; }
      .breadcrumb__wrap__icon ul li:nth-child(6) {
        right: 5.5%;
        bottom: 0; }
        .breadcrumb__wrap__icon ul li:nth-child(6) img {
          max-width: 102px; }










/*=============================
05. Services
=============================*/
.services {
 margin: -95px;
  position: relative;
  padding:0px 0px  170px 0px;

 }
 @media (max-width: 476px) {
    .services {
        width:100%;
        margin: 0 auto;
        text-align: center;
        padding:60px ;
        box-sizing: border-box;




    }
     }


  .services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #F7F7F7;
    z-index: -1;
}

  .services__title__wrap {
    margin-bottom: 68px; }

  .services__arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    .services__arrow .slick-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      width: 55px;
      height: 55px;
      flex: 0 0 55px;
      padding: 0;
      border-radius: 50%;
      border: 2px solid #000;
      color: #191B1E;
      font-size: 18px;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
      .services__arrow .slick-arrow.slick-next {
        margin-left: 15px; }
      .services__arrow .slick-arrow:hover {
        background: #0054FF;
        border-color: #0054FF;
        color: #fff; }
  .services__item {
    margin-bottom: 30px;
    background: #fff; }
    .services__item:hover .border-btn {
      border-color: #0054FF;
      color: #fff;
     }

      .services__item:hover .border-btn::before {
        -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
        transform-origin: left top;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1); }


  .services__thumb img {
    width: 90%;
 }
  .services__content {

    /* border: 10px solid #F7F7F7; */
    padding:15px 15px 22px 30px;
    border-radius: 20px;
    box-shadow: 1px 3px 3px rgba(0, 0, 0, 0.48);
 }


    .services__content .title {
      font-size: 18px;
      line-height: 1.3;
      letter-spacing: -0.01em;
      margin-bottom: 19px;
    text-align: center;}
    .services__content p {
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 0; }
    .services__content .border-btn::before {
      background: #0054FF; }
  .services__icon {
    margin-bottom: 23px;
    margin-left: 0px;
    text-align: center;
    align-items: center;



 }
    .services__icon img {
      max-height: 45px;
      margin:auto;
     }

      .services__icon img.dark {
        display: none; }
  .services__list {
    margin: 37px 0 39px; }
    .services__list li {
      font-size: 16px;
      font-weight: 500;
      color: #191B1E;
      padding-left: 18px;
      position: relative; }
      .services__list li + li {
        margin-top: 2px; }
      .services__list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 13px;
        width: 8px;
        height: 1.6px;
        background: #191B1E; }
  .services__active .slick-slide .services__item {
    margin-left: 2px;
    border-radius: 20px;
 }

  .services__active .slick-slide.slick-active .services__item {
    margin-left: -2px; }

  .services__active .slick-current.slick-active .services__item {
    margin-left: 0;
}
  .services__active .slick-list {
    padding-right: 2px;
 }



.services__style__two {
  background: #F7F7F7;
  padding: 120px 0 120px; }
  .services__style__two .section__title {
    margin-bottom: 60px; }
  .services__style__two__wrap {
    background: #fff;
    margin-top: 1px; }
    .services__style__two__wrap .row [class*="col-"]:nth-child(1) .services__style__two__item, .services__style__two__wrap .row [class*="col-"]:nth-child(5) .services__style__two__item {
      margin-left: 0; }
  .services__style__two__item {
    border: 1px solid #F7F7F7;
    padding: 55px 40px;
    margin-left: -1px;
    margin-top: -1px;
    position: relative;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s; }

    .services__style__two__item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 4px;
      background: #FCAF17;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
      opacity: 0; }
    .services__style__two__item:hover {
      box-shadow: 5px 10px 10px rgba(244, 244, 244, 0.68);
     }
      .services__style__two__item:hover .services__btn {
        color: #fff;
        background: #191B1E;
     }
      .services__style__two__item:hover::before {
        opacity: 1; }
  .services__style__two__icon {
    margin-bottom: 24px; }
    .services__style__two__icon img {
      max-height: 45px; }
  .services__style__two__content .title {
    font-size: 24px;
    letter-spacing: -0.01em;
    margin-bottom: 18px; }
  .services__style__two__content p {
    font-size: 15px;
    margin-bottom: 25px; }
  .services__style__two__content .services__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #191B1E;
    color: #191B1E;
    font-size: 14px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%; }

.services__details {
  padding: 120px 0 115px; }

  .services__details__thumb {
    margin-bottom: 40px; }
    .services__details__thumb img {
      max-width: 100%; }
  .services__details__content .title {
    font-size: 55px;

    margin-bottom: 27px; }

  .services__details__content p {
    margin-bottom: 18px;
 }
    .services__details__content p:last-child {
      margin-bottom: 0; }
  .services__details__content .small-title {
    font-size: 24px;
    margin-bottom: 22px; }
  .services__details__list {
    margin: 30px 0 28px; }
    .services__details__list li {
      position: relative;
      padding-left: 30px;
      color: #191B1E;
      font-weight: 500; }
      .services__details__list li::before {
        content: "";
        position: absolute;
        left: 5px;
        top: 11px;
        width: 4px;
        height: 4px;
        background: #191B1E;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%; }
      .services__details__list li + li {
        margin-top: 6px;
     }
  .services__details__img {
    margin: 32px 0 35px; }
    .services__details__img .row {
      --bs-gutter-x: 25px; }

    .services__details__img img {
      width: 100%; }

.services__sidebar {
  margin-left: 37px; }

  .services__sidebar .widget {
    border: 2px solid #F7F7F7;
    padding: 35px 35px 40px;
    margin-bottom: 30px; }

    .services__sidebar .widget:last-child {
      margin-bottom: 0; }
    .services__sidebar .widget .title {

      font-size: 24px;
      margin-bottom: 26px; }
  .services__sidebar .sidebar__contact input {
    display: block;
    width: 100%;
    font-size: 15px;
    border: none;
    border-bottom: 1px solid #F7F7F7;
    padding: 0 0 8px;
    margin-bottom: 22px; }
    .services__sidebar .sidebar__contact input::placeholder {
      font-size: 15px;
      color: #A1A1A1;
    }
  .services__sidebar .sidebar__contact textarea {
    display: block;
    width: 100%;
    font-size: 15px;
    border: none;
    border-bottom: 1px solid #F7F7F7;
    padding: 0 0 8px;
    margin-bottom: 35px;
    min-height: 60px;
    max-height: 60px; }
    .services__sidebar .sidebar__contact textarea::placeholder {
      font-size: 15px;
      color: #A1A1A1;
    }
  .services__sidebar .sidebar__contact__info li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 13px; }
    .services__sidebar .sidebar__contact__info li:last-child {
      margin-bottom: 0; }
    .services__sidebar .sidebar__contact__info li span {
      font-weight: 500;
      color: #191B1E;
      margin-right: 5px; }
  .services__sidebar .sidebar__contact__social {
    display: flex;
    align-items: center;
    margin-top: 23px; }
    .services__sidebar .sidebar__contact__social li {
      margin-right: 27px; }
      .services__sidebar .sidebar__contact__social li:last-child {
        margin-right: 0; }
      .services__sidebar .sidebar__contact__social li a {
        display: block;
        line-height: 1;
        font-size: 15px; }
        .services__sidebar .sidebar__contact__social li a .fa-dribbble {
          color: #DE4882; }
        .services__sidebar .sidebar__contact__social li a .fa-behance {
          color: #1664F2; }
        .services__sidebar .sidebar__contact__social li a .fa-linkedin {
          color: #0072AC; }
        .services__sidebar .sidebar__contact__social li a .fa-pinterest {
          color: #DA0021; }
        .services__sidebar .sidebar__contact__social li a .fa-facebook {
          color: #1664F2; }
        .services__sidebar .sidebar__contact__social li a .fa-youtube {
          color: #DA0021; }

/*=============================
06. Work Process
=============================*/

/*=============================
07. Portfolio
=============================*/
.portfolio {
  padding:10px  50px;
  overflow: hidden;
  position: relative;
 }
  @media (max-width: 991.98px) {
    .portfolio {
      padding: 0px ;
     }
     }
  .portfolio::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #F7F7F7;
    z-index: -1;
}
    @media (max-width: 991.98px) {
      .portfolio::before {
        display: none; } }
  .portfolio .section__title {
    margin-bottom: 40px; }








  .portfolio__active .slick-list {
    overflow: visible;
}
  .portfolio__active .slick-slide {
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    -webkit-transform: scale(0.785);
    -ms-transform: scale(0.785);
    transform: scale(0.785); }
  .portfolio__active .slick-current.slick-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
    .portfolio__active .slick-current.slick-active .portfolio__overlay__content {
      -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
      transform: translate(-50%, -50%) scale(1);
      opacity: 1; }
  .portfolio__active .slick-arrow {
    position: absolute;
    position: absolute;
    left: -60px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    padding: 0;
    background: transparent;
    color: #191B1E;
    font-size: 25px;
    line-height: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 2; }
    .portfolio__active .slick-arrow.slick-next {
      left: auto;
      right: -60px; }
    .portfolio__active .slick-arrow:hover {
      color: #0054FF; }
  .portfolio__item {
    position: relative; }
    @media (max-width: 767.98px) {
      .portfolio__item {
        overflow: hidden; } }
  .portfolio__thumb img {
    border-radius: 35px;
    border-color: 20px solid #ffffff;
    display: inline-block;
 }
    @media (max-width: 767.98px) {
      .portfolio__thumb img {
        border-radius: 25px;
        border: 10px solid #ffffff;

     }
    }
  .portfolio #portfolioTabContent .tab-pane .col {
    flex: 0 0 auto;
    width: 1020px;
}
    @media (max-width: 1199.98px) {
      .portfolio #portfolioTabContent .tab-pane .col {
        width: 750px; }
    }
    @media (max-width: 991.98px) {
      .portfolio #portfolioTabContent .tab-pane .col {
        width: 100%; } }
  .portfolio #portfolioTabContent .tab-pane.active {
    animation: slide-down .3s ease-out;
    -webkit-animation: slide-down .3s ease-out;
 }

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
}

@keyframes slide-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }


/*=============================
08. Partner
=============================*/

/*=============================
12. Contact
=============================*/
@media (max-width: 991.98px) {
  .homeContact {
    background: #F7F7F7; } }

.homeContact__wrap {
  background: #fff;
  padding: 80px 80px 60px 70px;
  border: 2px solid #F7F7F7;
  position: relative;
  z-index: 1;
  margin: -238px 0 -210px; }
  @media (max-width: 1199.98px) {
    .homeContact__wrap {
      padding: 70px 50px 60px 50px; } }
  @media (max-width: 767.98px) {
    .homeContact__wrap {
      padding: 50px 30px 50px 30px; } }

.homeContact .section__title {
  margin-bottom: 20px; }
  @media (max-width: 1199.98px) {
    .homeContact .section__title br {
      display: none; }
     }

.homeContact__content p {
  margin-bottom: 0;
  width: 90%; }
  @media (max-width: 767.98px) {
    .homeContact__content p {
      width: 100%; }
     }

.homeContact__content .mail {
  font-size: 35px;
  letter-spacing: -0.01em;

  margin-bottom: 0;
  margin-top: 28px; }
  @media (max-width: 991.98px) {
    .homeContact__content .mail {
      font-size: 27px; } }
  .homeContact__content .mail a {
    position: relative;
    display: inline-block;
    z-index: 1; }
    .homeContact__content .mail a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 10px;
      background: #FCAF17;
      opacity: .19;
      z-index: -1; }
    .homeContact__content .mail a:hover {
      color: #FCAF17; }

.homeContact__form {
  margin-left: 33px;
  position: relative;
 }
  @media (max-width: 1199.98px) {
    .homeContact__form {
      margin-left: 0; }
     }
  @media (max-width: 991.98px) {
    .homeContact__form {
      margin-top: 50px;
     } }
  .homeContact__form form input {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid #F7F7F7;
    padding: 0 0 10px;
    color: #68666C;
    font-size: 15px;
    margin-bottom: 28px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
 }



    .homeContact__form form input::placeholder {
      color: #68666C;
     }
    .homeContact__form form select::placeholder {
      color: #68666C;
     }
    .homeContact__form form input:focus {
      border-color: #0054FF;
    }
    .homeContact__form form select:focus {
      border-color: #0054FF;
    }
    .homeContact__form form input[type=number]::-webkit-inner-spin-button {
      display: none;
      -webkit-appearance: none;
      margin: 0;
     }

    .homeContact__form form input[type=number]::-webkit-outer-spin-button {
      display: none;
      -webkit-appearance: none;
      margin: 0;
     }
  .homeContact__form form textarea {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid #F7F7F7;
    padding: 0 0 30px;
    color: #68666C;
    font-size: 15px;
    height: 105px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    .homeContact__form form textarea::placeholder {
      color: #68666C;
     }
    .homeContact__form form textarea:focus {
      border-color: #0054FF;
     }
  .homeContact__form form [type=submit] {
    position: absolute;
    right: 0;
    bottom: 14px;
    border: none;
    color: #191B1E;
    text-transform: uppercase;
    background: transparent;
    padding: 0;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
 }
    .homeContact__form form [type=submit]::after {
      content: "\f1d8";

      font-weight: 700;
      margin-left: 8px;
    }
    .homeContact__form form [type=submit]:hover {
      color: #0054FF;
      cursor: pointer;
     }

@media (max-width: 991.98px) {
  .homeContact__style__two {
    background: transparent;
}
 }

.homeContact__style__two .homeContact__wrap {
  margin-top: 0;
 }

#contact-map {
  width: 100%;
  height: 1100px;
}
  @media (max-width: 1199.98px) {
    #contact-map {
      height: 500px; } }
  @media (max-width: 767.98px) {
    #contact-map {
      height: 1470px;
     } }
  #contact-map iframe {
    width: 100%;
    height: 100%;
}

.contact__form {
  background: #fff;
  padding: 80px;
  box-shadow: 1px -1px 20px 10px rgba(110, 125, 134, 0.03);
  text-align: center;
  margin: -170px 0 60px;
  position: relative;
  z-index: 1;
}
  @media (max-width: 1199.98px) {
    .contact__form {
      padding: 60px; } }
  @media (max-width: 991.98px) {
    .contact__form {
      padding: 40px; } }
  @media (max-width: 767.98px) {
    .contact__form {
      margin: -100px 0 60px;
      padding: 30px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .contact__form {
      padding: 40px; }
     }
  .contact__form .row {
    --bs-gutter-x: 35px;
 }
  .contact__form input,
  .contact__form textarea {
    width: 100%;
    display: block;
    background: #FDFDFD;
    border: 1px solid #E8E8E8;
    font-size: 15px;
    padding: 19px 25px;
    margin-bottom: 30px; }
    .contact__form input::placeholder,
    .contact__form textarea::placeholder {
      font-size: 15px;
      color: #68666C; }
    @media (max-width: 767.98px) {
      .contact__form input,
      .contact__form textarea {
        margin-bottom: 25px;
     } }
  .contact__form textarea {
    min-height: 210px;
    max-height: 210px;
    margin-bottom: 40px;
 }

.contact-info-area {
  padding: 60px 0 90px; }

.contact__info {
  text-align: center;
  background: #fff;
  border: 1px solid #F7F7F7;
  padding: 50px 50px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; }
  @media (max-width: 1199.98px) {
    .contact__info {
      padding: 50px 30px; } }
  .contact__info:hover {
    box-shadow: 1px -1px 20px 10px rgba(110, 125, 134, 0.03); }
  .contact__info__icon {
    margin-bottom: 20px; }
    .contact__info__icon img {
      max-height: 60px; }
  .contact__info__content .title {
    text-transform: capitalize;

    margin-bottom: 7px;
    font-size: 24px;
    font-weight: 500;
}
  .contact__info__content span {
    display: block;
    font-size: 17px;
    line-height: 1.5;
}





/*=============================
15. Dark Mode
=============================*/

    #allcourses{
        background-color: #ecf0f1;

        border-radius: 20px;
    }
    .heading_text h2{
        padding-top: 50px;
        text-align: center;
        color: #1f1e1e;
        font-weight: 600;
        font-size: 46px;
        line-height: 55px;

    }
    .heading_text p{
        padding-top: 15px;
        max-width: 706px;

        margin: 0 auto;
        text-align: center;
        color: #1f1e1e;
        font-weight: 600!important;
        font-size: 22px;
        line-height: 28px;
        padding:30px;
        font-weight: 400;

    }

    .banner__video {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 2;
    }


        .banner__video .popup-video {
          position: relative;
          display: block;

          text-align: center;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 25px;
          background: #FCAF17;
          color: #fff;
          -webkit-border-radius: 50%;
          -moz-border-radius: 50%;
          border-radius: 50%;
          z-index: 1;

        }


          .banner__video .popup-video::before, .banner__video .popup-video::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            height: 100%;
            width: 100%;
            border: 1px solid #e3e3e3;
            -webkit-transform: translate(-50%, -50%) scale(1);
            -ms-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
            border-radius: 50%;
            animation-delay: 1s;
            z-index: -1;
            animation: pulse-border 1500ms linear infinite;
            -webkit-animation: pulse-border 1500ms linear infinite;
         }
          .banner__video .popup-video::after {
            animation-delay: 2s;
        }

    @keyframes pulse-border {
      0% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 1; }
      100% {
        -webkit-transform: translate(-50%, -50%) scale(1.5);
        -ms-transform: translate(-50%, -50%) scale(1.5);
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0; } }

    @-webkit-keyframes pulse-border {
      0% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 1; }
      100% {
        -webkit-transform: translate(-50%, -50%) scale(1.5);
        -ms-transform: translate(-50%, -50%) scale(1.5);
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0; }
     }


     /* all css start */

     .discount_course {

        font-style: normal;

        font-weight: 600;
        font-size: 14px;
        line-height: 22px;
        color: #8c0000;
        border: 1px solid #ff7e31;
        border-radius: 5px;
        padding: 6px 5px;
        margin-top: -12px;
        transition: all linear 0.3s;
    }
    .discount_course:hover {
        cursor: pointer;
        color: #fff;
        background-color: #ff7e31;
    }

    /*=============================
10. Blog
=============================*/
.blog {
  position: relative;
  padding: 50px 0 50px; }
  @media (max-width: 991.98px) {
    .blog {
      padding: 0px 0 20px; }
     }
  @media (max-width: 991.98px) {
    .blog .row.gx-0 {
      --bs-gutter-x: 30px; } }
  .blog::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #F7F7F7;
    z-index: -1; }
    @media (max-width: 991.98px) {
      .blog::after {
        width: 100%; } }
  .blog__post__item {
    margin-bottom: 30px; }
    .blog__post__item:hover .blog__post__content .title a {
      color: #0054FF;
      background-size: 0 2px, 100% 2px; }
  .blog__post__thumb {
    position: relative; }
  .blog__post__tags {
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: 30px; }
    .blog__post__tags a {
      display: inline-block;
      background: #191B1E;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
      padding: 13px 38px;
      line-height: 1;
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      border-radius: 30px;
      margin: 7px 7px 0 0; }
      .blog__post__tags a:hover {
        background: #FCAF17; }
  .blog__post__content {
    background: #fff;
    border: 2px solid #F7F7F7;
    padding: 40px 30px 45px; }
    @media (max-width: 1199.98px) {
      .blog__post__content {
        padding: 30px 25px 35px; } }
    .blog__post__content .date {
      display: block;
      text-transform: uppercase;
      color: #FCAF17;
      font-weight: 700;
      letter-spacing: 0.1em;
      font-size: 15px;
      line-height: 1;
      margin-bottom: 15px; }
    .blog__post__content .title {
      font-size: 24px;
      line-height: 1.4;
      letter-spacing: -0.01em;
      margin-bottom: 30px; }
      @media (max-width: 1199.98px) {
        .blog__post__content .title {
          font-size: 22px; } }
      .blog__post__content .title a {
        position: relative;
        display: inline;
        background-image: linear-gradient(#0054FF, #0054FF), linear-gradient(#0054FF, #0054FF);
        background-size: 0% 1px, 0 1px;
        background-position: 100% 100%, 0 100%;
        background-repeat: no-repeat;
        transition: background-size 0.4s linear; }
    .blog__post__content .read__more {
      display: inline-flex;
      align-items: center;
      position: relative;
      font-weight: 500;
      font-size: 16px;
      text-transform: uppercase;
      color: #191B1E;
      line-height: 1; }
      .blog__post__content .read__more::after {
        content: "\f30b";
        font-family: "Font Awesome 5 Pro";
        font-weight: 700;
        margin-left: 8px; }
      .blog__post__content .read__more:hover {
        color: #0054FF; }
  .blog .row.gx-0 [class*="col-"]:not(:first-child) .blog__post__item {
    margin-left: -2px; }
  .blog__button {
    margin-top: 30px; }
    .blog__button .btn {
      min-width: 185px; }

.blog__style__two {
  background-image: url(../img/bg/testimonial_bg.png);
  background-position: center;
  background-size: cover;
  padding: 120px 0 355px; }
  .blog__style__two::after {
    width: 100%;
    bottom: 0;
    top: auto;
    height: 61.5%; }
    @media (max-width: 1199.98px) {
      .blog__style__two::after {
        height: 67%; } }

.standard__blog {
  padding: 120px 0; }
  .standard__blog__post {
    margin-bottom: 70px; }
    .standard__blog__post:last-child {
      margin-bottom: 0; }
  .standard__blog__thumb {
    position: relative;
    margin-bottom: 40px; }
    @media (max-width: 767.98px) {
      .standard__blog__thumb {
        margin-bottom: 30px; } }
    .standard__blog__thumb .blog__link {
      position: absolute;
      right: 55px;
      bottom: -35px;
      width: 70px;
      height: 70px;
      background: #fff;
      box-shadow: 0px 10px 10px rgba(219, 219, 219, 0.25);
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: #191B1E; }
      .standard__blog__thumb .blog__link:hover {
        background: #0054FF;
        color: #fff; }
      @media (max-width: 767.98px) {
        .standard__blog__thumb .blog__link {
          right: 35px;
          bottom: -30px;
          width: 60px;
          height: 60px;
          font-size: 16px; } }
  .standard__blog__content .title {
    margin-bottom: 24px;
    font-size: 35px; }
    @media (max-width: 1199.98px) {
      .standard__blog__content .title {
        font-size: 30px; } }
    @media (max-width: 991.98px) {
      .standard__blog__content .title {
        font-size: 33px; } }
    @media (max-width: 767.98px) {
      .standard__blog__content .title {
        font-size: 25px; } }
  .standard__blog__content p {
    padding-right: 20px; }
  .standard__blog .blog__post__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    border-top: 1px solid #F7F7F7;
    padding-top: 15px;
    margin-top: 25px; }
    .standard__blog .blog__post__meta li {
      display: flex;
      align-items: center;
      margin: 10px 80px 0 0;
      line-height: 1; }
      @media (max-width: 1199.98px) {
        .standard__blog .blog__post__meta li {
          margin: 10px 35px 0 0; } }
      @media (max-width: 767.98px) {
        .standard__blog .blog__post__meta li {
          margin: 10px 25px 0 0; } }
      .standard__blog .blog__post__meta li:last-child {
        margin-right: 0; }
      .standard__blog .blog__post__meta li i {
        margin-right: 7px; }
      .standard__blog .blog__post__meta li a {
        color: #68666C; }
        .standard__blog .blog__post__meta li a:hover {
          color: #0054FF; }
      .standard__blog .blog__post__meta li.post-share {
        margin-left: auto; }

.blog__post__avatar {
  display: flex;
  align-items: center;
  margin-bottom: 25px; }
  .blog__post__avatar .thumb {
    margin-right: 15px;
    width: 50px;
    flex: 0 0 50px; }
    .blog__post__avatar .thumb img {
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%; }
  .blog__post__avatar .post__by {
    color: #191B1E;
    font-weight: 500; }
    .blog__post__avatar .post__by a {
      color: #68666C;
      font-weight: 400;
      margin-left: 5px; }
      .blog__post__avatar .post__by a:hover {
        color: #0054FF; }

.blog__sidebar {
  margin-left: 48px; }
  @media (max-width: 1199.98px) {
    .blog__sidebar {
      margin-left: 5px; } }
  @media (max-width: 991.98px) {
    .blog__sidebar {
      margin-left: 0;
      margin-top: 120px; } }
  .blog__sidebar .widget {
    margin-bottom: 45px; }
    .blog__sidebar .widget:last-child {
      margin-bottom: 0; }
    .blog__sidebar .widget .widget-title {
      font-family: "Roboto", sans-serif;
      font-size: 24px;
      font-weight: 500;
      margin-bottom: 35px;
      position: relative;
      padding-bottom: 13px; }
      .blog__sidebar .widget .widget-title::before, .blog__sidebar .widget .widget-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
        height: 2px;
        background: #F7F7F7; }
      .blog__sidebar .widget .widget-title::after {
        width: 55px;
        background: #FCAF17; }
  .blog__sidebar .search-form {
    position: relative; }
    .blog__sidebar .search-form input {
      display: block;
      width: 100%;
      border: none;
      background: #F7F7F7;
      padding: 17px 60px 17px 30px;
      font-weight: 500;
      font-size: 15px;
      color: #A2A0A6; }
      .blog__sidebar .search-form input::placeholder {
        font-weight: 500;
        font-size: 15px;
        color: #A2A0A6; }
    .blog__sidebar .search-form [type=submit] {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      right: 30px;
      border: none;
      padding: 0;
      background: transparent;
      color: #68666C; }

.rc__post__item {
  display: flex;
  align-items: center;
  margin-bottom: 30px; }
  .rc__post__item:last-child {
    margin-bottom: 0; }
  .rc__post__item:hover .rc__post__content .title a {
    color: #191B1E;
    background-size: 0 1px, 100% 1px; }

.rc__post__thumb {
  width: 90px;
  flex: 0 0 90px;
  margin-right: 22px; }
  @media (max-width: 1199.98px) {
    .rc__post__thumb {
      margin-right: 20px; } }
  .rc__post__thumb a {
    display: block; }

.rc__post__content .title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.5; }
  .rc__post__content .title a {
    display: inline;
    background-image: linear-gradient(#191B1E, #191B1E), linear-gradient(#191B1E, #191B1E);
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear; }

.rc__post__content .post-date {
  display: block;
  font-size: 15px;
  color: #68666C;
  line-height: 1; }
  .rc__post__content .post-date i {
    margin-right: 5px; }

.sidebar__cat__item + li {
  margin-top: 15px; }

.sidebar__cat__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: #68666C;
  font-weight: 400;
  -webkit-transition: all 0s ease-out 0s;
  -moz-transition: all 0s ease-out 0s;
  -ms-transition: all 0s ease-out 0s;
  -o-transition: all 0s ease-out 0s;
  transition: all 0s ease-out 0s; }
  .sidebar__cat__item a::after {
    content: "\f178";
    font-family: "Font Awesome 5 Pro";
    margin-left: 5px; }
  .sidebar__cat__item a:hover {
    font-weight: 500;
    color: #191B1E; }

.sidebar__comment__item + li {
  margin-top: 20px; }

.sidebar__comment__item a {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #191B1E;
  line-height: 1;
  margin-bottom: 10px; }
  .sidebar__comment__item a::before {
    content: "\f4b6";
    font-family: "Font Awesome 5 Pro";
    margin-right: 7px;
    color: #FCAF17;
    font-weight: 600; }

.sidebar__comment__item p {
  font-size: 14px;
  margin-bottom: 0; }

.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -5px -10px; }
  .sidebar__tags li {
    padding: 0 5px 10px; }
    .sidebar__tags li a {
      display: block;
      padding: 4px 21px;
      font-size: 14px;
      text-transform: uppercase;
      font-weight: 500;
      color: #68666C;
      border: 1px solid rgba(0, 0, 0, 0.2); }
      .sidebar__tags li a:hover {
        color: #fff;
        background: #0054FF;
        border-color: #0054FF; }

.blog__details .blog__post__meta {
  border: none;
  padding-top: 0;
  margin: 0 0 12px; }
  .blog__details .blog__post__meta li {
    margin: 0 80px 10px 0; }
    @media (max-width: 1199.98px) {
      .blog__details .blog__post__meta li {
        margin: 0 35px 10px 0; } }

@media (max-width: 1199.98px) {
  .blog__details__content .title {
    font-size: 32px; } }

@media (max-width: 1199.98px) {
  .blog__details__content .title {
    font-size: 25px; } }

.blog__details__bottom {
  display: flex;
  align-items: baseline;
  border-top: 2px solid #F7F7F7;
  border-bottom: 2px solid #F7F7F7;
  padding: 30px 0;
  margin: 40px 0 0; }
  @media (max-width: 767.98px) {
    .blog__details__bottom {
      display: block; } }

.blog__details__tag {
  display: flex;
  align-items: flex-start;
  width: 60%;
  flex: 0 0 60%; }
  @media (max-width: 767.98px) {
    .blog__details__tag {
      width: 100%;
      flex: 0 0 100%;
      margin-bottom: 20px; } }
  .blog__details__tag .title {
    color: #191B1E;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    margin: 10px 25px 0 0; }
  .blog__details__tag .tags-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
  .blog__details__tag a {
    display: block;
    padding: 5px 21px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    color: #68666C;
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin: 5px 10px 5px 0; }
    .blog__details__tag a:hover {
      color: #fff;
      background: #0054FF;
      border-color: #0054FF; }

.blog__details__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 40%;
  flex: 0 0 40%; }
  @media (max-width: 767.98px) {
    .blog__details__social {
      width: 100%;
      flex: 0 0 100%;
      justify-content: flex-start; } }
  .blog__details__social .title {
    color: #191B1E;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    margin-right: 20px; }
  .blog__details__social .social-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    line-height: 1; }
  .blog__details__social a {
    display: block;
    line-height: 1;
    font-size: 18px; }
    .blog__details__social a + a {
      margin-left: 20px; }
    .blog__details__social a .fa-dribbble {
      color: #DE4882; }
    .blog__details__social a .fa-behance {
      color: #1664F2; }
    .blog__details__social a .fa-linkedin {
      color: #0072AC; }
    .blog__details__social a .fa-pinterest {
      color: #DA0021; }
    .blog__details__social a .fa-facebook {
      color: #1664F2; }
    .blog__details__social a .fa-twitter-square {
      color: #3AC4FF; }

.blog__next__prev {
  padding: 35px 0 40px;
  border-bottom: 2px solid #F7F7F7; }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog__next__prev__item {
      width: 65%; } }
  .blog__next__prev__item > .title {
    font-family: "Roboto", sans-serif;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 24px; }
    @media (max-width: 1199.98px) {
      .blog__next__prev__item > .title {
        font-size: 22px; } }
    .blog__next__prev__item > .title::before {
      content: "\f100";
      font-family: "Font Awesome 5 Pro";
      font-weight: 500;
      margin-right: 10px; }
  @media (max-width: 767.98px) {
    .blog__next__prev__item.next_post {
      margin-top: 25px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog__next__prev__item.next_post {
      margin-left: auto; } }
  .blog__next__prev__item.next_post > .title::before {
    display: none; }
  .blog__next__prev__item.next_post > .title::after {
    content: "\f101";
    font-family: "Font Awesome 5 Pro";
    font-weight: 500;
    margin-left: 10px; }
  .blog__next__prev__item.next_post .blog__next__prev__post {
    flex-direction: row-reverse; }
  .blog__next__prev__item.next_post .blog__next__prev__thumb {
    margin-right: 0;
    margin-left: 20px; }
  .blog__next__prev__post {
    display: flex;
    align-items: center;
    margin-top: 23px; }
    @media (max-width: 767.98px) {
      .blog__next__prev__post {
        margin-top: 15px; } }
  .blog__next__prev__thumb {
    width: 104px;
    flex: 0 0 104px;
    margin-right: 20px; }
  .blog__next__prev__content .title {
    font-family: "Roboto", sans-serif;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 18px; }
    @media (max-width: 1199.98px) {
      .blog__next__prev__content .title {
        font-size: 16px; } }
    .blog__next__prev__content .title a:hover {
      color: #0054FF; }

.comment.comment__wrap {
  margin-top: 50px; }

.comment__title {
  margin-bottom: 40px; }
  .comment__title .title {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0; }

.comment__item {
  display: flex;
  align-items: flex-start;
  width: 80%;
  margin-bottom: 50px; }
  @media (max-width: 1199.98px) {
    .comment__item {
      width: auto; } }
  @media (max-width: 767.98px) {
    .comment__item {
      display: block;
      margin-bottom: 35px; } }
  .comment__item:last-child {
    margin-bottom: 0; }
  .comment__item.children {
    margin-left: 110px; }
    @media (max-width: 767.98px) {
      .comment__item.children {
        margin-left: 0; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .comment__item.children {
        margin-left: 50px; } }

.comment__thumb {
  width: 80px;
  flex: 0 0 80px;
  margin-right: 30px; }
  @media (max-width: 767.98px) {
    .comment__thumb {
      margin-bottom: 20px; } }
  .comment__thumb img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%; }

.comment__content {
  margin-top: 10px; }
  .comment__content p {
    margin-bottom: 0;
    font-size: 15px; }

.comment__avatar__info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px; }
  .comment__avatar__info .info {
    width: 80%;
    flex: 0 0 80%; }
  .comment__avatar__info .title {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    margin-bottom: 0;
    margin-bottom: 6px; }
  .comment__avatar__info .date {
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #FCAF17; }
  .comment__avatar__info .reply {
    margin-left: auto;
    margin-right: 50px;
    font-size: 20px;
    line-height: 1;
    color: #191B1E; }
    .comment__avatar__info .reply:hover {
      color: #FCAF17; }

.comment__form {
  padding-top: 45px;
  margin-top: 50px;
  border-top: 2px solid #F7F7F7; }
  .comment__form .comment__title {
    margin-bottom: 35px; }
  .comment__form .row {
    --bs-gutter-x: 22px; }
  .comment__form form input:not([type="checkbox"]),
  .comment__form form textarea {
    width: 100%;
    display: block;
    background: #FDFDFD;
    border: 1px solid #E8E8E8;
    font-size: 15px;
    padding: 19px 25px;
    margin-bottom: 30px; }
    .comment__form form input:not([type="checkbox"])::placeholder,
    .comment__form form textarea::placeholder {
      font-size: 15px;
      color: #68666C; }
  .comment__form form textarea {
    min-height: 210px;
    max-height: 210px; }
  .comment__form form .checkbox-grp {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px; }
    .comment__form form .checkbox-grp [type="checkbox"] {
      margin: 4px 15px 0 0; }
    .comment__form form .checkbox-grp label {
      user-select: none; }

/*=============================
11. Pagination
=============================*/
.pagination-wrap {
  margin-top: 50px; }
  .pagination-wrap .pagination {
    justify-content: center;
    flex-wrap: wrap; }
    .pagination-wrap .pagination li {
      margin: 10px 4px 0; }
      .pagination-wrap .pagination li a.page-link {
        margin-left: 0;
        width: 49px;
        height: 49px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #191B1E;
        border-radius: 0;
        font-size: 14px;
        font-weight: 700;
        color: #191B1E; }
        .pagination-wrap .pagination li a.page-link::after {
          content: "";
          position: absolute;
          left: 0;
          bottom: 0;
          width: 0;
          height: 4px;
          background: #191B1E;
          -webkit-transition: all 0.4s ease-out 0s;
          -moz-transition: all 0.4s ease-out 0s;
          -ms-transition: all 0.4s ease-out 0s;
          -o-transition: all 0.4s ease-out 0s;
          transition: all 0.4s ease-out 0s; }
      .pagination-wrap .pagination li.active a.page-link, .pagination-wrap .pagination li:hover a.page-link {
        background: transparent; }
        .pagination-wrap .pagination li.active a.page-link::after, .pagination-wrap .pagination li:hover a.page-link::after {
          width: 100%; }

