/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
	4. 	Site Header
	5. 	Global
	6. 	Plugins
	7. 	Page Templates
		a. 	Template: Home
		b. 	Template: About
		c. 	Template: Blog
		d. 	Template: Services
		e. 	Template: Approach
		f. 	Template: Contact
		g. 	Template: Faq

		...
		z. 	Template: Full Width
	8.  Post: Archive
	9.  Post: Single
	10. Blocks
	11. Entry Content
	12. Comments
	13. Site Pagination
	14. Error 404
	15. Extras
	16. Site Footer
	17. Media Queries

----------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	1. Document Setup
/* -------------------------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 20px;
  font-family: "Cabinet Grotesk";
  font-weight: 400;
  color: var(--darkColor);
}

body {
  background-color: var(--bgColor);
}

/* -------------------------------------------------------------------------- */
/*	2. Element Base
/* -------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

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

p {
  line-height: 120%;
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

header ul,
header ol {
  margin-bottom: 0;
  padding-left: 0;
}

header li {
  list-style: none;
}

main {
  padding-top: 175px;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}

@media (min-width: 1800px) {
  .container {
    max-width: 1600px;
  }
}

/* -------------------------------------------------------------------------- */
/*	3. Helper Classes
/* -------------------------------------------------------------------------- */

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340.329px;
  height: 55px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  border: 1px solid var(--darkColor);
  border-radius: 60px;
  background-color: var(--darkColor);
  color: #fff;
  transition: 0.4s ease;
}

.cta-btn.dark.bordered {
  background-color: transparent;
  color: var(--darkColor);
}

.cta-btn.white.bordered {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
}

.cta-btn.dark.bordered .text-hidden,
.cta-btn.dark.bordered .text-visible {
  color: var(--darkColor);
}

.cta-btn .text-container {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.cta-btn .text-visible,
.cta-btn .text-hidden {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  transition: 0.4s ease;
  color: #fff;
}

.cta-btn .text-visible {
  transform: translateY(0);
}

.cta-btn .text-hidden {
  transform: translateY(300%);
}

.cta-btn:hover .text-visible {
  transform: translateY(-300%);
}

.cta-btn:hover .text-hidden {
  transform: translateY(0);
}

.white-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/* -------------------------------------------------------------------------- */
/*	4.	Site Header
/* -------------------------------------------------------------------------- */

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 47px 2.5% 36px 2.5%;
  background-color: var(--bgColor);
}

#header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

#header .logo-area {
  width: 564px;
  display: flex;
}

#header .main-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

#header .menu-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

#header .menu-item:hover::after {
  opacity: 1;
  left: 0;
  width: 100%;
  transition: all 0.5s ease;
}

#header .menu-item::after {
  content: "";
  width: 100%;
  height: 4px;
  background: #0d1216;
  top: 150%;
  position: absolute;

  opacity: 0;
  width: 0;
  left: 50%;
}

#header .current-menu-item::after {
  display: block;
  opacity: 1;
  left: 0;
  width: 100%;
}

#header .menu-item-btn:hover::after,
#header .current-menu-item.menu-item-btn::after {
  display: none;
}

#header .main-menu .menu-item a {
  color: var(--darkColor);
  font-size: 18px;
  font-weight: 700;
  line-height: 106.59%;
  white-space: nowrap;
}

#header .main-menu .menu-item.menu-item-btn a {
  width: 252.244px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bgColor);
  border-radius: 60px;
  background-color: var(--darkColor);
  border: 1px solid var(--darkColor);
  transition: 0.3s ease;
}

#header .main-menu .menu-item.menu-item-btn:hover a {
  color: var(--darkColor);
  background-color: transparent;
}

#header .main-menu .menu-item.menu-item-btn.blue a {
  background-color: var(--blueColor);
  border: 1px solid var(--blueColor);
}

#header .main-menu .menu-item.menu-item-btn.blue:hover a {
  background-color: transparent;
  color: var(--blueColor);
}

#header .menu-btn {
  width: 32px;
  height: 32px;
  background-image: url(../images/icons/menu-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: none;
  cursor: pointer;
}

#mobile-menu {
  width: 100%;
  background-color: var(--bgColor);
}

#mobile-menu .logo-area {
  width: 275px;
}

#mobile-menu .logo-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#mobile-menu .offcanvas-header .btn-close {
  opacity: 1;
}

#mobile-menu .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  margin-bottom: 0;
  padding-left: 0;
}

#mobile-menu .mobile-menu .menu-item {
  list-style: none;
}

#mobile-menu .mobile-menu .menu-item a {
  color: var(--darkColor);
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------- */
/*	5. Global
/* -------------------------------------------------------------------------- */

.post-password-form{
  margin: 175px 25px;
}

.faq-item-wrap {
  display: flex;
  gap: 10px;
}

