/* Base css start */

/* font family cdn */
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Lexend+Deca:wght@100..900&family=Parkinsans:wght@300..800&display=swap');

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

:root {
  /* colors */
  --primary: #2455cf;
  --secondary: #ff4b0e;
  --grey: #cbd0c8;
  --gray-300: #a3a3a3;
  --gray-500: #5c5c5c;
  --blue-50: #E7FBFF;
  --blue-100: #e6f4fa;
  --blue-500: #009fdb;
  --purple: #6100ba;
  --light-periwinkle: #e7eaff;
  --yellow: #ffc51e;

  /* font family */
  --albertSans: "Albert Sans", sans-serif;
  --parkinsans: "Parkinsans", sans-serif;
  --lexendDeca: "Lexend Deca", sans-serif
}
::placeholder {
  color: inherit;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
ol,
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

a,
button {
  transition: all 0.3s;
  color: inherit;
}

a {
  text-decoration: none;
}

sup {
  top: -0.22em;
}
img {
  max-width: 100%;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-inline: 20px;
}

body {
  color: #000;
  font-family: var(--albertSans);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--parkinsans);
}
h3 {
  font-size: 28px;
  line-height: 1.36;
}
.mt-xs {
	margin-top: 8px;
}
.mb-xs {
	margin-bottom: 8px;
}
.mt-sm {
	margin-top: 15px;
}
.mb-sm {
	margin-bottom: 15px;
}
.mt-md {
	margin-top: 30px;
}
.mb-md {
	margin-bottom: 30px;
}
.mt-lg {
	margin-top: 50px;
}
.mb-lg {
	margin-bottom: 50px;
}
.mt-xl {
	margin-top: 80px;
}
.mb-xl {
	margin-bottom: 80px;
}
.pt-xs {
	padding-top: 8px;
}
.pb-xs {
	padding-bottom: 8px;
}
.pt-sm {
	padding-top: 15px;
}
.pb-sm {
	padding-bottom: 15px;
}
.pt-md {
	padding-top: 30px;
}
.pb-md {
	padding-bottom: 30px;
}
.pt-lg {
	padding-top: 50px;
}
.pb-lg {
	padding-bottom: 50px;
}
.pt-xl {
	padding-top: 80px;
}
.pb-xl {
	padding-bottom: 80px;
}


.section__title {
  margin-bottom: 50px;
}

.section__title h2, h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
.theme__btn {
  border-radius: 60px;
  background: #f44b1b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 25px;
  height: 50px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--parkinsans);
  text-align: center;
}
.theme__btn:hover {
  background-color: #000;
}
.slider-nav__btn {
  width: 44px;
  height: 44px;
  background-color: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}
.slider-nav__btn:hover {
  background-color: var(--secondary);
  color: #fff;
}
.para-style {
  font-size: 19px;
  line-height: 24px;
  letter-spacing: -0.18px;
}
.para-style-lg {
  font-size: 24px;
  line-height: 1.33;
}
.text-yellow {
  color: var(--yellow);
}
/* header-bar start */

.header__bar {
  height: 36px;
  background: #f3f3f3;
  padding-inline: 12px;
}

.header__bar a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f44b1b;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.08px;
}

.header__main {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9;
}

/* header-bar end */

/* header css start */
.header {
  background-color: var(--primary);
  transition: all 0.3s;
  z-index: 1050;
}
.header .container {
  max-width: 1290px;
}
.header__wrapper {
  height: 118px;
  transition: all 0.3s;
}
.header__logo-img {
  max-width: 310px;
  padding-right: 20px;
  width: 100%;
  transition: all 0.3s;
}
.header.fixed-top {
  position: fixed !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.header.fixed-top .header__wrapper {
  height: 80px;
}
.header.fixed-top .header__logo-img {
  max-width: 300px;
}

.header__menu {
  gap: 24px;
}

.header__menu-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.18px;
  position: relative;
}
.header__menu-link::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: var(--secondary);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s;
}
.header__menu-item:hover .header__menu-link::after {
  width: 100%;
}
.header__menu-link img {
  transition: all 0.3s;
}
.header__menu-item:hover .header__menu-link img {
  transform: rotate(180deg);
}
.header__btn {
  border-radius: 60px;
  background: #f44b1b;
  padding: 0 25px;
  height: 40px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 60px;
}
.header__btn:hover {
  background-color: #000;
}
.header__menubar svg {
  width: 28px;
  color: #fff;
}

