@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  overflow-x: hidden;
}

main {
  overflow: hidden;
}

a {
  text-decoration: none;
}

.btn:focus {
  outline: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

input:focus {
  outline: none;
  box-shadow: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

/******* main-header *********/

.main-header {
  border-top: 4px solid #80c8d5;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
}

.main-header nav {
}

.main-header nav .navbar-brand {
  padding: 0;
}

.main-header nav .nav-item .nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  text-transform: capitalize;
  position: relative;
  transition: 0.6s;
}

.main-header nav .nav-item .nav-link::before,
.main-header nav .nav-item .nav-link.active::before {
  content: "";
  background-color: #79c7d3;
  left: 0;
  right: 100%;
  bottom: 0;
  position: absolute;
  height: 2px;
  transition: 0.9s;
}

.main-header nav .nav-item .nav-link:hover::before,
.main-header nav .nav-item .nav-link.active::before {
  right: 0;
}

.main-header nav .nav-item .nav-link:hover,
.main-header nav .nav-item .nav-link.active {
  color: #79c7d3;
}

.main-header nav .nav-item.dropdown{

}
.main-header nav .nav-item.dropdown .nav-link{
  padding-right: 22px;
}

.main-header nav .nav-item.dropdown .nav-link::after {
  content: "";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  transition: transform .3s ease-in-out;
  transform: rotate(0deg);
  position: absolute;
  right: 6px;
}

.main-header nav .nav-item.dropdown:hover .dropdown-menu{
  display: block;
}

.main-header nav .nav-item.dropdown:hover .nav-link::after{
  transform: rotate(180deg);
}

.main-header nav .nav-item.dropdown .dropdown-menu{

}

.main-header nav .nav-item.dropdown .dropdown-menu li{

}

.main-header nav .nav-item.dropdown .dropdown-menu li a{

}

.btn-cell {
}

.btn-cell a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  gap: 0 8px;
}

.btn-cell a span {
  font-size: 13px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-cell a i {
  color: #82cbdc;
  font-size: 27px;
}

/*********** main-banner *********/

.main-banner {
  background-image: url(../images/main-banner.webp);
  padding: 85px 0 60px;
  background-size: cover;
  background-attachment: fixed;
  margin: 89px 0 0px;
}

.main-banner [data-aos="fade-up"] {
  transform: translateY(40px) scale(0.96);
  opacity: 0;
}

.main-banner [data-aos="fade-up"].aos-animate {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.main-banner .img-banner img {
  /*animation: fly 2s infinite ease-in-out;*/
  position: relative;
  animation:
    quillFloat 5.2s ease-in-out infinite,
    quillTilt 2.6s ease-in-out infinite alternate;
  transform-origin: 50% 65%;
  will-change: transform;
  filter: drop-shadow(0 22px 35px rgba(0,0,0,0.28));
}
/* Main floating motion */
@keyframes quillFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Micro feather tilt (this adds LIFE) */
@keyframes quillTilt {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: -2.8deg;
  }
}

/*@keyframes fly {*/
/*  0%,*/
/*  100% {*/
/*    transform: rotate(0deg);*/
/*  }*/
/*  50% {*/
/*    transform: rotate(20deg);*/
/*  }*/
/*}*/



.main-banner .banner-content h1,
.main-banner .banner-content h3 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 34px;
  text-transform: capitalize;
  font-weight: 600;
  padding: 8px 0 20px;
}

.main-banner.inner-banner .banner-content h1,
.main-banner .banner-content h2 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 63px;
  font-weight: 700;
  text-transform: capitalize;
  padding: 0;
}

.main-banner .banner-content p {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  width: 93%;
  padding: 0 0 22px;
}

.main-banner .banner-content p span {
  color: #94cbde;
  border-bottom: 2px solid #94cbde;
}

