body {
  background: rgb(255, 255, 255);
  color: rgb(112 112 112);
  overflow-x: hidden;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
}

.barlow-regular {
  font-family: Barlow, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-light {
  font-family: Barlow, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-medium {
  font-family: Barlow, sans-serif;
  font-weight: 500;
  font-style: normal;
}

a {
  color: rgb(16, 168, 255);
  text-decoration: none;
  transition: all 0.5s ease 0s;
}

a:hover, a:active, a:focus {
  color: rgb(81, 216, 175);
  outline: none;
  text-decoration: none;
}

p {
  padding: 0px;
  margin: 0px 0px 30px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Barlow, sans-serif;
  font-weight: 400;
  margin: 0px 0px 20px;
  padding: 0px;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: rgb(16 168 255);
  width: 40px;
  height: 40px;
  transition: all 0.4s ease 0s;
}

.back-to-top i {
  font-size: 28px;
  color: rgb(255, 255, 255);
  line-height: 0;
}

.back-to-top:hover {
  background: rgb(113, 223, 190);
  color: rgb(255, 255, 255);
}

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

#topbar {
  background: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(238, 238, 238);
  font-size: 14px;
  padding: 0px;
  height: 40px;
}

#topbar .contact-info i {
  font-style: normal;
  color: rgb(57, 161, 130);
}

#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: rgb(68, 68, 68);
}

#topbar .contact-info i a {
  line-height: 0;
  transition: all 0.3s ease 0s;
}

#topbar .contact-info i a:hover {
  color: rgb(57, 161, 130);
}

#topbar .social-links a {
  color: rgb(85, 85, 85);
  padding: 0px 15px;
  display: inline-block;
  line-height: 1px;
  border-left: 1px solid rgb(233, 233, 233);
}

#topbar .social-links a:hover {
  color: rgb(57, 161, 130);
}

#topbar .social-links a:first-child {
  border-left: 0px;
}

#header {
  height: 80px;
  transition: all 0.5s ease 0s;
  z-index: 997;
  background: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.06) 0px 6px 9px 0px;
}

#header #logo h1 {
  font-size: 42px;
  margin: 0px;
  padding: 0px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

#header #logo h1 a {
  color: rgb(12, 46, 138);
}

#header #logo h1 a span {
  color: rgb(57, 161, 130);
}

#header #logo img {
  padding: 0px;
  margin: 0px;
}

#logo {
  max-width: 120px;
}

@media (max-width: 768px) {
  #header {
      height: 60px;
  }

  #header #logo h1 {
      font-size: 34px;
  }

  #header #logo img {
      max-height: 40px;
  }
}

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

.navbar {
  padding: 0px;
}

.navbar ul {
  margin: 0px;
  padding: 0px;
  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 0px 10px 30px;
  font-family: Barlow, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgb(112 112 112);
  white-space: nowrap;
  transition: all 0.3s ease 0s;
}

.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: rgb(16, 168, 255);
}

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

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  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: rgb(57, 161, 130);
}

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

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

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

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

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

.mobile-nav-toggle {
  color: rgb(12, 46, 138);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: all 0.5s ease 0s;
}

.mobile-nav-toggle.bi-x {
  color: rgb(255, 255, 255);
}

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

  .navbar ul {
      display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  inset: 0px;
  background: rgba(8, 30, 91, 0.9);
  transition: all 0.3s ease 0s;
  z-index: 999;
}

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

.navbar-mobile ul {
  display: block;
  position: absolute;
  inset: 55px 15px 15px;
  padding: 10px 0px;
  background-color: rgb(255, 255, 255);
  overflow-y: auto;
  transition: all 0.3s ease 0s;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: rgb(12, 46, 138);
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: rgb(57, 161, 130);
}

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

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

.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: rgb(57, 161, 130);
}

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

#hero {
  width: 100%;
  height: 85vh;
  position: relative;
  background-size: cover;
  padding: 0px;
}

#hero .hero-content {
  position: absolute;
  inset: 0px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero .hero-content h2 {
  color: rgb(7, 130, 163);
  margin-bottom: 0px;
  font-size: 48px;
  font-weight: 400;
  max-width: 1024px;
}