.faq-item-wrap i.arrow {
  width: 56px;
  height: 56px;
  background-image: url(../images/icons/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.faq-item-wrap.show i.arrow {
  transform: rotate(90deg);
}

.faq-item-wrap .faq-item {
  flex: 1;
  border-bottom: 1px solid #fff;
}

.faq-item-wrap .faq-item .faq-header {
  color: var(--bgColor);
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 10px;
  padding-top: 10px;
  cursor: pointer;
}

.faq-item-wrap .faq-item .faq-body {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.5s ease;
}

.faq-item-wrap .faq-item .faq-body ul {
  margin-bottom: 30px;
  padding-left: 1rem;
}

.faq-item-wrap .faq-item li {
  color: var(--bgColor);
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 10px;
}

/* -------------------------------------------------------------------------- */
/*	6. Plugins
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	7. Page Templates
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	7a. Template: Home
/* -------------------------------------------------------------------------- */

main.home .s1 {
  padding: 95px 0;
  background-image: url(../images/home/caaid-hero.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  min-height: 880px;
}

main.home .s1 .content-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

main.home .s1 .title {
  font-size: 120px;
  font-weight: 300;
  line-height: 85%;
  text-align: center;
  margin-bottom: 50px;
}

main.home .s1 .title b {
  text-align: center;
  font-size: 80px;
  font-weight: 700;
  line-height: 85%;
}

main.home .s1 p {
  font-size: 24px;
  max-width: 788px;
  margin-bottom: 35px;
  text-align: center;
}

main.home .s2 {
  padding-bottom: 95px;
}

main.home .s2 .animated-texts .text {
  font-size: 70px;
  line-height: 120%;
  position: relative;
  text-align: center;
}

/* main.home .s2 .animated-texts .text::before {
  content: "";
  width: 0px;
  height: 51.84px;
  background: var(--blueColor);
  display: block;
  position: absolute;
  top: 95%;
  left: 20%;
  z-index: -1;
  transition: width 1.5s ease;
} */

/* main.home .s2 .animated-texts .text-2::before {
  top: 65%;
}

main.home .s2 .animated-texts .text-3::before {
  top: 35%;
}

main.home .s2 .animated-texts:hover .text-1::before {
  width: 24.5%;
}

main.home .s2 .animated-texts:hover .text-2::before {
  width: 44%;
  transition: width 2.5s ease;
}

main.home .s2 .animated-texts:hover .text-3::before {
  width: 29%;
  transition: width 2s ease;
} */

main.home .s3 {
  padding: 195px 0 135px 0;
  background-color: var(--blueColor);
  background-image: url(../images/general/shape-cream.svg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 23%;
}

main.home .s3 .subtitle {
  color: var(--bgColor);
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 20px;
}

main.home .s3 .title {
  color: var(--bgColor);
  font-size: 70px;
  line-height: 85%;
  margin-bottom: 160px;
}

main.home .s3 p {
  color: var(--bgColor);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 50px;
}

main.home .faq-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

main.home .s3 .about-row {
  display: flex;
  gap: 100px;
  justify-content: space-between;
  margin-top: 315px;
}

main.home .s3 .about-row .dr-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 95px;
}

main.home .s3 .dr-wrapper .dr-wrap-top {
  display: flex;
  gap: 100px;
}

main.home .s3 .dr-wrap-top .image-area {
  width: 225px;
  height: 316px;
}

main.home .s3 .dr-wrap-top .image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 33px;
  object-position: left;
}

main.home .s3 .dr-wrap-top .dr-details {
  flex: 1;
}

main.home .s3 .dr-wrap-top .dr-title {
  color: var(--bgColor);
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 70px;
}

main.home .s3 .dr-wrap-top p {
  margin-bottom: 30px;
}

main.home .s3 .dr-items {
  display: flex;
  gap: 35px;
}

main.home .s3 .dr-items .dr-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

main.home .s3 .dr-items .dr-item .logo {
  width: 75px;
  height: 75px;
}

main.home .s3 .dr-items .dr-item .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main.home .s3 .dr-items .dr-item .item-title {
  flex: 1;
  color: var(--bgColor);
  font-size: 13.762px;
  font-weight: 500;
  line-height: 120%;
}

main.home .s4 {
  padding: 200px 0;
}

main.home .s4 .image-area {
  max-width: 630px;
}

main.home .s4 .title {
  font-size: 70px;
  font-weight: 400;
  line-height: 85%;
  max-width: 600px;
  margin: 75px 0 170px 0;
}

main.home .s4 p {
  margin-bottom: 35px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}

/* -------------------------------------------------------------------------- */
/*	7b. Template: About
/* -------------------------------------------------------------------------- */

main.about .s1 {
  padding-bottom: 125px;
}

main.about .s1 .content-row {
  display: flex;
  gap: 100px;
  justify-content: space-between;
}

main.about .s1 .subtitle {
  font-size: 24px;
  margin-bottom: 25px;
}

main.about .s1 .title {
  font-size: 120px;
  font-weight: 300;
  line-height: 85%;
  margin-bottom: 75px;
}

main.about .s1 .title b {
  font-size: 80px;
  font-weight: 700;
  line-height: 85%;
}

main.about .s1 p {
  font-size: 24px;
  margin-bottom: 55px;
}

main.about .s1 .content-area {
  flex: 1;
}

main.about .s1 .image-area {
  max-width: 720px;
}

main.about .s2 {
  background-color: var(--coffeColor);
  padding: 150px 0 210px 0;
  background-image: url(../images/general/shape-cream.svg);
  background-position: bottom -2.5px left;
  background-repeat: no-repeat;
  background-size: 23%;
}

main.about .s2 .about-row {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

main.about .s2 .about-row .title-area {
  width: 25%;
}

main.about .s2 .about-row .title {
  font-size: 70px;
  font-weight: 400;
  line-height: 85%;
}

main.about .s2 .about-row .dr-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 95px;
  padding-left: 70px;
}

main.about .s2 .dr-wrapper .dr-wrap-top {
  display: flex;
  gap: 200px;
}

main.about .s2 .dr-wrap-top .image-area {
  width: 495px;
  height: 361px;
}

main.about .s2 .dr-wrap-top .image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 33px;
}

main.about .s2 .dr-wrap-top .dr-details {
  flex: 1;
}

main.about .s2 .dr-wrap-top .dr-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 70px;
}

main.about .s2 .dr-wrap-top .dr-title small {
  font-size: 24px;
  font-weight: 700;
}

main.about .s2 .dr-wrap-top p {
  margin-bottom: 30px;
}

main.about .s2 .dr-items {
  display: flex;
  gap: 20px;
  margin-top: 130px;
}

main.about .s2 .dr-items .dr-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

main.about .s2 .dr-items .dr-item .logo {
  width: 38px;
  height: 38px;
}

main.about .s2 .dr-items .dr-item .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main.about .s2 .dr-items .dr-item .item-title {
  flex: 1;
  font-size: 13.762px;
  font-weight: 500;
  line-height: 120%;
}

main.about .s2 .dr-wrap-second {
  padding-left: 70px;
  margin-top: 160px;
}

/* -------------------------------------------------------------------------- */
/*	7c. Template: Blog
/* -------------------------------------------------------------------------- */

main.blog .s1 {
  padding: 0 0 125px 0;
}

main.blog .s1 .content-row {
  display: flex;
  gap: 100px;
}

main.blog .s1 .content-row .content-area {
  flex: 1;
}

main.blog .s1 .content-row .image-area {
  max-width: 720px;
}

main.blog .s1 .subtitle {
  font-size: 24px;
  margin-bottom: 25px;
}

main.blog .s1 .title b {
  font-size: 80px;
  font-weight: 700;
  line-height: 85%;
}

main.blog .s1 .title {
  font-size: 120px;
  font-weight: 300;
  line-height: 85%;
  margin-bottom: 65px;
}

main.blog .s1 p {
  font-size: 24px;
  margin-bottom: 55px;
}

main.blog .s2 {
  background-color: var(--coffeColor);
  padding: 80px 0 290px 0;
  background-image: url(../images/general/shape-cream.svg);
  background-position: bottom -2.5px left;
  background-repeat: no-repeat;
  background-size: 23%;
}

main.blog .post-item {
  display: flex;
  align-items: end;
  gap: 45px;
  margin-bottom: 80px;
}

main.blog .post-item .image-area {
  width: 251px;
  height: 334px;
}

main.blog .post-item .image-area img {
  border-top-left-radius: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main.blog .post-item .post-details {
  flex: 1;
}

main.blog .post-item .post-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 44px;
}

main.blog .post-item p {
  margin-bottom: 30px;
}

main.blog .pagination-area {
  display: flex;
  justify-content: end;
  margin-top: 45px;
}

main.blog .pagination ul {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: 0;
  padding-left: 0;
}

main.blog .pagination .page-numbers {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 97%;
  list-style: none;
}

/* -------------------------------------------------------------------------- */
/*	7d. Template: Services
/* -------------------------------------------------------------------------- */

