/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
  --primary-color: #160647;
  --secondary-color: #2f957a;
  --primary-font: "Poppins", sans-serif;
}

@keyframes background-pan {
  from {
    background-position: 0% center;
  }
  to {
    background-position: -200% center;
  }
}

body::-webkit-scrollbar {
  width: 11px;
}

body::-webkit-scrollbar-track {
  width: 10px;
  background: #d4d4d4;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #85f4bb 2.42%,
    rgba(140, 217, 232, 0.52) 102.42%
  );

  border-radius: 6px;
  border: none;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
}

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

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

.section-header {
  text-align: center;
  padding-bottom: 40px;
}
.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #4154f1;
  text-transform: uppercase;
}
.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  color: #012970;
}
@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/* Buttons

-------*/

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.btn a {
  font-weight: 400;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 500px;
  font-family: var(--primary-font);
}

.btn .primary-btn {
  background-color: var(--primary-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border: rgba(255, 255, 255, 0) 2px solid;
  transition: all 0.7s;
}
.btn .primary-btn:hover {
  border: rgba(255, 255, 255, 1) 2px solid;
}
.btn .primary-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background-color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 500px;
}

.btn .white-btn {
  background-color: #fff;
  color: var(--primary-color);
  border: rgba(255, 255, 255, 1) 2px solid;
  transition: all 0.7s;
}
.btn .white-btn:hover {
  border: var(--primary-color) 2px solid;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}
.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}
.header .logo {
  line-height: 0;
}
.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

/*--------------------------------------------------------------
# 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: var(--primary-font);
  font-size: 18px;
  font-weight: 400;
  color: #4f4f4f;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.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: var(--primary-color);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--secondary-color);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 500px;
  color: #fff;
  transition: all ease 0.3s;
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: var(--primary-color);
  font-weight: 400;
}
.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;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}
.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: #4154f1;
}
.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: #012970;
  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(1, 22, 61, 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;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #012970;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #4154f1;
}
.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: #4154f1;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero section
--------------------------------------------------------------*/
.hero {
  margin-top: 60px;
}
.hero .gradiant-box {
  padding-top: 36px;
  background: linear-gradient(
    180deg,
    #85f4bb 2.42%,
    rgba(140, 217, 232, 0.52) 102.42%
  );
  border-radius: 80px;
  height: 660px;
}
.hero .gradiant-box .text-content {
  padding: 36px;
}

.hero .gradiant-box .text-content h2 {
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 60px;
  line-height: 90px;
}

.hero .gradiant-box .text-content h2 > .gradiant {
  animation: background-pan 3s linear infinite;
  background: linear-gradient(
    89.68deg,
    rgba(175, 134, 49, 0.78) 33.9%,
    rgba(5, 179, 171, 0.7) 91.12%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  background-size: 200%;
}
.hero .gradiant-box .text-content p {
  color: #000;
  font-size: 16px;
}
.hero .gradiant-box .img-decoration {
  position: relative;
}

.hero .gradiant-box .img-decoration img {
  position: absolute;
  width: 50px;
  left: 90px;
  top: 20px;
}

.hero .text-box {
  width: 100%;
  min-height: 350px;
  background: #ffffff;
  box-shadow: 6px 6px 45px 22px rgba(0, 0, 0, 0.05);
  border-radius: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  margin-top: -200px;
}
.hero .text-box p {
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 24px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Client section
--------------------------------------------------------------*/

.client .content p {
  color: var(--primary-color);
  font-size: 22px;
  font-family: var(--primary-font);
  font-weight: 600;
}

#image-track .image {
  width: 40vmin;
  height: 56vmin;
  object-fit: cover;
  object-position: center;
}
.client .img {
  position: relative;
}

.client .img img {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  transition: all 0.4s ease;
}
.client .img img:hover {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
}
#image-track {
  display: flex;
  gap: 4vmin;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(0%, -50%);
}

.client .img .hundrent {
  z-index: -777;
}
.client .img .hundrent h2 {
  font-family: var(--primary-font);
  font-size: 300px;
  font-weight: 600;
  position: absolute;
  top: -110px;
  left: -20px;
  z-index: -999;
  color: rgba(0, 0, 0, 0.05);
}

/*--------------------------------------------------------------
# Service section
--------------------------------------------------------------*/
.service header h2 {
  font-family: var(--primary-font);
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 600;
}

