@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444;
}

a {
  color: #428bca;
  text-decoration: none;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #428bca;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #629fd3;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #006fb0;
  /* border-bottom: 1px solid #eee; */
  font-size: 15px;
  height: 40px;
  padding: 0;
  transition: 0.5s;
}

#topbar .contact-info a {
  line-height: 0;
  color: #f0f0f0;
  transition: 0.3s;
  font-size: 14px;
}

#topbar .contact-info a:hover {
  color: #428bca;
}

#topbar .contact-info i {
  color: #dedede;
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links a {
  color: #dfdfdf;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #428bca;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 78px;
  background: rgb(0, 46, 83);
  z-index: 997;
  position: absolute;
  width: 100%;
  transition: 0.5s;
}

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

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


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

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #f3f3f3;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #7ccfff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: 100%;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #032d51;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  text-transform: uppercase;
  /* font-size: 14px; */
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #428bca;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ffffff;
  font-size: 40px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(31, 53, 72, 0.9);
  transition: 0.3s;
  z-index: 998;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1f3548;
  border-bottom: 1px solid #9ec2e38c;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #428bca;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #428bca;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 51px);
  padding: 0;
  overflow: hidden;
  background: #000;
}

#hero .carousel-item {
  width: 100%;
  height: calc(100vh - 51px);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(13, 30, 45, 0.281);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

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

#hero .carousel-content {
  text-align: left;
}

@media (max-width: 992px) {

  #hero,
  #hero .carousel-item {
    height: calc(100vh - 70px);
  }

  #hero .carousel-content.container {
    padding: 0 50px;
  }
}

#hero h2 {
  text-transform: uppercase;
  color: rgb(220 155 15);
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
  line-height: 65px;
}

#hero h2 span {
  font-family: 'Quicksand', sans-serif;
  color: rgb(235, 235, 235);
  font-size: 70px;
  margin-top: 35px;
  letter-spacing: 2px;
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  color: #fff;
}

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

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

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

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

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

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 0;
  background: #428bca;
}

#hero .btn-get-started:hover {
  background: #1c5c93;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (max-height: 500px) {

  #hero,
  #hero .carousel-item {
    height: 120vh;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f9fc;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: 'Quicksand', sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f38b74;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Quicksand', sans-serif;
  color: #0f2f57;
}



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f5f9fc;
  min-height: 40px;
}

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

.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;
  }
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info-box {
  color: #444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  margin-bottom: 30px;
  width: 100%;
}

.contact .info-box i {
  font-size: 32px;
  color: #428bca;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #9eccf4;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #666;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

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

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #428bca;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #428bca;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #629fd3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#footer {
  padding: 80px 0 30px;
  background: linear-gradient(rgb(3 45 81 / 77%), rgb(3 45 81 / 71%)), url(../img/bg.jpg) fixed center center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#footer .footer-top {
  border-bottom: 1px solid #67839c;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
  text-align: center;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info ul {
  display: flex;
  justify-content: space-between;
  margin-top: 23px;
  margin-bottom: 29px;
  list-style: none;
}

#footer .footer-top .footer-info ul li a {
  color: #e0e0e0;
  font-size: 18px;
}

#footer .footer-top .footer-info ul li a:hover {
  color: wheat;
}

#footer .footer-top .footer-info .footer-logo {
  max-width: 252px;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #768fa6;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #428bca;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .copyright {
  color: white;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #9eccf4;
}



/* ---------------About---------------- */
.about-section {
  z-index: 4;
  position: relative;
  padding: 120px 0px;
  background-color: #f6f6f6;
  background-image: url(../img/bg-left.png);
  background-repeat: no-repeat;
  background-position: left top;
  margin-top: -50px;
}

.about-section .content-column {
  position: relative;
  margin-bottom: 40px;
}

.about-section .content-column .inner-column {
  position: relative;
  padding-top: 50px;
  /* padding-right:100px; */
}

.about-section .content-column .text {
  position: relative;
  color: #383838;
  font-size: 14px;
  line-height: 2em;
  margin-bottom: 10px;
  text-align: justify;
}

.about-section .content-column .email {
  position: relative;
  color: #4e4e4e;
  font-weight: 700;
  margin-bottom: 50px;
}

