/* ------------------------------------------------------------------------------

  Template Name: Bauhaus
  Description: Bauhaus - OnePage Architecture & Interior HTML Template
  Author: Murren
  Version: 1.0
  
  1.  Global

      1.1 General
      1.2 Typography
      1.3 Fields
      1.4 Buttons
      1.5 Icons
      1.6 Loader
      1.7 Helpers

  2.  Navbar 

      2.1 Navbar elements
      2.2 Navbar affix
      2.3 Sidebar Menu
      
  3.  Homepage

      3.1 Jumbotron
      3.2 Slider
      3.3 Section About
      3.4 Section Projects

          3.4.1 Projects Carousel

      3.5 Section Clients
      3.6 Section Partners
      3.7 Section Team
      3.8 Section Contacts
      3.9 Footer

  4.  Homepage v2

      4.1 Navbar
      4.2 Sections
      4.3 Section About
      4.4 Section Projects
      4.5 Section Partners
      4.6 Section Testimonials 
      4.7 Section Contacts

  5. Responsive styles

      5.1 Min width: 768px
      5.2 Min width 992px
      5.3 Min width 1200px 
      5.4 Min width 1550px 
      5.5 Min height 500px
      5.6 Min height 600px
      5.7 Min height 700px


      
/*-------------------------------------------------------------------------------
 1. Global
-------------------------------------------------------------------------------*/

/* 1.1 General */

@import url("bootstrap.min.css?v=4");

/*@import url('ionicons.min.css');
@import url('linearicons.css');
@import url('animate.css');*/
@import url("magnific-popup.css");
@import url("jquery.pagepiling.css");

@import url("navigation.css");

/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

:root {
  --baseSize: 13px;
}

html {
  font-size: 13px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Poppins", "Prompt", sans-serif !important ;
  /* font-family:  'Poppins' , "Noto Sans Thai", sans-serif;*/
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 2.1428;
  color: #666666;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}
p {
  font-family: "Poppins", "Noto Sans Thai", sans-serif !important ;
}
.fnNoto {
  font-family: "Poppins", "Noto Sans Thai", sans-serif !important ;
}
body {
  -webkit-animation-delay: 0.1s;
  -webkit-animation-name: fontfix;
  -webkit-animation-duration: 0.1s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
}

@-webkit-keyframes fontfix {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}

#main-slider .active .animation.animated-item-1 {
  -webkit-animation: fadeInUp 300ms linear 300ms both;
  -moz-animation: fadeInUp 300ms linear 300ms both;
  -o-animation: fadeInUp 300ms linear 300ms both;
  -ms-animation: fadeInUp 300ms linear 300ms both;
  animation: fadeInUp 300ms linear 300ms both;
}

#main-slider .active .animation.animated-item-2 {
  -webkit-animation: fadeInUp 300ms linear 600ms both;
  -moz-animation: fadeInUp 300ms linear 600ms both;
  -o-animation: fadeInUp 300ms linear 600ms both;
  -ms-animation: fadeInUp 300ms linear 600ms both;
  animation: fadeInUp 300ms linear 600ms both;
}

#main-slider .active .animation.animated-item-3 {
  -webkit-animation: fadeInUp 300ms linear 900ms both;
  -moz-animation: fadeInUp 300ms linear 900ms both;
  -o-animation: fadeInUp 300ms linear 900ms both;
  -ms-animation: fadeInUp 300ms linear 900ms both;
  animation: fadeInUp 300ms linear 900ms both;
}

#main-slider .active .animation.animated-item-4 {
  -webkit-animation: fadeInUp 300ms linear 1200ms both;
  -moz-animation: fadeInUp 300ms linear 1200ms both;
  -o-animation: fadeInUp 300ms linear 1200ms both;
  -ms-animation: fadeInUp 300ms linear 1200ms both;
  animation: fadeInUp 300ms linear 1200ms both;
}
.body-fullpage {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #fac832;
  border-radius: 10px;
}

::selection {
  background-color: #fac832;
  color: #fff;
}

-webkit-::selection {
  background-color: #fac832;
  color: #fff;
}

::-moz-selection {
  background-color: #fac832;
  color: #fff;
}

#promotion-package h1 {
  color: #fff;
  font-size: 2rem;
}

#promotion-package .page-webdesign h1 {
  color: #002482;
  font-size: 2.5rem;
  margin: 0px;
  padding: 0px;
}
#promotion-package .page-webdesign h2 {
  color: #002482;
  font-size: 1.75rem;
  margin: 0px;
  padding: 0px;
}

.section-title.page-google-seo h1 {
  color: #002482;
  font-size: 2.5rem;
  margin: 0px;
  padding: 0px;
}
.section-title.page-google-seo h2 {
  color: #002482;
  font-size: 2.75rem;
  margin: 0px;
  padding: 0px;
}

/* 1.2 Typography */

h1,
.h1 {
  font-size: 3.428rem;
  line-height: 1.2;
  font-weight: 600;
  color: #002482;
  letter-spacing: -0.025em;
  margin: 0.5em 0;
}

h2,
.h2 {
  font-weight: 600;
  font-size: 2.571rem;
  line-height: 1.166;
  /*color: #002482;*/
  color: #011d35;
  letter-spacing: 0;
  margin: 2.6rem 0 1rem 0;
}

h3,
.h3 {
  font-weight: 600;
  font-size: 2.142rem;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: #002482;
  margin: 2.6rem 0;
}

h4,
.h4 {
  font-weight: 600;
  font-size: 1.714rem;
  line-height: 1.25;
  letter-spacing: 0.025em;
  color: #002482;
  margin: 2.6rem 0;
}

h5,
.h5 {
  font-weight: 600;
  font-size: 1.571rem;
  line-height: 1.1;
  letter-spacing: 0;
  color: #002482;
  margin: 2.6rem 0;
}

h6,
.h6 {
  font-weight: 600;
  font-size: 1.285rem;
  line-height: 1.3333;
  letter-spacing: 0;
  color: #002482;
  margin: 2.6rem 0;
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
  color: inherit;
}

h1 a:hover,
.h1 a:hover,
h2 a:hover,
.h2 a:hover,
h3 a:hover,
.h3 a:hover,
h4 a:hover,
.h4 a:hover,
h5 a:hover,
.h5 a:hover,
h6 a:hover,
.h6 a:hover {
  text-decoration: none;
}

strong {
  font-weight: 600;
}

p,
blockquote {
  margin-bottom: 2.6rem;
}

a {
  color: #fac832;
  -webkit-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}

a:hover,
a:focus {
  color: #fac832;
  outline: none;
}

a:focus {
  text-decoration: none;
}

/* 1.3 Fields */

input[type="text"],
input[type="address"],
input[type="url"],
input[type="password"],
input[type="email"],
input[type="search"],
input[type="tel"],
textarea {
  display: inline-block;
  width: 100%;
  font-size: 1rem;
  border-radius: 0.75em;
  color: #3d3d3d;
  background-color: #fff;

  border: 1px solid #e5eef8;
  border-radius: 0;
  padding: 0.1rem 1rem 0;
  height: 3em;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -webkit-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
  transition: all 0.3s;
}

textarea {
  padding-top: 0.8rem;
  height: 15rem;
  resize: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #e5eef8;
}

input[type="text"]:focus,
input[type="address"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}

input.input-gray,
textarea.input-gray {
  background: #f6f6f6;
}

input.input-gray:focus,
textarea.input-gray:focus {
  background: #fff;
}

input::-moz-placeholder {
  color: #999999;
  opacity: 1;
}

input:-ms-input-placeholder {
  color: #999;
}

input::-webkit-input-placeholder {
  color: #999;
}

textarea::-moz-placeholder {
  color: #999;
  opacity: 1;
}

textarea:-ms-input-placeholder {
  color: #999;
}

textarea::-webkit-input-placeholder {
  color: #999;
}

.form-group {
  margin-bottom: 30px;
}

input.error {
  border-color: #fac832;
}

.mc-label,
label.error {
  font-size: 0.93em;
  font-weight: 400;
  margin: 0.7em 0 0 0;
  color: #747474;
}

/* 1.4 Buttons */

.btn {
  color: #fff;
  letter-spacing: 0.025em;

  display: inline-block;
  border: 0;
  border-radius: 5px;

  background-color: #0f3564;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out !important;
  transition: all 0.3s ease-out !important;
  line-height: 1.42857143;
  min-width: 250px;
  background-image: linear-gradient(
    90deg,
    #0f3564 0%,
    #0065e3 50%,
    #1b2968 100%
  );
  background-size: 200% auto;

  font-size: 1.2rem;
  line-height: 35px;
  padding: 5px 0px;
  height: 45px;
}

.btn.btn-sm {
  min-width: 150px;
  font-size: 1rem;
  line-height: 25px;
  border-radius: 2px;
  padding: 5px 10px;
  height: 35px;
}

.btn:hover,
.btn:focus {
  background-position: right center;
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none !important;
}