.main-banner .banner-content .banner-btns {
  gap: 0 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.main-banner .banner-content .banner-btns a {
  background: #8ccbdd;
  color: #000;
  border: 2px solid #8ccbdd;
  padding: 8px 14px;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  border-radius: 2px;
  transition: 0.6s;
}

.main-banner .banner-content .banner-btns a:hover {
  border-color: #8ccbdd;
  background-color: transparent;
}

.main-banner .banner-content .banner-btns a:nth-last-child(1) {
  background-color: #fff;
  border-color: #fff;
}

.main-banner .banner-content .banner-btns a:nth-last-child(1):hover {
  background-color: transparent;
  color: #fff;
}

/********* sec-services **********/

.sec-services {
  padding: 70px 0 50px;
}

.sec-services .content {
  padding: 0 0 22px;
}

.sec-services .content h3 {
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-size: 28px;
  text-transform: capitalize;
}
.sec-services .content h2 {
  font-family: "Montserrat", sans-serif;
  color: #82c7d5;
  font-weight: 600;
  font-size: 78px;
  text-transform: capitalize;
}
.sec-services .content p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #626262;
  padding: 5px 0 20px;
  font-weight: 500;
  width: 100%;
  line-height: 30px;
}

.sec-services .content .banner-btns {
  gap: 0 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.sec-services .content .banner-btns a {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 8px 14px;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  border-radius: 2px;
  transition: 0.6s;
}

.sec-services .content .banner-btns a:hover {
  border-color: #8ccbdd;
  background-color: transparent;
  color: #000;
}

.sec-services .content .banner-btns a:nth-last-child(1) {
  border-color: #8ccbdd;
  background-color: transparent;
  color: #000;
}

.sec-services .content .banner-btns a:nth-last-child(1):hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
.sec-services .our-sr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px 0;
  padding: 25px 0 0;
}

.sec-services .our-sr .coll {
  width: 12.5%;
  padding: 0 5px;
}

.sec-services .our-sr .coll .card {
  border: none;
  background: #d6f2f7;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  padding: 9px 0;
  border-radius: 7px;
}

.sec-services .our-sr .coll .card .img-card {
}

.sec-services .our-sr .coll .card .img-card img {
}

.sec-services .our-sr .coll .card h4 {
  font-size: 19px;
  font-weight: 600;
  color: #000;
  padding: 6px 0 0;
  text-transform: capitalize;
}

/*************** our-promise-sec **************/

.our-promise-sec {
  background-image: url(../images/our-services-banner.webp);
  padding: 70px 0 50px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.our-promise-sec .title.heading {
  padding: 0 0 25px;
}

.our-promise-sec .title.heading p,
.our-promise-sec .title.heading h2 {
  text-align: center;
}

.our-promise-sec .title.heading p {
  /* width: 90%; */
  text-align: center;
  /* margin: 0 auto 0; */
}

.our-promise-sec .title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 67px;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
}

.our-promise-sec .title p {
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-weight: 600;
  padding: 10px 0 20px;
}

.our-promise-sec .title ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.our-promise-sec .title ul li:nth-child(even) {
  width: 60%;
}

.our-promise-sec .title ul li {
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-weight: 600;
  padding: 0 0 10px 26px;
  width: 40%;
  position: relative;
  text-transform: capitalize;
}

.our-promise-sec.why-choose .title ul li {
  font-size: 20px;
  font-weight: 800;
  padding: 0 0 10px 31px;
}

.our-promise-sec.why-choose .title h2 {
  text-align: start;
}

.our-promise-sec .title ul li::before {
  content: "";
  background-image: url(../images/pro-check.webp);
  position: absolute;
  left: 0;
  height: 23px;
  width: 22px;
  background-repeat: no-repeat;
}

.our-promise-sec.why-choose .title ul li::before {
  background-image: url(../images/why-check.webp);
  background-size: cover;
  width: 30px;
  height: 26px;
}

.our-promise-sec .title .banner-btns {
  gap: 0 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 25px 0 0;
}

.our-promise-sec .title .banner-btns a {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 8px 14px;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border-radius: 2px;
  transition: 0.6s;
}

.our-promise-sec .title .banner-btns a:hover {
  border-color: #000;
  background-color: transparent;
  color: #000;
}

.our-promise-sec .title .banner-btns a:nth-last-child(1) {
  border-color: #000;
  background-color: transparent;
  color: #000;
}

.our-promise-sec .title .banner-btns a:nth-last-child(1):hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

/*********** .section-our-process ***********/

.section-our-process {
  padding: 70px 0 70px;
}

.section-our-process .title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 67px;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
  text-align: center;
}

.section-our-process .title p {
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-weight: 600;
  padding: 8px 0 30px;
  text-align: center;
}

.section-our-process .our-line {
  position: relative;
}