.about-section .image-column {
  position: relative;
  margin-bottom: 50px;
}

.about-section .image-column .inner-column {
  position: relative;
  padding: 40px 40px 0px 0px;
  margin-left: 50px;
}

.about-section .image-column .inner-column:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  left: 40px;
  bottom: 100px;
  z-index: -1;
  border: 2px solid #d7a449;
}

.about-section .image-column .inner-column .image {
  position: relative;
}


.about-section .image-column .inner-column .image img {
  position: relative;
  width: 100%;
  display: block;
  transition: 0.5s;
}

.about-section .image-column .inner-column .image:hover img {
  transform: scale(1.05);
}

.about-section .image-column .inner-column .image:hover .overlay-box .year-box .number {
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #d7a449;
}

.about-section .image-column .inner-column .image .overlay-box {
  position: absolute;
  left: 40px;
  bottom: 48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box {
  position: relative;
  color: #252525;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
  padding-left: 125px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box .number {
  transition: 0.5s;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 110px;
  height: 110px;
  font-size: 68px;
  font-weight: 700;
  line-height: 105px;
  text-align: center;
  background: #0e7cbe;
  color: white;
  border: 2px solid white;
}

 .btn-style-three:hover {
  color: #252525;
  background-color: #ffffff;
  text-transform: capitalize;
  border: 2px solid #d7a449;
}

 .btn-style-three {
  transition: 0.5s;
  position: relative;
  line-height: 24px;
  font-size: 15px;
  font-weight: 700;
  background: none;
  display: inline-block;
  padding: 11px 40px;
  text-transform: capitalize;
  font-family: 'Arimo', sans-serif;
  color: #ffffff;
  background: #147bba;
}

.sec-title2 {
  color: #fff;
}

.sec-title {
  position: relative;
  padding-bottom: 10px;
}

.sec-title .title {
  position: relative;
  color: #0f7dbe;
  font-size: 18px;
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
}

.sec-title .title:before {
  position: absolute;
  content: '';
  right: 0px;
  bottom: 7px;
  width: 40px;
  height: 1px;
  background-color: #bbbbbb;
}



/* -------------Products------------- */
.products figure.snip1200 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  /* min-width: 220px;
  max-width: 310px;
  max-height: 310px; */
  width: 100%;
  background: #000000;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  font-size: 16px;
}

.products figure.snip1200 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}

.products figure.snip1200 img {
  width: 100%;
  position: relative;
  opacity: 0.9;
}

.products figure.snip1200 figcaption {
  position: absolute;
  top: 45%;
  left: 7%;
  right: 7%;
  bottom: 45%;
  border: 1px solid white;
  border-width: 1px 1px 0;
}

.products figure.snip1200 .heading {
  overflow: hidden;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  position: absolute;
  bottom: 0;
  width: 100%;
}

.products figure.snip1200 h2 {
  display: table;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
  text-align: center;
  width: auto;
  text-transform: uppercase;
  font-weight: 400;
}

.products figure.snip1200 h2 span {
  font-weight: 800;
}

.products figure.snip1200 h2:before,
.products figure.snip1200 h2:after {
  position: absolute;
  display: block;
  width: 1000%;
  height: 1px;
  content: '';
  background: white;
  top: 50%;
}

.products figure.snip1200 h2:before {
  left: -1000%;
}

.products figure.snip1200 h2:after {
  right: -1000%;
}

.products figure.snip1200 p {
  line-height: 34px !important;
  top: 28% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  position: relative;
  width: 100%;
  padding: 0 20px;
  margin: 0;
  opacity: 0;
  font-size: 15px;
}

.products figure.snip1200 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

.products figure.snip1200:hover img,
.products figure.snip1200.hover img {
  opacity: 0.25;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.products figure.snip1200:hover figcaption,
.products figure.snip1200.hover figcaption {
  top: 7%;
  bottom: 7%;
}

.products figure.snip1200:hover p,
.products figure.snip1200.hover p {
  opacity: 1;
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}






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

.testimonials {
  padding: 80px 0;
  background: linear-gradient(rgb(54 54 54 / 87%), rgb(47 47 47 / 67%)), url(../img/slide/slide-3.jpg) fixed center center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}


.testimonials .section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Quicksand', sans-serif;
  color: #ebf7ff;
}


