@media (min-width: 1200px) {
  .container{
      max-width: 1240px;
  }
}
@media (min-width: 992px) {
  .pl-lg-0, .px-lg-0 {
      padding-left: 0!important;
  }
  .pr-lg-0, .px-lg-0 {
      padding-right: 0!important;
  }
  .pl-lg-3 {
    padding-left: 3rem;
  }
}

:root {
  --red: #dc5a41;
  --dark: #2c3545;
  --text-gray: #707382;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Light.woff2') format('woff2'), url('../fonts/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'), url('../fonts/Inter-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2'), url('../fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2'), url('../fonts/Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2'), url('../fonts/Inter-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-ExtraBold.woff2') format('woff2'), url('../fonts/Inter-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

body {
  /*font-family: 'Larsseit';*/
  font-family: 'Inter';
  color: #000;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

a {
  color: #ff0053;
  text-decoration: none;
}

a:hover {
  color: #ff0053;
  text-decoration: none;
}

.pt_10 {
  padding-top: 10px;
}
.pt_20 {
  padding-top: 20px;
}
.pt_30 {
  padding-top: 30px;
}
.pt_40 {
  padding-top: 40px;
}
.pt_50 {
  padding-top: 50px;
}
.pt_60 {
  padding-top: 60px;
}

.pt_70 {
  padding-top: 70px;
}
.pt_80 {
  padding-top: 80px;
}
.py_50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.py_60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.py_70 {
  padding-top: 70px;
  padding-bottom: 70px;
}
.py_80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.py_90 {
  padding-top: 90px;
  padding-bottom: 90px;
}
.py_100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.mr_15 {
  margin-right: 15px;
}
.ml_15 {
  margin-left: 15px;
}

.pb_10 {
  padding-bottom: 10px;
}
.pb_20 {
  padding-bottom: 20px;
}
.pb_30 {
  padding-bottom: 30px;
}
.pb_40 {
  padding-bottom: 40px;
}
.pb_50 {
  padding-bottom: 50px;
}
.pb_60 {
  padding-bottom: 60px;
}
.pb_70 {
  padding-bottom: 70px;
}
.pb_80 {
  padding-bottom: 80px;
}

.p_relative {
  position: relative;
}
.mr-10 {
  margin-right: 10px;
}

.c_btn {
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-radius: 50px;
  display: inline-block;
  font-size: 15px;
  padding: 15px 1.3rem;
  min-width: 190px;
  border: 1px solid transparent;
}
.btn_transparent_white {
  border-color: #fff;
  color: #fff;
}
.btn_transparent_white:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn_transparent_dark {
  border-color: #555555;
  color: #555555;
}
.btn_transparent_dark:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn_black {
  background: #000000;
  color: #fff;
}
.btn_black:hover {
  background: #ff0053;
  color: #fff;
}
.btn_red {
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
}
.btn_red:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn_gray {
    background: #e5e5e5;
    color: #555555;
}
.btn_gray:hover {
  background: #000;
  color: #fff;
}
.blue_link {
    background: transparent;
    color: #001148;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 8px;
    display: inline-block;
    font-size: 18px;
    padding: 18px 1.5rem;
}
.blue_link img {
    margin-left: 20px;
    display: inline-block !important;
    width: auto !important;
}
.blue_link:hover {
  color: #000;
}
.btn_dark_blue {
  background: #484bd0;
  color: #fff;
}
.btn_dark_blue:hover {
  background: #ff0053;
  color: #fff;
}


.bg_divider {
    height: 10px;
    width: 100%;
    display: block;
    background: #f4f4f4;
}


.fw_light {
  font-weight: 300;
}
.fw_normal {
  font-weight: 400;
}
.fw_medium {
  font-weight: 500;
}
.fw_bold {
  font-weight: 700;
}
.fw_exbold {
  font-weight: 800;
}

.fz_16 {
  font-size: 16px;
}
.fz_18 {
  font-size: 18px;
}
.fz_20 {
  font-size: 20px;
}
.fz_24 {
  font-size: 24px;
}
.fz_30 {
  font-size: 30px;
}
.fz_40 {
  font-size: 40px;
}

.text_light_gray {
  color: #707382;
}
.text_gray {
   color: #555555;
}
.text_blue {
  color: #001148;
}
.text_dark {
  color: #000;
}
.text_white {
  color: #fff;
}

.mb_0 {
  margin-bottom: 0px;
}
.mb_10 {
  margin-bottom: 10px;
}
.mb_20 {
  margin-bottom: 20px;
}
.mb_30 {
  margin-bottom: 30px;
}
.mb_40 {
  margin-bottom: 40px;
}
.mb_50 {
  margin-bottom: 50px;
}
.mb_60 {
  margin-bottom: 60px;
}
.mb_70 {
  margin-bottom: 70px;
}

.mt_20 {
  margin-top: 20px;
}
.mt_30 {
  margin-top: 30px;
}
.mt_40 {
  margin-top: 40px;
}
.mt_50 {
  margin-top: 50px;
}
.mt_60 {
  margin-top: 60px;
}

.banner_md_txt {
  margin-bottom: 15px;
  font-weight: 800;
  font-size: 50px;
  position: relative;
  line-height: 1.3;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--red);
  border-top-color: #ecf8f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.carousel-item .slide {
    min-height: 880px;
}
.carousel-item .slide .content {
    max-width: 845px;
    width: 100%;
}
.banner_btn {
    max-width: 260px;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(63, 187, 192, 0.8);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: #3fbbc0;
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li, .owl-dot {
    cursor: pointer !important;
    background: #e5e5e5 !important;
    overflow: hidden;
    border: 0 !important;
    width: 18px;
    height: 18px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
    margin-right: 8px;
}
#hero .carousel-indicators li.active, .owl-dot.active {
    opacity: 1;
    background: #bfbfbf !important;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 996;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  border: 1px solid var(--dark);
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.back-to-top:hover {
    border: 1px solid #000;
    background: #fff;
    color: #000;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: #f5f5f5;
  padding: 5px 0;
}
#header {
  background: transparent;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  top: 0px;
}
.top_menu {
    width: 100%;
    text-align: right;
}
.topbar {
  background: #f5f5f5;
  padding: 5px 0;
  text-align: right;
}
.topbar a {
    font-size: 14px;
    color: #707382;
    font-weight: 400;
    padding: 0px 15px;
    letter-spacing: 1px;
    border-right: 1px solid #707382;
}
.topbar a:nth-last-child(1) {
    border-right: none;
    padding-right: 0px;
}
.topbar a i {
    margin-right: 5px;
    color: var(--dark);
}
#header.header-scrolled {
  top: 0;
  position: fixed;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
}
#header .logo a {
  color: #555555;
}
#header .logo img {
    max-width: 100%;
    height: auto;
    width: 100%;
}
.support-btn {
  margin-left: 15px;
  background: var(--red);
  color: #fff;
  padding: 10px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 15px;
  display: inline-block;
  border-radius: 34px;
  font-weight: 500;
  text-transform: capitalize;
  width: auto;
  text-align: center;
}
.support-btn:hover {
  background: var(--dark);
  color: #FFF;
}
.navbar {
    padding: 0;
    display: inline-block;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
  padding: 10px 16px;
}
.navbar a, .navbar a:focus {
    padding: 5px 0;
    font-size: 15px;
    color: #707382;
    transition: 0.3s;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 1.1px;
    border-bottom: 5px solid transparent;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--red);
}
.navbar a:hover {
  border-bottom: 5px solid var(--red);
}
.header_menu .active a {
  border-bottom: 5px solid var(--red);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #3fbbc0;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: var(--red);
    font-size: 20px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}