/* megamenu start */

.megamenu {
  font-family: var(--parkinsans);
  padding: 0px 20px 14px;
  top: 150%;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}
.header__menu-item:hover .megamenu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.megamenu__wrapper {
  max-width: 1060px;
  padding: 25px 30px 25px;
  background: #fff;
  border: 1px solid var(--grey);
  gap: 30px;
}
.megamenu__widget-title {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 10px;
}
.megamenu__widget {
  padding-block: 10px;
}
.megamenu__link {
  gap: 12px;
  font-size: 15px;
  line-height: 22px;
  color: var(--primary);
  letter-spacing: -0.24px;
}
.megamenu__link img {
  width: 40px;
}
.megamenu__links {
  gap: 10px;
}
.megamenu__link i {
  color: var(--secondary);
}
.megamenu__link:hover {
  color: var(--secondary);
}
.megamenu__divider {
  height: 1px;
  background-color: var(--grey);
  margin-block: 24px;
}

.megamenu__post-thumb {
  height: 178px;
  border-radius: 50px 0;
  margin-bottom: 10px;
}
.megamenu__post {
  padding: 12px;
}
.megamenu__post-title {
  font-size: 17px;
  line-height: 24px;
  color: var(--primary);
  letter-spacing: -0.024px;
  transition: all 0.3s;
}
.megamenu__post-title:hover {
  color: var(--secondary);
}
/* megamenu end */

/* offcanvas menu start */
.offcanvas .header__logo-img {
  max-width: 200px;
}
.offcanvas .header__search-btn img {
  filter: brightness(0);
}
.offcanvas__menu-link {
  padding-block: 12px;
  border-bottom: 1px solid #000;
}
.offcanvas__menu-link img {
  filter: brightness(0);
}

.offcanvas .megamenu__link {
  font-size: 14px;
  line-height: 20px;
}
.offcanvas .megamenu__link img {
  width: 32px;
}
.offcanvas .megamenu__wrapper {
  padding: 16px;
}
.offcanvas .megamenu__post {
  padding: 0;
}
.offcanvas .megamenu__post-title {
  font-size: 14px;
  line-height: 20px;
}
/* offcanvas menu end */

/* header css end */

/* hero section start */
.hero {
  background: linear-gradient(180deg, #2455cf 80.04%, #062062 112.7%);
  padding-top: 154px;
  position: relative;
}
.hero__dot-shape {
  position: absolute;
  left: -30px;
  bottom: 0;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 180px;
  z-index: 1;
}
.hero__video {
  position: absolute;
  right: 0;
  top: 36px;
  width: 52%;
  height: calc(100% - 36px);
}
.hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  max-width: 540px;
  position: relative;
  padding-bottom: 103px;
  z-index: 2;
}

.hero__subtitle {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.33;
  position: relative;
  display: inline-block;
  margin-bottom: 33px;
  font-family: var(--albertSans);
}

.hero__subtitle img {
  position: absolute;
  left: 0;
  bottom: -10px;
}

.hero__title {
  color: #ffffff;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.725;
  margin-bottom: 23px;
}

.hero__title span:nth-child(2) {
  font-size: 70px;
  line-height: 76px;
}

.hero__title span:nth-child(3) {
  font-size: 96px;
  line-height: 1;
}
.hero__desc {
  color: #ffffff;
  font-size: 18.712px;
  font-style: normal;
  font-weight: 500;
  line-height: 24.95px;
  margin-bottom: 36px;
  max-width: 470px;
}


.hero--style-2 {
  background: #fff;
}
.hero--style-2 .hero__content {
  max-width: 648px;
  padding-block: 120px;
}
.hero--style-2 .hero__subtitle {
  color: var(--yellow);
  margin-bottom: 14px;
  font-family: var(--parkinsans);
  font-weight: 600;
}
.hero--style-2 .hero__title {
  font-size: 50px;
  line-height: 1.2;
}

.hero--style-2 .hero__desc {
  font-size: 24px;
  line-height: 1.33;
  max-width: 100%;
}
.hero--style-2 .hero-img {
  top: 0;
  width: 100%;
  height: 100%;
}
/* hero section end */