.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
  position: relative;
  background: #ffffff1f;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #ffd5d5;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ffd753;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fdedea;
  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 {
  color: white;
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0f7cbe;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0f7cbe;
}





/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}


.gallery .section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Quicksand', sans-serif;
  color: #0f2f57;
}

.gallery .section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: 'Quicksand', sans-serif;
}


.gallery .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f38b74;
  margin: 4px 10px;
}

.gallery .section-title h2::before {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f38b74;
  margin: 4px 10px;
}


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


.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #006eb0;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #006eb0;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
   
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid #006eb0;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
    margin-top: 10px;
  }
}




/*--------------------------------------
 Branches 
 --------------------------------------*/

.branches {
  z-index: 0;
  position: relative;
  padding: 120px 0px;
  background-color: #f6f6f6;
  background-image: url(../img/bg-left.png);
  background-repeat: no-repeat;
  background-position: left top;
}

.branches figure.snip1426 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  /* min-width: 230px; */
  /* max-width: 315px; */
  width: 100%;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  background-color: #000000;
}

.branches figure.snip1426 *,
.branches figure.snip1426 *:before,
.branches figure.snip1426 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

.branches figure.snip1426 img {
  width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
  filter: alpha(opacity=60);
  -webkit-opacity: 0.6;
  opacity: 0.6;
}

.branches figure.snip1426 figcaption {
  position: absolute;
  bottom: 25px;
  right: 25px;
  padding: 5px 10px 10px;
}

.branches figure.snip1426 figcaption:before,
.branches figure.snip1426 figcaption:after {
  height: 2px;
  width: 400px;
  position: absolute;
  content: '';
  background-color: #ffffff;
}