.mobile-nav-toggle-close {
    color: var(--red);
    font-size: 20px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    z-index: 999;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}
.menu_overlay {
  display: none;
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(60, 60, 60, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    max-width: 260px;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #555555;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #3fbbc0;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #3fbbc0;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
.tab-content {
  padding-top: 50px;
}
@media (max-width: 1025px) {
  .navbar li {
      position: relative;
      padding: 8px 12px;
  }
  .navbar a, .navbar a:focus {
      font-size: 15px;
  }
  .support-btn {
      margin-left: 5px;
      padding: 9px 20px;
      font-size: 14px;
  }
  .topbar a {
    font-size: 14px;
  } 

}

@media (max-width: 992px) {
  .d-xs-none {
    display: none;
  }
  #header .logo img {
    width: 80%;
  }
  .mobile-nav-toggle {
      display: block;
      position: relative;
      top: 3px;
  }
  .header_menu {
      position: fixed;
      top: 0;
      left: 0px;
      height: 100%;
      max-width: 260px;
      background: #fff;
      display: block !important;
      width: 100%;
      z-index: 99;
  }
  .header_menu li a {
      font-size: 14px;
      text-align: left;
      border: none;
  }
  .header_menu li a:hover, .header_menu li a:focus {
    color: #13083c;
    border: none;
  }
  .navbar .header_menu {
    left: -260px;
  }
  .header-scrolled .mobile-nav-toggle, .header-scrolled .mobile-nav-toggle-close {
      color: var(--red);
  }
  
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #111620;
}
#footer .footer-top {
    padding: 25px 0;
    border-bottom: 1px solid #292e37;
}
.footer-logo img {
    max-width: 100%;
}
.social_icons {
    text-align: right;
}
.social_icons a {
    width: 40px;
    height: 40px;
    display: inline-block;
    background: #888b90;
    text-align: center;
    color: #111620;
    border-radius: 50px;
    line-height: 40px;
    margin: 2px 3px;
    font-size: 18px;
}
.social_icons a:hover {
  background: #fff;
  color: #000;
}
.footer-middle {
    padding: 50px 0;
    border-bottom: 1px solid #292e37;
}
.footer-middle .title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 20px;
}
.footer-middle ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-middle ul li {
    margin-bottom: 5px;
}
.footer-middle ul li a {
    color: #72748b;
    font-weight: 400;
    letter-spacing: 0.5px;
    display: block;
    font-size: 15px;
    line-height: 30px;
}
.footer-middle ul li a:hover {
  color: #fff;
}
.footer-info .phone, .footer-info .email {
    margin-bottom: 10px;
}
.footer-info .phone a, .footer-info .email a {
  color: #72748b;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
}
.footer-info .phone i, .footer-info .email i {
    margin-right: 12px;
    vertical-align: middle;
    font-size: 20px;
    color: #fff;
}
.footer-info .pay_cards {
    margin-top: 26px;
}
.footer-info .phone a:hover, .footer-info .email a:hover {
  color: #fff;
}
.footer-bottom {
    padding: 20px 0;
    position: relative;
}
.copyright, .credits {
  color: #72748b;
  font-size: 15px;
  padding: 10px 0;
  letter-spacing: 0.3px;
}
.credits {
  text-align: right;
}
.footer-info .pay_cards img {
    max-width: 100%;
}
.footer_middle_row {
    display: flex;
    justify-content: space-between;
}
@media(max-width: 992px) {
  .social_icons {
      text-align: center;
  }
  .footer-logo {
      text-align: center;
      margin-bottom: 14px;
  }
}