.section-our-process .our-line::before {
  content: "";
  background-color: #79c7d3;
  left: 0;
  right: 0;
  height: 4px;
  position: absolute;
  top: 76px;
  z-index: -1;
  width: 80%;
  margin: 0 auto;
}

.section-our-process .our-line .pro-card {
  position: relative;
}

.section-our-process .our-line .pro-card h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 85px;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  background: #fff;
  color: #dddddd;
  padding: 0 30px 0;
  position: relative;
  transition: 0.5s;
}

.section-our-process .our-line .pro-card h2::before {
  content: "";
  background-color: #79c7d3;
  object-fit: contain;
  height: 15px;
  width: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.section-our-process .our-line .pro-card h3 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  text-transform: capitalize;
  font-size: 23px;
  color: #000;
  font-weight: 500;
  transition: 0.5s;
}

.section-our-process .our-line .pro-card .top-h3 {
  opacity: 0;
  transition: 0.5s;
}

.section-our-process .our-line .pro-card .content {
  position: relative;
}

.section-our-process .our-line .pro-card .content p {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  padding: 0 5px 0;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  opacity: 0;
  transition: 0.5s;
}

.section-our-process .our-line .pro-card .content h3 {
  position: absolute;
  left: 0;
  right: 0;
  transition: 0.5s;
}

.section-our-process .our-line .pro-card:hover h2 {
  color: #000;
}

.section-our-process .our-line .pro-card:hover .top-h3 {
  opacity: 1;
}

.section-our-process .our-line .pro-card:hover .content h3 {
  opacity: 0;
}

.section-our-process .our-line .pro-card:hover .content p {
  opacity: 1;
}

/*********** testimonial-sec ***********/
.testimonial-sec {
  padding: 0px 0 70px;
}

.testimonial-sec .title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 67px;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
  text-align: center;
}

.testimonial-sec .title p {
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-weight: 600;
  padding: 8px 0 30px;
  text-align: center;
}

.testimonial-sec .testimonial {
  position: relative;
  z-index: 1;
}

.testimonial-sec .testimonial::before,
.testimonial-sec .testimonial::after {
  content: "";
  background-image: url(../images/testi-b.webp);
  top: -75px;
  /* bottom: 0; */
  position: absolute;
  width: 450px;
  left: 0;
  background-repeat: no-repeat;
  z-index: -1;
  height: 100%;
}

.testimonial-sec .testimonial::after {
  content: "";
  background-image: url(../images/testi-a.webp);
  right: 0;
  left: unset;
}

.testimonial-sec .testi-slider {
  background-image: url(../images/our-services-banner.webp);
  padding: 10px 0 10px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 10px;
}

.testimonial-sec .testi-slider .content {
  width: 95%;
}

.testimonial-sec .testi-slider .content h2 {
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-weight: 700;
  font-size: 26px;
  text-transform: capitalize;
}

.testimonial-sec .testi-slider .content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #000;
  padding: 7px 0 9px;
}

.testimonial-sec .testi-slider .content p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 0 10px;
}

.testimonial-sec .testi-slider .content ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/*********** portfolio-sec ************/

.portfolio-sec {
  padding: 70px 0;
}

.portfolio-sec .title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 67px;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
  text-align: center;
}

.portfolio-sec .title h3 {
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  text-align: center;
  font-weight: 700;
  color: #000;
  font-size: 22px;
  padding: 35px 0 20px;
}

.portfolio-sec .title h3 span {
  color: #7fc7d0;
}

.portfolio-sec .title .cate {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 50px;
  padding: 20px 0 30px;
}

.portfolio-sec .title .cate li {
  text-align: center;
}

.portfolio-sec .title .cate h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 600;
  color: #000;
  padding: 10px 0 0;
}

.portfolio-sec .portfolio-slide .slick-slide {
  padding: 0 10px;
}

.portfolio-sec .portfolio-slide {
  padding: 20px 0 0;
}
.portfolio-sec .portfolio-slide img {
  height: 480px;
}