/* breadcrumb start */
.breadcrumb-item {
  font-size: 15px;
  line-height: 28px;
  color: var(--primary);
  --bs-breadcrumb-divider-color: var(--purple);
}
.breadcrumb-item.active {
  color: #000;
}
.breadcrumb {
  top: 20px;
}
/* breadcrumb end */

/* brand section start */
.brand .container {
  max-width: 1600px;
}

.brand {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%), #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  height: 100px;
  display: flex;
  align-items: center;
}

.brand__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand__slider-wrap {
  width: 89%;
}

.brand__title span {
  color: #f44b1b;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.9px;
}

.brand__logo {
  padding: 0 14px;
  display: flex;
  align-items: center;
  height: 78px;
}
.brand__logo img {
  max-height: 100%;
}
/* brand section end */

/* feature section start */

.feature {
  padding-block: 70px;
}

.feature__wraper {
  display: grid;
  margin-bottom: 70px;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}
.feature__card {
  padding: 50px 30px 140px 30px;
  border: 3px solid var(--primary);
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  min-height: 356px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.feature__content {
  text-align: center;
}

.feature__content h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 16px;
}

.feature__btn {
  position: absolute;
  left: -17px;
  bottom: -52px;
  width: 180px;
  height: 180px;
  background-color: var(--primary);
  border-radius: 50%;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  padding-left: 10px;
  transition: 0.3s;
}

.feature__btn a {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  transition: 0.3s;
}

.feature__card:nth-child(2) {
  border-color: var(--yellow);
}

.feature__card:nth-child(2) .feature__btn {
  background: var(--yellow);
}
.feature__card:nth-child(2) .feature__btn a {
  color: #000;
}
.feature__card:nth-child(3) .feature__btn {
  background: var(--purple);
}

.feature__card:nth-child(3) {
  border-color: var(--purple);
}

.feature__btn:hover {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 0 !important;
}
/* feature section end */

/* faq section start */
.faq {
  background-image: url("../img/faq-bg.jpg");
  background-size: cover;
  background-position: center;
}

.faq__wrapper {
  border-radius: 100px 0;
  background-color: var(--primary);
  box-shadow: 10px 10px 12px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(112px);
  padding: 84px 40px 110px 54px;
  gap: 17px;
}
.faq__thumb {
  width: 400px;
}
.faq__content {
  padding-top: 44px;
}
.faq__content .section__title {
  margin-bottom: 30px;
}
.faq__accordion .accordion-button {
  padding: 0;
  font-size: 25px;
  line-height: 1.28;
  letter-spacing: -0.18px;
  gap: 21px;
}
.faq__accordion .accordion-button::before {
  background-image: unset;
  content: "+";
  font-size: 28px;
  width: 18px;
}
.faq__accordion .accordion-button[aria-expanded="true"]::before {
  content: "-";
}
.faq__accordion .accordion-button::after {
  display: none;
}
.faq__accordion .accordion-body {
  padding: 8px 0 0 40px;
}
.faq__accordion {
  max-width: 572px;
  gap: 48px;
  margin-bottom: 50px;
}


.about-page .faq {
  background-color: var(--blue-100);
  background-image: unset;
  padding-bottom: 168px;
}
.about-page .faq__wrapper {
  background-color: var(--purple);
  transform: unset;
}
.about-page .faq__accordion {
  max-width: 650px;
  margin-bottom: 0;
}

.about-page .faq__thumb {
  width: 360px;
}
.faq__thumb-img:first-child {
  width: 270px;
  margin-bottom: 35px;
}
.faq__thumb-img:nth-child(2) {
  width: 210px;
  transform: rotate(-13.72deg) translateY(82px);
  margin-left: 98px;
  margin-top: -82px;
}
.faq__thumb-img:nth-child(3) {
  width: 256px;
  margin-bottom: 10px;
  margin-left: -16px;
}
.faq__thumb-img:nth-child(4) {
  width: 210px;
  transform: rotate(-13.72deg);
  margin-left: 86px;
}
.about-page .faq__accordion .accordion-button {
  font-family: var(--lexendDeca);
}
/* faq section end */