/* POPUP CSS*/
.modal-content {
    border: none;
    border-radius: 8px;
}
.popup_form {
    background: #fff;
    padding: 20px 25px;
    border-radius: 8px;
}
.popup_form .close_popup {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    background: var(--red);
    line-height: 1;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50px;
}
.popup_form .title {
    color: #000;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 600;
}
.popup_form .c_field {
    background: transparent;
    border: 2px solid #a6a8af;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px 12px;
    border-radius: 5px;
    color: #000;
    font-size: 13px;
}
.popup_form .btn_green {
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
    min-width: 130px;
    letter-spacing: 0.8px;
    background: var(--red);
    border: none;
    color: #fff;
}
.popup_form .btn_green:hover, .popup_form .close_popup:hover {
  color: #fff;
  background: #000;
}
body.modal-open {
    padding: 0 !important;
    overflow: hidden !important;
}
.modal{
    padding-right: 0px !important;
}
.popup_form .form-check label {
    font-size: 15px;
    color: #000;
    font-weight: 300;
    letter-spacing: 0.3px;
}
.popup_form .form-check {
    margin-bottom: 16px;
}
.show_loader {
  position: relative;
}
.show_loader:after {
    content: "";
    background: url(../img/loader.gif);
    width: 18px;
    display: inline-block;
    height: 18px;
    background-size: cover;
    margin-left: 6px;
    vertical-align: middle;
    margin-top: -4px;
}
.success_msg {
  position: relative;
  font-weight: 600;
  color: #000;
  font-size: 13px;
  margin: 0;
  padding: 11px 15px;
  background: #fff;
  border: 1px solid;
}
.success_msg:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 5px;
  height: 100%;
  background: #ff0053;
}
.mt_5 {
  margin-top: 3rem;
}
.our_package ul li {
  font-size: 18px;
}
.visible-sm {
    display: none;
}
@media(max-width: 1400px){
  .c_btn, .blue_link {
      font-size: 15px;
  }
  .fz_18 {
    font-size: 16px;
  }
  .fz_24 {
      font-size: 20px;
      line-height: 1.3;
  }
  .our_package ul li {
      font-size: 16px;
      padding-left: 30px;
  }
}