#hero .hero-content h2 span {
  color: rgb(16 168 255);
  text-decoration: none;
}

@media (max-width: 767px) {
  #hero .hero-content h2 {
      font-size: 34px;
  }
}

.btn-get-started, .btn-projects {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: all 0.5s ease 0s;
  margin: 10px;
  color: rgb(255, 255, 255);
  font-family: Montserrat, sans-serif;
}

.btn-get-started {
  background: rgb(16 168 255);
  border: 2px solid rgb(16 168 255);
}

.btn-get-started:hover {
  background: none;
  color: rgb(7, 130, 163);
}

.btn-projects {
  background: rgb(16 168 255);
  border: 2px solid rgb(16 168 255);
}

.btn-projects:hover {
  background: none;
  color: rgb(7, 130, 163);
}

#hero .hero-slider {
  z-index: 8;
  height: 85vh;
}

#hero .hero-slider::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0px;
  z-index: 7;
}

#hero .hero-slider .swiper-slide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition-property: opacity;
}

section {
  padding: 40px 0px;
  overflow: hidden;
}

.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  color: rgb(7, 130, 163);
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.section-header h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: rgb(16 168 255);
  bottom: 0px;
  left: 0px;
}

.section-header p {
  padding: 0px;
  margin: 0px;
}

.breadcrumbs {
  padding: 20px 0px;
  background-color: rgb(250, 250, 250);
  min-height: 40px;
}

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

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

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

.breadcrumbs ol li + li {
  padding-left: 10px;
  color: rgb(192 192 192);
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: rgb(192 192 192);
  content: "/";
}

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

  .breadcrumbs ol {
      display: block;
  }

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

#about, #wwb, #career {
  padding: 60px 0px 30px;
}

#about .about-img, #wwb .service-img, #career .career-img {
  overflow: hidden;
}

#about .about-img img, #wwb .service-img img, #career .career-img img {
  margin-left: 0px;
  max-width: 100%;
}

@media (max-width: 768px) {
  #about .about-img, #wwb .service-img, #career .career-img {
      height: auto;
  }

  #about .about-img img, #wwb .service-img img, #career .career-img img {
      margin-left: 0px;
      padding-bottom: 30px;
  }
}

#about .content h2, #career .content h2 {
  color: rgb(7, 130, 163);
}

#wwb .content h2 {
  color: rgb(7, 130, 163);
}

#about .content h2, #wwb .content h2, #career .content h2 {
  font-weight: 500;
  font-size: 36px;
  font-family: Barlow, sans-serif;
}

#about .content h3, #wwb .content h3 {
  color: rgb(85, 85, 85);
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  line-height: 32px;
  font-style: normal;
}

#about .content p, #wwb .content p {
  line-height: 32px;
  text-align: center;
}

#about .content p:last-child, #wwb .content p:last-child {
  margin-bottom: 0px;
}

#about .content i, #wwb .content i {
  font-size: 20px;
  padding-right: 4px;
  color: rgb(57, 161, 130);
}

#about .content ul, #wwb .content ul {
  list-style: none;
  padding: 0px;
}

#about .content ul li, #wwb .content ul li {
  padding-bottom: 10px;
}
.wwd-img, .wwb-img {
  position: relative;
}
.wwd-img:before, 
.wwb-img:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.411);
}
#services {
  padding: 60px 0px;
}

#services .box {
  padding: 60px 30px;
  box-shadow: rgba(73, 78, 92, 0.1) 10px 10px 15px;
  background: rgb(255, 255, 255);
  transition: all 0.4s ease 0s;
  height: 100%;
}

#services .box:hover {
  box-shadow: rgba(73, 78, 92, 0.15) 0px 0px 30px;
  transform: translateY(-10px);
}

#services .box .icon {
  float: left;
}

#services .box .icon i {
  color: rgb(68, 68, 68);
  font-size: 40px;
  transition: all 0.5s ease 0s;
  line-height: 0;
  margin-top: 34px;
}

