/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}

a {
  color: #ffb03b;
}

a:hover {
  color: #ffc56e;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Raleway', sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #ffb03b;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #ffa012;
  color: #fff;
}

.domain-box {
  padding: 0px;
  -webkit-transform: translate(140px, 0);
  -moz-transform: translate(140px, 0);
  -ms-transform: translate(140px, 0);
  -o-transform: translate(140px, 0);
  transform: translate(140px, 0);
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 99999;
  display: inline-block;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.domain-btn {
  background: #a8daaf;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 30px 0 0 30px;
  border: 2px solid #fff;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  animation: glowing 5000ms infinite;
}

.domain-box:hover {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  background: rgba(255, 255, 255, 0.4);
}

.domain-box span {
  background: #fff;
  padding: 6px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 45px;
  margin-right: 8px;
  height: 45px;
  font-size: 18px;
  background: #ffffff;
  -webkit-transform: rotate( 0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate( 0deg);
  display: inline-block;
}

.domain-box span img {
  width: 100%;
}

.domain-btn:hover {
  color: #fff;
}

@keyframes glowing {
  0% {
    box-shadow: 0 0 -10px #ffa604;
  }
  40% {
    box-shadow: 0 0 20px #ffa604;
  }
  60% {
    box-shadow: 0 0 20px #ffa604;
  }
  100% {
    box-shadow: 0 0 -10px #ffa604;
  }
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

.topbar {
  padding: 0;
  font-size: 14px;
  height: 35px;
  transition: all 0.5s;
  background: rgba(26, 24, 22, 0.8);
  color: rgba(255, 255, 255, 0.8);
}

.topbar.topbar-transparent {
  background: transparent;
}

.topbar.topbar-scrolled {
  top: -50px;
}

.topbar i {
  color: #ffb03b;
}

.topbar i+i {
  margin-left: 15px;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  top: 35px;
  height: 70px;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: rgba(26, 24, 22, 0.85);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  top: 0;
  background: #fff;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}

#header.header-scrolled .logo img {
  padding: 0;
  margin: 0;
  max-height: 65px;
}

#header.header-scrolled .nav-menu a {
  color: #333;
}

#header.header-scrolled .nav-menuu a:hover,
#header.header-scrolled .nav-menu .active>a,
#header.header-scrolled .nav-menu li:hover>a {
  color: #ffb03b;
  text-decoration: none;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 65px;
}

.visible-scroll {
  display: none;
}

.hidden-scroll {
  display: inline-block;
}

@media (max-width: 992px) {
  #header {
    top: 0;
    background: rgba(26, 24, 22, 0.85);
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: white;
  padding: 9px 14px;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #ffb03b;
  text-decoration: none;
}

.join-us-btn a {
  background: #ffb03b;
  color: #fff !important;
  border-top-left-radius: 50px;
  margin: 0 0 0 10px;
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  letter-spacing: 1px;
  transition: 0.3s;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
}

.join-us-btn a:hover,
.send-btn:hover {
  background: #ffa012;
  color: #fff !important;
  box-shadow: 0 7.5px 15px rgb(33 33 33 / 20%);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.hire-us a,
.subscribe-btn {
  background: #ef6aa7;
  color: #fff !important;
  border-bottom-right-radius: 50px;
  margin: 0 0 0 10px;
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-block;
  transition: 0.3s;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
}

.hire-us a:hover,
.subscribe-btn:hover {
  background: #be018b;
  box-shadow: 0 7.5px 15px rgb(33 33 33 / 20%);
  color: #fff !important;
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #433f39;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
  color: #ffb03b;
}

.nav-menu .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

.mobile-buttonlist li {
  list-style-type: none;
  display: inline-block;
}


/* Mobile Navigation */

.mobile-nav-toggle {
  position: fixed;
  right: 10%;
  top: 21px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #f39c00;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #433f39;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  font-size: 13px;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #ffb03b;
  text-decoration: none;
}

.mobile-nav .join-us a {
  background: #ffb03b;
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  display: inline-block;
}

.mobile-nav .join-us a:hover {
  background: #ffa012;
  color: #fff;
}

.mobile-nav .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(39, 37, 34, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  background: url(../img/hero-bg.jpg);
  position: relative;
  padding: 120px 0 0 0;
  height: 100vh;
  overflow: hidden;
}

#hero:before {
  content: "";
  background: rgba(2, 5, 161, 0.91);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero-container {
  height: calc(100% - 120px);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

#hero .carousel-item {
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .carousel-content {
  width: 80%;
  text-align: left;
  margin: 0 auto 30px auto;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 800;
}

#hero h2 span {
  color: #f39c00;
  font-weight: 300;
  display: block;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
  opacity: 1;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-menu,
#hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  color: #fff;
  border: 2px solid #ffb03b;
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
  background: #ffb03b;
  color: #fff;
}

.mobile-buttonlist {
  margin: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  #hero .carousel-content {
    width: 70%;
    margin: 0 auto 30px 30%;
  }
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-weight: 900;
  font-size: 45px;
  color: #0054a4;
  line-height: 45px;
}

.section-title h2 span {
  color: #f39c00;
  display: block;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 300;
  font-size: 13px;
  color: #848484;
  line-height: 22px;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
  padding: 20px 0;
  background-color: #f2f1ef;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.bt_bb_section_bottom_section_coverage_image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.top-shape {
  position: absolute;
  top: -20px;
  left: 0;
}

.dance {
  -webkit-animation: dance 2s alternate infinite;
}

@keyframes dance {
  0% {
    -webkit-transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

.bt_bb_section_top_section_coverage_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.bt_bb_section_bottom_section_coverage_image img,
.bt_bb_section_top_section_coverage_image img {
  width: 100%;
  height: auto;
  display: block;
}

.about {
  background: #fff;
  padding-top: 60px;
  position: relative;
}

.divStyle {
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 250px;
}

.about .content {
  padding: 0 140px 0 0;
  position: relative;
}

.about .content h3 {
  font-weight: 900;
  font-size: 45px;
  color: #0054a4;
  line-height: 45px;
}

.about .content h3 span {
  color: #f39c00;
  display: block;
}

.about .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.about .content p {
  font-size: 13px;
  color: #848484;
  line-height: 22px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

. .about .content p:last-child {
  margin-bottom: 0;
}

.about .video-box {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  position: relative;
  margin-left: -16px;
  min-height: 450px;
  padding-top: 33px;
}

.about .d .item,
.about .d {
  width: 93% !important;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ffb03b 50%, rgba(255, 176, 59, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 176, 59, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #ffb03b;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .about .content,
  .about .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .about .content {
    padding-top: 30px;
  }
  .about .accordion-list {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# our-services
--------------------------------------------------------------*/

.our-services {
  background-color: #edf5fc;
  position: relative;
  padding: 60px 0 120px;
}

.box {
  padding: 30px 20px;
  min-height: 330px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.bb-services-content {
  padding-left: 20px;
}

.box span {
  display: block;
  width: 60px;
  height: 60px;
  overflow: hidden;
}

.bb-services-content h4 {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #6c665c;
}

.bb-services-content p {
  font-size: 13px;
  color: #848484;
  line-height: 22px;
  margin-bottom: 10px;
  padding: 0;
}

.our-services .container {
  position: relative;
  z-index: 9;
}

.box:hover {
  background: #fdebcb;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: #fff;
}

.read-more-btn {
  font-size: 13px;
  text-decoration: underline;
}

img {
  max-width: 100%;
}


/*--------------------------------------------------------------
# Enquiry Now
--------------------------------------------------------------*/

.join-us {
  margin-top: -100px;
  position: relative;
  z-index: 1;
}

.join-container {
  background: linear-gradient( 100deg, #ef6aa7, #f38700);
  box-shadow: 0 0 24px 0 rgb(0 0 0 / 12%);
  border-radius: 50px;
  padding: 40px;
  border-bottom-right-radius: 0;
}

.send-btn {
  background: #0054a4;
  color: #fff !important;
  border-top-left-radius: 50px;
  margin: 0 0 0 10px;
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
}

.send-btn:hover {
  background: #044583;
  color: #fff !important;
  box-shadow: 0 7.5px 15px rgb(33 33 33 / 20%);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.join-container .section-title h2 {
  color: #fff;
  font-size: 35px;
}

.join-container .section-title p {
  color: #fff;
}

.join-us .php-email-form .form-group {
  padding-bottom: 8px;
}

.join-us .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.form-control {
  font-size: 13px;
  padding: 10px 25px;
  height: 46px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.form-control:focus {
  border: 1px solid rgba(34, 34, 34, .25);
  -webkit-box-shadow: 0 20px 30px rgb(34 34 34 / 7%);
  box-shadow: 0 20px 30px rgb(34 34 34 / 7%);
}


/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/

.products {
  background-image: url(../img/bgn-white-top-with-shapes.png);
  background-color: rgb(241, 241, 241);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 60px 0;
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio {
  padding: 60px 0 0;
  position: relative;
}

.portfolio-item {
  background: url(../img/website-screenshot-background.png) no-repeat;
  background-size: 70%;
  background-position: center;
  text-align: center;
}

.owl-carousel .owl-item .portfolio-item img {
  width: 70%;
  display: inline-block;
}

.portfolio:after {
  content: "";
  position: absolute;
  background: #0054a4;
  width: 100%;
  height: 150px;
  bottom: 0;
}

.portfolio .owl-nav {
  text-align: center;
}

.portfolio .owl-carousel .owl-nav button.owl-next,
.portfolio .owl-carousel .owl-nav button.owl-prev,
.portfolio .owl-carousel button.owl-dot {
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 51px;
  line-height: 40px;
  background: transparent;
}

.portfolio .container {
  position: relative;
  z-index: 99;
}

.portfolio .bt_bb_section_bottom_section_coverage_image {
  bottom: 150px;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
  padding: 40px 0 20px;
  border-bottom: 2px dashed #ffb03b;
}

.owl-carousel .owl-item .clients-item img {
  width: auto;
  max-width: 100%;
  display: inline-block;
}


/*--------------------------------------------------------------
# Subscribe
--------------------------------------------------------------*/

.subscribe {
  padding: 40px 0;
}

.subscribe .section-title {
  max-width: 90%;
}

.subscribe .form-control {
  border: 1px solid rgba(34, 34, 34, .25);
  -webkit-box-shadow: 0 20px 30px rgb(34 34 34 / 7%);
  box-shadow: 0 20px 30px rgb(34 34 34 / 7%);
  width: calc(100% - 190px);
  float: left;
}

input:not([type=checkbox]):not([type=radio]):not([type=submit]):focus,
textarea:focus,
.fancy-select .trigger.open,
select:focus {
  -webkit-box-shadow: 0 7.5px 15px rgb(34 34 34 / 20%);
  box-shadow: 0 7.5px 15px rgb(34 34 34 / 20%);
}

.subscribe .bt_bb_section_bottom_section_coverage_image {
  right: 0;
  left: auto;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(12, 11, 10, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 40px;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
  font-family: 'Raleway', sans-serif;
}

.testimonials .testimonial-item .stars {
  color: #ffb03b;
  margin-bottom: 10px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
  font-size: 13px;
}

.testimonials .owl-nav,
.testimonials .owl-dots,
.products .owl-nav,
.products .owl-dots,
.product-details-box .owl-nav,
.product-details-box .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot,
.products .owl-dot,
.product-details-box .owl-dots {
  display: inline-block;
  margin: 0 5px;
  width: 25px;
  opacity: 0.7;
  height: 5px;
  transition: all 0.3s ease;
  border-radius: 0;
  box-shadow: 0px 3px 8px 0px rgb(0 0 0 / 25%);
  background-color: #ffb03b !important;
}

.testimonials .owl-dot.active,
.products .owl-dot.active,
.product-details-box .owl-dots.active,
.testimonials .owl-dot:hover,
.products .owl-dot:hover,
.product-details-box .owl-dots:hover {
  background-color: #ffb03b !important;
  width: 40px;
  opacity: 1;
}

.carCircle .circle {
  width: 6px !important;
  height: 25px !important;
  border-radius: 0 !important;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact {
  padding: 60px 0 0;
}

.map iframe {
  vertical-align: bottom;
}

.contact .container {
  position: relative;
  z-index: 9;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: url(../img/footer-bg.png) no-repeat;
  background-size: 100%;
  text-align: center;
  padding: 50px 0 15px;
  position: relative;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #ffb03b;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.bottom-footer {
  border-top: 1px solid rgb(0 0 0 / 20%);
  padding: 20px 0 0;
  margin-top: 10px;
}

#footer p {
  font-size: 12px;
  font-style: italic;
  padding: 0;
}

#footer .social-links {
  text-align: right;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #ffb03b;
  transition: all .8s ease;
  background: rgba(255, 255, 255, 0.9);
  line-height: 36px;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
}

#footer .social-links a:hover {
  background: #106eea;
  color: #fff;
}

#footer .copyright {
  font-size: 12px;
  line-height: 22px;
  text-align: left;
}

.footer-logo img {
  max-height: 80px;
}

.footer-address li {
  display: inline-block;
  padding: 8px 20px;
  font-size: 13px;
  border-right: 1px solid rgb(0 0 0 / 20%);
}

.footer-address li:last-child {
  border: none;
}


/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/

#header.inner-header,
.inner-bodyarea .topbar {
  background: rgba(2, 5, 161, 0.91);
}

#header.inner-header.header-scrolled {
  background: #fff;
}

.inner-banner {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  margin-top: 95px;
  background-size: cover !important;
}

.inner-banner:before {
  content: ' ';
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  right: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, .8);
}

.inner-banner .container {
  position: relative;
  z-index: 9;
}

.code-ic img {
  width: 130px;
}

.inner-banner h2 {
  font-weight: 900;
  font-size: 25px;
  color: #0054a4;
  line-height: 35px;
}

.enquiry-form {
  padding: 40px 20px;
  background: linear-gradient( 100deg, #ef6aa7, #f38700);
  box-shadow: 0 0 24px 0 rgb(0 0 0 / 12%);
  border-radius: 50px;
  border-bottom-right-radius: 0;
}

.our-servicesinner {
  background-color: #edf5fc;
  position: relative;
  padding: 60px 0;
}


/*--------------------------------------------------------------
# Why Choose Us
--------------------------------------------------------------*/

.why-choose-block {
  padding: 60px 0;
  background: #0054a4;
  position: relative;
}

.why-img img {
  width: 100%;
}

.why-box {
  min-height: 100px;
}

.why-box h2 {
  font-size: 18px;
  font-weight: 700;
}

.why-box p {
  font-size: 13px;
}

.numbering {
  width: 35px;
  height: 35px;
  display: inline-block;
  background: #ffb03b;
  text-align: center;
  line-height: 35px;
  color: #fefefe;
  border-radius: 8px;
  float: left;
  border-top-right-radius: 0;
  font-size: 16px;
  font-weight: 700;
  margin-right: 7px;
}

.choose-content {
  width: calc(100% - 50px);
  float: left;
}


/*--------------------------------------------------------------
# Product Details
--------------------------------------------------------------*/

.product-details-box {
  padding: 60px 0;
  background: #edf5fc;
}

.product-details-box .section-title h2 span {
  display: inline-block;
}

.product-details-box p {
  font-size: 13px;
}

/**
 * Modals ($modals)
 */

/* 1. Ensure this sits above everything when visible */
.language{    margin-right: 77px;
    display: inline-block;
    font-size: 14px;}
.languagemodal {
    position: absolute;
    z-index: 10000; /* 1 */
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
}
.language .modal-toggle{color: #ffb03b}
.languagemodal-content ul{ padding: 0; }
.languagemodal-content li{ display: list-item; list-style-type: none; padding: 10px 0; border-top: 1px solid #eee;}
.languagemodal-content li:first-child{ border: none; }

.languagemodal.is-visible {
    visibility: visible;
}

.languagemodal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.languagemodal.is-visible .languagemodal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.languagemodal-wrapper {
  position: absolute;
  z-index: 9999;
  top: 6em;
  left: 50%;
  width: 32em;
  margin-left: -16em;
  background-color: #fff;
  box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
}

.modal-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}

.languagemodal.is-visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
}

.languagemodal-header,
.languagemodal-content {
  padding: 1em;
}

.languagemodal-header {
  position: relative;
  background-color: #fff;
  box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.06);
  border-bottom: 1px solid #e8e8e8;     min-height: 35px;
}

.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1em;
  color: #aaa;
  background: none;
  border: 0;
}

.modal-close:hover {
  color: #777;
}


.languagemodal-content > *:first-child {
  margin-top: 0;
}

.languagemodal-content > *:last-child {
  margin-bottom: 0;
}

.languagemodal-heading {
  font-size: 1.125em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}