.btn-upper {
  font-weight: 600;
  text-transform: uppercase;
}

.btn-yellow {
  color: #000000;
  letter-spacing: 0.025em;
  font-size: 1rem;
  display: inline-block;

  border-radius: 0;
  padding: 10px 15px;
  background-color: #ffc107;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out !important;
  transition: all 0.3s ease-out !important;
  background-image: linear-gradient(
    95deg,
    #ffc107 0%,
    #107dd5 51%,
    #ffe500 100%
  ); /* ffe500 */
  background-size: 200% auto;
  line-height: 1.42857143;

  border: 1px solid #01122dad;
  box-shadow: 0px 0px 10px #002e6973;
}

.btn-yellow:hover,
.btn-yellow:focus {
  text-decoration: none;
  background-position: right center; /* change the direction of the change here */
}

.form-control {
  font-size: 1rem;
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #e5eef8;

  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  font-size: 1rem;
  height: 3em;
  padding: 0.1rem 1rem 0;
}

/* 1.5 Icons */

.icon {
  display: inline-block;
  font-size: 4.2rem;
}

.link-arrow {
  display: inline-block;
  color: #000;
  line-height: 1 !important;
  font-weight: 600;
}

.link-arrow .icon {
  position: relative;
  top: 0.1rem;
  margin-left: 0.7rem;
  font-size: 2.1em;
  vertical-align: middle;
  -webkit-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
}

.link-arrow .ion-ios-arrow-right {
  font-size: 1.5em;
}

.link-arrow:hover {
  color: #fac832;
  text-decoration: none;
}

.link-arrow:hover .icon {
  -webkit-transform: translateX(0.5rem);
  -o-transform: translateX(0.5rem);
  transform: translateX(0.5rem);
}

/* 1.6 loader */

.loader {
  position: fixed;
  overflow: hidden;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #4b4b4b;
  text-align: center;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fac832;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/* 1.7 Helpers */

.text-dark {
  color: #000;
}

.text-muted {
  color: #999;
}

.text-white {
  color: #fff;
}

.text-primary {
  color: #fac832;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.rel-1 {
  position: relative;
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.visible-xl {
  display: none;
}

/*-------------------------------------------------------------------------------
  2. Navbar
-------------------------------------------------------------------------------*/

.top-bar-promo span.icon {
  border: 2px solid #fff;
  border-radius: 5px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  margin-right: 5px;
  text-align: center;
  margin: 0px 5px 0px 10px;
  text-align: center;
  padding-left: 2.5px;
}

.top-bar-promo .top-btn-line {
  border: 0px solid #ffffff;
  padding: 0px 10px 0px 5px;
  margin-left: 0px;
  border-radius: 3px;
  /*background: #00B900;*/
  color: #ffffff !important;
  margin: 0px !important;
}

.top-btn-phone,
.top-btn-career {
  border-right: 1px solid #f7f7f76e;
  border-left: 1px solid #353535;
  padding: 0px 10px 0px 5px;
  height: 40px;

  margin-left: 0px !important;
}
.top-btn-phone {
  margin-left: 15px !important ;
}

.top-bar-promo .top-btn-line span.icon {
  border: 0px;
  margin-left: 0px;
}
.top-bar-promo .top-btn-line span.icon i {
  font-size: 18px;
  color: #fff;
}
.top-bar-promo {
  /*background: linear-gradient(to right, #022b55 40%, #0051a5 100%);*/
  /*background-image: linear-gradient(137deg, #001a51 30%, #107dd5 75%, #4CAF50  100%);*/
  background-image: linear-gradient(
    137deg,
    #d4e4ff 30%,
    #cf066d 75%,
    #673ab7 100%
  ); /* 081631  002992 */
  color: #06154c;
  font-size: 13px;
  font-weight: 400;
  padding: 0px 5px 0px 20px;
  font-family: "Prompt", sans-serif;   
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 40px;
  top: 0px;
  width: 100%;
  z-index: 1000;
  position: absolute;
}

.top-bar-promo .promo-text {
  font-weight: 400;
}

.top-bar-promo .top-contact {
  font-size: 13px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-family: "Poppins", "Prompt", sans-serif;
}

.top-bar-promo .top-contact span,
.top-bar-promo .top-contact a {
  color: #eee;
  text-decoration: none !important;
  margin-left: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.top-bar-promo .top-contact a:hover {
  text-decoration: none;
  color: #fff;
}
.top-bar-promo .top-contact i {
  margin-right: 5px;
  font-size: 12px;
}

.top-bar-promo .top-contact a:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .top-bar-promo {
    align-items: flex-start;
    height: 45px;
    overflow: hidden;
    line-height: 140%;
    padding-top: 0px;
  }
  .top-bar-promo .promo-text {
    padding-top: 10px;
  }
  .top-bar-promo .top-contact {
    margin-top: 0px;
  }
  .top-bar-promo .top-contact a.top-btn-career {
    display: none;
  }
  .hero-banner-service ul li {
    width: 220px !important;
  }
  .hero-banner-service ul li img {
    height: 45px !important;
    width: auto;
  }
}

@media (max-width: 820px) {
  .top-bar-promo {
    align-items: flex-start;
    height: 45px;
    overflow: hidden;
    line-height: 140%;
    padding-top: 5px;
  }
  .top-bar-promo .top-contact {
    margin-top: 8px;
  }
  .hero-banner-service ul li {
    width: 250px;
  }
}

@media (max-width: 600px) {
  .rev-img-showcase {
    width: 100%;
  }
  .top-bar-promo {
    height: 50px !important;

    padding-top: 0px !important;
  }

  .top-bar-promo .promo-text {
    padding-top: 5px !important;
    text-align: left;
    font-size: 11px;
  }

  .hero-banner-service ul li {
    width: 33% !important;
    padding: 10px;
  }
  .hero-banner-service ul li img {
    height: 25px !important;
  }

}

#main {
  margin-top: 40px;
  min-height: 550px;
}
.navbar {
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 1.5rem;
  height: 5rem;
  margin: 0;
  border-radius: 0;
  border: 0;
  position: absolute;
  top: 40px;
  border-bottom: 1px solid #ffffff00;
}

.navbar .brand {
  float: left;
  margin-top: -0.5rem;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

/* 2.1 Navbar elements */

.brand {
  line-height: 1.6;
  color: #000;
  display: inline-block;
}

a.brand:hover,
a.brand:focus {
  text-decoration: none;
  color: #000;
}

.brand img {
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
  height: 3rem;
}

.brand-info {
  display: inline-block;
}

.brand-name {
  font-weight: 600;
  font-size: 1.714rem;
  line-height: 1;
}

.brand-text {
  color: #868686;
  font-size: 0.857rem;
  font-weight: 300;
  margin-top: -0.3rem;
  letter-spacing: 1.3px;
}

.navbar-toggle {
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0;
  margin-left: 1rem;
  margin-top: 0.7rem;
}

.navbar-toggle .icon-bar {
  background-color: #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navbar-toggle:hover .icon-bar {
  background-color: #fac832;
}

.navbar .social-list {
  float: right;
}

.social-list {
  overflow: hidden;
}

.social-list a {
  float: left;
  font-size: 1.8rem;
  line-height: 1;
  color: #000;
  margin-left: 1rem;
}

.social-list a:first-child {
  margin-left: 0;
}

.social-list a:hover {
  color: #fac832;
  text-decoration: none;
}

.navbar-spacer {
  margin: -1rem 1.5rem 0 1.5rem;
  width: 1px;
  height: 3.3rem;
  background-color: #e0e0e0;
}

.navbar-address {
  float: left;
  margin-left: 4.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

.navigation {
  margin-top: -0.3rem;
  font-size: 13px;
  font-weight: 600;

  margin-left: 20px;
  float: right;
}

.navigation ul {
  list-style: none;
}

.navigation ul li {
  float: left;
  margin-right: 2.6rem;
}

.navigation ul li:last-child {
  margin-right: 0;
}

.navigation ul li a {
  color: #fff;
}

.navbar-white {
  background: #fff; /* rgb(0 0 0 / 0.30); ; */
}

.navbar-white .navigation ul li a {
  color: #000;
}
.navbar.affix .navigation ul li a {
  color: #000;
}

.navigation ul .active a,
.navigation ul li a:hover {
  color: #ffffff;
  text-decoration: none;
}

.navbar-white .navigation ul li.active {
  border-bottom: 1px solid #ffffff;
}
.navbar-white .navigation ul li a:hover {
  color: #ffffff;
}
.navbar-white .navigation ul li.active a {
  color: #ffffff;
}

/* 2.2 Navbar affix */

.navbar.affix {
  position: fixed;
  box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
  background: rgb(0 0 0 / 0.5);
  top: 0px;
  padding-top: 1.7rem;
  height: 5rem;
}

.navbar .brand {
  margin-top: -10px;
}

.navbar.affix.navbar-white .navigation ul li a {
  color: #fff;
}
.navbar.affix .navigation ul li a {
  color: #fff;
}

.navbar.affix .navigation ul .active a,
.navbar.affix .navigation ul li a:hover {
  color: #fff;
  text-decoration: none;
}

.navbar.affix.navbar-white .navigation ul li.active {
  border-bottom: 1px solid #fff;
}
.navbar.affix.navbar-white .navigation ul li a:hover {
  color: #fff;
}
.navbar.affix.navbar-white .navigation ul li.active a {
  color: #fff;
}
/* 2.3 Sidebar menu */

.click-capture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.3);
  transition: opacity 0.5s;
}

.menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  background-color: #fff;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.close-menu {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1;
  color: #000;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.close-menu:hover {
  color: #fac832;
}