#services .box .icon i::before {
  background: linear-gradient(45deg, rgb(57, 161, 130) 0%, rgb(163, 235, 213) 100%) text;
  -webkit-text-fill-color: transparent;
}

#services .box h4 {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}

#services .box h4 a {
  color: rgb(112 112 112);
}

#services .box p {
  font-size: 16px;
  margin-left: 60px;
  margin-bottom: 0px;
  line-height: 26px;
}

@media (max-width: 767px) {
  #services .box .box {
      margin-bottom: 20px;
  }

  #services .box .icon {
      float: none;
      text-align: center;
      padding-bottom: 15px;
  }

  #services .box h4, #services .box p {
      margin-left: 0px;
      text-align: center;
  }
}

#clients {
  padding: 30px 0px;
}

#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: all 0.3s ease 0s;
  padding: 15px 0px;
}

#clients img:hover {
  opacity: 1;
}

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

#clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgb(255, 255, 255);
  opacity: 1;
  border: 1px solid rgb(57, 161, 130);
}

#clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgb(57, 161, 130);
}

#portfolio {
  background: rgb(255, 255, 255);
  padding: 30px 0px;
}

#portfolio #portfolio-flters {
  padding: 0px;
  margin: 0px auto 25px;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 18px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: rgb(68, 68, 68);
  margin: 0px 3px 10px;
  transition: all 0.3s ease-in-out 0s;
  background: rgb(247, 247, 247);
  border-radius: 4px;
}

#portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
  color: rgb(255, 255, 255);
  background: rgb(57, 161, 130);
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0px;
}

#portfolio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

#portfolio .portfolio-item img {
  position: relative;
  top: 0px;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

#portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -50px;
  z-index: 3;
  transition: all 0.3s ease-in-out 0s;
  background: rgb(57, 161, 130);
  padding: 15px 20px;
}

#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: rgb(255, 255, 255);
  font-weight: 600;
}

#portfolio .portfolio-item .portfolio-info p {
  color: rgb(255, 255, 255);
  font-size: 14px;
  margin-bottom: 0px;
}

#portfolio .portfolio-item .portfolio-info .preview-link, #portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease-in-out 0s;
}

#portfolio .portfolio-item .portfolio-info .preview-link:hover, #portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: rgb(255, 255, 255);
}

#portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

#portfolio .portfolio-item:hover img {
  top: -30px;
}

#portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0px;
}

.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

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

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgb(255, 255, 255);
  opacity: 1;
  border: 1px solid rgb(57, 161, 130);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgb(57, 161, 130);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: rgba(12, 46, 138, 0.08) 0px 0px 30px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(238, 238, 238);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0px;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0px;
}

#testimonials {
  padding: 30px 0px;
}

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

#testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 12px;
}

@media (max-width: 767px) {
  #testimonials .testimonial-item {
      margin: 30px 10px;
  }
}

#testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid rgb(255, 255, 255);
  margin: 0px auto;
}

#testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0px 5px;
  color: rgb(112 112 112);
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgb(153, 153, 153);
  margin: 0px;
}

#testimonials .testimonial-item .quote-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}

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

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

#testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgb(255, 255, 255);
  opacity: 1;
  border: 1px solid rgb(16 168 255);
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgb(16 168 255);
}

#call-to-action {
  background: url("../img/hero-carousel/1.jpg") 0% 0% / cover no-repeat fixed;
  padding: 60px 0px;
  position: relative;
}

#call-to-action::before {
  content: "";
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
}

#call-to-action .cta-title {
  color: rgb(7, 130, 163);
  font-size: 28px;
  font-weight: 400;
}

#call-to-action .cta-title span {
  color: rgb(112 112 112);
}

#call-to-action .cta-text {
  color: rgb(255, 255, 255);
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
      display: flex;
      align-items: center;
      justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: all 0.5s ease 0s;
  margin: 10px;
  border: 3px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
}

#call-to-action .cta-btn:hover {
  background: rgb(57, 161, 130);
  border: 3px solid rgb(57, 161, 130);
}