@media(min-width: 1199px) {
  .navbar li {
      position: relative;
      padding: 6px 12px;
  }
}
@media(max-width:1025px){
  .copyright, .credits {
      font-size: 16px;
  }
  .fz_40 {
      font-size: 30px;
  }
}
@media(max-width: 992px) {
  .mr_15 {
      margin-right: 8px;
  }
  .hidden-sm {
      display: none;
  }
  .navbar li {
      border-bottom: 1px solid #eee;
  }
  .topbar {
    display: none;
  }
  .support-btn {
    padding: 8px 20px;
    font-size: 12px;
  }
  .fz_40 {
      font-size: 28px;
  }
  .fz_30 {
      font-size: 20px;
  }
  .mb_50 {
      margin-bottom: 30px;
  }
  .c_btn, .blue_link {
      font-size: 14px;
      padding: 12px 1.2rem;
      min-width: auto;
      margin-bottom: 11px;
  }
  .pb_60 {
      padding-bottom: 30px;
  }
  .pt_60 {
      padding-top: 30px;
  }
  .brand_content {
      text-align: center;
  }
  .header_menu .active a {
      border-bottom: none;
  }
  .copyright, .credits {
      font-size: 14px;
      padding: 8px 0 0;
      text-align: center;
  }
  .footer_middle_row {
      display: inline-block;
      width: 100%;
  }
  .col_1, .col_2, .col_3, .col_4 {
      width: 50%;
      float: left;
  }
}
@media(max-width:992px){
  .pt_80 {
      padding-top: 50px;
  }
  .py_70 {
      padding-top: 40px;
      padding-bottom: 40px;
  }
  .py_80, .py_100 {
      padding-top: 50px;
      padding-bottom: 50px;
  }
}
@media(max-width: 767px) { 
  .mt_60 {
      margin-top: 25px;
  }
  .mb_60 {
      margin-top: 25px;
  }
  .mt_40 {
      margin-top: 30px;
  }
  .mb_40 {
      margin-bottom: 20px;
  }
  .support-btn {
      display: none;
  }
  .carousel-indicators {
      justify-content: center;
  }
  .banner_md_txt {
      font-size: 24px;
      font-weight: 700;
      line-height: 1.3;
  }
  .blue_link {
      padding: 0px;
      margin-top: 20px;
      margin-left: 10px
  }
  .footer-middle {
      padding-top: 10px;
      padding-bottom: 10px;
  }
  .popup_form .title {
      font-size: 20px;
      margin-bottom: 16px;
  }
  .popup_form .c_field {
      margin-bottom: 8px;
  }
  .popup_form .form-check label {
      font-size: 12px;
  }
  .popup_form .btn_green {
      padding: 8px 18px;
      font-size: 13px;
  }
  .popup_form {
      padding: 14px 20px;
  }
  .support-btn {
    display: none;
  }
  #header {
      top: 0;
  }
  .fz_18, .fz_20 {
      font-size: 16px;
  }
  .fz_24 {
      font-size: 20px;
  }
  .fz_40 {
      font-size: 24px;
  }
  .pb_80 {
      padding-bottom: 30px;
  }
  .pb_50 {
      padding-bottom: 25px;
  }
  .pt_50 {
      padding-top: 25px;
  }
  .mt_50 {
      margin-top: 25px;
  }
  #footer .footer-top {
      padding: 25px 0;
  }
  .footer-middle .title {
      margin-top: 18px;
  }
  .col_1, .col_2, .col_3, .col_4 {
      width: 100%;
      float: none;
      margin-bottom: 10px;
  }
  .footer-info .phone, .footer-info .email {
      font-size: 15px;
      font-weight: 500;
  }
  .contact_form input, .contact_form textarea {
      font-size: 16px;
      padding: 10px 0px;
      margin-bottom: 12px;
  }
  .footer-logo img {
      width: 50%;
      height: auto;
  }
  .footer_right {
      float: none;
  }
  #footer .footer-top .f_detail {
      font-size: 16px;
  }
  .footer-bottom {
      padding: 15px 0;
  }
  .faq_box_row {
      margin-top: 25px;
  }
  .faq_title {
      font-size: 15px;
  }
  .contact_details h3 {
      font-size: 20px;
  }
  .contact_details h3 a {
    display: block;
    line-height: 1.8;
  }
  .d-xs-none {
    display: none;
  }
}
@media(max-width:426px) {
  .c_btn, .blue_link {
      font-size: 12px;
      padding: 11px 1.2rem;
  }
}