.menu .menu-lang {
  font-size: 1.2rem;
  opacity: 0;
  position: absolute;
  opacity: 0;
  left: 15%;
  top: 3rem;
  text-transform: uppercase;
  -webkit-transform: translateY(3rem);
  -ms-transform: translateY(3rem);
  -o-transform: translateY(3rem);
  transform: translateY(3rem);
  -webkit-transition: transform 0.5s 0.4s ease, opacity 0.5s 0.4s ease,
    color 0.3s ease;
  -o-transition: transform 0.5s 0.4s ease, opacity 0.5s 0.4s ease,
    color 0.3s ease;
  transition: transform 0.5s 0.4s ease, opacity 0.5s 0.4s ease, color 0.3s ease;
}

.menu-lang a {
  display: inline-block;
  margin-left: 1.5rem;
  color: #999999;
}

.menu-lang a:first-child {
  margin-left: 0;
}

.menu-lang .active,
.menu-lang a:hover {
  color: #fac832;
  text-decoration: none;
}

.mobile-menu ul {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 9rem;
  bottom: 10.5rem;
  padding-left: 15%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  font-weight: 600;
  letter-spacing: -0.025rem;
  list-style: none;
  margin: 0;
  -webkit-transform: translateY(3rem);
  -ms-transform: translateY(3rem);
  -o-transform: translateY(3rem);
  transform: translateY(3rem);
  -webkit-transition: transform 0.5s 0.6s ease, opacity 0.5s 0.6s ease;
  -o-transition: transform 0.5s 0.6s ease, opacity 0.5s 0.6s ease;
  transition: transform 0.5s 0.6s ease, opacity 0.5s 0.6s ease;
}

.mobile-menu ul li a {
  color: #999999;
}

.mobile-menu ul .active > a,
.mobile-menu ul .active,
.mobile-menu ul li a:hover {
  text-decoration: none;
  color: #000;
}

.mobile-menu ul > li {
  font-size: 1.65rem;
  line-height: 1;
}

.mobile-menu ul > li {
  margin-top: 1.6rem;
}

.mobile-menu ul > li:first-child {
  margin-top: 0;
}

.menu-footer {
  position: absolute;
  left: 15%;
  bottom: 4rem;
}

.menu-footer .social-list {
  opacity: 0;
  -webkit-transform: translateY(3rem);
  -ms-transform: translateY(3rem);
  -o-transform: translateY(3rem);
  transform: translateY(3rem);
  -webkit-transition: all 0.5s 0.7s ease;
  -o-transition: all 0.5s 0.7s ease;
  transition: all 0.5s 0.7s ease;
}

.menu-footer .social-list a {
  color: #b1b1b1;
  margin: 0;
  margin-right: 2.7rem;
}

.menu-footer .social-list a:last-child {
  margin-right: 0;
}

.menu-footer .social-list a:hover {
  color: #fac832;
}

.menu-footer .copy {
  opacity: 0;
  display: none;
  margin-top: 3.2rem;
  color: #000;
  line-height: 1.71rem;
  -webkit-transform: translateY(2rem);
  -ms-transform: translateY(2rem);
  -o-transform: translateY(2rem);
  transform: translateY(2rem);
  -webkit-transition: all 0.5s 0.9s ease;
  -o-transition: all 0.5s 0.9s ease;
  transition: all 0.5s 0.9s ease;
}

.menu-is-opened .click-capture {
  visibility: visible;
  opacity: 1;
}

.menu-is-opened .menu {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
}

.menu-is-opened .menu .menu-lang,
.menu-is-opened .menu-list,
.menu-is-opened .menu .menu-footer .social-list,
.menu-is-opened .menu .menu-footer .copy {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  opacity: 1;
}