main.services .s1 {
  padding-bottom: 45px;
}

main.services .s1 .content-row {
  display: flex;
  justify-content: space-between;
}

main.services .s1 .content-row .content-area {
  max-width: 900px;
}

main.services .s1 .subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 25px;
}

main.services .s1 .title {
  font-size: 120px;
  font-style: normal;
  font-weight: 300;
  line-height: 80%;
  margin-bottom: 75px;
}

main.services .s1 .title b {
  font-size: 80px;
  font-weight: 700;
}

main.services .s1 p {
  font-size: 24px;
  margin-bottom: 55px;
}

main.services .s1 .image-area {
  max-width: 575px;
}

main.services .s2 {
  background-color: var(--blueColor);
  padding: 140px 0;
}

main.services .s2 .service-item {
  display: flex;
  gap: 70px;
  padding-bottom: 35px;
  border-bottom: 1px solid #fff;
  margin-bottom: 35px;
}

main.services .s2 .service-item:nth-last-child(1) {
  margin-bottom: 0;
}

main.services .s2 .service-item .item-header {
  flex: 1;
  display: flex;
  align-items: start;
  gap: 25px;
}

main.services .s2 .service-item i.arrow {
  width: 24px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='23' viewBox='0 0 13 23' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.512562 1.3459C1.19598 0.662479 2.30402 0.662479 2.98744 1.3459L12.3208 10.6792C13.0042 11.3626 13.0042 12.4707 12.3208 13.1541L2.98744 22.4874C2.30402 23.1709 1.19598 23.1709 0.512564 22.4874C-0.170854 21.804 -0.170854 20.696 0.512564 20.0126L8.60846 11.9167L0.512562 3.82077C-0.170855 3.13735 -0.170855 2.02931 0.512562 1.3459Z' fill='%23E6E5E0'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: 15px;
}

main.services .s2 .service-item .item-title {
  color: #fff;
  font-size: 48px;
  font-weight: 400;
  line-height: 120%;
  max-width: 625px;
  flex: 1;
}

main.services .s2 .service-item .item-body {
  flex: 1;
}

main.services .s2 .service-item li {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 10px;
}

main.services .s2 .service-item:nth-child(1) ul {
  column-count: 2;
}

main.services .bg-shape {
  width: 23%;
}

/* -------------------------------------------------------------------------- */
/*	7e. Template: Approach
/* -------------------------------------------------------------------------- */

main.approach .s1 {
  padding-bottom: 45px;
}

main.approach .s1 .content-row {
  display: flex;
  justify-content: space-between;
}

main.approach .s1 .content-row .content-area {
  max-width: 900px;
}

main.approach .s1 .subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 25px;
}

main.approach .s1 .title {
  font-size: 120px;
  font-style: normal;
  font-weight: 300;
  line-height: 30%;
  display: flex;
  flex-direction: column;
  margin-bottom: 90px;
}

main.approach .s1 .title b {
  font-size: 80px;
  line-height: 85%;
  font-weight: 700;
}

main.approach .s1 p {
  font-size: 24px;
  margin-bottom: 55px;
}

main.approach .s1 .image-area {
  max-width: 575px;
}

main.approach .s2 {
  background-color: var(--darkBgColor);
  padding: 200px 0 300px 0;
  background-image: url(../images/general/shape-cream.svg);
  background-position: bottom -2.5px left;
  background-size: 23%;
  background-repeat: no-repeat;
}

main.approach .s2 .items-wrapper {
  display: flex;
  gap: 80px;
}

main.approach .s2 .items-wrapper .item:nth-child(1) {
  min-width: 500px;
}

main.approach .s2 .items-wrapper .item h6 {
  font-size: 48px;
  font-weight: 400;
  line-height: 85%;
  margin-bottom: 115px;
  flex: 1;
}

