@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700;800&family=Roboto:wght@100;300;400;500;700;900&family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  /* 
  font-family: 'Montserrat',sans-serif;
  font-family: 'Open Sans',sans-serif;
  font-family: 'Roboto',sans-serif;
  font-family: 'Montserrat', sans-serif; */
  font-family: 'Source Sans Pro',sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 25px;
  font-size: 18px;
}

a {
  color: #fbbc12;
  text-decoration: none;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #fbbc12;
  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: #ee7843;
  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;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 72px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

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

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

#main {
  margin-top: 72px;
}

/*--------------------------------------------------------------
# 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-size: 15px;
  font-weight: 550 !important;
  color: #4e4039;
  white-space: nowrap;
  transition: 0.3s;
}
.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: #fbbc12;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #fbbc12;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #7a6960;
  font-size: 28px;
  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(78, 64, 57, 0.9);
  transition: 0.3s;
}
.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: #7a6960;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #fbbc12;
}

.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: #fbbc12;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  background: #e0f3fb;
  border-bottom: 2px solid #fcebe3;
  margin: 72px 0 -72px 0;
}
#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #4e4039;
}
#hero h2 {
  color: #a08f86;
  margin: 15px 0 0 0;
  font-size: 24px;
}
#hero .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 3px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #fbbc12;
}
#hero .btn-get-started:hover {
  background: #ef7f4d;
}
#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
.hero-text-slider .swiper-slide .slider-title {
  line-height: 1.8;
} 
@media (max-width: 991px) {
  #hero {
    height: calc(100vh - 72px);
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}
@media (max-height: 600px) {
  #hero {
    height: 120vh;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.sec-bt-mp-0 {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.section-bg {
  background-color: #e0f3fb;
}
.section-bg2 {
  background-color: #ffcc001f;;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 15px;
  line-height: 1px;
  margin-bottom: 15px;
  color: #fbbc12;
  text-shadow: 1px 2px gray;
}
.section-title p {
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
}
section p {
line-height: 1.5;
}

.section-title p::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #fbbc12;
  bottom: 0;
  left: calc(50% - 30px);
}


.btn-get-know:hover {
  border: 2px solid transparent;
}

.btn-get-know:hover {
  color: #fff;
}

.btn-get-know {
  display: inline-block;
  height: 44px;
  line-height: 40px;
  padding: 0 20px;
  border-radius: 25px;
  color: #00aeef;
  font-size: 15px;
  border: 2px solid #00aeef;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.btn-get-know {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  z-index: 9;
}

.btn-get-know:hover::before {
  box-shadow: inset 0 0 0 10em #00aeef;
}

.btn-get-know::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: '';
  border-radius: 50%;
  display: block;
  width: 300px;
  height: 300px;
  line-height: 20em;
  left: 50%;
  margin-left: -150px;
  text-align: center;
  -webkit-transition: box-shadow 0.5s ease-out;
  transition: box-shadow 0.5s ease-out;
  z-index: -1;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.inner-page-banner {
  background: no-repeat;
  background-size: cover;
  overflow: hidden;
  min-height: 150px;
  padding-top: 100px;
}
@media (max-width: 575px) {
.inner-page-banner {
    background: no-repeat;
    background-size: 100%;
    overflow: hidden;
    min-height: 0px !important;
    padding-top: 0px !important;
  }
}

@media (min-width: 576px) {
.inner-page-banner {
    background: no-repeat;
    background-size: 100%;
    overflow: hidden;
    min-height: 80px !important;
    padding-top: 50px !important;
  }
}

.breadcrumbs {
  padding: 15px 0;
  background-color: #fef5f161;
  min-height: 40px;
  bottom: 0;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px !important;
  font-weight: 600 !important;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 34px;
  color: #4e4039;
}
.about h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
  color: #7a6960;
}
.about i {
  font-size: 48px;
  margin-top: 15px;
  color: #f39e7a;
}
.about p {
  color: #333333;
  line-height: 1.5;
  font-size: 16px;
}
@media (max-width: 991px) {
  .about .about-img img {
    max-width: 70%;
  }
}
@media (max-width: 767px) {
  .about .about-img img {
    max-width: 90%;
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 3px solid #fff;
}
.services .icon-box:hover {
  transform: translateY(-5px);
  border-color: #ef7f4d;
}
.services .icon {
  font-size: 38px;
  line-height: 1;
  margin-bottom: 15px;
  color: #ef7f4d;
}
.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.services .title a {
  color: #111;
}
.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# technologies
--------------------------------------------------------------*/
.technologies .technologies-item {
  margin-bottom: 30px;
}

.technologies #technologies-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.technologies #technologies-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #212529;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.technologies #technologies-flters li:hover,
.technologies #technologies-flters li.filter-active {
  color: #fbbc12;
}

.technologies #technologies-flters li:last-child {
  margin-right: 0;
}