.tabs .tab_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  justify-content: space-evenly;
}
.tabs .tab_list li {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 15px;
  cursor: pointer;
  text-align: center;
  color: var(--text-gray);
  background:transparent;
  border-radius: 50px;
}
.tabs .tab_list li.active {
  background: var(--red);
  color: #fff;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.inner_banner .banner_md_txt {
  text-transform: capitalize;
}
.book-section {
  background: url(../img/book-bg.jpg);
  background-size: cover;
  margin-bottom: 70px;
  padding-bottom: 50px;
}
.webp .book-section {
  background: url(../img/book-bg.webp);
  background-size: cover;
}
.book-section .row {
  align-items: center;
}
/* banner logo CSS */
.banner_logo {
  background: #f5f5f5;
  padding: 30px 0;
}
.f_logo_box {
  width: 75%;
  margin: 0 auto;
}
@media(max-width:992px) {
  .f_logo_box {
      width: 90%;
  }
  .service_tabs_section {
      padding-bottom: 0px;
  }
}
 
/* Section Reviews */
.review_img {
  position: relative;
  background: whitesmoke;
  min-height: 340px;
    display: flex;
    align-items: center;
}
.review_section .p_relative {
  padding: 0 20px;
}
.user_pic {
  position: absolute;
  bottom: -28px;
  right: 30px;
  width: 70px;
}
.review_content h3 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}
.review_content h3 span {
  font-size: 15px;
  font-weight: 500;
}
.review_content {
  padding-top: 40px;
}
.review_content img {
  width: 140px;
  margin-top: 7px;
  margin-bottom: 20px;
}
.review_right .review_content {
  padding-top: 0;
  padding-left: 20px;
}
.review_right .user_pic {
  position: absolute;
  bottom: 30px;
  right: -28px;
  width: 70px;
}
.footer-logo img {
  width: auto;
  height: auto;
}
li.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  animation: 0.5s dropdown linear;
}
@keyframes dropdown{
  0%{
    opacity: 0;
    transform: translateY(20px);
  }
  100%{
    opacity: 1;
    transform: translateY(0px);
  }
}
li.nav-item.dropdown .dropdown-menu {
  min-width: 250px;
}

li.nav-item.dropdown .dropdown-menu a {
  padding: 4px 15px;
  border-bottom: 1px solid #ededed;
}

li.nav-item.dropdown .dropdown-menu a:last-child {
  border-bottom: none;
}
li.nav-item.dropdown .dropdown-menu a:active {
  background: no-repeat;
}
.list-two-colum li{
  display: inline-block;
  width: 49%;
}