.service header p {
  font-family: var(--primary-font);
  font-size: 32px;
  color: var(--primary-color);
  font-weight: 600;
}
.service .bg-color {
  background-image: url(/img/service-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 60px;
  padding: 12px;
}
.service .box {
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid #ffffff;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.service .box .box-icon i {
  color: var(--secondary-color);
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  font-size: 24px;
  border-radius: 500px;
}
.service .box .box-text h4 {
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 20px;
  font-weight: 600;
}

.service .box .box-text {
  color: #000;
  font-size: 18px;
  font-weight: 400;
}

.service .box .box-text a {
  color: var(--secondary-color);
  text-transform: 0.4s;
}

.service .box .box-text a:hover {
  color: #0e614b;
}

/*--------------------------------------------------------------
# Testimonials section
--------------------------------------------------------------*/
.testimonials .ml-n1 {
  margin-left: -3rem;
}
.testimonials .ml-3 {
  margin-left: 3rem;
}

.testimonials .mr-n1 {
  margin-right: -6rem !important;
}
.testimonials .testimonial-box .top-section {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.testimonials .testimonial-box .top-section img {
  width: 60px;
  height: 60px;
  border-radius: 150px;
}
.testimonials .testimonial-box .top-section .title-section h4 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 20px;
  font-family: var(--primary-font);
  margin: 0px;
}
.testimonials .testimonial-box .top-section .title-section p {
  font-family: var(--primary-font);
  color: #c2c2c2;
  font-weight: 400;
  font-size: 16px;
  margin: 0px;
}
.testimonials .testimonial-box .botton-section p {
  font-size: 18px;
  font-family: var(--primary-font);
  font-weight: 400;
}
.testimonials .testimonial-box .botton-section .teal-color {
  color: var(--secondary-color);
  font-weight: 600;
}

.testimonials .testimonial-box .botton-section .gold-color {
  color: #af8631;
  font-weight: 600;
}

/*--------------------------------------------------------------
# portfolio section
--------------------------------------------------------------*/

.portfolio h2 {
  font-family: var(--primary-font);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 34px;
}

.portfolio h5 {
  font-family: var(--primary-font);
  font-size: 12px;
  color: #9b9b9b;
  margin: 0px;
}
.portfolio p {
  font-weight: 400;
  color: #000;
  font-size: 18px;
}
.portfolio p span {
  color: var(--secondary-color);
  font-weight: 700;
}
.portfolio a {
  color: var(--primary-color);
  background-color: #8cd9e8;
  border-radius: 120px;
  padding: 14px 32px;
  border: rgba(255, 255, 255, 0) 2px solid;
  transition: all 0.7s;
}
.portfolio a:hover {
  border: var(--primary-color) 2px solid;
}
.portfolio .arrow {
  position: relative;
}
.portfolio .arrow .right {
  position: absolute;
  width: 140px;
  bottom: -170px;
  left: -50px;
}

.portfolio .arrow .left {
  position: absolute;
  width: 140px;
  bottom: -100px;
  right: 0px;
}

/*--------------------------------------------------------------
# Footer section
--------------------------------------------------------------*/
.cta {
  background-color: #47bab7;
  padding: 60px 30px;
  border-radius: 30px;
  margin-bottom: -17%;
}

.cta h2 {
  color: #fff;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 32px;
}

.cta a {
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.75);
  border: rgba(255, 255, 255, 0) 2px solid;
  transition: 0.7s all;
}
.cta a:hover {
  border: var(--primary-color) 2px solid;
}
.footer {
  background: rgba(71, 186, 183, 0.2);
}

.footer .padding {
  padding-top: 180px;
}
.footer .footer-link {
  display: flex;
  justify-content: center;
}
.footer .footer-link ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 12px;
}
.footer .footer-link ul li p {
  color: #000;
  font-size: 18px;
  font-family: var(--primary-font);
  font-weight: 600;
  margin: 0px;
}

.footer .footer-link ul li a {
  color: #525252;
  font-size: 16px;
  font-family: var(--primary-font);
  font-weight: 500;
  transition: all ease 0.4s;
}

.footer .footer-link ul li a:hover {
  color: var(--primary-color);
}

.footer .footer-bottom {
  padding: 20px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-bottom .brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer .footer-bottom .brand img {
  width: 70px;
}
.footer .footer-bottom .brand p {
  margin: 0px;
  padding: 0px;
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 600;
}
.footer .footer-bottom .brand a {
  margin: 0px;
  padding: 0px;
  font-size: 12px !important;
  color: var(--secondary-color);
  font-weight: 600;
}
.footer .footer-bottom .brand a:hover {
  text-decoration: underline;
}
.footer .footer-bottom ul {
  list-style: none;
  display: flex;
  gap: 18px;
}

.footer .footer-bottom ul li a i {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.3s;
  height: 40px;
  width: 40px;
  border-radius: 150px;
}
.footer .footer-bottom ul li a:hover i {
  color: var(--secondary-color);
  background-color: rgba(71, 186, 182, 0.15);
}