.technologies .technologies-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  text-align: center !important;
  z-index: 1;
}

.technologies .technologies-wrap::before {
  content: "";
  background: rgba(212, 210, 208, 0.6);
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
}

.technologies .technologies-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.technologies .technologies-wrap .technologies-info {
  opacity: 0;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}


.technologies .technologies-wrap:hover::before {
  left: 0;
}

.technologies .technologies-wrap:hover .technologies-info {
  opacity: 1;
  bottom: 0;
}

/* .hover-shadow {
  box-shadow: none;
  transition: all .3s ease-in-out;
}
 */

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-slider .swiper-slide img {
  opacity: 0.8;
  transition: 0.5s;
  max-width: 100%;
}
.clients .clients-slider .swiper-slide img:hover {
  opacity: 1;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  color: #fbbc12;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  color: #fbbc12;
}

@media (max-width: 767px) {
.clients .clients-slider .swiper-slide img {
  max-width: 100%;
}
}
@media (max-width: 575px) {
.clients .clients-slider .swiper-slide img {
  max-width: 100%;
}
}
@media (min-width: 992px) {
.clients .clients-slider .swiper-slide img {
  max-width: 100% !important;
}
}


/*--------------------------------------------------------------
# Technologies
--------------------------------------------------------------*/
.technologies .technologies-slider .swiper-slide img {
  opacity: 0.9;
  transition: 0.3s;
  max-width: 125%;
}

.technologies .technologies-slider .swiper-slide img:hover {
  opacity: 1;
}

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

.technologies .technologies-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #fbbc12;
}

.technologies .technologies-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fbbc12;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #fbbc12;
  border-bottom: 3px solid #fbbc12;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .info i {
  font-size: 20px;
  color: #fbbc12;
  float: left;
  width: 44px;
  height: 44px;
  background: #fdf1ec;
  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: #7a6960;
}
.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #ab9d95;
}
.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: #fbbc12;
  color: #fff;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #fbbc12;
  color: #fff;
}
.contact .contact-form {
  width: 100%;
  border-top: 3px solid #fbbc12;
  border-bottom: 3px solid #fbbc12;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .contact-form .form-group {
  padding-bottom: 8px;
}
.contact .contact-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .contact-form .error-message br + br {
  margin-top: 25px;
}
.contact .contact-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .contact-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .contact-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;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .contact-form input, .contact .contact-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .contact-form input {
  height: 44px;
}
.contact .contact-form textarea {
  padding: 10px 12px;
}
.contact .contact-form button[type=submit] {
  background: #fbbc12;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .contact-form button[type=submit]:hover {
  background: #ef7f4d;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #27aae1 !important;
  padding: 0 0 20px 0;
  color: #141516;
  font-size: 15px;
}
#footer .footer-newsletter {
  padding: 30px 0;
  background: #f9fafb;
  text-align: center;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #e0f3fb !important;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact .ktouch i.bx {
font-size: 30px;
vertical-align: text-top;
padding-right: 12px;
} 

#footer .footer-top .footer-contact h4 {
  padding: 2px 0 2px 0;
  line-height: 1;
}
#footer .footer-top .footer-contact p {
  margin-bottom: 0;
  color: #2e2d2d;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #212529;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #f39e7a;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 3px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #2e2d2d;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fbbc12;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fbbc12;
  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: #ef7f4d;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  text-align: center;
  float: left;
  font-size: 13px;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #212529;
}
#footer .credits a {
  color: black;
}

#footer .credits a:hover {
  color: #ef7f4d;
}

@media (max-width: 575px) {
  #footer .copyright, #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
    padding: 3px 0;
  }
}

/*--------------------------------------------------------------
# Inner-Page
--------------------------------------------------------------*/
.inner-page h3 {
  font-weight: 700;
  font-size: 34px;
  color: #4e4039;
}

.inner-page h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
  color: #7a6960;
}

.inner-page i {
  font-size: 48px;
  margin-top: 15px;
  color: #f39e7a;
}

.inner-page p {
  color: #333333;
  line-height: 1.5;
  font-size: 16px;
}

.inpg-sec-bg{
  background-color: #f7f6f6;
}

@media (max-width: 991px) {
  .inner-page .inner-page-img img {
    max-width: 70%;
  }
}

@media (max-width: 767px) {
  .about .about-img img {
    max-width: 90%;
  }
}

/**
custom button
**/
.btn-1:hover {
  border: 2px solid transparent;
}
.btn-1:hover {
  color: #fff;
}
.btn-1 {
  display: inline-block;
  height: 44px;
  line-height: 40px;
  padding: 0 20px;
  border-radius: 25px;
  color: #00aeef;
  font-size: 15px;
  border: 2px solid #00aeef;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.btn-1 {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  z-index: 9;
}