main.approach .s2 .items-wrapper .item p {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

main.approach .s2 .items-wrapper .item p > b {
  font-weight: 700;
}

main.approach .s2 .items-wrapper .item {
  padding-right: 80px;
  border-right: 1px solid #818564;
  display: flex;
  flex-direction: column;
}

main.approach .s2 .items-wrapper .item:nth-last-child(1) {
  border: none;
  padding: 0;
}

/* -------------------------------------------------------------------------- */
/*	7f. Template: Contact
/* -------------------------------------------------------------------------- */

main.contact .s1 .title {
  font-size: 120px;
  font-style: normal;
  font-weight: 300;
  line-height: 85%;
  margin-bottom: 50px;
}

main.contact .s1 .title b {
  font-size: 90px;
  font-style: normal;
  font-weight: 700;
  line-height: 85%;
}

main.contact .s1 p {
  font-size: 24px;
  margin-bottom: 40px;
}

main.contact .s1 .content-row {
  display: flex;
  gap: 100px;
  justify-content: space-between;
  margin-bottom: 200px;
}

main.contact .s1 .content-area {
  flex: 1;
}

main.contact .s1 .form-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

main.contact .s1 .form-area label {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 106.59%;
  padding-left: 23px;
}

main.contact .s1 .form-area textarea,
main.contact .s1 .form-area select,
main.contact .s1 .form-area input[type="date"],
main.contact .s1 .form-area input[type="text"],
main.contact .s1 .form-area input[type="tel"],
main.contact .s1 .form-area input[type="email"] {
  border-radius: 12px;
  border: 1px solid var(--blueColor);
  background: #fff;
  width: 100%;
  height: 60px;
  padding: 6px 10px;
}

main.contact .s1 .form-area select{
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 -5 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:sketch='http://www.bohemiancoding.com/sketch/ns' fill='%23000000'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Ctitle%3Echevron-down%3C/title%3E%3Cdesc%3ECreated with Sketch Beta.%3C/desc%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' sketch:type='MSPage'%3E%3Cg id='Icon-Set' sketch:type='MSLayerGroup' transform='translate(-572.000000, -1200.000000)' fill='%236f7d86'%3E%3Cpath d='M595.688,1200.28 C595.295,1199.89 594.659,1199.89 594.268,1200.28 L583.984,1211.57 L573.702,1200.28 C573.31,1199.89 572.674,1199.89 572.282,1200.28 C571.89,1200.68 571.89,1201.32 572.282,1201.71 L583.225,1213.72 C583.434,1213.93 583.711,1214.02 583.984,1214 C584.258,1214.02 584.535,1213.93 584.745,1213.72 L595.688,1201.71 C596.079,1201.32 596.079,1200.68 595.688,1200.28' id='chevron-down' sketch:type='MSShapeGroup'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 14px;
}

main.contact .s1 .form-area textarea {
  height: 92px;
  resize: none;
}

main.contact .s1 .form-area .input-row {
  display: flex;
  gap: 40px;
}

main.contact .s1 .form-area .input-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

main.contact .contact-details {
  display: flex;
  gap: 120px;
  margin-bottom: 145px;
}

main.contact .contact-details h2 {
  font-size: 70px;
  font-weight: 400;
  line-height: 85%;
  margin-bottom: 35px;
}

main.contact .contact-details span,
main.contact .contact-details a,
main.contact .contact-details p {
  color: var(--darkColor);
  font-size: 24px;
  font-style: normal;
}

main.contact .contact-details a {
  font-weight: 500;
}

main.contact .contact-details .contact-text {
  display: flex;
  align-items: center;
  gap: 30px;
}

main.contact .map-area {
  display: flex;
  align-items: end;
}

/* -------------------------------------------------------------------------- */
/*	7g. Template: FAQ
/* -------------------------------------------------------------------------- */

main.faq .s1 .content-row {
  display: flex;
  justify-content: space-between;
  gap: 115px;
  margin: 75px 0 200px 0;
}

main.faq .s1 .content-area {
  max-width: 822px;
}

main.faq .s1 .title {
  font-size: 90px;
  font-weight: 700;
  line-height: 85%;
  margin-bottom: 42px;
}

main.faq .s1 .content-area p {
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 115px;
}

main.faq .faq-items {
  margin-left: -15px;
}

main.faq .s1 li,
main.faq .s1 .faq-header {
  color: var(--darkColor);
}

main.faq .faq-item-wrap .faq-item .faq-body {
  padding-left: 35px;
}

main.faq .faq-item-wrap .faq-item {
  border-color: var(--darkColor);
}

main.faq .faq-item-wrap i.arrow {
  background-image: url(../images/icons/arrow-down-dark.svg);
}

/* -------------------------------------------------------------------------- */
/*	7z. Template: Full Width
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	8. Post: Archive
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	9. Post: Single
/* -------------------------------------------------------------------------- */

main.single .s1 {
  padding-bottom: 50px;
}
main.single .s1 .content-row {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

main.single .s1 .subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 25px;
}

main.single .s1 .title {
  font-size: 80px;
  font-weight: 700;
  line-height: 85%;
  max-width: 800px;
}

main.single .s1 .image-area {
  max-width: 720px;
}

main.single .s2 {
  background-color: var(--coffeColor);
  padding: 65px 0 85px 0;
  background-image: url(../images/general/shape-cream.svg);
  background-position: bottom -2.5px left;
  background-repeat: no-repeat;
  background-size: 23%;
}

main.single .s2 article {
  margin-bottom: 45px;
}

main.single .s2 article > * {
  font-size: 30px;
  line-height: 120%;
}

main.single .s2 article a {
  color: var(--darkColor);
  text-decoration: underline;
  text-underline-offset: 2px;
}

main.single .s2 .bottom-side {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 35px;
  margin-bottom: 85px;
}

main.single .s2 .bottom-side a {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 97%;
}

/* -------------------------------------------------------------------------- */
/*	10. Blocks
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	11. Entry Content
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	13. Site Pagination
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	14. Error 404
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	15.	Extras
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	16. Site Footer
/* -------------------------------------------------------------------------- */

.footer-banner {
  margin: 130px 0 260px 0;
  background-image: url(../images/general/caaid-footer-banner-women.webp);
  background-repeat: no-repeat;
  background-position: right 5% center;
  background-size: 40%;
  min-height: 750px;
  display: flex;
  align-items: center;
}

.footer-banner.men {
  background-image: url(../images/general/caaid-footer-banner-men.webp);
}

.footer-banner .subtitle {
  font-size: 70px;
  font-weight: 700;
  line-height: 85%;
}

.footer-banner .title {
  font-size: 120px;
  font-weight: 300;
  line-height: 85%;
  margin-bottom: 95px;
}

.footer-banner p {
  font-size: 24px;
  margin-bottom: 52px;
}

#footer {
  background-color: var(--darkColor);
  padding: 170px 0 90px 0;
  background-image: url(../images/general/shape-cream.svg);
  background-position: top -2.5px right;
  background-repeat: no-repeat;
  background-size: 23%;
}

#footer .footer-top {
  display: flex;
  gap: 35px;
  margin-bottom: 125px;
}

#footer .logo-area {
  max-width: 250px;
}

#footer .logo-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#footer .footer-menu {
  display: flex;
  gap: 84px;
  margin-bottom: 0;
  padding-left: 0;
}

#footer .footer-menu .menu-item {
  list-style: none;
}

#footer .footer-menu .menu-item a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 106.59%;
  white-space: nowrap;
}

#footer .footer-bottom {
  display: flex;
  align-items: center;
  gap: 35px;
  justify-content: space-between;
}

#footer .footer-bottom .social-media {
  display: flex;
  align-items: center;
  gap: 50px;
}

#footer .footer-bottom .contact-details p,
#footer .footer-bottom .contact-details a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
}

#footer .footer-bottom .contact-details a {
  white-space: nowrap;
}

#footer .companies-area {
  display: flex;
  align-items: center;
  gap: 35px;
}

#footer .companies-area .company-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #dbd7d4;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
}

#footer .companies-area .company-item .logo {
  width: 28.61px;
  height: 28.61px;
}

#footer .companies-area .company-item .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------------------------------------------------- */
/*	17. Media Queries
/* -------------------------------------------------------------------------- */

@media (max-width: 1799px) {
  /* Header */
  #header .logo-area {
    width: 465px;
  }

  #header .main-menu {
    gap: 25px;
  }

  #header .main-menu .menu-item.menu-item-btn a {
    width: 220px;
    height: 45px;
    font-size: 16px;
  }

  #header .header-wrapper {
    gap: 75px;
  }

  /* Home */
  main.blog .s1 .title b,
  main.about .s1 .title b,
  main.contact .s1 .title b,
  main.approach .s1 .title b,
  main.services .s1 .title b,
  main.home .s1 .title b {
    font-size: 64px;
  }

  main.blog .s1 .title,
  main.about .s1 .title,
  main.contact .s1 .title,
  main.approach .s1 .title,
  main.services .s1 .title,
  main.home .s1 .title {
    font-size: 100px;
  }

  main.home .s4 {
    padding: 125px 0;
  }

  /* Services */
  main.services .s1 .subtitle {
    margin-bottom: 15px;
  }

  /* Approach */
  main.approach .s2 {
    padding: 150px 0 250px 0;
  }

  main.approach .s2 .items-wrapper .item h6 {
    font-size: 38px;
    margin-bottom: 75px;
  }

  main.approach .s2 .items-wrapper .item:nth-child(1) {
    min-width: unset;
  }

  main.approach .s2 .items-wrapper {
    gap: 40px;
  }

  main.approach .s2 .items-wrapper .item {
    padding-right: 40px;
  }

  /* Single */
  main.single .s1 .title {
    font-size: 64px;
  }

  main.single .s2 article > * {
    font-size: 24px;
  }

  /* About */
  main.about .s2 .about-row .title {
    font-size: 48px;
  }

  main.about .s2 .dr-wrapper .dr-wrap-top{
    gap: 100px;
  }

  /* Blog */
  main.blog .s1 .subtitle {
    margin-bottom: 15px;
  }

  /* Footer */
  #footer .footer-bottom .social-media {
    gap: 25px;
  }
}

