:root {
  --white: #fff;
  --black: #000;
  --primary: #40c9f9;
  --secondary: #fec044;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  /* font-family: "Poppins", sans-serif; */
}

@media (min-width: 1700px) {
  .container {
    max-width: 1380px;
  }
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #828288;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Montserrat", sans-serif;
  /* font-family: "Poppins", sans-serif; */
}

img {
  max-width: 100%;
  height: auto;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

figure {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.navbar-brand {
  background-color: #363636;
  border-radius: 50% 50%;
  padding: 0 0 1rem;
  margin: 0 0 -6rem;
}
.navbar-brand img {
  transition: 0.3s ease-in-out;
}

header {
  position: relative;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  top: 0;
  width: 100%;
  transition: 0.3s ease-in-out;
  background: #363636;
}

header.sticky {
  position: fixed;
}

header.sticky .navbar-brand img {
  max-width: 100px;
}

.navbar-nav {
  gap: 1rem 3rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  text-transform: capitalize;
  line-height: 1;
  position: relative;
}
.navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: transform 0.3s ease-in-out;
  background-color: var(--white);
  transform-origin: center;
  transform: scaleX(0);
}
.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}
.form-inline {
  margin-left: 3rem;
}
.themeBtn {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.75em 1.25em;
  border-radius: 50px;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  border: 2px solid var(--primary);
  background: var(--primary);
}