.btn-1:hover::before {
  box-shadow: inset 0 0 0 10em #00aeef;
}
.btn-1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: '';
  border-radius: 50%;
  display: block;
  width: 300px;
  height: 300px;
  line-height: 20em;
  left: 50%;
  margin-left: -150px;
  text-align: center;
  -webkit-transition: box-shadow 0.5s ease-out;
  transition: box-shadow 0.5s ease-out;
  z-index: -1;
}

/** start timeline **/

.main-timeline-4 {
  position: relative;
}

.main-timeline-4 p {
color: white;
}

.main-timeline-4 h4 {
  color: white;
}

.main-timeline-4::after {
  content: '';
  position: absolute;
  width: 3px;
  background-color: rgb(147 149 152);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-4 {
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-4::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -11px;
  background-color: #83c341;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.left-4 {
  padding: 0px 40px 20px 0px;
  left: 0;
}

.right-4 {
  padding: 0px 0px 20px 40px;
  left: 50%;
}

.left-4::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  right: 30px;
  border: medium solid rgba(37, 117, 252, 1);
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent rgba(37, 117, 252, 1);
}

.right-4::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  left: 30px;
  border: medium solid rgba(245, 87, 108, 1);
  border-width: 10px 10px 10px 0;
  border-color: transparent rgba(245, 87, 108, 1) transparent transparent;
}

.right-4::after {
  left: -14px;
}

@media screen and (max-width: 600px) {

  .main-timeline-4::after {
    left: 31px;
  }

  .timeline-4 {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-4::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  .left-4::after,
  .right-4::after {
    left: 18px;
  }

  .left-4::before {
    right: auto;
  }

  .right-4 {
    left: 0%;
  }
}

.gradient-custom {
  background: #17749c;
  background: -webkit-linear-gradient(to right, rgb(21 115 155), rgb(127 166 183));
  background: linear-gradient(to right, rgb(21 115 155), rgb(127 166 183));
}

.gradient-custom-4 {
  background: #c24f2e;
  background: -webkit-linear-gradient(to left, rgb(193 76 42), rgb(211 127 103));
  background: linear-gradient(to left, rgb(193 76 42), rgb(211 127 103)); 
  
}

/** end timeline **/


/*--------------------------------------------------------------
# Gtouch Section
--------------------------------------------------------------*/

.gtouch-section {
  padding: 40px 0;
  overflow: hidden;
  background-color: #939598;
}

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

.gtouch-section-title h2 {
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 15px;
  margin-bottom: 15px;
  color: #fbbc12;
  text-shadow: 1px 2px gray;
}

.gtouch-section p {
  line-height: 1.5;
}

.gtouch-section-title p {
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-size: 22px;
  color: #fff;
}

.gtouch-section-title p::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #fbbc12;
  bottom: 0;
  left: calc(50% - 30px);
}

.gtouch-block {
  overflow: hidden;
  background-color: #fff;
  padding: 1rem;
  border-radius: 15px;
}

.gtouch-form{
  overflow: hidden;
  background-color: #fff;
  padding:1rem;
  border-radius: 15px;
}

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

.gtouch-form .error-message br+br {
  margin-top: 25px;
}

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

.gtouch-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 8px;
}

.gtouch-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;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}


.gtouch-form button[type=submit] {
  background: #fbbc12;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.gtouch-form button[type=submit]:hover {
  background: #ef7f4d;
}


.bg-radiant {
    background-image: linear-gradient(-45deg, #49a09d 0, #427caa 36%, #3b58b69c 50%, #83c34187 65%, #ffcc0099 100%);
}

.bg-radiant2 {
  background-image: linear-gradient(-45deg, #49a09d 0, #427caa 36%, #3b58b6 50%, #553dac 65%, #6e21a2 100%);
}


.inner-page .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 3px solid #fff;
}

.inner-page .icon-box-gradient-c1 {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 8px solid #fff;
  background: #17749c;
  background: -webkit-linear-gradient(to right, rgb(21 115 155), rgb(127 166 183));
  background: linear-gradient(to right, rgb(137, 195, 219), rgb(149, 183, 127));
}

.inner-page .icon-box-gradient-c2 {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 8px solid #fff;
  background: #c24f2e;
  background: -webkit-linear-gradient(to right, rgb(240 84 38), rgb(255 204 0 / 59%));
  background: linear-gradient(to right, rgb(240 84 38), rgb(255 204 0 / 59%));
}

.inner-page .icon-box:hover {
  transform: translateY(-5px);
  border-color: #c24f2e;
}

.inner-page .icon-box-gradient-c1:hover {
  transform: translateY(-10px);
  border-color: #c24f2e;
}
.inner-page .icon-box-gradient-c2:hover {
  transform: translateY(10px);
  border-color: #17749c;
}

.inner-page .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
}

.inner-page .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: justify;
  color: #000;
}

.g-recaptcha {
  margin-left: auto !important;
}