@media (max-width: 1599px) {
  #header .main-menu {
    gap: 15px;
  }

  #header .header-wrapper {
    gap: 50px;
  }

  /* Home */
  main.home .s1{
    padding-top: 0;
    min-height: 600px;
  }

  main.home .s2 .animated-texts .text {
    font-size: 48px;
  }

  main.home .s2 .animated-texts .text::before {
    height: 34px;
  }

  main.home .s3 .subtitle {
    font-size: 20px;
    margin-bottom: 10px;
  }

  main.home .s3 .title {
    font-size: 56px;
    margin-bottom: 85px;
  }

  main.home .s3 .about-row {
    gap: 50px;
  }

  main.home .s3 .dr-items {
    gap: 20px;
  }

  main.home .s4 .title {
    font-size: 56px;
  }

  main.home .s4 .image-area {
    max-width: 530px;
  }

  /* Services & Approach */
  main.approach .s1 .content-row .content-area,
  main.services .s1 .content-row .content-area {
    max-width: 750px;
  }

  main.approach .s1 .image-area,
  main.services .s1 .image-area {
    max-width: 475px;
  }

  main.services .s2 .service-item .item-title {
    font-size: 38px;
    margin-top: 10px;
  }

  main.services .s2 .service-item li {
    font-size: 20px;
  }

  main.services .s2 .service-item i.arrow {
    margin-top: 20px;
  }

  /* FAQ */
  main.faq .s1 .title {
    font-size: 72px;
  }

  main.faq .s1 .content-row {
    margin: 50px 0 175px 0;
    gap: 90px;
  }

  main.contact .contact-details h2 {
    font-size: 56px;
  }

  /* About & Blog */
  main.blog .s1 .content-row .image-area,
  main.about .s1 .image-area {
    max-width: 540px;
  }

  main.about .s1 .title {
    margin-bottom: 50px;
  }

  main.blog .s1 .content-row {
    gap: 45px;
  }

  main.blog .s1 p,
  main.blog .s1 .title {
    margin-bottom: 40px;
  }

  /* Footer */
  .footer-banner .subtitle {
    font-size: 56px;
  }

  .footer-banner .title {
    font-size: 100px;
  }

  .footer-banner {
    margin: 90px 0 125px 0;
  }

  #footer .footer-menu {
    gap: 50px;
  }
}

@media (max-width: 1399px) {
  /* Global */
  main {
    padding-top: 120px;
  }

  .cta-btn {
    width: 300px;
    height: 50px;
  }

  /* Header */
  #header {
    padding: 27px 2.5% 16px 2.5%;
  }

  #header .header-wrapper {
    gap: 35px;
  }

  #header .main-menu .menu-item a {
    font-size: 14px;
  }

  #header .main-menu {
    gap: 10px;
  }

  #header .main-menu .menu-item.menu-item-btn a {
    width: 175px;
    height: 40px;
    font-size: 14px;
  }

  #header .main-menu .menu-item.menu-item-btn.blue a {
    width: 145px;
  }

  /* Home */
  main.home .s1 {
    min-height: 820px;
  }

  main.blog .s1 .title b,
  main.about .s1 .title b,
  main.contact .s1 .title b,
  main.approach .s1 .title b,
  main.services .s1 .title b,
  main.home .s1 .title b {
    font-size: 48px;
  }

  main.blog .s1 .title,
  main.about .s1 .title,
  main.contact .s1 .title,
  main.approach .s1 .title,
  main.services .s1 .title,
  main.home .s1 .title {
    font-size: 72px;
  }

  main.home .s1 p {
    font-size: 20px;
    max-width: 650px;
    margin-bottom: 25px;
  }

  main.home .s3 {
    padding: 125px 0 150px 0;
  }

  main.home .s3 .title {
    font-size: 48px;
  }

  main.home .s3 .about-row {
    margin-top: 200px;
  }

  main.about .s2 .dr-wrap-top .dr-title,
  main.home .s3 .dr-wrap-top .dr-title {
    font-size: 24px;
    margin-bottom: 35px;
  }

  main.about .s2 .dr-wrapper .dr-wrap-top,
  main.home .s3 .dr-wrapper .dr-wrap-top {
    gap: 75px;
  }

  main.home .s4 .title {
    font-size: 48px;
  }

  main.home .s4 .image-area {
    max-width: 470px;
  }

  /* Services & Approach */
  main.approach .s1 p,
  main.approach .s1 .subtitle,
  main.services .s1 .subtitle,
  main.services .s1 p {
    font-size: 20px;
  }

  main.approach .s1,
  main.services .s1 {
    padding: 45px 0;
  }

  main.approach .s2 .items-wrapper .item h6 {
    font-size: 32px;
    margin-bottom: 50px;
  }

  /* Contact */
  main.contact .s1 .content-row {
    gap: 50px;
    margin-top: 45px;
    margin-bottom: 150px;
  }

  main.contact .s1 .content-row .image-area {
    max-width: 400px;
  }

  main.contact .s1 .form-area .input-row {
    gap: 20px;
  }

  /* FAQ */
  .faq-item-wrap .faq-item .faq-header {
    font-size: 24px;
  }

  main.faq .s1 .title {
    font-size: 64px;
    margin-bottom: 22px;
  }

  main.faq .s1 .content-area p {
    font-size: 22px;
    margin-bottom: 50px;
  }

  main.faq .s1 .content-area {
    max-width: 640px;
  }

  /* Single */
  main.single .s1 .title {
    font-size: 48px;
  }

  main.single .s1 .image-area {
    max-width: 475px;
  }

  /* About */
  main.about .s1 .subtitle {
    font-size: 20px;
    margin-bottom: 10px;
  }

  main.about .s1 {
    padding: 45px 0 100px 0;
  }

  main.about .s2 {
    padding: 125px 0 150px 0;
  }

  main.about .s2 .dr-wrap-second {
    margin-top: 120px;
  }

  main.about .s2 .dr-wrap-top p {
    font-size: 18px;
  }

  main.about .s2 .dr-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  /* Blog */
  main.blog .s1 .subtitle {
    font-size: 20px;
    margin-bottom: 10px;
  }

  main.blog .s1 {
    padding: 25px 0 75px 0;
  }

  main.blog .post-item .post-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  main.blog .post-item {
    gap: 25px;
  }

  main.blog .s2 {
    padding: 75px 0 175px 0;
  }

  /* Footer */
  .footer-banner {
    min-height: 550px;
  }

  .footer-banner .subtitle {
    font-size: 48px;
  }

  .footer-banner .title {
    font-size: 72px;
    margin-bottom: 50px;
  }

  #footer .footer-bottom {
    flex-direction: column;
    gap: 30px;
  }

  #footer .footer-top {
    margin-bottom: 100px;
  }

  #footer .footer-menu {
    gap: 35px;
  }
}