.portfolio-sec .title .banner-btns {
  gap: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-sec .title .banner-btns a {
  background: #8ccbdd;
  color: #000;
  border: 2px solid #8ccbdd;
  padding: 8px 20px;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border-radius: 2px;
  transition: 0.6s;
}

.portfolio-sec .title .banner-btns a:hover {
  border-color: #8ccbdd;
  background-color: transparent;
}

.portfolio-sec .title .banner-btns a:nth-last-child(1) {
  border-color: #8ccbdd;
  background-color: transparent;
  color: #000;
}

.portfolio-sec .title .banner-btns a:nth-last-child(1):hover {
  background-color: #8ccbdd;
  color: #000;
  border-color: #8ccbdd;
}

/********* footer ************/

.main-footer {
  background-color: #1c3258;
  padding: 60px 0 0px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.main-footer::before {
  content: "";
  background-image: url(../images/footer-fav.webp);
  position: absolute;
  right: 0px;
  height: 460px;
  width: 425px;
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
  animation:
    quillFloat 5.2s ease-in-out infinite,
    quillTilt 2.6s ease-in-out infinite alternate;
  transform-origin: 50% 65%;
  will-change: transform;
  filter: drop-shadow(0 22px 35px rgba(0,0,0,0.28));
}

.main-footer .heading h2 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 26px;
  text-transform: capitalize;
  padding: 0 0 7px;
  position: relative;
  margin: 0 0 20px;
}

.main-footer .heading p {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 14px;
}

.main-footer .heading h2::before {
  content: "";
  background-color: #79c7d3;
  left: 0;
  bottom: 0;
  height: 2px;
  position: absolute;
  width: 100px;
}

.main-footer .url {
}

.main-footer .url li {
  padding: 0 0 7px;
}

.main-footer .url li a,
.main-footer .url li p {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 15px;
  position: relative;
  padding: 0 0 4px;
  transition: 0.6s;
}

.main-footer .url li a::before {
  content: "";
  background-color: #79c7d3;
  left: 0;
  right: 100%;
  bottom: 0;
  position: absolute;
  height: 2px;
  transition: 0.9s;
}

.main-footer .url li a:hover::before {
  right: 0;
}

.main-footer .url li a:hover {
  color: #79c7d3;
}

.main-footer .review-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 0;
}

.main-footer .copyright {
  position: relative;
  padding: 20px 0 15px;
  margin: 20px 0 0;
}

.main-footer .copyright::before {
  content: "";
  top: 0;
  left: -50%;
  right: -50%;
  height: 2px;
  position: absolute;
  background-color: #555555;
}

.main-footer .copyright p {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.main-footer .copyright p a {
  color: #83c7d4;
  font-weight: 600;
  transition: 0.7s;
}

.main-footer .copyright .img-pay {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/**************** inner pages **************/

.about-sec .img-ser img {
  width: 100%;
  height: 100%;
}

.about-sec .content p {
  width: 100%;
}

/*********** cta-banner ***********/

.cta-banner {
  background-image: url(../images/cta-img.webp);
  padding: 85px 0 60px;
  background-size: 100% 100%;
}

.cta-banner .banner-content h2 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 63px;
  font-weight: 700;
  text-transform: capitalize;
}

.cta-banner .banner-content h3 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 34px;
  text-transform: capitalize;
  font-weight: 600;
  padding: 8px 0 20px;
}
.cta-banner .banner-content h3 span {
  color: #94cbde;
}

.cta-banner .banner-content p {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  width: 93%;
  padding: 0 0 22px;
}

.cta-banner .banner-content p span {
  color: #94cbde;
  border-bottom: 2px solid #94cbde;
}