@media(max-width:767px) {
  .review_right .user_pic {
      bottom: -28px;
      right: 30px;
      width: 70px;
  }
  .review_right .review_content {
      padding-top: 40px;
      padding-left: 0px;
  }
}
/* how_its_work_section */
.how_its_work_section {
  background: url(../img/home/how-its-work/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.webp .how_its_work_section {
  background: url(../img/home/how-its-work/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
/* How it works */
@media(max-width:767px) {
  .how_box img {
      width: 130px;
  }
}



/* book_form_section */
.book_form_section {
  background: #f5f5f5;
}
.f_field {
  margin-bottom: 20px;
}
.f_field input, .f_field select {
  width: 100%;
  height: 55px;
  border: none;
  border-radius: 30px;
  padding: 0 50px 0 25px;
  color: #707382;
  font-size: 15px;
}
.f_field textarea {
  width: 100%;
  border: none;
  border-radius: 30px;
  padding: 15px 25px;
  color: #707382;
  height: 350px;
  font-size: 15px;
}
.f_field select {
  appearance: none;
  background-image: url(../img/down_arrow.png);
  background-repeat: no-repeat;
  background-position: 95% 50%;
}
.f_field input:focus, .f_field select:focus, .f_field textarea:focus {
  outline: none;
}

/* contact_detail_section */
.contact_box {
  background: #fff;
  box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_box:hover {
  background: #2c3545;
  cursor: pointer;
}
.contact_box:hover * {
  color: #fff;
}
.contact_box h3 {
  font-size: 17px;
  position: relative;
  color: #555555;
  text-transform: uppercase;
  margin: 0;
  line-height: 28px;
  padding-left: 40px;
}
.contact_box h3 a, .contact_box h3 span {
  display: block;
  color: #555555;
  font-weight: 600;
  text-transform:none;
  margin-top: 4px;
}
.contact_box h3 i {
  font-size: 25px;
  position: absolute;
  top: 3px;
  left: 0;
  color: #dc5a41;
}
.inner_banner.content-page-banner .row {
  min-height: 230px;
}
.inner_banner.content-page-banner {
  background: #2c3545;
}
.inner_banner.content-page-banner h1.banner_md_txt {
  margin-bottom: 0px;
}
.terms-content-section h1 {
  font-size: 40px;
  font-weight: 700;
}

.terms-content-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.terms-content-section p {
  font-size: 15px;
  margin-bottom: 30px;
}

.terms-content-section ul {
  padding-left: 17px;
}

.terms-content-section ul li {
  margin-bottom: 10px;
  font-size: 15px;
}
@media(max-width:1300px) {
#service_tabs .tabs .tab_list li {
  min-width: 200px;
  font-size: 12px;
  margin: 6px;
}
}
@media(max-width:1199px) {
.how_its_work_section.how-its-work-page .how_box {
  padding: 10px;
}
.how_its_work_section.how-its-work-page .how_box p {
  font-size: 13px;
}
}
@media(max-width:991px) {
li.nav-item.dropdown .dropdown-menu {
  position: relative;
}
.how_its_work_section.how-its-work-page .row>div {
  margin-bottom: 30px;
}

.navbar li {
  padding: 0px;
}

.navbar li a {
  padding: 10px;
}

.header_menu {
  overflow: auto;
}

.menu_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: hsl(0deg 0% 0% / 72%);
  z-index: 11;
}
.header_menu li a:hover, .header_menu li a:focus {
  padding: 10px;
}
#service_tabs .tabs .tab_list li {
  min-width: 48%!important;
  margin: 1%!important;
}
.tab-content {
  padding-top: 20px;
}
div#service_tabs .tab_list {
  margin-bottom: 0px;
}
.service_tabs_section{
  padding-bottom: 40px;
}
.review_img {
  min-height: initial;
}
.book_form_section .leadform .row>div:nth-child(2) h3 {
  display: none;
}
.contact_box {
  margin-bottom: 20px;
}
.footer_middle_row>div:nth-child(1) {
  order: 1;
}

.footer_middle_row>div:nth-child(2) {
  order: 3;
}

.footer_middle_row>div:nth-child(3) {
  order: 1;
}

.footer_middle_row>div {
  float: none;
  margin-bottom: 30px;
}

.footer_middle_row {
  display: flex;
  flex-wrap: wrap;
}

.footer_middle_row>div:nth-child(4) {
  order: 4;
}
.book-section {
  padding-bottom: 20px;
  margin-bottom: 40px;
}
}
@media(max-width:767px) {
  .contact_box {
      margin-bottom: 20px;
  }
  .contact_box {
      margin-bottom: 20px;
      display: block;
      min-height: auto;
  }
  .contact_box h3 {
      font-size: 14px;
      line-height: 22px;
      padding-left: 35px;
  }
  .contact_box h3 i {
      font-size: 20px;
  }
  

}

@media(max-width: 992px) {
  .tabs .tab_list li {
      font-size: 12px;
  }
}
@media(max-width: 767px) {
  .pt_30 {
    padding-top: 10px;
  }
  .tabs {
      overflow-x: auto;
      margin-bottom: 15px;
      padding-bottom: 4px;
  }

  .tabs .tab_list li {
      min-width: 200px;
      padding: 12px 10px;
  }
  .workbox {
      transform: scale(1);
  }
  .f_field textarea {
    height: 150px;
}

}
@media (max-width: 576px) {
  .col-xs-6 {
      flex: 0 0 auto;
      width: 50%;
  }
  #service_tabs .tabs .tab_list li {
    min-width: 98%!important;
    margin: 1%!important;
  }
    .section_five .c_btn {
    width: 100%;
}
.section_reviews .c_btn {
  width: 100%;
}
}

a[href="author/"] {
  display: none!important;
}
.credits {
  display: none;
}
section.contact_detail_section .row>div:nth-child(3) {
  display: none;
}

section.contact_detail_section .row {
  justify-content: center;
}