@media (max-width: 1199px) {
  /* Header */
  #header .main-menu .menu-item {
    display: none;
  }

  #header .main-menu .menu-item-btn.blue {
    display: flex;
  }

  #header .header-wrapper {
    justify-content: end;
  }

  #header .logo-area {
    flex: 1;
  }

  #header .menu-btn {
    display: block;
  }

  /* Home */
  main.home .s1 {
    min-height: 645px;
    padding: 50px 0;
  }

  main.home .s2 {
    padding-bottom: 75px;
  }

  main.home .s3 .title {
    margin-bottom: 45px;
  }

  main.home .s3 .about-row {
    flex-direction: column;
  }

  main.home .s3 .about-row .title {
    margin-bottom: 0;
  }

  main.home .s3 .about-row .dr-wrapper {
    gap: 45px;
  }

  main.home .s3 .dr-items .dr-item .logo {
    width: 48px;
    height: 48px;
  }

  main.home .s4 {
    padding: 100px 0;
  }

  main.home .s4 .title {
    margin: 45px 0 25px 0;
  }

  /* Services & Approach */
  main.approach .s1 .content-row .content-area,
  main.services .s1 .content-row .content-area {
    max-width: 500px;
  }

  main.approach .s1 .subtitle,
  main.services .s1 .subtitle {
    margin-bottom: 10px;
  }

  main.services .s2 .service-item {
    gap: 25px;
  }

  main.services .s2 .service-item .item-title {
    font-size: 28px;
  }

  main.services .s2 {
    padding: 75px 0;
  }

  main.services .s2 .service-item i.arrow {
    margin-top: 13px;
  }

  main.approach .s2 {
    padding: 100px 0 150px 0;
  }

  main.approach .s2 .items-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  main.approach .s2 .items-wrapper .item {
    padding-right: 0;
    padding-bottom: 30px;
    border-right: none;
    border-bottom: 1px solid #818564;
  }

  main.approach .s2 .items-wrapper .item h6 {
    margin-bottom: 20px;
  }

  main.approach .s2 .items-wrapper .item h6 > br {
    display: none;
  }

  /* FAQ */
  main.faq .s1 .content-row {
    gap: 45px;
  }

  main.faq .s1 .content-area {
    max-width: 525px;
  }

  main.faq .s1 .content-area p {
    font-size: 20px;
    margin-bottom: 40px;
  }

  main.faq .s1 .title {
    font-size: 56px;
  }

  /* Contact */
  main.contact .s1 .content-row .image-area {
    max-width: 325px;
  }

  main.contact .s1 .title b {
    font-size: 42px;
  }

  main.contact .s1 .title {
    font-size: 64px;
  }

  main.contact .s1 p {
    font-size: 20px;
    margin-bottom: 45px;
  }

  main.contact .s1 .form-area select,
  main.contact .s1 .form-area input[type="date"],
  main.contact .s1 .form-area input[type="text"],
  main.contact .s1 .form-area input[type="tel"],
  main.contact .s1 .form-area input[type="email"]{
    height: 48px;
  }

  main.contact .s1 .form-area label {
    font-size: 16px;
    padding-left: 13px;
  }

  main.contact .contact-details h2 {
    font-size: 48px;
  }

  main.contact .contact-details .contact-text {
    gap: 20px;
  }

  main.contact .contact-details {
    margin-bottom: 100px;
  }

  /* Single */
  main.single .s2 article > * {
    font-size: 20px;
  }

  main.single .s1 .content-row {
    gap: 50px;
  }

  /* About */
  main.about .s1 .content-row {
    gap: 45px;
  }

  main.about .s1 .image-area {
    max-width: 425px;
  }

  main.about .s1 p {
    font-size: 20px;
    margin-bottom: 35px;
  }

  main.about .s1 .subtitle {
    margin-bottom: 0;
  }

  main.about .s2 .about-row {
    gap: 35px;
  }

  main.about .s2 .dr-wrap-second .dr-wrap-top,
  main.about .s2 .about-row .title-area {
    width: 100%;
  }

  main.about .s2 .about-row .title br {
    display: none;
  }

  main.about .s2 .dr-wrap-second,
  main.about .s2 .about-row .dr-wrapper {
    padding-left: 0;
  }

  main.about .s2 .dr-wrap-top .image-area {
    width: 325px;
    height: 270px;
  }

  /* Blog */
  main.blog .s1 .content-row .image-area {
    max-width: 425px;
  }

  main.blog .s1 p {
    font-size: 20px;
  }

  main.blog .post-item {
    margin-bottom: 30px;
  }

  /* Footer */
  .footer-banner {
    min-height: 460px;
    margin: 45px 0 75px 0;
  }

  .footer-banner p {
    font-size: 20px;
    margin-bottom: 27px;
  }

  #footer {
    padding: 135px 0 50px 0;
  }

  #footer .footer-top {
    margin-bottom: 75px;
  }
}