.menu-is-closed .menu .menu-lang,
.menu-is-closed .menu .menu-list,
.menu-is-closed .menu .menu-footer .social-list,
.menu-is-closed .menu .menu-footer .copy {
  opacity: 0;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

/*-------------------------------------------------------------------------------
  3. Homepage
-------------------------------------------------------------------------------*/

.wrapper {
  padding-top: 7rem;
  overflow-x: hidden;
}

.boxed {
  padding-left: 1.7rem;
  padding-right: 1.7rem;
}

.boxed .container,
.boxed .container-fluid {
  padding: 0;
  max-width: 100%;
}

.left-boxed {
  left: 1.7rem;
}

.right-boxed {
  right: 1.7rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  margin: 0;
}

.section-title .link-arrow-2 {
  margin-top: 1.05rem;
}

.section-subtitle {
  display: inline-block;
  font-weight: 500;
  font-size: 1.142rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fac832;
  margin-bottom: 1rem;
}

/* 3.1 Jumbotron */

.jumbotron {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  color: #fff;
  background-color: #fff;
}

/* 3.2 Slider */

.rev_slider .link-arrow {
  color: #fff;
}

.rev_slider .link-arrow:hover {
  color: #fac832;
}

.rev_slider .link-arrow:hover .icon {
  -webkit-transform: none;
  -o-transform: none;
  transform: none;
}

/* 3.3 Section About */

.section-about-title {
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.dots-image {
  display: inline-block;
  position: relative;
}

.dots-image img {
  display: block;
  position: relative;
  z-index: 1;
}

.dots-image .dots {
  position: absolute;
  left: -20%;
  bottom: -15%;
  width: 101%;
  height: 57.2%;
  background: url(../images/bg/dots.png) 0 0 repeat;
}

.experience-box {
  position: relative;
  white-space: nowrap;
  margin: 6rem 0;
}

@media (min-width: 992px) {
  .experience-box {
    margin-top: 6rem;
  }
}

@media (min-width: 1200px) {
  .experience-box {
    margin-top: 12.2rem;
  }
}

.experience-border {
  display: inline-block;
  vertical-align: middle;
  width: 12.15rem;
  height: 12.15rem;
  border: 0.357rem solid #fac832;
}

.experience-content {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  left: -8rem;
  top: 0.2rem;
}

.experience-number {
  display: inline-block;
  vertical-align: middle;
  font-size: 7.142rem;
  line-height: 1;
  font-weight: 600;
  color: #000;
}

.experience-info {
  display: inline-block;
  vertical-align: middle;
  margin: -1rem 0 0 0.8rem;
  font-size: 1.57rem;
  line-height: 1.181;
  color: #000;
}

.bg-dots {
  background: url(../images/bg/dots2.png) 0 0 repeat;
}

.section-info {
  color: #999999;
  line-height: 1.111;
  font-size: 1.28rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4rem;
}

.title-hr {
  width: 7rem;
  max-width: 100%;
  height: 0.28rem;
  background: #fac832;
}

.section-info .title-hr {
  margin: 0 0 2rem;
}

.info-title {
  width: 1px;
}

.row-services {
  margin: -4rem -2.5rem 0 -2.5rem;
}

.col-service {
  color: #333;
  margin-top: 4rem;
  padding: 0 2.5rem;
}

.col-service h4 {
  margin-top: 3.3rem;
}

.col-service p {
  margin-bottom: 0;
}

/* 3.4 Section Projects */

.section-projects {
  padding-bottom: 8rem;
}

.filter-content {
  position: relative;
  overflow: hidden;
}

.filter {
  list-style: none;
  font-size: 1.142rem;
  font-weight: 600;
  color: #000;
  padding-left: 0;
  margin: 0;
}

.filter li {
  margin: 0.6rem 2.6rem 0 0;
  display: inline-block;
}

.filter li:last-child {
  margin-right: 0;
}

.filter li a {
  color: inherit;
}

.filter li a:hover,
.filter .active a {
  color: #fac832;
  text-decoration: none;
}

.section-projects .filter-content {
  margin: 2rem 0 0 0;
}

.section-projects .filter {
  margin: 0;
}

.section-projects .view-projects {
  margin: 0.85rem 0 0 0;
}

.view-projects {
  display: inline-block;
  font-style: italic;
  color: #999999;
}

.view-projects:hover {
  text-decoration: none;
  color: #fac832;
}

/* 3.4.1 Projects Carousel */

.project-carousel {
  margin-top: 1.92rem;
}

.owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.owl-nav .disabled {
  color: #bcbcbc;
}

.owl-prev,
.owl-next {
  display: inline-block;
  font-size: 2.8rem;
  line-height: 1;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.owl-prev:before {
  font-family: "Ionicons";
  content: "\f3d2";
}

.owl-next:before {
  font-family: "Ionicons";
  content: "\f3d3";
}

.owl-prev:hover,
.owl-next:hover {
  color: #fac832;
}

.owl-dots {
  text-align: center;
  margin-top: 5.857rem;
}

.owl-dot {
  display: inline-block;
  vertical-align: top;
  margin: 0 0.6rem;
  border: 0px;
  background: none;
}

.owl-dot span {
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #cccccc;
}

.owl-dot.active span {
  background-color: #fac832;
}

.project-item {
  position: relative;
  display: block;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.project-item img {
  width: 100%;
}

.item-shadow {
  position: relative;
}

.item-shadow:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 46%,
    rgba(0, 0, 0, 0.6) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 46%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.project-item .link-arrow {
  position: absolute;
  z-index: 2;
  color: #fff;
  left: 3rem;
  bottom: 2.3rem;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.project-hover {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100.1%;
  height: 100%;
  padding: 4.85rem 3rem;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.project-title {
  color: #fff;
  margin: 0;
}

.project-hover .project-title {
  position: absolute;
  bottom: 5.5rem;
}

.project-description {
  opacity: 0;
  margin-top: 12%;
  line-height: 1.71;
  color: #333333;
  -webkit-transform: translateX(-1rem);
  -ms-transform: translateX(-1rem);
  -o-transform: translateX(-1rem);
  transform: translateY(-1rem);
}

.project-item:hover .project-hover {
  background-color: rgba(206, 224, 2, 0.85);
}

.project-item:hover .project-hover .project-title {
  position: relative;
  color: #000;
  bottom: 2rem;
  -webkit-transform: translateY(2rem);
  -ms-transform: translateY(2rem);
  -o-transform: translateY(2rem);
  transform: translateY(2rem);
  -webkit-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}

.project-item:hover .project-hover .project-description {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateY(0);
  -webkit-transition: all 0.4s 0.2s ease;
  -o-transition: all 0.4s 0.2s ease;
  transition: all 0.4s 0.2s ease;
}

.project-item:hover .link-arrow {
  color: #000;
}

.mfp-container {
  padding: 0;
}

@media (min-width: 900px) {
  .mfp-container {
    padding: 0;
  }
}

.zoom-anim-dialog {
  background: #fff;
  padding: 2.6rem;
  margin: 0 auto;
}

/*
* Fade-zoom animation for first dialog
*/
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-close-btn-in .mfp-close {
  color: #000;
}

.mfp-close {
  font-family: "Linearicons";
  line-height: 1;
  width: auto;
  height: auto;
  top: 0px;
  right: 8px;
  font-size: 2.6rem;
  transition: all 0.5s;
}

@media (min-width: 1200px) {
  .mfp-close {
    top: 5px;
    right: 15px;
  }
}

.project-detail-img {
  width: 100%;
  display: block;
}

.project-detail-title {
  font-size: 2.57rem;
  letter-spacing: -0.025em;
  line-height: 1.16666;
  margin: 4rem 0 3.4rem 0;
}

@media (min-width: 1200px) {
  .project-detail-img {
    padding-right: 7px;
  }

  .project-detail-title {
    font-size: 2.57rem;
    letter-spacing: -0.025em;
    line-height: 1.16666;
    margin: 2.5rem 0 2rem 0;
  }
}

.project-detail-list {
  list-style: none;
  padding-left: 0;
  margin-top: 3.6rem;
}

.project-detail-list li {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 0.6rem;
  margin-top: 0.65rem;
  overflow: hidden;
}

.project-detail-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.project-detail-list li .left {
  float: left;
  font-weight: 600;
}

.project-detail-list li .right {
  float: right;
}

.project-detail-meta {
  margin-top: 4.5rem;
  overflow: hidden;
}

.project-detail-meta .left {
  font-weight: 600;
}

/* 3.5  Section Clients */

.section-clients .section-title {
  margin-right: 7rem;
}

.client-carousel {
  margin-top: 4.8rem;
}

.client-carousel .client-carousel-item img {
  display: inline-block;
  width: auto;
}

.client-box {
  position: relative;
  color: #808080;
  background-color: #fff;
  padding: 6rem 3.28rem 3.28rem;
}

.image-quote {
  position: absolute;
  top: 3.28rem;
  right: 3.28rem;
}

.client-img {
  position: relative;
  z-index: 1;
  margin: 0 0 -3rem 2.6rem;
  border-radius: 50%;
}

.client-title {
  letter-spacing: 0;
}

.client-name {
  font-size: 1.28rem;
  line-height: 1;
  color: #000;
}

.client-description {
  margin: 1.5rem 0 0;
  line-height: 1.71em;
}

.client-carousel .owl-nav {
  right: 0;
  top: -7.8rem;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.client-carousel .owl-prev {
  margin-right: 2rem;
}

/* 3.6 Section Partners */

.partner-carousel {
  margin-top: 10.28rem;
}

.partner-carousel .partner-carousel-item img {
  width: auto;
  margin: 0 auto;
  opacity: 0.6;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.partner-carousel .partner-carousel-item:hover img {
  opacity: 1;
}

/* 3.7 Section Team */

.row-team {
  margin-top: -30px;
}

.col-team {
  margin-top: 30px;
}

.team-profile {
  position: relative;
}

.team-profile img {
  width: 100%;
  display: block;
}

.team-hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(206, 224, 2, 0.85);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.team-content {
  position: absolute;
  left: 1.857rem;
  bottom: 0.8rem;
}

.team-name {
  margin-bottom: 0.3rem;
}

.team-name h6 {
  margin: 0;
}

.team-social a {
  float: left;
  color: #000;
  font-size: 1.25rem;
  margin-right: 1.5rem;
}

.team-social a:hover {
  color: #fff;
  text-decoration: none;
}

.team-profile:hover .team-hover {
  opacity: 1;
}

.add-new-team {
  position: relative;
  border: 1px solid #bfbfbf;
  padding-top: 100%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.add-new-text {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  text-align: center;
  font-size: 1.285rem;
  line-height: 1.1111;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.add-new-text .inner {
  display: inline-block;
  text-align: left;
}

.add-new-team input[type="file"] {
  position: absolute;
  cursor: pointer;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.add-new-team:hover {
  background: #fac832;
  border-color: transparent;
}

/* 3.8 Section Contacts */

.map {
  width: 100%;
  height: 26rem;
  border: 0;
  text-align: center;
}

.map-info {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #666666;
  text-align: left;
  padding: 1.1rem;
}

.map-title {
  margin-bottom: 2rem;
}

.map-address-row {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.map-address-row .fa {
  margin-right: 0.5rem;
}

.gmap-open {
  margin: 2rem 0 0;
}

.row-contact {
  margin: -6rem -3.5rem 0;
}

.col-contact {
  margin-top: 6rem;
  padding: 0 3.5rem;
}

.contact-title {
  letter-spacing: 0;
  margin: 0;
}

.contact-top {
  margin-bottom: 1.3rem;
}

.contact-title span {
  color: #999;
  font-weight: 400;
}

.contact-address {
  font-size: 1.142rem;
  line-height: 1.875;
  letter-spacing: -0.025rem;
  margin-bottom: 2rem;
}

.contact-row {
  margin-bottom: 0.6rem;
}

.phone-lg {
  font-size: 2.142rem;
  line-height: 1.3;
  margin-bottom: 3.6rem;
}

.contact-social {
  margin-top: 1rem;
}

.contact-social a {
  color: #999999;
  font-size: 1.3rem;
}

.section-message {
  padding-top: 8rem;
}

/* 3.9 Footer */

.footer {
  color: #000;
  line-height: 1.71;
  padding-bottom: 2.5rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li a {
  color: #000;
}

.footer ul .active a,
.footer ul li a:hover {
  color: #fac832;
  text-decoration: none;
}

.footer-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-flex .flex-item {
  margin-top: 2rem;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.lang-list li {
  float: left;
}

.lang-list li + li {
  margin-left: 1.5rem;
}

.footer-flex .flex-item .social-list {
  float: left;
}

/*-------------------------------------------------------------------------------
  4. Homepage v2
-------------------------------------------------------------------------------*/

/* 4.1 Navbar */

.navbar-2 {
  background: transparent;
  padding-top: 3rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navbar-2 .navbar-bg {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -o-transition: all 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: all 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}

.navbar-2 .brand {
  width: 18rem;
}

.navbar-2 .navbar-address {
  float: left;
  margin-left: 5rem;
}

.navbar-2 .social-list {
  float: left;
  margin-left: 7.5rem;
}

.navbar-white .navbar-bg {
  height: 0;
}

.navbar-white .brand,
.navbar-white .brand:hover,
.navbar-white .brand:focus,
.navbar-white .brand-text,
.navbar-white .navbar-address,
.navbar-white .navbar-address .text-dark,
.navbar-white .social-list a {
  color: #ffffff;
}

.navbar-white .brand-img-white {
  display: none;
}

.navbar-white .brand-img {
  display: inline-block;
}

.navbar-white.affix .brand-img-white {
  display: inline-block;
}
.navbar-white.affix .brand-img {
  display: none;
}

.navbar-white .navbar-toggle .icon-bar {
  background: #e91e63;
}
.navbar.navbar-white.affix .navbar-toggle .icon-bar {
  background: #ffffffb3;
}
.navbar-white .navbar-address i {
  color: #222;
}
.navbar-white.affix .navbar-address i {
  color: #222;
}

.navbar-white.affix .navbar-address .text-dark,
.navbar-white.affix .social-list a {
  color: #222;
}
.navbar-white .social-list a:hover {
  color: #fac832;
}

@media (max-width: 780px) {
  .navbar {
    border-bottom: 1px solid rgb(255 255 255 / 33%);
    top: 45px;
  }
}

.copy-bottom {
  display: none;
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 2.4rem;
  color: #000;
}

.lang-bottom {
  display: none;
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 2.4rem;
  color: #000;
}

.copy-bottom.white {
  color: #fff;
}

.lang-bottom .menu-lang {
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
}

.lang-bottom .menu-lang a:not(.active) {
  color: #000;
}

.lang-bottom.white,
.lang-bottom.white .menu-lang a:not(.active) {
  color: #fff;
}

.lang-bottom .menu-lang a:hover,
.lang-bottom.white .menu-lang a:hover {
  color: #fac832;
}

#pp-nav {
  z-index: 99;
  width: 2.1428rem;
  margin-top: 0 !important;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

#pp-nav .pp-nav-up,
#pp-nav .pp-nav-down {
  display: none;
  font-size: 2.1428rem;
  cursor: pointer;
  color: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#pp-nav .pp-nav-up {
  margin-bottom: 3.5rem;
}

#pp-nav .pp-nav-down {
  margin-top: 3.5rem;
}

#pp-nav li,
.pp-slidesNav li {
  margin: 1.928rem auto;
  width: 10px;
  height: 10px;
}

#pp-nav span,
.pp-slidesNav span {
  left: 0;
  top: 0;
  cursor: pointer;
  width: 10px;
  height: 10px;
  background: #000;
  border: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#pp-nav .pp-nav-up:hover,
#pp-nav .pp-nav-down:hover,
#pp-nav.white .pp-nav-up:hover,
#pp-nav.white .pp-nav-down:hover {
  color: #fac832;
}

#pp-nav.white .pp-nav-up,
#pp-nav.white .pp-nav-down {
  color: #fff;
}

#pp-nav.white span,
.pp-slidesNav span {
  background: #fff;
}

#pp-nav li .active span,
.pp-slidesNav .active span,
#pp-nav span:hover,
.pp-slidesNav span:hover {
  background: #fac832;
}

/* 4.2 Sections */

.pagepiling .section {
  background: #fff;
  padding-top: 11.3rem;
  padding-bottom: 7rem;
}

.pagepiling .section-1.pp-scrollable .vertical-centred {
  padding-top: 10rem;
  padding-bottom: 11rem;
}

.pagepiling .pp-scrollable {
  padding: 0;
}

.pp-scrollable .vertical-centred {
  padding-top: 7.5rem;
  padding-bottom: 7rem;
}

.scroll-wrap {
  position: relative;
  min-height: 100%;
}

.scrollable-content {
  white-space: nowrap;
  width: 100%;
  font-size: 0;
}

.scrollable-content:before {
  content: "";
  display: inline-block;
  height: 100vh;
  vertical-align: middle;
}

.vertical-centred {
  width: 100%;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  font-size: 1rem;
}

.boxed-inner {
  position: relative;
  padding: 0;
}

.section-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.vertical-title {
  position: absolute;
  white-space: nowrap;
  width: 0;
  top: -0.55rem;
  left: 4.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.vertical-title span {
  display: block;
  float: right;
}

.section .intro {
  opacity: 0;
  -webkit-transition: opacity 1s 0.3s ease;
  -o-transition: opacity 1s 0.3s ease;
  transition: opacity 1s 0.3s ease;
}

.section:not(.scrollable-home) .intro {
  -webkit-transform: translateY(7rem);
  -ms-transform: translateY(7rem);
  -o-transform: translateY(7rem);
  transform: translateY(7rem);
  -webkit-transition: all 0.35s 0.6s ease;
  -o-transition: all 0.35s 0.6s ease;
  transition: all 0.35s 0.6s ease;
}

.section.active .intro {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.display-1 {
  font-size: 5.14rem;
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0;
  text-transform: uppercase;
}

.subtitle-top {
  line-height: 1.714;
  margin-bottom: 2.8rem;
  letter-spacing: 0.1em;
}

/* 4.3 Section About */

.scrollable-home .vertical-centred {
  padding-top: 10rem;
  padding-bottom: 11rem;
}

.hr-bottom {
  position: absolute;
  margin-top: 13vh;
  margin-bottom: 0;
  height: 0.2858rem;
  width: 7.142rem;
  background: #fac832;
}

.title-uppercase {
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1.33333;
  margin: 0 0 2.6rem;
}

.service-list {
  margin-bottom: 5rem;
  font-size: 1.2857rem;
  padding-left: 0;
  list-style: none;
  text-transform: uppercase;
  letter-spacing: -0.025rem;
  font-weight: 300;
}

.service-list li {
  margin-bottom: 0.7rem;
}

.service-list li a {
  color: inherit;
}

.service-list li a:hover {
  color: #000;
  text-decoration: none;
}

.dots-image-2 {
  display: inline-block;
  position: relative;
}

.dots-image-2 .dots {
  position: absolute;
  z-index: -1;
  left: -25%;
  bottom: -19%;
  width: 101%;
  top: 50%;
  opacity: 0.8;
  background: url(../images/bg/dots.png) 0 0 repeat;
}

.dots-image-2 .experience-info {
  position: absolute;
  left: 12%;
  margin-top: -3.6rem;
  top: 100%;
}

.experience-info .number {
  display: inline-block;
  font-weight: 600;
  line-height: 1;
  font-size: 10.71rem;
  margin-right: 1.7rem;
}

.experience-info .text {
  display: inline-block;
  font-size: 1.571rem;
  font-weight: 600;
  line-height: 1.181;
  text-transform: uppercase;
}

/* 4.4 Section Projects */

.bg-changer {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-changer .section-bg {
  opacity: 0;
  will-change: opacity, transform;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.5s 0.2s ease, transform 5s 0.2s ease;
  -o-transition: opacity 0.5s 0.2s ease, transform 5s 0.2s ease;
  transition: opacity 0.5s 0.2s ease, transform 5s 0.2s ease;
}

.bg-changer .active {
  opacity: 1;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.bg-changer .section-bg:first-child {
  opacity: 1;
}

.scrollable-projects .vertical-title {
  top: 7.4rem;
}

.row-project-box {
  margin-top: -30px;
}

.col-project-box {
  margin-top: 30px;
}

.project-box {
  display: block;
  padding-bottom: 30%;
  position: relative;
  border: 1px solid #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.project-box-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 2.14rem 1.928rem;
}

.project-box h5 {
  margin: 0;
  color: #fff;
}

.project-category {
  color: #cccccc;
  margin-top: 0.5rem;
}

.project-box:hover {
  background: #fac832;
  text-decoration: none;
  border-color: transparent;
}

.project-box:hover h5 {
  color: #000;
}

.project-box:hover .project-category {
  color: #666666;
}

/* 4.5 Section Partners */

.scrollable-partners h2 {
  margin-bottom: 7rem;
}

.row-partners {
  margin: -5rem -5rem 0;
}

.col-partner {
  padding: 0 5rem;
  margin-top: 5rem;
  display: inline-block;
}

.col-partner img {
  max-width: 100%;
}

/* 4.6 Section Testimonials */

.icon-quote {
  display: inline-block;
  margin-top: -0.6rem;
  color: #fac832;
  font-size: 5.14rem;
}

.scrollable-testimonials .title-uppercase {
  margin-top: 7vh;
  margin-bottom: 3rem;
}

.review-carousel .text {
  font-family: "Libre Baskerville", serif;
  font-size: 1.142rem;
  line-height: 1.875;
}

.review-author {
  margin-top: 5.7rem;
}

.author-name {
  font-size: 1.2857rem;
  line-height: 1.333;
  font-weight: 600;
}

.review-carousel .owl-nav {
  position: relative;
  top: 0;
  margin-top: 1vh;
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

.review-carousel .owl-prev,
.review-carousel .owl-next {
  font-size: 1.2857rem;
  width: 3.57rem;
  height: 3.57rem;
  line-height: 3.57rem;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  margin-right: 0.857rem;
}

.review-carousel .owl-prev:before {
  font-family: "Linearicons";
  content: "\e93b";
}

.review-carousel .owl-next:before {
  font-family: "Linearicons";
  content: "\e93c";
}

.review-carousel .owl-prev:hover,
.review-carousel .owl-next:hover {
  background: #fff;
  color: #000;
}

.review-carousel .owl-prev.disabled,
.review-carousel .owl-next.disabled {
  cursor: default;
}

.review-carousel .owl-prev.disabled:hover,
.review-carousel .owl-next.disabled:hover {
  background: none;
  color: #fff;
}

/* 4.7 Section Contacts */

.map-2 {
  width: 100%;
  height: 18rem;
  border: 0;
  text-align: center;
}

.contact-info {
  overflow: hidden;
  margin-top: 5.5rem;
}

.row-contact-info {
  margin: -5rem -4% 0;
}

.success-message,
.error-message {
  display: none;
  margin-top: 2rem;
}

.col-contact-info {
  padding: 0 4%;
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid #cacaca;
}

.col-contact-info:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-info h3 {
  font-size: 1.92rem;
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 2rem 0;
}

.contact-info .col-right {
  word-wrap: break-word;
  padding-left: 0;
  padding-right: 0;
}

.contact-info-row {
  line-height: 1.5;
  margin-bottom: 2.14rem;
}

.contact-info-row:last-child {
  margin-bottom: 0;
}

.contact-info-row strong {
  font-size: 1.1428rem;
  text-transform: uppercase;
  color: #000;
}

textarea.form-control {
  height: auto;
  min-height: 3rem;
  padding: 0.5rem 1rem 0;
}

/* ------------------------------------------------------------------------------- */
/*  8. Responsive styles
/* ------------------------------------------------------------------------------- */

/* 5.1 Min width 768px */

@media (min-width: 768px) {
  html {
    font-size: 13px;
  }

  .pull-sm-left {
    float: left;
  }

  .pull-sm-right {
    float: right;
  }

  /* Sidebar Menu */

  .menu {
    width: 50%;
  }

  /* Homepage */

  .boxed {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .boxed-inner {
    padding-left: 0;
  }

  .right-boxed {
    right: 3rem;
  }

  .left-boxed {
    left: 3rem;
  }

  /* Section About */

  .section-about {
    padding-top: 12rem;
  }

  /* Homepage v2 */

  .project-box {
    padding-bottom: 75%;
  }

  .row-contact-info {
    margin-top: -2rem;
  }

  .col-contact-info {
    padding-top: 4rem;
    margin-top: 2rem;
  }

  /* Footer */

  .footer-flex .flex-item {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}

/* 5.2 Min width 992px */

@media (min-width: 992px) {
  html {
    font-size: 14px;
  }

  /* Helpers */

  .pull-md-right {
    float: right;
  }

  /* Sidebar Menu */

  .menu {
    width: 35%;
    max-width: 550px;
  }

  /* Homepage */

  .boxed {
    padding-left: 4.2857rem;
    padding-right: 4.2857rem;
  }

  .right-boxed {
    right: 4.2857rem;
  }

  .left-boxed {
    left: 4.2857rem;
  }

  .map {
    height: 36rem;
  }

  /* Homepage v2 */

  .boxed-inner .boxed {
    padding-left: 6rem;
  }

  .service-list {
    margin-bottom: 0;
  }

  .col-contact-info {
    border-top: 0;
    padding-top: 0;
  }

  .row-contact-info {
    margin-top: -5rem;
  }

  .col-contact-info {
    margin-top: 5rem;
  }

  .col-contact-info:nth-child(2n) {
    border-left: 1px solid #cacaca;
  }
}

/* 5.3 Min width 1200px */

@media (min-width: 1200px) {
  /* Helpers */

  .pull-lg-right {
    float: right;
  }

  /* Section Projects */

  .section-projects .filter-content {
    margin-top: 0;
  }

  /* Homepage v2 */

  .scrollable-testimonials .title-uppercase {
    margin-top: 18vh;
    margin-bottom: 0;
  }

  .scrollable-testimonials .vertical-centred {
    padding-top: 15rem;
    padding-bottom: 8rem;
  }

  .col-contact-info {
    border-left: 1px solid #cacaca;
  }

  /* Footer */

  .footer-flex .flex-item {
    -webkit-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }
}

/* 5.4 Min width 1550px */

@media (min-width: 1550px) {
  .visible-xl {
    display: block !important;
  }
}

@media (min-width: 1360px) {
  .container {
    width: 1200px;
  }
}

/* 5.5 Min Height 500px */

@media (min-height: 500px) {
  #pp-nav .pp-nav-up,
  #pp-nav .pp-nav-down {
    display: block;
  }
}

/* 5.6 Min Height 600px */

@media (min-height: 600px) {
  /* Sidebar Menu */

  .menu .menu-lang {
    top: 7rem;
  }

  .mobile-menu ul {
    top: 8rem;
    bottom: 12rem;
  }

  .mobile-menu ul > li {
    font-size: 1.571rem;
  }

  .menu-footer {
    bottom: 3rem;
  }

  .menu-footer .copy {
    display: block;
  }
}

/* 5.7 Min Height 700px */

@media (min-height: 700px) {
  /* Homepage v2 */

  .copy-bottom {
    display: block;
  }

  .lang-bottom {
    display: block;
  }
}

section#site-map {
  margin-top: 20px;
}

.footer-info {
  background: #062a4d no-repeat center center;
  /*background-image:url(/cache/2025/images/footer-bg.jpg) ;*/
  background-size: cover;
  color: #fff;
  font-family: "Prompt", sans-serif;
  padding: 60px 30px;
}

.footer-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0px;
  color: #fff;
  font-family: poppins;
  line-height: 160%;
}
.footer-info h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
  font-family: "Poppins", "Prompt", sans-serif !important;
}

.footer-info .footer-grid {
  display: flex;

  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-info .footer-grid.middle {
  align-items: center;
}

.footer-info .social-icons {
  display: flex;
  gap: 12px;
}

.footer-info .social-icons a {
  color: #fff;
  font-size: 18px;
  display: inline-block;
  width: 40px;
  height: 42px;
  border: 1px solid #ffffff78;
  text-align: center;
  line-height: 40px;
  border-radius: 4px;
  display: block;
  overflow: hidden;
  border: 2px solid #ffffff1f;
  /* border-radius: 13px; */
  box-shadow: 0px 0px 5px #191a45;
}
.time-label {
  display: inline-block;
  width: 80px;
}

ul.footer-site-link li {
  display: inline-block;
  width: 45%;
}

.footer-info .subscribe-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.frmSubscribe {
  border: 1px solid #ffffff47;
  padding: 2px 2px 2px 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-info .subscribe-form input[type="email"] {
  padding: 10px 15px;
  border-radius: 20px;
  border: none;
  font-size: 14px;
  width: 200px;
  background: #ffffff00;
  color: #fff;
  font-family: poppins;
}

.footer-info .subscribe-form button {
  background: #0f3564;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: normal;
  white-space: nowrap;
  font-family: poppins;
}

.footer-info .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-info ul li {
  margin-bottom: 8px;
  color: #ccc;
  font-size: 14px;
}

.footer-info ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-info ul li a:hover {
  text-decoration: underline;
}

.footer-info .instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.footer-info .instagram-grid img {
  width: 100%;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}

.why-choose-itb {
  padding: 4.5rem 1rem;
  font-family: "Prompt", sans-serif;
  color: #1a1a1a;
  
  background-attachment: fixed;
  position: relative;
}
 .why-choose-itb.bg-cover-image{
         background-image: url(/cache/2025/images/home/cardgrid-bg.jpg);
}
.why-choose-itb:before {
  content: " ";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  background: linear-gradient(to bottom, #ffffff, #5c80a4c7, #e8f0fe);
  opacity: 0.5;
}
.why-choose-itb .container {
  position: relative;
}
.why-choose-itb h2 {
  text-align: center;
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.why-choose-itb h2 span {
  color: #0054a9;
  font-weight: bold;
}

.why-choose-itb .row {
  display: flex;

  flex-wrap: wrap;
  justify-content: center;
}
.why-choose-itb .feature {
  text-align: center;
  margin-bottom: 40px;
  background: #022d59;
  /* border: 1px solid #ddd; */
  border-radius: 15px;
  padding: 20px 15px;
  transition: all 0.3s ease;
  flex: 0 0 48%;
  max-width: 48%;
  margin: 1%;
  box-shadow: 0px 5px 20px #5555554f;
  border-radius: 15px;
  background: #ffffff2b;
  border: 1px solid #ddddddb5;
}

.why-choose-itb .feature:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.why-choose-itb .feature i {
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 15px;
  width: 80px;
  height: 80px;
  border: 2px solid #ffffff61;
  line-height: 80px;
  background: #ffffff36;
  /* background-image: linear-gradient(179deg, #1364bb 0%, #094c938c 30%, #06315fc7 80%, #004795 100%); */
  border-radius: 100%;
  /* box-shadow: 0px 0px 10px #191a45ab; */
  text-shadow: 1px 1px 2px #000;
}

.why-choose-itb .feature h3 {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
  margin-top: 10px;
}

.why-choose-itb .feature p {
  font-size: 14px;
  color: #000000;
  line-height: 1.5;
  max-width: 280px;
  margin: auto;
}

@media (min-width: 768px) {
  .why-choose-itb .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .why-choose-itb .feature {
    flex: 0 0 23%;
    max-width: 23%;
    margin: 1%;
  }
}

@media (max-width: 500px) {
  #frmQutationEnquiry {
    max-width: 500px;
    padding: 20px 10px;
    background: #f7f7f7;
    border-radius: 0;
    box-shadow: 5px 5px 10px #999;
  }
}

.why-choose-itb .feature .badge {
  background: #ffcc00;
  color: #333;
  font-size: 11px;
  padding: 5px 7px;
  border-radius: 3px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 6px;
  position: absolute;
  margin-top: -10px;
  margin-left: -10px;
}

.btn-primary,
.btn.btn-addLine {
  margin: 5px auto;
  min-width: 250px;
  box-shadow: 0px 0px 5px #999;
  border-radius: 5px;
}

#google-seo-why {
  padding: 50px 0px;
}

.why-seo-item i {
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 25px;
  line-height: 50px;
  text-align: center;
  position: relative;

  float: left;
  background: #035ecf;
  background-image: linear-gradient(136deg, #0b60ae 0%, #0e6fc2 100%);
}
.why-seo-desc {
  display: block;
  margin-left: 60px;

  padding: 5px 0px;
  font-size: 1.15rem;
  line-height: 1.55rem;
  color: #043575;
  height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* จำนวนบรรทัดสูงสุด */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.why-seo-item {
  margin: 20px 0px;
}

.promotion-price {
  min-height: 350px;
  padding: 50px 0px 10px 0px;
  text-align: center;
  position: relative;
  background-image: url("/cache/2025/images/web-design/pro-banner-bg.png");
  background-size: cover;
  background-attachment: fixed;
}
/*.promotion-price::after{
        background: rgb(0 106 191 / 73%);
        background: linear-gradient(to right, #0a68c7de 40%, #062d5b 100%);
        content: ' ';
        position: absolute;
        top: 0px;
        left: 0px;
        bottom: 0px;
        right: 0px;
        z-index: 0;
      }*/

.promotion-contact {
  position: relative;
  z-index: 1;
}

.count-down.promotion-date {
  font-size: 14px !important;
  margin-top: 20px;
  text-shadow: 0px 2px 4px #999;
  font-family: "prompt" !important;
}
.count-down.promotion-date div.cd-row {
  display: inline-block;
}
.count-down.promotion-date div.cd-row div {
  display: inline-block;
  width: 75px;
  margin-right: 2px;
  border-radius: 3px;
  color: #fff;
  padding: 15px 0px 0 0;
  font-family: "Sarabun" !important;

  background: linear-gradient(175deg, #014081 0%, #105398 38%, #002f62 100%);
}
.count-down.promotion-date div.cd-row h1 {
  font-size: 2.5rem;
  padding: 0px;
  margin: 0px;
  text-align: center;
  color: #fff;
}
.count-down.promotion-date div.cd-row p {
  padding: 0px;
  margin: 0px;
  text-align: center;
}

.promotion-contact {
  text-align: center;
  margin-bottom: 30px;
  background: #ffff;
  border: 1px solid #ddd;
  padding: 30px 10px 20px 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 9px #9999995e;
}
.promotion-count-down-block {
  text-align: center;
  margin-bottom: 15px;
}
.promotion-count-down-block h4 {
  font-size: 2.5rem;
  margin: 0px;
  color: #002482;
}

.promotion-count-down-block h5 {
  font-size: 20px;
  margin: 0px;
  font-weight: normal;
  color: #002482;
  font-weight: bold;
}

.promotion-contact .btn.btn-line,
.promotion-contact .btn-primary {
  background-image: linear-gradient(
    95deg,
    #13c100 0%,
    #7ce700 51%,
    #13c100 100%
  );
  color: #ffffff;
  transition: 0.5s;
  background-size: 200% auto;
  min-width: 200px;
  position: relative;
  max-width: 310px;
  border-radius: 0px;
  font-size: 1.25rem;
  height: 48px;
  line-height: 38px;
  border-radius: 3px;
}
.promotion-contact .btn-primary {
  background-image: linear-gradient(
    95deg,
    #107dd5 0%,
    #5500a4 51%,
    #107dd5 100%
  );
}
.promotion-contact .btn.btn-addLine i,
.promotion-contact .btn-primary i {
  position: absolute;
  left: 15px;
  top: 12px;
  font-size: 1.75rem;
}
.promotion-contact .btn.btn-line i {
  font-size: 2.5rem;
  /* float: right; */
  position: absolute;
  left: 5px;
  top: 5px;
  width: 35px;
  height: 35px;
  color: #ffffff;
  /* border: 2px solid #ffffff9e; */

  line-height: 38px;
}

.promotion-contact .btn.btn-addLine:hover,
.promotion-contact .btn-primary:hover {
  background-position: right center;
}

.planItem--entp {
  background: linear-gradient(to right, #0a68c7de 40%, #062d5b 100%);
}

.promtion-price-content.owl-carousel .owl-stage {
  left: 0px !important;
}

.promtion-price-content .owl-dot.active span {
  background-color: #3f51b5;
}

#web-blog {
  padding: 50px 0px;
  position: relative;
}
#web-blog::before {
  content: " ";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 500px;
  background-image: linear-gradient(
    90deg,
    #673ab7 0%,
    #3f51b5 60%,
    #f8fafb 100%
  );
}
.web-blog-title {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  text-align: center;
  color: #fff;
  line-height: 150%;
}

#web-blog .item {
  height: 100%;
}
#web-blog .article-item {
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0px 0px 8px #00065152;
  margin: 0px 0px 0px 0px;
  height: 100%;
}
.article-caption {
  padding: 20px 20px;
}

.highlight-text {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  padding: 0px;
  background: linear-gradient(to right, #95bae7 15%, #e15cf7 40%, #3d00a9 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  border-bottom: 2px solid #ffffff40;
  margin-bottom: 15px;
}
.highlight-text h2 {
}
.section-descript {
  padding-bottom: 30px;
  color: #95bae7;
  max-width: 900px;
  margin: 0px auto;
}
#web-blog-items {
  padding-bottom: 30px;
}
#web-blog .article-item h3 {
  margin: 0px;
  font-size: 1.5rem;
  padding: 2px 0;
}
#web-blog .article-item p {
  font-size: 1rem;
  line-height: 150%;
  overflow: hidden;
  overflow-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0px;
}

#web-blog .owl-stage {
  margin-left: -15px;
  display: flex;
}
.owl-stage-outer {
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  #web-blog .article-item {
    margin: 10px;
  }
  .article-caption {
    padding: 20px 10px;
  }
  #web-blog .article-item h3 {
    font-size: 2rem;
  }
  #web-blog .article-item p {
    font-size: 1rem;
  }
}

.section-ads-event {
  background: linear-gradient(to right, #002992 0%, #9c27b0 80%);
  background: linear-gradient(90deg, #8f00ff, #e91e63);
  background: linear-gradient(to right, #cddc39 0%, #49ac56 80%);
  text-align: center;
  color: #fff;
  padding: 0.6em 1em;
  font-family: "Poppins", "Prompt", sans-serif;
}

.section-ads-event .event-btn-line {
  font-size: 13px;
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 10px;
  border-radius: 3px;
  text-decoration: none;
  margin-left: 5px;
  display: inline-block;
  line-height: 18px;
}
.section-ads-event .event-btn-line i {
  color: #fff;
  font-size: 1rem;
}

.event-countdown {
  background: linear-gradient(to right, #002992 0%, #9c27b0 80%);
  text-align: center;
  color: #fff;
}
.txt-evnet-count-down {
  display: inline-block;
}
.event-countdown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  /*background: linear-gradient(90deg, #8f00ff, #ff0080);*/
  background: linear-gradient(90deg, #8f00ff, #e91e63);
  color: #fff;
  padding: 0.6em 1em;

  font-family: "Poppins", "Prompt", sans-serif;
  gap: 1.5rem;
}

.countdown-timer {
  display: flex;
  gap: 0.25rem;
}

.cd-item {
  text-align: center;
  border: 1px solid #ffffff78;
  padding: 5px 5px 2px 5px;
  border-radius: 5px;
}

.cd-number {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}

.cd-label {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
  line-height: 1.5rem;
}

.cd-info {
  font-size: 1rem;
  white-space: nowrap;
  text-shadow: 0px 0px 2px #000;
}

.image-container {
  position: relative;
  overflow: hidden;
}

.image-skeleton {
  background: #ddd;
  width: 100%;
  height: 200px; /* ปรับขนาดตามรูปจริง */
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container img.loaded {
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#price-type .owl-dot span {
  width: 3rem;
}

.service-item a.btn i {
  font-size: 0.9rem;
  float: right;
  margin-top: 7px;
  opacity: 0.8;
}

.service-item-desc-slide.owl-carousel .owl-stage {
  left: 0px;
}
.service-item-desc-slide .featureList {
  font-size: 13px;
  background: #fff;
  padding: 5px 10px;
  margin: 4px 0px;
  border-radius: 5px;
}
.service-item-desc-slide .featureList li {
  font-size: 11px;
  gap: 0.5rem;
}

#promotion-package .promotion-contact .btn-primary {
  float: left;
  width: 48%;
  height: 40px;
  font-size: 14px;
  min-width: 30%;
  height: 40px;
  margin: 0px 2px;
  line-height: 30px;
  /* text-align: right; */
  padding: 5px 10px 5px 30px;
}

#promotion-package .promotion-contact .btn-primary i {
  font-size: 1.5rem;
  width: 30px;
  height: 30px;
}
#promotion-package .promotion-contact .btn-primary i.fa-line {
  top: 2px;
}
#promotion-package .promotion-contact .btn-primary i.fa-eye {
  top: 10px;
  left: 8px;
}
.btn-video-play {
  transition: all 0.5s ease;
}
.btn-video-play:hover {
  transform: scale(1.2);
}
 
@media (max-width: 500px) {
  #promotion-package .service-item {
    margin-bottom: 15px;
  }

  
}

#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 1em;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  color: #111;
}

#cookie-banner a {
  color: #002f62;
  text-decoration: underline;
}

#cookie-banner #btn-accept {
  color: #fff;
  background: #005aff;
  border: 1px solid #ddd;
  border-radius: 3px;
}
#cookie-banner #btn-manage {
  color: #fff;
  background: #005aff;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.footer ul a {
  padding: 3px 5px;
  transition: 0.2s;
}
.footer ul .active a,
.footer ul li a:hover {
  text-decoration: none;
  background: #000;
  color: #fff;
  padding: 3px 5px;
  border-radius: 3px;
}

#main-slider {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.carousel {
  height: 650px;
}

#main-slider .carousel .carousel-inner {
  height: 650px;
}
.carousel .item {
  position: absolute;
  top: 60px;
  bottom: 80px;
  right: 0px;
  left: 0px;
}
#main-slider .carousel .carousel-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 150px;
  right: 50px;
  width: auto;
  font-size: 0px;
}

#main-slider .carousel .carousel-content .carousel-content-inner {
  position: relative;
  top: 0px;
  bottom: 0px;

  width: 50%;
  height: 100%;

  font-size: 2.5rem;

  display: table;
}
.carousel-captions {
  vertical-align: middle;
  display: table-cell;
  color: #fff;
  text-shadow: 0px 0px 2px #00000000;
}

.carousel-indicators {
  bottom: 0;
  left: 0;
  top: 50%;
  width: 50px;
  height: 150px;

  margin: 0px;
  margin-top: -75px;
}
.carousel-indicators li {
  width: 12px;
  height: 15px;
  background: #fff;
  border: 0px;
  transition: 0.3s;

  display: block;
  margin: 10px auto;
}
.carousel-indicators li.active {
  width: 12px;
  height: 30px;

  margin: 10px auto;
  background-color: #ffc107;
  cursor: default;
}
#main-slider .prev,
#main-slider .next {
  position: absolute;
  top: 50%;
  background-color: #ffc40000;
  color: #f5f5f5c2;
  display: inline-block;
  margin-top: -25px;
  height: 40px;
  line-height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 4px;

  font-size: 3rem;
  right: 30px;
  z-index: 200;
  display: none;
}

#main-slider .prev {
  left: 30px;
}
.caption-desc {
  font-size: 16px;
  line-height: 1.75rem;
  margin-top: 20px;
}

.carousel-captions .h1,
.carousel-captions .h2 {
  margin: 0px;
  padding: 0px;
  color: #fff;
}

#web-blog-last-update .article-item h3 {
  font-size: 1.25rem;
  margin: 15px 0px;
}
#web-blog-last-update .article-item .article-caption {
  padding: 0px;
}