.cta-banner .banner-content .banner-btns {
  gap: 0 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.cta-banner .banner-content .banner-btns a {
  background: #000000;
  color: #fff;
  border: 2px solid #000;
  padding: 8px 14px;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  border-radius: 2px;
  transition: 0.6s;
  font-weight: 600;
}

.cta-banner .banner-content .banner-btns a:hover {
  border-color: #8ccbdd;
  background-color: transparent;
}

.cta-banner .banner-content .banner-btns a:nth-last-child(1) {
  background-color: #fff;
  border-color: #8bc7d6;
  color: #000;
}

.cta-banner .banner-content .banner-btns a:nth-last-child(1):hover {
  background-color: transparent;
  color: #fff;
}

.cta-banner-2 {
  background-image: url(../images/cta-img-2.webp);
  padding-bottom: 124px;
  background-attachment: fixed;
}

.cta-banner-2 .banner-content .banner-btns a {
  background: #8ccbdd;
  color: #fff;
  border: 2px solid #8ccbdd;
}
.cta-banner-2 .banner-content .banner-btns a:hover {
  border-color: #8ccbdd;
  background-color: #fff;
  color: #000;
}

.cta-banner-2 .banner-content .banner-btns a:nth-last-child(1) {
  border-color: #8ccbdd;
  background-color: #fff;
  color: #000;
}

.cta-banner-2 .banner-content .banner-btns a:nth-last-child(1):hover {
  background: #8ccbdd;
  color: #fff;
  border: 2px solid #8ccbdd;
}

.test-pading {
  padding-top: 70px;
}

/******** sec-services bookwriting ********/

.sec-services.bookwriting .content h2 {
  color: #82c7d5;
}

.sec-services.bookwriting .content h3 {
  color: #000;
}

.sec-services.bookwriting .content p {
  width: 100%;
}

.sec-services.bookwriting .content .banner-btns a {
  background: #8ccbdd;
  color: #000;
  border: 2px solid #8ccbdd;
}
.sec-services.bookwriting .content .banner-btns a:hover {
  border-color: #8ccbdd;
  background-color: transparent;
  color: #000;
}

.sec-services.bookwriting .content .banner-btns a:nth-last-child(1) {
  border-color: #000;
  background-color: transparent;
  color: #000;
}

.sec-services.bookwriting .content .banner-btns a:nth-last-child(1):hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

/************ contact-sec **************/

.contact-sec {
  padding: 70px 0 0;
}

.contact-sec .title h3 {
  font-family: "Montserrat", sans-serif;
  color: #79c7d3;
  text-align: center;
  font-weight: 700;
  font-size: 38px;
}

.contact-sec .title p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: center;
  padding: 4px 0 23px;
}

.contact-sec .txt-box {
}

.contact-sec .txt-box input,
.contact-sec .txt-box textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  padding: 10px 14px;
  font-size: 15px;
  color: #000;
  font-weight: 500;
  outline: none;
  font-family: "Poppins", sans-serif;
  resize: none;
}

.contact-sec .txt-box input::placeholder,
.contact-sec .txt-box textarea::placeholder {
  color: #636363;
}
.contact-sec .info p {
  text-align: center;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-style: italic;
  padding: 30px 0 22px;
}

.contact-sec .info p a {
  color: #000;
}

.contact-sec .info .btn-sub {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-sec .info .btn-sub button {
  background: #091e37;
  color: #ffff;
  font-weight: 400;
  padding: 6px 32px;
  text-transform: capitalize;
  border: 2px solid #091e37;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  transition: 0.7s;
  font-weight: 500;
}

.contact-sec .info .btn-sub button:hover {
  background: transparent;
  color: #091e37;
}

/************* testimonial-inner-sec *************/

.testimonial-inner-sec {
  padding: 70px 0 70px;
}

.testimonial-inner-sec .title h3 {
  font-family: "Montserrat", sans-serif;
  color: #79c7d3;
  text-align: center;
  font-weight: 700;
  font-size: 38px;
}

.testimonial-inner-sec .title p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: center;
  padding: 4px 0 23px;
}

.testimonial-inner-sec .testi-card {
  padding: 44px 0;
  padding-left: 28px;
  border-radius: 10px;
  background-color: #fafafa;
  box-shadow: 0px 0px 6px #00000045;
}

.testimonial-inner-sec .testi-card .content {
  width: 95%;
}

.testimonial-inner-sec .testi-card .content h2 {
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-weight: 700;
  font-size: 26px;
  text-transform: capitalize;
}

.testimonial-inner-sec .testi-card .content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #000;
  padding: 7px 0 9px;
}

.testimonial-inner-sec .testi-card .content p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 0 10px;
}

.testimonial-inner-sec .testi-card .content ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* 
  font-family: 'Poppins', sans-serif;
  font-family: 'Montserrat', sans-serif;
*/

@media only screen and (max-width: 1920px) {
}

@media only screen and (max-width: 1599px) {
}

@media only screen and (max-width: 1444px) {
  .testimonial-sec .testimonial::before,
  .testimonial-sec .testimonial::after {
    top: -60px;
    width: 330px;
    height: 90%;
    background-size: cover;
  }
}