@media (max-width: 991px) {
  /* Home */
  main.home .s1 {
    min-height: 520px;
    padding: 0;
  }

  main.blog .s1 .title b,
  main.approach .s1 .title b,
  main.services .s1 .title b,
  main.home .s1 .title b {
    font-size: 42px;
  }

  main.blog .s1 .title,
  main.approach .s1 .title,
  main.services .s1 .title,
  main.home .s1 .title {
    font-size: 64px;
    margin-bottom: 35px;
  }

  main.home .s1 p {
    max-width: 550px;
  }

  main.home .s2 .animated-texts .text {
    font-size: 32px;
  }

  main.home .s2 .animated-texts .text::before {
    height: 20px;
  }

  main.home .s3 .dr-wrapper .dr-wrap-top {
    gap: 50px;
  }

  main.home .s3 .dr-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  main.home .s3 .about-row {
    margin-top: 125px;
  }

  main.home .s3 .dr-wrap-top p {
    font-size: 18px;
  }

  /* Services & Approach */
  main.approach .s1 .content-row,
  main.services .s1 .content-row {
    flex-direction: column;
    gap: 35px;
  }

  main.approach .s1 .content-row .content-area,
  main.services .s1 .content-row .content-area {
    max-width: 100%;
  }

  main.approach .s1 .image-area,
  main.services .s1 .image-area {
    max-width: 100%;
    display: flex;
    justify-content: end;
  }

  main.approach .s1 .image-area img,
  main.services .s1 .image-area img {
    max-width: 450px;
  }

  main.services .s2 .service-item {
    flex-direction: column;
  }

  main.services .s2 .service-item .item-header {
    gap: 15px;
  }

  main.services .s2 .service-item i.arrow {
    margin-top: 15px;
  }

  /* FAQ */
  main.faq .s1 .content-row {
    gap: 45px;
    flex-direction: column-reverse;
    margin: 25px 0 125px 0;
  }

  main.faq .s1 .content-area {
    max-width: 100%;
  }

  main.faq .s1 .title {
    font-size: 48px;
  }

  /* Contact */
  main.contact .s1 .content-row {
    flex-direction: column-reverse;
    gap: 35px;
    margin-bottom: 75px;
  }

  main.contact .s1 p,
  main.contact .s1 .title {
    margin-bottom: 25px;
  }

  main.contact .s1 .form-area {
    gap: 25px;
  }

  main.contact .contact-details {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }

  main.contact .contact-details h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  main.contact .contact-details span,
  main.contact .contact-details a,
  main.contact .contact-details p {
    font-size: 20px;
  }

  main.contact .map-area iframe {
    height: 400px;
  }

  /* single */
  main.single .s1 .content-row {
    flex-direction: column;
    gap: 45px;
  }

  main.single .s1 .image-area {
    max-width: 100%;
    display: flex;
    justify-content: end;
  }

  main.single .s1 .image-area img {
    max-width: 425px;
  }

  main.single .s1 .subtitle {
    font-size: 20px;
    margin-bottom: 15px;
  }

  main.single .s1 .title {
    font-size: 38px;
  }

  /* About */
  main.blog .s1 .content-row,
  main.about .s1 .content-row {
    flex-direction: column-reverse;
  }

  /* Footer */
  .footer-banner .subtitle {
    font-size: 38px;
  }

  .footer-banner .title {
    font-size: 64px;
    margin-bottom: 30px;
  }

  .footer-banner p {
    font-size: 20px;
    margin-bottom: 17px;
    max-width: 400px;
  }

  #footer .footer-menu {
    flex-wrap: wrap;
    row-gap: 5px;
  }
}

@media (max-width: 768px) {
  /* Global */
  .cta-btn .text-visible,
  .cta-btn .text-hidden {
    font-size: 15px;
  }

  .cta-btn {
    width: 240px;
    height: 44px;
  }

  /* Home */
  main.home .s1 {
    min-height: 400px;
    background-position: bottom center;
  }

  main.home .s1 p {
    max-width: 450px;
    font-size: 18px;
  }

  main.blog .s1 .title b,
  main.about .s1 .title b,
  main.contact .s1 .title b,
  main.approach .s1 .title b,
  main.services .s1 .title b,
  main.home .s1 .title b {
    font-size: 32px;
  }

  main.blog .s1 .title,
  main.about .s1 .title,
  main.contact .s1 .title,
  main.services .s1 .title,
  main.home .s1 .title {
    font-size: 56px;
    margin-bottom: 25px;
  }

  main.home .s2 {
    padding: 50px 0;
  }

  main.home .s2 .animated-texts .text {
    font-size: 24px;
  }

  main.home .s2 .animated-texts .text::before {
    height: 16.5px;
  }

  main.home .s3 {
    padding: 50px 0 75px 0;
  }

  main.home .s3 .dr-wrap-top .dr-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  main.home .s3 .dr-wrapper .dr-wrap-top {
    gap: 35px;
    flex-direction: column;
  }

  main.home .s3 .title {
    font-size: 32px;
    margin-bottom: 25px;
  }

  main.home .s3 .subtitle {
    margin-bottom: 5px;
    font-size: 18px;
  }

  main.home .s3 p {
    margin-bottom: 25px;
    font-size: 18px;
  }

  main.home .s3 .about-row {
    margin-top: 100px;
    gap: 30px;
  }

  main.home .s3 .dr-wrap-top p {
    margin-bottom: 20px;
  }

  main.home .s3 .dr-items .dr-item {
    gap: 10px;
  }

  main.home .s4 .image-area {
    max-width: 250px;
  }

  /* Single */
  main.single .s2 article > * {
    font-size: 18px;
  }

  main.single .s1 .title {
    font-size: 32px;
  }

  main.single .s2 {
    padding: 45px 0;
    background-size: 40%;
  }

  /* FAQ */
  .faq-item-wrap .faq-item .faq-header {
    font-size: 20px;
    padding-top: 6px;
  }

  .faq-item-wrap i.arrow {
    width: 32px;
    height: 32px;
  }

  .faq-item-wrap .faq-item .faq-body ul {
    margin-bottom: 20px;
  }

  .faq-item-wrap .faq-item li {
    font-size: 18px;
    margin-bottom: 5px;
  }

  main.home .s4 {
    padding: 50px 0;
  }

  main.home .s4 p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  main.home .s4 .title {
    margin: 35px 0 20px 0;
    font-size: 32px;
  }

  /* Services & Approach */
  main.services .s2 .service-item li {
    font-size: 18px;
  }

  main.approach .s1 p,
  main.services .s1 p {
    font-size: 18px;
    margin-bottom: 25px;
  }

  main.services .s2 {
    padding: 50px 0;
  }

  main.services .s2 .service-item:nth-child(1) ul {
    column-count: 1;
  }

  main.approach .s1 .title {
    font-size: 48px;
  }

  main.approach .s2 .items-wrapper .item h6 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  main.approach .s2 .items-wrapper .item p > b,
  main.approach .s2 .items-wrapper .item p {
    font-size: 18px;
  }

  main.approach .s2 {
    padding: 50px 0 100px 0;
  }

  /* ABout */
  main.about .s1 {
    padding: 25px 0 50px 0;
  }

  main.about .s2 .dr-wrapper .dr-wrap-top,
  main.home .s3 .dr-wrapper .dr-wrap-top {
    flex-direction: column;
    gap: 35px;
  }

  main.about .s2 {
    padding: 50px 0 100px 0;
    background-size: 40%;
  }

  main.about .s2 .dr-wrap-top .dr-title,
  main.home .s3 .dr-wrap-top .dr-title {
    margin-bottom: 20px;
  }

  main.about .s2 .about-row .title {
    font-size: 32px;
  }

  main.about .s2 .dr-items {
    margin-top: 75px;
    row-gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }

  main.about .s2 .dr-wrap-second {
    margin-top: 50px;
  }

  main.about .s1 p {
    font-size: 18px;
  }

  /* Blog */
  main.blog .post-item .image-area {
    width: 175px;
    height: 270px;
  }

  main.blog .post-item p {
    font-size: 18px;
    margin-bottom: 15px;
  }

  main.blog .post-item .post-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  main.blog .pagination ul {
    gap: 20px;
  }

  main.blog .s2 {
    background-size: 40%;
  }

  /* Footer */
  .footer-banner .title {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .footer-banner .subtitle {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .footer-banner p {
    font-size: 18px;
    margin-bottom: 17px;
    max-width: 355px;
  }

  .footer-banner {
    min-height: 260px;
    margin: 50px 0 50px 0;
  }

  #footer .footer-top {
    flex-direction: column;
    gap: 25px;
  }

  #footer .footer-bottom .contact-details p {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: transparent;
    line-height: 0.5;
  }
}