.branches figure.snip1426 figcaption:before {
  top: 0;
  left: 10px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.branches .branch {
  padding: 10px;
}

.branches figure.snip1426 figcaption:after {
  bottom: 0;
  right: 10px;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.branches figure.snip1426 figcaption div:before,
.branches figure.snip1426 figcaption div:after {
  width: 2px;
  height: 300px;
  position: absolute;
  content: '';
  background-color: #ffffff;
}

.branches figure.snip1426 figcaption div:before {
  top: 10px;
  right: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.branches figure.snip1426 figcaption div:after {
  bottom: 10px;
  left: 0;
  -webkit-transform: translateY(-180%);
  transform: translateY(-180%);
}

.branches figure.snip1426 h2,
.branches figure.snip1426 h4 {
  margin: 0;
  text-transform: uppercase;
}

.branches figure.snip1426 h2 {
  font-weight: 600;
  color: white;
}

.branches figure.snip1426 h4 {
  display: block;
  font-weight: 500;
  font-size: 18px;
  background-color: #ffffff;
  padding: 5px 10px;
  color: #000000;
}

.branches figure.snip1426 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.branches figure.snip1426:hover img,
.branches figure.snip1426.hover img {
  zoom: 1;
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  opacity: 0.8;
}

.branches figure.snip1426:hover figcaption:before,
.branches figure.snip1426.hover figcaption:before,
.branches figure.snip1426:hover figcaption:after,
.branches figure.snip1426.hover figcaption:after,
.branches figure.snip1426:hover figcaption div:before,
.branches figure.snip1426.hover figcaption div:before,
.branches figure.snip1426:hover figcaption div:after,
.branches figure.snip1426.hover figcaption div:after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.branches figure.snip1426:hover figcaption:before,
.branches figure.snip1426.hover figcaption:before,
.branches figure.snip1426:hover figcaption:after,
.branches figure.snip1426.hover figcaption:after {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}



.prev {
  border: 1px solid #f0007f30;
  padding: 10px;
  margin-top: 260px;
  margin-left: -43px;
  position: absolute;
  width: 35px;
}

.next {
  border: 1px solid #f0007f2e;
  margin-left: 101%;
  position: absolute;
  bottom: 294px;
  padding: 10px;
  width: 35px;
}




/* ------------------------------
banner video
----------------------------------*/
.hero-demo {
  padding: 0px !important;
  margin-top:78px;
}
.hero-demo:after {
    position: absolute;
    content: "";
    z-index: 2;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .6);
}
.hero-demo .bg-video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* height: 101vh; */
  margin-top: -62px;
  /* background: url(https://designsupply-web.com/samplecontent/vender/codepen/20181014.png) no-repeat center center/cover; */
}

.hero-demo video {
  min-width: 100%;
  /* min-height: 48vh; */
  z-index: 1;
  width: 100%;
}
@media(max-width:440px){
       .third {
        height: 55vh !important;
    }
}

@media(max-width:991px) {
     section{
        padding:20px 0;
    }

  .hero-demo h1 {
    /* display: none; */
    font-size: 37px !important;
    max-width: none !important;
  }

  .hero-demo .bg-video-wrap {
    height: 39vh;
    /* margin-top: -101px; */
  }

  .features {
    padding: 33px 0 !important;
  }

  .hero-demo video {
    min-height: 48vh !important;
  }
}

.hero-demo h1 {
  font-family: "Marcellus SC";
  font-size: 54px;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 99px;
  left: 0;
  /* right: 0; */
  margin: auto;
  z-index: 3;
  max-width: 49%;
  width: 100%;
  height: 50px;
}

section .hero-demo {
  padding: 0px !important;
}

.about-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.third {
  width: 100%;
  position: relative;
  /* height: 113vh; */
}

@media (max-width: 767.98px) {
  .third {
     /*height: 60vh !important; */
  }

}

@media only screen and (min-width:1300px) and (max-width:1400px) {
  .third {
    /*height: 110vh !important;*/
  }

}

.video-hero {
  height: 750px;
  z-index: 0;
}



/* --------------------------------
Latest Products
----------------------------------- */
.latest-products figure.snip1138 {
  font-family: 'Raleway', Arial, sans-serif;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin: 10px;
  width: 100%;
  background: #ffffff;
  color: #000000;
  text-align: center;
  border: 1px solid;
}

.latest-products figure.snip1138 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.latest-products figure.snip1138 img {
  width: 100%;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.latest-products figure.snip1138 figcaption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50%;
  overflow: hidden;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.latest-products figure.snip1138 h2 {
  margin: 0;
  position: absolute;
  width: 100%;
  left: 0;
  opacity: 0;
  padding: 0 30px;
  font-weight: 600;
  text-transform: uppercase;
  bottom: 0;
  -webkit-transform: translate3d(0%, 150%, 0);
  transform: translate3d(0%, 150%, 0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.latest-products figure.snip1138 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
}

.latest-products figure.snip1138:hover img,
.latest-products figure.snip1138.hover img {
  opacity: 0.3;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.latest-products figure.snip1138:hover figcaption,
.latest-products figure.snip1138.hover figcaption {
  height: 55%;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.latest-products figure.snip1138:hover figcaption h2,
.latest-products figure.snip1138.hover figcaption h2 {
  opacity: 0.9;
  -webkit-transform: translate3d(0%, 0%, 0);
  transform: translate3d(0%, 0%, 0);
}

.latest-products .slider2 .col-md-4 {
  padding: 10px;
}

.latest-products .prev {
  border: 1px solid #f0007f30;
  padding: 10px;
  margin-top: 225px;
  margin-left: -43px;
  position: absolute;
  width: 35px;
}

.latest-products .next {
  border: 1px solid #f0007f2e;
  margin-left: 101%;
  position: absolute;
  bottom: 195px;
  padding: 10px;
  width: 35px;
}




/*=============================
 Floating icons
 ============================== */

.float-whatsapp {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 136px;
  right: 18px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 28px;
  /* box-shadow: 2px 2px 3px #999; */
  z-index: 21;
}

.my-float-whatsapp {
  margin-top: 8px;
}

.float-call {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 83px;
  right: 16px;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  /* box-shadow: 2px 2px 3px #999; */
  z-index: 21;
}

.my-float-call {
  margin-top: 8px;
}





/* ===========================
1300 resolution
=============================== */
@media only screen and (min-width:1300px) and (max-width:1400px) {
  .about-section .content-column .email {
    margin-bottom: 12px;
  }

  .about-section .content-column .text {
    margin-bottom: 9px;
  }

  .section-title {
    padding-bottom: 6px !important;
  }
}



/* ===========================
1000 resolution
=============================== */
@media(min-width:1400px) and (max-width:1700px){
    .banner-caption h1 {
    font-size: 49px !important;
    }
    
    .banner-caption-content{
        padding:190px;
    }
    .banner-caption-content img {
    height: 73px !important;
}

}
@media(min-width:920px) and (max-width:1400px){
    .mouse{
    bottom:19px !important;
}
    .banner-caption-content{
        padding:0 !important;
    }
    .banner-caption h1{
        font-size:41px !important;
    }
    .banner-caption-content img {
    height: 54px !important;
}
}
@media(max-width:1000px) {
  #footer .footer-top .footer-info ul {
    display: block !important;
  }

  .float-whatsapp {
    bottom: 85px;
    right: 20px;
    z-index: 11;
  }
  
  
  .about-section .content-column .text{
      font-size: 15px;
    line-height: 26px;
  }

  .float-call {
    bottom: 153px;
    right: 20px;
  }

  .section-title p {
    font-size: 29px !important;
  }

  .section-title {
    padding-bottom: 0px !important;
  }

  .about-section {
    padding: 0px !important;
  }

  .branches {
    padding: 50px 0 !important;
  }

  .about-section .content-column .email {
    margin-bottom: 15px !important;
  }

  .about-section .image-column .inner-column .image .overlay-box {
    left: 14px !important;
  }

  .about-section .image-column .inner-column .image .overlay-box .year-box {
    font-size: 20px !important;
  }

  .products figure.snip1200 p {
    top: 5% !important;
    line-height: 29px !important;
    padding: 0px !important;
    transform: translateY(0%) !important;
  }

  .products figure.snip1200 h2 {
    font-size: 20px !important;
  }

  .branches .branch {
    padding: 0px !important;
  }

  #topbar {
    background-color: #005182;
  }

  #footer {
    padding: 40px 0 30px !important;
  }

  #topbar .contact-info a {
    font-size: 11px !important;
  }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  min-height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 120px 0px;
  color: white;
}
.breadcrumbs::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background:#000000b5;
}
.breadcrumbs .container{
  position: relative;
}


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