@media only screen and (max-width: 1399px) {
  .main-banner .banner-content h1,
  .main-banner .banner-content h3 {
    font-size: 28px;
  }
  .main-banner.inner-banner .banner-content h1,
  .main-banner .banner-content h2 {
    font-size: 50px;
  }
  .main-banner .banner-content p {
    font-size: 16px;
  }
  .our-promise-sec .title h2 {
    font-size: 60px;
  }
  .portfolio-sec .title h2 {
    font-size: 60px;
  }
  .portfolio-sec .title .cate h4 {
    font-size: 14px;
  }
  .sec-services .content h2 {
      font-size: 70px;
  }
  .section-our-process .our-line .pro-card .content p {
      font-size: 15px;
  }
}

@media only screen and (max-width: 1199px) {
  .main-banner .banner-content h1,
  .main-banner .banner-content h3 {
    font-size: 25px;
  }
  .main-banner.inner-banner .banner-content h1,
  .main-banner .banner-content h2 {
    font-size: 45px;
  }
  .main-banner .banner-content p {
    font-size: 14px;
  }
  .sec-services .content h2 {
    font-size: 65px;
  }
  .sec-services .content p {
    font-size: 15px;
  }
  .sec-services .our-sr .coll .card h4 {
    font-size: 15px;
  }
  .our-promise-sec .title h2 {
    font-size: 52px;
  }
  .portfolio-sec .title h2 {
    font-size: 52px;
  }
  .portfolio-sec .title h3 {
    font-size: 22px;
  }
  .our-promise-sec.why-choose .title ul li {
    font-size: 16px;
    width: 50%;
  }
  .our-promise-sec .title p {
    font-size: 15px;
  }
  .section-our-process .title h2 {
    font-size: 52px;
  }
  .section-our-process .our-line .pro-card .content p {
    font-size: 15px;
  }
  .testimonial-sec .title h2 {
    font-size: 52px;
  }
  .testimonial-sec .title p {
    font-size: 15px;
  }
  .testimonial-sec .testi-slider .content p {
    padding: 5px 0 5px;
  }
  .testimonial-sec .testimonial::before,
  .testimonial-sec .testimonial::after {
    top: -55px;
    width: 305px;
    height: 87%;
  }
  .portfolio-sec .portfolio-slide img {
    height: 355px;
    width: 100%;
  }
  .portfolio-sec .portfolio-slide .slick-slide {
    padding: 0 6px;
  }
  .main-banner {
    background-size: 100%;
  }
  .about-sec .content p {
    font-size: 14px;
    line-height: 23px;
  }
  .cta-banner .banner-content h2 {
    font-size: 50px;
}
.contact-sec .title h3 {
  font-size: 29px;
}
}