@media (max-width: 576px) {
  #header {
    padding: 20px 2.5% 20px 2.5%;
  }

  #header .logo-area {
    width: 285px;
  }

  #header .header-wrapper {
    gap: 10px;
  }

  #header .main-menu .menu-item.menu-item-btn.blue a {
    color: transparent;
    width: 32px;
    height: 32px;
    border-radius: 3px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M16.5562 12.9062L16.1007 13.359C16.1007 13.359 15.0181 14.4355 12.0631 11.4972C9.10812 8.55901 10.1907 7.48257 10.1907 7.48257L10.4775 7.19738C11.1841 6.49484 11.2507 5.36691 10.6342 4.54348L9.37326 2.85908C8.61028 1.83992 7.13596 1.70529 6.26145 2.57483L4.69185 4.13552C4.25823 4.56668 3.96765 5.12559 4.00289 5.74561C4.09304 7.33182 4.81071 10.7447 8.81536 14.7266C13.0621 18.9492 17.0468 19.117 18.6763 18.9651C19.1917 18.9171 19.6399 18.6546 20.0011 18.2954L21.4217 16.883C22.3806 15.9295 22.1102 14.2949 20.8833 13.628L18.9728 12.5894C18.1672 12.1515 17.1858 12.2801 16.5562 12.9062Z' fill='%23fff'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px;
    overflow: hidden;
  }

  #header .main-menu .menu-item.menu-item-btn.blue:hover a {
    color: transparent !important;
    background-color: var(--blueColor);
  }

  main {
    padding-top: 75px;
  }

  main.blog .s1 .title,
  main.about .s1 .title,
  main.contact .s1 .title,
  main.services .s1 .title,
  main.home .s1 .title {
    font-size: 48px;
  }

  main.home .s1 .title b {
    font-size: 24px;
  }

  main.home .s1 .title {
    font-size: 42px;
    margin-bottom: 20px;
  }

  main.home .s1 {
    min-height: 375px;
  }

  main.home .s3 .dr-items {
    gap: 15px;
  }

  main.home .s3 .dr-items .dr-item .item-title {
    font-size: 12px;
  }

  main.home .s3 .dr-items .dr-item .logo {
    width: 28px;
    height: 28px;
  }

  main.about .s2 .dr-wrap-top .image-area {
    width: 100%;
    max-width: 325px;
  }

  main.home .s3 .dr-wrap-top .image-area {
    width: 175px;
    height: 246px;
  }

  /* Services & approach */
  main.approach .s1 .image-area img,
  main.services .s1 .image-area img {
    max-width: 100%;
  }

  main.services .s2 .service-item .item-title {
    font-size: 24px;
  }

  main.services .s2 .service-item i.arrow {
    width: 20px;
    height: 14px;
  }

  main.services .s2 .service-item .item-header {
    gap: 17px;
  }

  main.services .bg-shape {
    width: 40%;
  }

  main.approach .s2 {
    background-size: 40%;
  }

  /* FAQ */
  main.faq .s1 .image-area {
    max-width: 250px;
  }

  main.faq .s1 .title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  main.faq .s1 .content-area p {
    font-size: 18px;
    margin-bottom: 25px;
  }

  main.faq .s1 .content-row {
    margin: 20px 0 50px 0;
  }

  main.faq .faq-item-wrap .faq-item .faq-body {
    padding-left: 10px;
  }

  main.faq .faq-items {
    margin-left: -5px;
  }

  /* Contact */
  main.contact .s1 .form-area .input-row {
    flex-direction: column;
  }

  main.contact .s1 .form-area {
    gap: 20px;
  }

  main.contact .contact-details .contact-text {
    gap: 10px;
    column-gap: 5px;
    flex-wrap: wrap;
    align-items: start;
  }

  main.contact .contact-details span,
  main.contact .contact-details a,
  main.contact .contact-details p {
    font-size: 18px;
  }

  /* Single */
  main.single .s1 .subtitle {
    margin-bottom: 10px;
  }

  main.single .s1 .image-area img {
    max-width: 100%;
  }

  main.single .s2 .bottom-side a {
    font-size: 16px;
  }

  main.single .s2 .bottom-side {
    gap: 20px;
    flex-wrap: wrap;
  }

  /* About */
  main.about .s2 .dr-items {
    gap: 15px;
    margin-top: 45px;
  }

  main.about .s2 .dr-items .dr-item .logo {
    width: 28px;
    height: 28px;
  }

  main.about .s2 .dr-items .dr-item {
    gap: 10px;
  }

  main.about .s2 .dr-wrap-top p {
    font-size: 16px;
    margin-bottom: 0;
  }

  main.about .s2 .dr-items .dr-item .item-title {
    font-size: 12px;
  }

  main.about .s1 .title {
    font-size: 48px;
  }

  /* Blog */
  main.blog .s1 {
    padding-top: 0;
  }

  main.blog .post-item {
    margin-bottom: 45px;
    gap: 10px;
    align-items: start;
  }

  main.blog .post-item p {
    font-size: 14px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  main.blog .post-item .image-area {
    width: 100px;
    height: 160px;
  }

  main.blog .post-item .post-title {
    margin-bottom: 10px;
    font-size: 18px;
  }

  main.blog .pagination ul {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  main.blog .pagination .next,
  main.blog .pagination .prev {
    width: 100%;
    text-align: center;
  }

  main.blog .pagination-area {
    justify-content: center;
  }

  main.blog .s2 {
    padding: 50px 0 100px 0;
  }

  main.blog .s1 .subtitle {
    margin-bottom: 0;
  }

  main.blog .s1 {
    padding: 25px 0 50px 0;
  }

  main.blog .s1 p {
    margin-bottom: 20px;
  }

  /* Footer */
  .footer-banner {
    min-height: 450px;
    margin: 50px 0 50px 0;
    background-position: top left 10px;
    background-size: 250px;
    align-items: end;
  }

  #footer .footer-menu {
    flex-direction: column;
    gap: 0;
  }

  #footer .logo-area {
    max-width: 175px;
  }

  #footer {
    padding: 50px 0 65px 0;
    background-position: bottom right;
    background-size: 40%;
  }

  #footer .footer-menu .menu-item a {
    font-size: 16px;
  }

  #footer .companies-area {
    gap: 20px;
    flex-direction: column;
    align-items: start;
  }

  #footer .footer-bottom {
    gap: 20px;
    align-items: start;
  }

  #footer .footer-bottom .contact-details p {
    align-items: start;
  }

  #footer .footer-bottom .contact-details p,
  #footer .footer-bottom .contact-details a {
    font-size: 16px;
  }

  #footer .footer-bottom .contact-details a {
    white-space: normal;
  }
}

@media (max-width: 375px) {
  main.blog .post-item {
    flex-direction: column;
    gap: 20px;
  }
}