#team {
  background: rgb(255, 255, 255);
  padding: 30px 0px 0px;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
}

#team .member .pic {
  overflow: hidden;
  text-align: center;
}

#team .member .pic img {
  max-width: 100%;
}

#team .member .details {
  background: rgb(57, 161, 130);
  color: rgb(255, 255, 255);
  padding: 15px;
  border-radius: 0px 0px 3px 3px;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

#team .member .social {
  margin-top: 5px;
}

#team .member .social a {
  color: rgb(255, 255, 255);
}

#team .member .social i {
  font-size: 16px;
  margin: 0px 2px;
}

#contact {
  padding: 30px 0px;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: rgb(57, 161, 130);
}

#contact .contact-info address, #contact .contact-info p {
  margin-bottom: 0px;
  color: rgb(192 192 192);
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: rgb(153, 153, 153);
}

#contact .contact-info a {
  color: rgb(192 192 192);
}

#contact .contact-info a:hover {
  color: rgb(57, 161, 130);
}

#contact .contact-address, #contact .contact-phone, #contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  #contact .contact-address, #contact .contact-phone, #contact .contact-email {
      padding: 20px 0px;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
      border-left: 1px solid rgb(221, 221, 221);
      border-right: 1px solid rgb(221, 221, 221);
  }
}

#contact #google-map {
  height: 290px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  #contact #google-map {
      margin-top: 20px;
  }
}

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

#contact .php-email-form .error-message {
  display: none;
  color: rgb(255, 255, 255);
  background: rgb(237, 60, 13);
  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: rgb(255, 255, 255);
  background: rgb(24, 210, 110);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: rgb(255, 255, 255);
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0px 10px -6px 0px;
  border-width: 3px;
  border-style: solid;
  border-color: rgb(238, 238, 238) rgb(24, 210, 110) rgb(24, 210, 110);
  border-image: initial;
  animation: 1s linear 0s infinite normal none running animate-loading;
}

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

#contact .php-email-form button[type="submit"] {
  background: rgb(16 168 255);
  border: 2px solid rgb(16 168 255);
  border-radius: 50px;
  padding: 10px 30px;
  font-size: 15px;
  color: rgb(255, 255, 255);
  transition: all 0.4s ease 0s;
  cursor: pointer;
}

#contact .php-email-form button[type="submit"]:hover {
  background: none;
  color: rgb(7, 130, 163);
  border: 2px solid rgb(16 168 255);
}

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

  100% {
      transform: rotate(360deg);
  }
}
.get-in-touch {
  background-color: #f2f2f2;
}
#get-in-touch h4 {
  color: rgb(112, 112, 112);
}

#get-in-touch h4 a {
  color: rgb(7, 130, 163);
}

#footer {
  background: rgb(4 60 93);
  padding: 50px 0px;
}

#footer .copyright {
  color: rgb(132, 161, 239);
  text-align: center;
  font-size: 14px;
}

#footer .credits {
  text-align: center;
  font-size: 16px;
  color: rgb(57, 161, 130);
}

#footer .credits a {
  color: rgb(12, 46, 138);
}
/*--------------------------------------------------------------
# product
--------------------------------------------------------------*/
.product {
  padding-bottom: 40px;
}

.product .nav-tabs {
  border: 0;
}

.product .nav-link {
  border: 0;
  padding: 15px;
  transition: 0.3s;
  color: #364146;
  transition: 0.3s ease-in-out;
  border-radius: 0;
  border-left: 4px solid #fafbfb;
}

.product .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  color: rgb(112 112 112);
}

.product .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.product .nav-link:hover {
  background: #fafbfb;
}

.product .nav-link:hover h4 {
  color: rgb(0, 156, 234);
}

.product .nav-link.active {
  border-radius: 0;
  border: 0;
  border-left: 4px solid #009cea;
  background: #fafbfb;
}

.product .nav-link.active h4 {
  color: #009cea;
}

.product .tab-pane.active {
  animation: slide-down 0.5s ease-out;
}

.product .tab-content {
  text-align: right;
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
/* product */