@media only screen and (max-width: 991px) {
  .main-banner .banner-content h1,
  .main-banner .banner-content h3 {
    font-size: 22px;
    padding: 8px 0 10px;
  }
  .main-banner.inner-banner .banner-content h1,
  .main-banner .banner-content h2 {
    font-size: 39px;
  }
  .main-banner .banner-content p {
    font-size: 16px;
    padding: 0 0 15px;
  }
  .sec-services .content h2 {
    font-size: 50px;
  }
  .sec-services .content p {
    font-size: 14px;
    line-height: 25px;
  }
  .sec-services .content h3 {
    font-size: 23px;
  }
  .sec-services .our-sr .coll {
    width: 16.6%;
  }
  .sec-services .our-sr {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 0;
    padding: 25px 0 0;
  }
  .our-promise-sec .title h2 {
    font-size: 36px;
  }
  .our-promise-sec .title p {
    font-size: 14px;
  }
  .portfolio-sec .title h2 {
    font-size: 36px;
  }
  .portfolio-sec .title .cate {
    gap: 10px 20px;
    padding: 20px 0 15px;
  }
  .portfolio-sec .title h3 {
    font-size: 18px;
    padding: 25px 0 10px;
  }
  .our-promise-sec.why-choose .title ul li {
    font-size: 14px;
  }
  .our-promise-sec.why-choose .title ul li::before {
    width: 25px;
    height: 21px;
  }
  .section-our-process .our-line .pro-card .content p {
    font-size: 13px;
  }
  .section-our-process .our-line .pro-card h2 {
    font-size: 70px;
    padding: 0 15px 0;
  }
  .section-our-process .our-line .pro-card h3 {
    font-size: 18px;
  }
  .section-our-process {
    padding: 70px 0 40px;
  }
  .section-our-process .title p {
    padding: 8px 0 20px;
    font-size: 15px;
  }
  .section-our-process .title h2 {
    font-size: 36px;
  }
  .testimonial-sec .title h2 {
    font-size: 36px;
  }

  .testimonial-sec .testi-slider {
    padding: 15px 0 15px;
  }
  .testimonial-sec .testimonial::before,
  .testimonial-sec .testimonial::after {
    top: -48px;
    width: 283px;
  }
  .main-footer .review-icons li {
    width: 16%;
  }
  .main-footer .review-icons li img {
    width: 100%;
  }
  .main-footer .copyright p {
    font-size: 12px;
  }
  .main-header .navbar-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .btn-cell {
    justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  .main-banner {
    padding: 40px 0 60px;
  }
  .main-banner .banner-content h1,
  .main-banner .banner-content h3 {
    font-size: 18px;
  }
  .main-banner.inner-banner .banner-content h1,
  .main-banner .banner-content h2 {
    font-size: 32px;
  }
  .main-banner .banner-content p {
    font-size: 14px;
    padding: 0 0 15px;
  }
  .sec-services {
    padding: 40px 0 50px;
  }
  .sec-services .content h2 {
    font-size: 40px;
  }
  .sec-services .content h3 {
    font-size: 19px;
  }
  .sec-services .content p {
    font-size: 13px;
    line-height: 22px;
  }
  .sec-services .our-sr .coll {
    width: 48.6%;
  }
  .our-promise-sec {
    padding: 45px 0 30px;
  }
  .our-promise-sec .title h2 {
    font-size: 30px;
  }
  .our-promise-sec .title.heading p,
  .our-promise-sec .title.heading h2 {
    text-align: start;
  }
  .our-promise-sec .title.heading {
    padding: 0 0 0px;
  }
  .our-promise-sec .title ul li {
    padding: 0 0 10px 21px;
    width: 40%;
  }
  .our-promise-sec .title ul li::before {
    height: 22px;
    width: 18px;
    background-size: 100%;
  }
  .our-promise-sec .title ul li,
  .our-promise-sec .title ul li:nth-child(even) {
    width: 100%;
  }
  .our-promise-sec .title .banner-btns a,
  .sec-services .content .banner-btns a,
  .main-banner .banner-content .banner-btns a,
  .portfolio-sec .title .banner-btns a {
    padding: 6px 9px;
    font-size: 13px;
  }
  .our-promise-sec .title .banner-btns {
    gap: 0 10px;
    padding: 0px 0 0;
  }
  .portfolio-sec .title h2 {
    font-size: 30px;
  }
  .portfolio-sec .title .cate {
    gap: 10px 20px;
    padding: 20px 0 15px;
    flex-wrap: wrap;
  }
  .portfolio-sec .portfolio-slide img {
    height: 195px;
  }
  .portfolio-sec .title h3 {
    font-size: 16px;
  }
  .section-our-process {
    padding: 40px 0 40px;
  }
  .section-our-process .title p {
    padding: 8px 0 20px;
    font-size: 14px;
  }
  .section-our-process .our-line .pro-card::before {
    content: "";
    background-color: #79c7d3;
    left: 0;
    right: 0;
    height: 4px;
    position: absolute;
    top: 76px;
    z-index: -1;
    width: 80%;
    margin: 0 auto;
  }
  .testimonial-sec .title h2 {
    font-size: 27px;
  }
  .testimonial-sec .testi-slider {
    padding: 15px 15px 15px;
  }
  .testimonial-sec .testi-slider .content h2 {
    font-size: 22px;
  }
  .testimonial-sec .testi-slider .content p {
    padding: 5px 0 5px;
    font-size: 12px;
  }
  .testimonial-sec .testi-slider .img-testi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .testimonial-sec .testimonial::before,
  .testimonial-sec .testimonial::after {
    display: none;
  }
  .main-footer::before {
    height: 310px;
    width: 276px;
}
.main-footer .review-icons li {
  width: 32%;
}
.main-footer .review-icons {
  flex-wrap: wrap;
  padding: 0px 0 0;
}
.main-footer .copyright p {
  font-size: 13px;
  text-align: center;
}
.main-footer .copyright .img-pay {
  justify-content: center;
}
.testimonial-inner-sec .testi-card .img-testi{
  justify-content: flex-end;
  align-items: center;
  display: flex;
}
.testimonial-inner-sec .testi-card {
  padding: 25px 28px 20px;
}
.cta-banner .banner-content p {
  font-size: 15px;
  width: 100%;
}
.cta-banner .banner-content h2 {
  font-size: 37px;
  padding: 0 0 10px;
}
}

@media only screen and (max-width: 575px) {
  .main-banner {
    padding: 40px 0 60px;
  }
  .main-banner .banner-content h1,
  .main-banner .banner-content h3 {
    font-size: 18px;
  }
  .main-banner.inner-banner .banner-content h1,
  .main-banner .banner-content h2 {
    font-size: 32px;
  }
  .main-banner .banner-content p {
    font-size: 14px;
    padding: 0 0 15px;
  }
  .sec-services {
    padding: 40px 0 50px;
  }
  .sec-services .content h2 {
    font-size: 40px;
  }
  .sec-services .content h3 {
    font-size: 19px;
  }
  .sec-services .content p {
    font-size: 13px;
    line-height: 22px;
  }
  .sec-services .our-sr .coll {
    width: 48.6%;
  }
  .our-promise-sec {
    padding: 45px 0 30px;
  }
  .our-promise-sec .title h2 {
    font-size: 30px;
  }
  .our-promise-sec .title.heading p,
  .our-promise-sec .title.heading h2 {
    text-align: start;
  }
  .our-promise-sec .title.heading {
    padding: 0 0 0px;
  }
  .our-promise-sec .title ul li {
    padding: 0 0 10px 21px;
    width: 40%;
  }
  .our-promise-sec .title ul li::before {
    height: 22px;
    width: 18px;
    background-size: 100%;
  }
  .our-promise-sec .title ul li,
  .our-promise-sec .title ul li:nth-child(even) {
    width: 100%;
  }
  .our-promise-sec .title .banner-btns a,
  .sec-services .content .banner-btns a,
  .main-banner .banner-content .banner-btns a,
  .portfolio-sec .title .banner-btns a {
    padding: 6px 9px;
    font-size: 13px;
  }
  .our-promise-sec .title .banner-btns {
    gap: 0 10px;
    padding: 0px 0 0;
  }
  .portfolio-sec .title h2 {
    font-size: 30px;
  }
  .portfolio-sec .title .cate {
    gap: 10px 20px;
    padding: 20px 0 15px;
    flex-wrap: wrap;
  }
  .portfolio-sec .portfolio-slide img {
    height: 195px;
  }
  .portfolio-sec .title h3 {
    font-size: 16px;
  }
  .section-our-process {
    padding: 40px 0 40px;
  }
  .section-our-process .title p {
    padding: 8px 0 20px;
    font-size: 14px;
  }
  .section-our-process .our-line .pro-card::before {
    content: "";
    background-color: #79c7d3;
    left: 0;
    right: 0;
    height: 4px;
    position: absolute;
    top: 76px;
    z-index: -1;
    width: 80%;
    margin: 0 auto;
  }
  .testimonial-sec .title h2 {
    font-size: 27px;
  }
  .testimonial-sec .testi-slider {
    padding: 15px 15px 15px;
  }
  .testimonial-sec .testi-slider .content h2 {
    font-size: 22px;
  }
  .testimonial-sec .testi-slider .content p {
    padding: 5px 0 5px;
    font-size: 12px;
  }
  .testimonial-sec .testi-slider .img-testi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .testimonial-sec .testimonial::before,
  .testimonial-sec .testimonial::after {
    display: none;
  }
  .main-footer::before {
    height: 310px;
    width: 276px;
}
.main-footer .review-icons li {
  width: 32%;
}
.main-footer .review-icons {
  flex-wrap: wrap;
  padding: 0px 0 0;
}
.main-footer .copyright p {
  font-size: 13px;
  text-align: center;
}
.main-footer .copyright .img-pay {
  justify-content: center;
}
.testimonial-inner-sec .testi-card .img-testi{
  justify-content: flex-end;
  align-items: center;
  display: flex;
}
.testimonial-inner-sec .testi-card {
  padding: 25px 28px 20px;
}
.cta-banner .banner-content p {
  font-size: 15px;
  width: 100%;
}
.cta-banner .banner-content h2 {
  font-size: 37px;
  padding: 0 0 10px;
}
}
section{
  overflow: visible !important;
}