@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) {
        .branches {
        padding: 30px 0 !important;
    }

    .social-ico li img{
        height:30px !important;
        width:30px !important;
    }
    .number{
        font-size:18px !important;
    }
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}
/* ---------- */
/* products */
/* ---------- */

:root{
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-hover:#192a56;
  --bs-primary:#565c64;
}
.product-grid{
background-color: #fff;
font-family: 'Montserrat', sans-serif;
text-align: center;
}
.product-grid .product-image{
overflow: hidden;
position: relative;
}
.product-grid .product-image a.image{ display: block; }
.product-grid .product-image img{
width: 100%;
height: auto;
}
.product-grid .product-image .pic-1{ transition: all 0.3s ease 0s; }
.product-grid .product-image:hover .pic-1{ transform: translateX(100%); }
.product-grid .product-image .pic-2{
width: 100%;
height: 100%;
transform: translateX(-101%);
position: absolute;
top: 0;
left: 0;
transition: all 0.3s ease 0s;
}
.product-grid .product-image:hover .pic-2{ transform: translateX(0); }
.product-grid .product-sale-label{
color: #fff;
background: var(--bs-hover);
font-size: 13px;
text-transform: uppercase;
letter-spacing: 1px;
padding: 2px 8px;
position: absolute;
top: 15px;
left: 15px;
}
.product-grid .product-like-icon{
color: #696969;
font-size: 22px;
line-height: 20px;
position: absolute;
top: 15px;
right: 15px;
}
.product-grid .product-like-icon:hover{ color: var(--bs-hover); }
.product-grid .product-like-icon:before,
.product-grid .product-like-icon:after{
content: attr(data-tip);
color: #fff;
background-color: #000;
font-size: 12px;
line-height: 18px;
padding: 7px 7px 5px;
visibility: hidden;
position: absolute;
right: 0;
top: 15px;
transition: all 0.3s ease 0s;
}
.product-grid .product-like-icon:after{
content: '';
height: 15px;
width: 15px;
padding: 0;
transform: translateX(-50%) rotate(45deg);
right: auto;
left: 50%;
top: 15px;
z-index: -1;
}
.product-grid .product-like-icon:hover:before,
.product-grid .product-like-icon:hover:after{
visibility: visible;
top: 30px;
}
.product-grid .product-links{
width: 170px;
padding: 0;
margin: 0;
list-style: none;
opacity: 0;
transform: translateX(-50%);
position: absolute;
bottom: -50px;
left: 50%;
transition: all 0.3s ease 0s;
}
.product-grid:hover .product-links{
bottom: 40px;
opacity: 1;
}
.product-grid .product-links li{
display: inline-block;
margin: 0 2px;
}
.product-grid .product-links li a{
color: #fff;
background: #192a56;
font-size: 16px;
line-height: 48px;
width: 48px;
height: 48px;
border-radius: 50%;
display: block;
transition: all 0.3s ease 0s;
}
.product-grid:hover .product-links li a:hover{ background: #333; }
.product-grid .product-content{
text-align: left;
padding: 15px 0 0;
}
.product-grid .title{
font-size: 14px;
font-weight: 500;
text-transform: capitalize;
margin: 0 0 8px;
}
.product-grid .title a{
color: #333;
transition: all 0.3s ease 0s;
text-decoration:none;
font-weight:600;
font-size:18px;
}
.product-grid .title a:hover{ color: var(--bs-hover); }
.product-grid .price{
color: var(--bs-hover);
font-size: 16px;
font-weight: 500;
}
.product-grid .price span{
color: #555;
font-size: 14px;
font-weight: 400;
text-decoration: line-through;
margin: 0 5px 0 0;
}
@media screen and (max-width: 990px){
.product-grid{ margin: 0 0 30px; }
.banner-caption h1{
    font-size:32px !important;
}
.banner-caption-content{
    padding:0 !important;
}
.banner-gallery{
    margin-top:20px !important;
}
.about-section{
    margin-top:0;
}
}

.contact-home{
    padding:120px 0;
}
.number{
    text-align:center;

}
.social-ico{
    display:flex;
    align-items:center;
    justify-content:center;
    border-top:1px solid #000;
    padding-top:30px;
    margin-top:30px;
}
.social-ico li{
    display:inline-block;
    margin:0 10px;
}
.social-ico li img{
    width:40px;
    height:auto;
}
.mouse {
  position: relative;
  display: block;
  width: 22px;
  height: 35px;
  margin: 80px auto 0;
  border: 2px solid #fff;
  border-radius: 32px;
  position: absolute;
  left: 80px;
  bottom: 125px;
  z-index: 55;
}
.mouse span {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  position: absolute;
  left: -37px;
  top: -75px;
  white-space: nowrap;
  transform: rotate(-90deg);
}
.mouse:after {
  content: "";
  position: absolute;
  display: block;
  top: 5%;
  left: 0;
  right: 0;
  width: 4px;
  height: 4px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50%;
  animation: ani-mouse 2s linear infinite;
}
@keyframes ani-mouse{
  0% {
    transform: scale(0);
    top: 5%;
  }
  20% {
    transform: scale(1);
    top: 10%;
  }
  80% {
    transform: scale(1);
    top: 70%;
  }
  100% {
    transform: scale(0);
    top: 85%;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #47b2e4;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #47b2e4;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

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

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

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

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 150px;
}

.contact .php-email-form button[type=submit] {
  background: #47b2e4;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #209dd8;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.youtube-container {
    position:relative;
	overflow: hidden;
	width: 100%;
	/* Keep it the right aspect-ratio */
	aspect-ratio: 16/9;
	/* No clicking/hover effects */
	pointer-events: none;
  /* position: absolute; */
  /* margin-bottom: 0; */
  /* top: -55px; */
  margin-top:78px;
	
	
}
.youtube-container:after {
    position: absolute;
    content: "";
    z-index: 2;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .6);
}
.iframe {
  /* Extend it beyond the viewport... */
  width: 300%;
  height: 100%;
  /* ...and bring it back again */
  margin-left: -100%;

}
.banner-caption{
    position:absolute;
    height:100%;
    width:100%;
    z-index:9;
    top:0;
    left:0;
    display:flex;
    align-items:center;
    justify-content:center;
}
.banner-caption h1{
    font-size:60px;
    font-weight:bold;
    color:#fff;
    text-align:center
}
.banner-caption h5{
    font-size:30px;
    color:#fff;
    text-align:center
}
.banner-caption p{
    color:#fff;
    text-align:center
}
/* custom code */
btn.btn.btn-primary.mybtn {
  height: 54px;
  background-color: #006fb0;
  margin: 6px;
  width: 200px;
}
btn.btn.btn-primary.mybtn p {
  padding: 6px;
}
.banner-caption-content{
        display: flex
;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding:250px;
}
.banner-caption-content img{
    height:90px;
}
.banner-gallery{
    margin-top:78px;
    position:relative;
}
.banner-gallery img{
    border-radius:10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.banner-gallery::after {
    z-index:3;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90%; /* Adjust height as needed */
    background: linear-gradient(to top, black, transparent);
    pointer-events: none; /* Ensures it doesn't block interaction */
}
.banner-link {
    position: absolute;
    bottom: 97px;
    left: 0;
    width: 100%;
    text-align:center;
    color:#fff;
font-size:20px;
    text-decoration: none;
    z-index: 4; /* Ensure it stays above the gradient */
}
.slick-slider .element{
  height:100px;
  width:100px;
  background-color:#000;
  color:#fff;
  border-radius:5px;
  display:inline-block;
  margin:0px 10px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  font-size:20px;
}
.slick-testi .slick-next{
    display:none !important;
}
.slick-testi .slick-prev{
    display:none !important;
}

.slick-testi .slick-slide{
    margin:0 10px;
}



.branches iframe{
    height:400px;
}











.testimonial-three__single {
    position: relative;
    display: block;
    background-color: #fff;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding: 50px 40px 40px;
    border-radius: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-three__single:hover {
    transform: translateY(-10px);
}

.testimonial-three__client-info {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-three__client-img {
    position: relative;
    display: block;
    background-color: #000;
    width: 70px;
    z-index: 1;
}

.testimonial-three__client-img:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 10px;
    right: -10px;
    height: 10px;
    background-color: rgb(0, 46, 83);
    z-index: -1;
}

.testimonial-three__client-img:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 10px;
    width: 10px;
    right: -10px;
    background-color: rgb(0, 46, 83);
    z-index: -1;
}

.testimonial-three__client-img img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.testimonial-three__client-content {
    position: relative;
    display: block;
}

.testimonial-three__client-name {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 7px;
}

.testimonial-three__client-name a {
    color: #000;
}

.testimonial-three__client-name a:hover {
    color: rgb(0, 46, 83);
}

.testimonial-three__client-sub-title {
    font-size: 17px;
    line-height: 17px;
}

.testimonial-three__quote {
    position: absolute;
    top: 50px;
    right: 40px;
}

.testimonial-three__quote i {
    position: relative;
    display: inline-block;
    font-size: 60px;
    color: rgb(0, 46, 83);
}

.testimonial-three__text {
    font-size: 14px;
    margin-top: 32px;
    margin-bottom: 21px;
}

.testimonial-three__rating {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.testimonial-three__rating i {
    font-size: 17px;
    color: rgb(0, 46, 83);
}


.testimonial-three__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-three__carousel.owl-carousel .owl-dots {
    position: absolute;
    bottom: -62px;
    left: 0px;
    right: 0;
    text-align: center;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-three__carousel.owl-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0,0,0, .30);
    border: 2px solid transparent;
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.testimonial-three__carousel.owl-carousel .owl-dots .owl-dot+.owl-dot {
    margin-left: 10px;
}

.testimonial-three__carousel.owl-carousel .owl-dot.active {
    background-color: rgba(var(0,0,0, 0);
    border: 2px solid vrgb(0, 46, 83);
}

.testimonial-three__carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

.testimonial-three__carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
}