.themeBtn:hover {
  background: var(--secondary);
  color: var(--white);
}
.themeBtn.orangeBtn {
  background-color: var(--secondary);
  color: var(--white);
}
.themeBtn.orangeBtn:hover {
  background-color: var(--primary);
  color: var(--white);
}
.main-slider {
  position: relative;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-slider h2 {
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}
.main-slider h2 span {
  display: block;
  font-size: 4.5625rem;
  font-weight: 400;
}
.main-slider p {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 400;
}
.secHeading {
  font-size: 3.125rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  position: relative;
}
.secHeading span {
  display: block;
  font-weight: 400;
}
/* About Section */
.aboutSec figure {
  position: relative;
}
.aboutSec figure .flower1 {
  position: absolute;
  left: -5rem;
  bottom: 3rem;
  animation: shake infinite 4s;
}
.aboutSec figure .flower2 {
  position: absolute;
  right: -5rem;
  top: -5rem;
  animation: shake infinite 5s;
}
.aboutImg {
  border-radius: 50%;
  box-shadow: 10px 10px var(--primary);
}

.aboutSec p {
  line-height: 2.3;
  margin-top: 1.75rem;
}
.aboutSec .flowerImg {
  position: absolute;
  right: -8rem;
  bottom: 0;
  animation: pulse infinite 5s;
}

/* Service Section */
.serviceSec {
  background: #127ea4 url(../images/serviceBg.png) center/cover no-repeat;
}
.serviceSec .secHeading {
  color: var(--white);
}

.servCard {
  text-align: center;
}
.servCard .imgWrap {
  border-radius: 50%;
  overflow: hidden;
  display: block;
}
.servCard .imgWrap img {
  transition: 0.3s ease-in-out;
}
.servCard h3 {
  margin: 1.5rem 0 1rem;
  font-size: 1.875rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.2;
}
.servCard .themeBtn.orangeBtn {
  color: var(--black);
  border: 2px solid var(--secondary);
}
.servCard .themeBtn.orangeBtn:hover {
  color: var(--white);
}
.servCard:hover .imgWrap img {
  transform: scale(1.125);
}

/* serviceIco */
.serviceBtmSec {
  background: var(--secondary) url(../images/serviceBtmBg.png) center/cover
    no-repeat;
  padding: 4rem 0;
}
.serviceIco {
  text-align: center;
  display: block;
}
.serviceIco .imgWrap {
  border-radius: 50%;
  overflow: hidden;
  height: 200px;
  width: 200px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  background-color: var(--white);
  position: relative;
}
.serviceIco .imgWrap::before {
  content: "";
  height: 40px;
  width: 40px;
  background: var(--primary);
  opacity: 0.2;
  border-radius: 50%;
  position: absolute;
  top: 3.5rem;
  right: 3.5rem;
}
.serviceIco h3 {
  font-size: 1.375rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

/*  chooseSec */

.chooseSec .flowerImg {
  right: auto;
  left: -8rem;
}
.chooseSec h3 {
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
}
.chooseSec ul {
  display: flex;
  gap: 1rem 6rem;
  flex-wrap: wrap;
  max-height: 200px;
  margin-bottom: 1.5rem;
  justify-content: flex-start;
}
.chooseSec ul li {
  color: #828282;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  display: block;
  text-align: left;
  min-width: 165px;
  position: relative;
  padding-left: 1.5rem;
}
.chooseSec ul li::before {
  content: "";
  height: 15px;
  width: 15px;
  position: absolute;
  left: 0;
  top: 0.15rem;
  background: url(../images/tick.png) center/auto no-repeat;
}

/* testimonialSec */
.testimonialSec {
  background: #127ea4 url(../images/testBg.png) center/cover no-repeat;
}

.testimonialSec .secHeading {
  color: var(--white);
}
.testiCard {
  text-align: center;
  padding: 1.5rem;
}
.testiCard p {
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 400;
  line-height: 2.3;
  max-width: 80%;
  margin: 2rem auto 1rem;
}
.testiCard img {
  display: block;
  margin: 0 auto;
}
.testiCard .userImg {
  border: 5px solid var(--secondary);
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

/* Contact Section */
.contactSec {
  background-color: #08485e;
}
.contactSec .flowerImg1 {
  position: absolute;
  left: -16rem;
  top: -4rem;
}
.contactSec .flowerImg2 {
  position: absolute;
  right: -14rem;
  bottom: -2rem;
}
.contactSec .secHeading {
  color: var(--white);
  font-size: 1.375rem;
  text-transform: uppercase;
}
.contactSec .secHeading span {
  font-size: 3.125rem;
}
.contactSec .form-group .form-control {
  border-radius: 10px;
  border: none;
  background-color: var(--white);
  height: 80px;
  font-size: 1.125rem;
  padding-left: 1.5rem;
  color: var(--white);
  transition: 0.4s ease-in-out;
  line-height: 1;
}
.contactSec .form-group {
  margin-bottom: 2rem;
}
.contactSec .form-group .form-control::placeholder {
  color: var(--black);
  opacity: 0.7;
}
.contactSec .form-group textarea.form-control {
  height: 180px;
  padding-top: 1rem;
  resize: none;
}
.contactSec .form-group .form-control:focus {
  background-color: var(--theme-color);
}
.contactSec button.themeBtn {
  border: 0;
  padding: 1.25rem;
  border: 3px solid var(--primary);
}
.contInfo {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.infoWrap {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contInfo li a {
  font-weight: 500;
  color: var(--white);
  font-size: 1.125rem;
}
.contInfo li {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  flex: 1;
  /* text-align: center; */
}
.contInfo li strong {
  font-weight: 600;
  display: block;
  text-transform: uppercase;
}

.socialIo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}
.socialIo li a {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 1;
  font-size: 1.125rem;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: 0.3s ease-in-out;
}
.socialIo li a:hover {
  background-color: var(--white);
  color: var(--secondary);
}

/* Footer css */
footer {
  background-color: var(--primary);
  padding: 1.5rem 0;
}
footer p {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}
.servsec h2 {
  font-size: 3.125rem;
  font-weight: 600;
}
.servsec h3 {
  font-size: 1.875;
  font-weight: 300;
}
/* //blog// */
.blogSec {
  clip-path: var(--clipPath);
}
.blogCard {
  margin: 1rem 0;
}
.blogContent {
  padding: 2rem 1.5rem;
  background-color: var(--white);
}
.blogContent h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.647;
}
.blogContent p {
  font-size: 15px;
  font-weight: 500;
  color: #474747;
  line-height: 1.75;
}

.blogContent a {
  font-size: 14px;
  font-weight: 400;
  color: #00366b;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
}
/* .blogContent a::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: transform 0.3s ease-in-out;
  background-color: var(--black);
  transform-origin: center;
  transform: scaleX(0);
} */

.blogImg {
  position: relative;
  overflow: hidden;
}
.blogImg img {
  transition: 0.3s ease-in-out;
}
.blogDate {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #40c9f9;
  padding: 0.5rem;
  text-align: center;
  min-width: 85px;
}
.blogImg h3 {
  font-size: 3.125rem;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  line-height: 1;
}
.blogImg span {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  line-height: 1;
  text-transform: uppercase;
}
.blogCard:hover img {
  transform: scale(1.1);
}
.blogCard:hover .blogContent a::after {
  transform: scaleX(1);
}
.blogSec .secHeading,
.blogSec .slick-next,
.blogSec .slick-prev {
  color: var(--white);
}
.blogContent ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blogContent li .icon1 {
  width: 2rem;
  height: 2rem;
  background-color: #efefef;
  border-color: #707070;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.blogContent li .icon1:hover {
  background: #40c9f9;
  color: #fff;
}

.blogContent li a {
  color: #292a58;
  font-size: 1rem;
  font-weight: 500;
}
.blogContent li .readbtn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonialSlider {
  padding: 0 2rem;
}
.testimonialSlider .swiper-wrapper {
  padding: 0 0 5rem;
}
.testimonialCard {
  background-color: var(--white);
  border-radius: 18px;
  padding: 2rem 1rem 0rem;
  text-align: center;
  /* margin: 1rem 0rem; */
  margin-bottom: 2.5rem;
  position: relative;
  box-shadow: 0px 3px 7px #707070;
}
.testimonialCard:before,
.testimonialCard:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(calc(-10.625rem / 2));
  height: 0;
  width: 2px;
  background: var(--theme-color);
  opacity: 0;
  transition: ease all 0.5s;
}
.testimonialCard:after {
  left: auto;
  right: 0;
}
.testimonialCard:hover:before,
.testimonialCard:hover:after {
  opacity: 1;
  height: 10.625rem;
}
.testimonialCard .quote {
  margin: 0 auto;
}
.testimonialCard p {
  color: var(--black);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-top: 1rem;
  font-style: italic;
}
.testimonialCard h3 {
  font-size: 2rem;
  color: #2d2e59;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.testimonialCard h4 {
  font-size: 1.25rem;
  color: #000;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.testimonialCard span {
  display: block;
  color: #ffde06;
  font-size: 1.125rem;
}
.testimonialCard .user {
  margin: 1rem auto -4rem;
  border: 5px solid var(--theme-color);
}
.swiper-slide.swiper-slide-active .testimonialCard {
  box-shadow: 0px 3px 20px #000000a2;
}
.swiper-slide.swiper-slide-active .testimonialCard::before,
.swiper-slide.swiper-slide-active .testimonialCard::after {
  opacity: 1;
  height: 10.625rem;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--black);
}
.rounded-circle-acurate {
  height: 550px;
  width: 550px;
  border-radius: 50% !important;
}
.servsec h3 {
  font-size: 1.875rem;
  font-weight: 500;
  color: #000000;
  padding-top: 1rem;
}
.servsec p {
  font-size: 1.125rem;
  color: #000000;
}

.testInner{
  background: none;
}
.aboutSec ul li {
  list-style-type: disc;
  padding: 0.3rem;
}
.aboutSec h4 {
  padding-top: 2rem;
}
.serSec ul{
  margin: 1.2rem 0;
  list-style-position: inside;
}
.serSec ul li {
  list-style-type: disc;
  font-size: 1rem;
  font-weight: bold;
  padding: 1rem 0;
}
.termsSec h4 {
  font-weight: 600;
  font-size: 2rem;
}
.termsSec a {
  color: #000;
  font-weight: 500;
  padding: 0 10px;
}

.terms {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.terms li a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}