/* testimonial section start */
.testimonial {
  padding-block: 230px 113px;
  background-color: var(--blue-100);
}
.testimonial__section-title {
  margin-bottom: 80px;
}
.testimonial__slider .slick-list {
  padding: 20px 0 42px;
  overflow: visible;
}
.testimonial__slider .slick-slide {
  width: 312px;
  margin-right: 25px;
  height: auto;
}
.testimonial__card {
  border-radius: 50px 0;
  padding: 80px 32px 14px 38px;
}
.testimonial__quote-icon {
  width: 85px;
  height: 80px;
  background-color: var(--purple);
  border-radius: 50px;
  top: -11px;
  left: -12px;
}
.testimonial__quote-icon--blue {
  background-color: var(--blue-500);
}
.play-icon {
  width: 88px;
  height: 88px;
  background-color: var(--secondary);
}
.how-we-work-page .testimonial {
  padding-block: 85px 0;
}
/* testimonial section end */

/* how-it-work section start */
.how-it-work {
  background-color: var(--primary);
  padding-top: 90px;
}
.how-it-work .row {
  --bs-gutter-x: 66px;
}
.how-it-work__thumb img {
  transition: all 1s ease-in-out;
}
.how-it-work__thumb:hover img {
  transform: scale(1.1);
}
.how-it-work__content {
  padding-block: 44px 64px;
}
.how-it-work__title {
  margin-bottom: 36px;
}

.how-it-work--style-2 {
  padding-block: 95px 125px;
  background-color: var(--blue-50);
}
.how-it-work--style-2 .row {
  --bs-gutter-x: 20px !important;
}
.how-it-work--style-2 .how-it-work__content {
  padding-left: 60px;
}
.how-it-work--style-2 .how-it-work__thumb {
  border-radius: 60px 0;
}
/* how-it-work section end */

/* callout section start */
.callout {
  background-color: var(--light-periwinkle);
  padding-block: 106px 115px;
}
.callout__title {
  margin-bottom: 75px;
}
.callout .row {
  --bs-gutter-x: 41px;
  --bs-gutter-y: 41px;
}
.callout__card {
  height: 274px;
  background-color: var(--purple);
  border-radius: 60px 0;
  padding-block: 50px;
}
.callout__card-title {
  font-size: 90px;
  letter-spacing: -0.18px;
}
.callout__card-btn {
  color: inherit;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.18px;
}
.callout__card-btn:hover {
  color: var(--secondary);
}
.callout__card--yellow {
  background-color: var(--yellow);
}
.callout__card--blue {
  background-color: var(--blue-500);
}
/* callout section end */

/* blog section start */
.blog {
  padding-block: 70px;
}
.blog__card {
  width: 100%;
}
.blog__slider .slick-list {
  overflow: visible;
  padding-bottom: 62px;
}
.blog__slider .slick-slide {
  width: 548px;
  margin-right: 32px;
}
.blog__card-thumb {
  height: 278px;
  border-radius: 50px 0 0;
}
.blog__card-content {
  border-radius: 0 0 60px 0;
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 26px 38px 40px;
}
.blog__card-subtitle {
  font-size: 20px;
  line-height: 1.4;
  color: var(--secondary);
}
.blog__card-title {
  font-size: 28px;
  line-height: 1.36;
  color: var(--primary);
  transition: all 0.3s;
}
.blog__card-title:hover {
  color: var(--secondary);
}
/* blog section end */

/* cta section start */