.article-item .article-caption h3 a {
  overflow: hidden;
  overflow-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.article-item .article-caption p {
  font-size: 14px;
  color: #333;
  overflow: hidden;
  overflow-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  font-family: "Prompt", sans-serif;
  line-height: 1.5rem;
}
.article-item .article-cover {
  position: relative;
}
.article-item .article-post-date {
  width: 55px;
  height: 66px;
  color: #fff;
  position: absolute;
  top: -20px;
  right: 10px;
  margin-left: -33px;
  z-index: 2;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.75rem;
  padding-top: 10px;
  background: #b30f12;
  border-radius: 5px;
  background: linear-gradient(to right, #e91e63 0%, #c10d00 100%);
  /* -webkit-background-clip: text; */
  border: 1px solid #b60000;
}
.post-month,
.post-year {
  display: block;
  font-size: 1rem;
}
.post-year {
  display: none;
}
.article-content-lists {
  display: flex;
  flex-wrap: wrap;
}
.article-cover a {
  display: block;
  border-radius: 5px;
  overflow: hidden;
}

.article-item .tag-date {
  font-size: 11px;
  color: #000;
  background: #ddd;
  padding: 3px 10px;
  display: inline-block;
}








/**
* RESPONSIVE
*/

@media (max-width: 1360px) {
  #main-slider .carousel .carousel-content {
    left: 100px;
  }
}

@media (max-width: 500px) {


  .navbar.affix .navbar-toggle {
            display:none;
  }

  .boxed {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  #main{
    margin-top:0px !important;
  }
   
  .top-bar-promo {
    display:none;
  }
  header {
    text-align: center;
  }
  .navbar {
    top:0px;
    border:0px;
  }
  /*.navbar-toggle {
       float: left;
        margin-left: 0px;
        margin-top: 1rem;
    }*/
  .navbar .brand {
    float: none;
    margin-top: -0.5rem;
    display: block;

    margin: -0.5rem auto 0 auto;
  }

  #main-slider .carousel .carousel-content .carousel-content-inner {
    width: 100%;
  }
  .carousel-captions .h1,
  .carousel-captions .h2 {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }
  .carousel-captions {
    text-align: cetner;
  }
  .carousel-indicators {
    display: none;
  }

  #main-slider .carousel .carousel-content {
    left: 20px;
    right: 20px;
    text-align: center;
  }
  #main-slider .carousel .carousel-content .carousel-content-inner {
    width: 100%;
  }

  section.problem h2 {
    color: #ffc721;
    font-size: 1.5rem;
  }

  .why-choose-itb .feature h4 {
    font-size: 14px;
  }
  .why-choose-itb .feature h3 {
    margin-left: 95px;
  }
  .why-choose-itb .feature p {
    margin-left: 95px;
  }
  .why-choose-itb .feature {
    max-width: 100%;
    flex: none;
    border-radius: 5px;
    font-size: 14px;
    background: #ffffff4f;
    box-shadow: 0px 5px 10px #5555554f;
    text-align: left;
  }
  .why-choose-itb .feature i {
    border-radius: 100%;
    float: left;
    margin-right: 15px;
    text-align: center;
    margin-bottom: 10px;
    background: #95a9bd;
  }
  .why-choose-itb .feature .badge {
    margin-left: 0px;
    left: 100px;
  }
  .why-choose-itb h2 {
    font-size: 1.75rem;
  }

  .why-choose-itb h2 .fn-brand {
    display: block;
    padding: 5px 0px;
  }

  #contact .section-content {
    padding-top: 320px;
  }

  .display-1 {
    font-size: 4rem;
    line-height: 100%;
    margin-bottom: 20px;
  }

  .subtitle-top {
    line-height: 105%;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    margin-top: 20px;
  }

  .next-down {
    margin-top: 30px;
  }
  .menu {
    z-index: 99999;
  }
  .frmSubscribe {
    border-radius: 0px;
  }

  .why-seo-desc {
    font-size: 13px;
    line-height: 16px;
    padding-top: 12px;
  }

  #frmQutationEnquiry {
    border-radius: 8px;
  }

  .promotion-price {
    padding-bottom: 30px;
  }

  .btn {
    letter-spacing: 0.025em;
    font-size: 1.2rem;

    border-radius: 5px;
  }

  .event-countdown {
    gap: 0.5rem;
    padding-top: 15px;
  }

  .article-item .article-post-date {
    font-size: 1.25rem;
    line-height: 1.5rem;
    width: 45px;
    height: 55px;
  }
  .post-month,
  .post-year {
    font-size: 1rem;
  }
  .article-item .article-caption p {
    font-size: 13px;
    line-height: 1.7rem;
  }

}