.cta__main {
  padding-top: 330px;
}
.cta__main::before {
  content: "";
  width: 100%;
  height: calc(100% - 165px);
  background-color: var(--blue-100);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.cta__main::after {
  content: "";
  width: 100%;
  height: 148px;
  background-color: var(--blue-100);
  position: absolute;
  left: 0;
  top: 95px;
  clip-path: polygon(
    18.191% 7.913%,
    18.191% 7.913%,
    16.004% 5.571%,
    13.756% 5.452%,
    11.477% 7.3%,
    9.196% 10.863%,
    6.943% 15.887%,
    4.748% 22.116%,
    2.642% 29.297%,
    0.654% 37.176%,
    -1.186% 45.499%,
    -2.847% 54.012%,
    -0.07% 86.173%,
    29.438% 90.461%,
    79.707% 99.574%,
    79.707% 99.574%,
    82.149% 94.868%,
    84.846% 90.53%,
    87.685% 86.434%,
    90.551% 82.455%,
    93.333% 78.468%,
    95.915% 74.346%,
    98.186% 69.965%,
    100.032% 65.2%,
    101.339% 59.923%,
    101.994% 54.012%,
    101.994% 54.012%,
    102% 52.144%,
    101.871% 49.564%,
    101.595% 46.309%,
    101.16% 42.42%,
    100.554% 37.934%,
    99.767% 32.89%,
    98.786% 27.328%,
    97.6% 21.285%,
    96.197% 14.8%,
    94.565% 7.913%,
    94.565% 7.913%,
    92.813% 2.609%,
    90.988% 0.231%,
    89.116% 0.348%,
    87.217% 2.528%,
    85.317% 6.338%,
    83.437% 11.345%,
    81.601% 17.119%,
    79.832% 23.227%,
    78.153% 29.236%,
    76.588% 34.715%,
    76.588% 34.715%,
    75.578% 37.764%,
    74.418% 40.505%,
    73.103% 42.8%,
    71.629% 44.509%,
    69.992% 45.495%,
    68.188% 45.618%,
    66.213% 44.741%,
    64.064% 42.723%,
    61.736% 39.427%,
    59.225% 34.715%,
    59.225% 34.715%,
    56.836% 30.706%,
    54.818% 29.277%,
    53.086% 29.919%,
    51.552% 32.124%,
    50.129% 35.385%,
    48.732% 39.191%,
    47.272% 43.037%,
    45.665% 46.413%,
    43.823% 48.811%,
    41.658% 49.723%,
    41.658% 49.723%,
    39.288% 48.871%,
    36.892% 46.507%,
    34.481% 42.921%,
    32.068% 38.402%,
    29.664% 33.24%,
    27.281% 27.725%,
    24.931% 22.145%,
    22.624% 16.79%,
    20.374% 11.949%,
    18.191% 7.913%
  );
  z-index: -1;
}
.cta__content {
  max-width: 600px;
  padding-bottom: 97px;
}
.cta__content h2 {
  margin-bottom: 20px;
}
.cta__desc {
  font-size: 24px;
  line-height: 1.33;
  margin-bottom: 46px;
}
.cta__dots-shape {
  top: 0;
  transform: rotate(-68deg);
  max-width: 1488px;
  right: 0;
  margin-inline: auto;
  left: 0;
}

.cta__form {
  border-radius: 50px 0;
  background-color: var(--primary);
  box-shadow: 10px 10px 12px 0 rgba(0, 0, 0, 0.2);
  padding: 85px 40px;
  transform: translateY(-72px);
  margin-bottom: -72px;
}
.cta__form-title {
  gap: 15px;
  line-height: 1.4;
  padding-right: 24px;
}
.cta__form-title img {
  width: 42px;
  transform: rotate(15deg);
}
.input-field {
  height: 50px;
  border-radius: 3px;
  border: 0;
  font-size: 19px;
  letter-spacing: -0.18px;
  padding-inline: 13px;
  color: var(--gray-500);
}


.about-page .cta__main {
  padding-top: 112px;
}
.theme-card {
  border-radius: 60px 0;
  background-color: var(--purple);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 100px;
  max-width: 776px;
}
.theme-card__title {
  margin-bottom: 10px;
}
.theme-card__subtitle {
  margin-bottom: 32px;
}
.theme-card__desc {
  margin-bottom: 50px;
}
.about-page .cta__content {
  max-width: 1000px;
  padding-block: 166px;
}
.about-page .cta__content h2 {
  margin-bottom: 40px;
}
.about-page .cta__content p {
  max-width: 762px;
}
.about-page .cta__dots-shape {
  top: 190px;
}
.about-page .cta__main::before {
  height: calc(100% - 648px);
}
.about-page .cta__main::after {
  top: 554px;
}
.cta--bg-periwinkle .cta__main::before, .cta--bg-periwinkle .cta__main::after {
  background-color: var(--light-periwinkle);
}
/* cta section end */

/* footer section start */

.footer {
  padding-block: 122px 64px;
}
.footer__wrapper {
  gap: 40px;
}
.footer__widget {
  padding-block: 10px;
}
.footer__widget-title {
  font-size: 17px;
  line-height: 24px;
  letter-spacing: -0.24px;
  margin-bottom: 10px;
}
.footer__links {
  gap: 10px;
}
.footer__links li {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.18px;
  color: var(--gray-300);
}
.footer__links li a {
  color: var(--primary);
}
.footer__links li a span {
  color: var(--secondary);
}
.footer__links li a:hover {
  color: var(--secondary);
}
.footer__widget--logos {
  gap: 32px;
}
.footer__identity {
  padding-top: 90px;
}
.footer__social {
  gap: 14px;
  margin-bottom: 44px;
}
.footer__social-icon {
  width: 57px;
  height: 57px;
  border: 1px solid var(--gray-300);
}
.footer__social-icon svg path {
  transition: all 0.3s;
}
.footer__social-icon:hover svg path {
  fill: var(--secondary);
}
.footer__social-icon:hover {
  border-color: var(--secondary);
}
.footer__logo-img {
  width: 370px;
}
.footer__copyright {
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.24px;
  font-family: var(--parkinsans);
  margin-block: 34px 6px;
}
/* footer section end */

/* page nav start */
.page-nav {
  background-color: var(--yellow);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  top: 80px;
}
.page-nav__wrapper {
  height: 85px;
  gap: 44px;
}
.page-nav__link {
  font-size: 22px;
  color: var(--primary);
  font-family: var(--parkinsans);
}
.page-nav__link:hover {
  color: var(--secondary);
}
/* page nav end */

/* about section start */

.about {
  background-color: var(--primary);
  padding-top: 34px;
  margin-bottom: 217px;
}
.about__content {
  width: 644px;
  padding-block: 98px 120px;
}
.about__content p {
  max-width: 630px;
}
.about__thumb:first-child {
  width: 392px;
  background-image: linear-gradient(90deg, #0AA7EA 0%, #14AAEA 11%, #30B2EB 31%, #5EC0ED 57%, #9DD3F0 88%, #B8DBF2 100%);
  padding: 34px;
}
.about__thumb {
  aspect-ratio: 1 / 1;
}
.about__thumb:nth-child(2) {
  background-image: linear-gradient(90deg, #FF9511 0%, #FF9F13 31%, #FFBB1B 85%, #FFC51E 100%);
  padding: 36px;
  width: 472px;
  top: 254px;
  left: 90px;
}
.about__thumb:nth-child(3) {
  width: 275px;
  background-image: linear-gradient(90deg, #A068D7 0%, #9D64D6 22%, #9759D3 41%, #8C47CD 59%, #7C2EC6 77%, #690DBD 94%, #6100BA 100%);
  padding: 25px;
  left: 9px;
  top: 605px;
}
.about__thumb-container {
  margin-left: -90px;
}
.about--pro-facilators {
  padding-block: 100px 130px;
}
/* about section end */

/* about info section start */
.about-info {
  padding-block: 60px 90px;
}
.about-info__thumb {
  max-width: 100%;
  width: 275px;
  height: 298px;
  border-radius: 50px 0;
  overflow: hidden;
  margin-bottom: 44px;
}
.about-info__thumb img {
  transition: all 1s ease-in-out;
}
.about-info__thumb:hover img {
  transform: scale(1.1);
}
.about-info__content h3 {
  color: var(--primary);
  margin-bottom: 10px;
}
/* about info section end */

/* reach section start */
.reach {
  padding-block: 66px 82px;
  background-color: var(--blue-100);
}
.reach__wrapper {
  gap: 80px;
}
.reach__thumb {
  width: 456px;
}
.reach__content .section__title {
  margin-bottom: 36px;
}
.reach__content p {
  margin-bottom: 36px;
}
/* reach section end */

/* difference section start */
.difference {
  background-color: var(--primary);
  padding-block: 74px 96px;
}
.difference__content {
  max-width: 730px;
}
.difference__content p {
  margin-bottom: 20px;
}
.section-top-card {
  top: -140px;
  padding: 40px 40px 40px 52px;
}
.section-top-card__inner {
  width: 428px;
  min-height: 420px;
  background-color: var(--purple);
  border-radius: 60px 0;
  padding: 93px 80px 93px 67px;
}
/* difference section end */

/* teambuilding section start */
.team-building {
	padding-block: 146px;
  background-image: url('../img/team-builing-bg.png');
  background-size: 100% 100%;
}
/* teambuilding section end */