

header.header-area .header__logo img {
    height: 150px;
}
@media (max-width: 767px) {
    header.header-area .header__logo img {
        height: auto;
    }
}


/* Base Area Styles */
.offcanvas-3__area {
  background: #000000;
  position: fixed;
  width: 100%;
  height: 100%;
  padding: 50px 50px 100px;
  z-index: 100000;
  overflow: hidden;
  left: 0%;
  opacity: 0;
  visibility: hidden;
  transform: perspective(359px) rotateY(50deg);
}

@media (max-height: 500px) {
  .offcanvas-3__area {
    padding: 40px;
  }
}

/* Inner Layout */
.offcanvas-3__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  height: 100%;
}

.offcanvas-3__inner::-webkit-scrollbar {
  width: 0;
}

/* Responsive Grid for Inner */
@media (max-width: 991px) { /* Medium Devices $md */
  .offcanvas-3__inner {
    grid-template-columns: 260px 1fr;
  }
}

@media (max-width: 767px) { /* Small Devices $sm */
  .offcanvas-3__inner {
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
  }
}

@media (max-height: 500px) {
  .offcanvas-3__inner {
    overflow-y: scroll;
  }
}

/* Meta Section */
.offcanvas-3__meta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: space-between;
}

.offcanvas-3__meta {
  opacity: 0;
  top: -30px;
  position: relative;
}

.offcanvas-3__meta li {
  font-size: 18px;
  line-height: 20px;
  color: var(--white);
  text-transform: uppercase;
  list-style: none;
}

.offcanvas-3__meta li:not(:last-child) {
  margin-bottom: 19px;
}

.offcanvas-3__meta li a:hover {
  color: var(--secondary);
}

/* Social Section */
.offcanvas-3__social {
  opacity: 0;
  top: -30px;
  position: relative;
}

.offcanvas-3__social .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.offcanvas-3__social-links {
  display: flex;
  gap: 20px;
}

.offcanvas-3__social-links a {
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
}

.offcanvas-3__social-links a:hover {
  color: var(--secondary);
}

/* Menu Section */
.offcanvas-3__menu {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

.offcanvas-3__menu-wrapper {
  display: flex;
  align-items: flex-end;
  overflow-y: hidden;
}

.offcanvas-3__menu ul {
  position: relative;
  list-style: none;
  padding: 0;
}

.offcanvas-3__menu ul:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #333337;
  inset-inline-start: 8px;
  top: 0;
}

@media (max-width: 767px) {
  .offcanvas-3__menu ul:before {
    display: none;
  }
}

.offcanvas-3__menu ul li {
  padding-inline-start: 58px;
  position: relative;
  opacity: 0;
  top: -100px;
  transform: perspective(359px) rotateX(50deg);
}

@media (max-width: 767px) {
  .offcanvas-3__menu ul li {
    padding-left: 0;
  }
}

.offcanvas-3__menu ul li:not(:last-child) {
  margin-bottom: 26px;
}

@media (max-width: 991px) {
  .offcanvas-3__menu ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}

/* Menu Dots/Bullets on Hover */
.offcanvas-3__menu ul li:before {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  background: var(--white);
  border-radius: 50%;
  border: 4px solid var(--black-2);
  inset-inline-start: 0;
  top: 38%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}

@media (max-width: 767px) {
  .offcanvas-3__menu ul li:before {
    display: none;
  }
}

.offcanvas-3__menu ul li:hover:before {
  opacity: 1;
  visibility: visible;
}

/* Links and Animation Text */
.offcanvas-3__menu ul li a {
  font-size: 8vh;
  color: var(--secondary);
  text-transform: uppercase;
  line-height: 0.9;
  position: relative;
  transition: all .5s cubic-bezier(0, 0, .23, 1);
  text-decoration: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #fff, #ddd 50%, #666 0);
  background-size: 200% 100%;
  background-position: 100%;
  transform: perspective(359px) rotateY(-18deg);
  display: inline-block;
}

.offcanvas-3__menu ul li:hover > a {
  background-position: 0;
  color: #fff;
  letter-spacing: 1.5px;
  -webkit-text-fill-color: #fff; /* Fix for Safari */
}

@media (max-width: 1199px) { /* $xl */
  .offcanvas-3__menu ul li a { font-size: 7vh; }
}

@media (max-width: 1024px) { /* $lg */
  .offcanvas-3__menu ul li a { font-size: 6vh; }
}

@media (max-width: 991px) { /* $md */
  .offcanvas-3__menu ul li a {
    font-size: 2.5vh;
    color: #ffffffab;
    background-image: none;
    -webkit-text-fill-color: initial;
    transform: none;
  }
}

/* Close Button */
.close-button {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background-color: var(--black-2);
  position: relative;
  border: 1px solid #333337;
  transition: all 0.5s;
  cursor: pointer;
}

@media (max-width: 767px) {
  .close-button {
    width: 50px;
    height: 50px;
  }
}

.close-button:hover {
  background-color: var(--secondary);
}

.close-button:hover span {
  background-color: var(--primary);
}

.close-button span {
  width: 26px;
  height: 1px;
  display: inline-block;
  background-color: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .close-button span {
    width: 20px;
  }
}

.close-button span:first-child {
  transform: translateX(-50%) rotate(45deg);
}

.close-button span:last-child {
  transform: translateX(-50%) rotate(-45deg);
}


.ap-hero-area-inner {
    padding-top: 218px;
    padding-bottom: 133px
}

@media only screen and (max-width: 1919px) {
    .ap-hero-area-inner {
        padding-top: 178px;
        padding-bottom: 83px
    }
}

@media only screen and (max-width: 1399px) {
    .ap-hero-area-inner {
        padding-top: 158px;
        padding-bottom: 63px
    }
}

@media only screen and (max-width: 1199px) {
    .ap-hero-area-inner {
        padding-top: 128px;
        padding-bottom: 53px
    }
}

.ap-hero-area .section-title {
    text-align: center
}

@media only screen and (max-width: 767px) {
    .ap-hero-area .section-title {
        text-align: start
    }
}

.ap-hero-area .section-content .text {
    max-width: 440px
}

.ap-hero-area .section-content .section-subtitle {
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    text-transform: uppercase;
    color: var(--primary)
}

.ap-hero-area .section-content .section-subtitle.has-right-line {
    padding-inline-end: 100px
}

.ap-hero-area .section-content .section-subtitle.has-right-line:after {
    width: 80px
}

.ap-hero-area .section-content .content-last {
    display: grid;
    gap: 20px 40px;
    grid-template-columns: auto auto;
    justify-content: center;
    margin-top: 44px
}

@media only screen and (max-width: 1399px) {
    .ap-hero-area .section-content .content-last {
        margin-top: 34px
    }
}

@media only screen and (max-width: 1199px) {
    .ap-hero-area .section-content .content-last {
        margin-top: 24px
    }
}

@media only screen and (max-width: 991px) {
    .ap-hero-area .section-content .content-last {
        grid-template-columns: auto
    }
}

@media only screen and (max-width: 767px) {
    .ap-hero-area .section-content .content-last {
        justify-content: start
    }
}

.ap-hero-area .section-content .subtitle-wrapper {
    margin-top: 4px
}


.ap-counter-area .counter-area-inner {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 870px
}

@media only screen and (max-width: 1919px) {
    .ap-counter-area .counter-area-inner {
        grid-template-columns: 1fr 670px
    }
}

@media only screen and (max-width: 1199px) {
    .ap-counter-area .counter-area-inner {
        grid-template-columns: 1fr
    }
}

.ap-counter-area .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.ap-counter-area .counter-wrapper {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr
}

@media(max-width: 575px) {
    .ap-counter-area .counter-wrapper {
        grid-template-columns: 1fr
    }
}

.ap-counter-area .counter-box {
    padding: 46px 50px 32px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fbf9f9;
    position: relative;
    z-index: 1
}

@media only screen and (max-width: 1919px) {
    .ap-counter-area .counter-box {
        padding: 36px 40px 22px
    }
}

.ap-counter-area .counter-box {
    background-color: #1b1b1b
}

.ap-counter-area .counter-box:before {
    content: url(../imgs/shape/img-s-46.webp);
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    z-index: -1
}

.ap-counter-area .counter-box:before {
    transform: rotateY(180deg)
}

.ap-counter-area .counter-box:before {
    content: url(../imgs/shape/img-s-46-light.webp)
}

.ap-counter-area .counter-box .text {
    font-size: 24px;
    line-height: 1.26
}

@media only screen and (max-width: 1919px) {
    .ap-counter-area .counter-box .text {
        font-size: 20px
    }
}

.ap-counter-area .counter-box .number {
    font-size: 100px;
    line-height: 1;
    margin-top: 60px
}

@media only screen and (max-width: 1919px) {
    .ap-counter-area .counter-box .number {
        font-size: 70px
    }
}

.ap-counter-area .counter-box.dark {
    background-color: var(--black)
}

.ap-counter-area .counter-box.dark {
    background-color: #1b1b1b
}

.ap-counter-area .counter-box.dark:before {
    content: url(../imgs/shape/img-s-46-light.webp)
}


.ap-awards-area {
    position: relative;
    z-index: 1
}

.ap-awards-area .section-subtitle {
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    text-transform: uppercase;
    color: var(--primary)
}

.ap-awards-area .section-subtitle.has-left-line {
    padding-inline-start: 140px
}

.ap-awards-area .section-subtitle.has-left-line:before {
    width: 80px
}

.ap-awards-area .section-subtitle.has-left-line:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 75px;
    background-color: currentColor;
    inset-inline-start: 57px;
    bottom: -15px
}

@media only screen and (max-width: 991px) {
    .ap-awards-area .section-subtitle.has-left-line:after {
        display: none
    }
}

.ap-awards-area .subtitle-wrapper {
    margin-bottom: -50px
}

@media only screen and (max-width: 1399px) {
    .ap-awards-area .subtitle-wrapper {
        margin-bottom: -70px
    }
}

@media only screen and (max-width: 1199px) {
    .ap-awards-area .subtitle-wrapper {
        margin-bottom: -40px
    }
}

@media only screen and (max-width: 991px) {
    .ap-awards-area .subtitle-wrapper {
        margin-bottom: 10px
    }
}

.ap-awards-area .section-title-wrapper {
    display: grid;
    align-items: flex-end;
    gap: 50px;
    grid-template-columns: 390px 1fr
}

@media only screen and (max-width: 1919px) {
    .ap-awards-area .section-title-wrapper {
        grid-template-columns: 330px 1fr
    }
}

@media only screen and (max-width: 991px) {
    .ap-awards-area .section-title-wrapper {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 20px
    }
}

.ap-awards-area .ap-awards-area-inner {
    position: relative;
    z-index: 1
}

.ap-awards-area .section-content {
    margin-top: 27px;
    margin-inline-start: 438px
}

@media only screen and (max-width: 1919px) {
    .ap-awards-area .section-content {
        margin-top: 27px;
        margin-inline-start: 378px
    }
}

@media only screen and (max-width: 1399px) {
    .ap-awards-area .section-content {
        margin-top: 52px;
        margin-inline-start: 378px
    }
}

@media only screen and (max-width: 1199px) {
    .ap-awards-area .section-content {
        margin-top: 22px;
        margin-inline-start: 378px
    }
}

@media only screen and (max-width: 991px) {
    .ap-awards-area .section-content {
        margin-inline-start: 0
    }
}

.ap-awards-area .section-content .text {
    max-width: 630px
}

.ap-awards-area .section-content .awards-list {
    margin-top: 43px
}

@media only screen and (max-width: 991px) {
    .ap-awards-area .section-content .awards-list {
        margin-top: 33px
    }
}

.ap-awards-area .section-content .awards-list ul {
    display: flex;
    gap: 20px 40px;
    max-width: 460px;
    justify-content: space-between
}

.ap-awards-area .section-content .awards-list ul li:not(:first-child) {
    padding-inline-start: 40px;
    border-inline-start: 1px solid var(--border)
}

.ap-awards-area .about-thumbs {
    display: flex;
    gap: 20px 50px;
    justify-content: flex-end;
    margin-top: 63px
}

@media only screen and (max-width: 1399px) {
    .ap-awards-area .about-thumbs {
        margin-top: 43px
    }
}

@media only screen and (max-width: 767px) {
    .ap-awards-area .about-thumbs {
        gap: 20px 20px
    }
}

.ap-awards-area .about-thumbs .thumb-second {
    max-width: 670px;
    flex: 1 1 auto
}

@media only screen and (max-width: 1399px) {
    .ap-awards-area .about-thumbs .thumb-second {
        max-width: 570px
    }
}

.ap-awards-area .meta {
    display: grid;
    gap: 18px;
    grid-template-columns: 30px auto
}

.ap-awards-area .meta .number {
    font-size: 36px;
    line-height: .85
}

.ap-awards-area .meta .text {
    margin-top: 11px
}


.ap-about-area .about-area-inner {
    display: grid;
    grid-template-columns: 1fr 43%
}

@media only screen and (max-width: 1199px) {
    .ap-about-area .about-area-inner {
        grid-template-columns: 1fr 47%
    }
}

@media only screen and (max-width: 991px) {
    .ap-about-area .about-area-inner {
        grid-template-columns: 1fr
    }
}

.ap-about-area .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.ap-about-area .section-content {
    padding: 100px 80px;
    position: relative;
    z-index: 1
}

@media only screen and (max-width: 1199px) {
    .ap-about-area .section-content {
        padding: 60px 50px
    }
}

@media(max-width: 575px) {
    .ap-about-area .section-content {
        padding: 60px 30px
    }
}

.ap-about-area .section-content .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    inset-inline-start: 0;
    z-index: -1
}

.ap-about-area .section-content .bg:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, .85);
    top: 0;
    inset-inline-start: 0
}

.ap-about-area .section-content .bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.ap-about-area .section-content .text-wrapper {
    margin-top: 323px
}

@media only screen and (max-width: 1919px) {
    .ap-about-area .section-content .text-wrapper {
        margin-top: 123px
    }
}

@media only screen and (max-width: 1199px) {
    .ap-about-area .section-content .text-wrapper {
        margin-top: 43px
    }
}

@media only screen and (max-width: 991px) {
    .ap-about-area .section-content .text-wrapper {
        margin-top: 33px
    }
}

.ap-about-area .section-content .text {
    font-size: 24px;
    line-height: 1.35;
    max-width: 440px;
    color: var(--white-2)
}

@media only screen and (max-width: 1199px) {
    .ap-about-area .section-content .text {
        font-size: 20px
    }
}

.ap-about-area .section-content .text span {
    color: var(--white)
}

.ap-about-area .section-content .btn-wrapper {
    margin-top: 42px
}

@media only screen and (max-width: 991px) {
    .ap-about-area .section-content .btn-wrapper {
        margin-top: 32px
    }
}

.ap-about-area .section-content .section-title {
    max-width: 440px;
    color: var(--white)
}

.wc-btn-primary {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--black);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 30px 0 30px;
    padding: 22px 38px;
}


.ap-testimonial-area .testimonial-wrapper {
    max-width: 1070px;
    margin: 0 auto;
    padding: 0 80px
}

@media only screen and (max-width: 767px) {
    .ap-testimonial-area .testimonial-wrapper {
        padding: 0 0px
    }
}

.ap-testimonial-area .testimonial-wrapper-box {
    position: relative
}

.ap-testimonial-area .slider-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%
}

@media only screen and (max-width: 767px) {
    .ap-testimonial-area .slider-nav {
        display: none
    }
}

.ap-testimonial-area .slider-nav .nav-icon img {
    height: 63px
}

@media only screen and (max-width: 1399px) {
    .ap-testimonial-area .slider-nav .nav-icon img {
        height: 53px
    }
}

@media only screen and (max-width: 1199px) {
    .ap-testimonial-area .slider-nav .nav-icon img {
        height: 43px
    }
}

.ap-testimonial-area .slider-nav .nav-icon img {
    transform: rotateY(180deg)
}

.ap-testimonial-item {
    text-align: center
}

.ap-testimonial-item .icon img {
    height: 47px
}

@media only screen and (max-width: 1199px) {
    .ap-testimonial-item .icon img {
        height: 37px
    }
}

.ap-testimonial-item .text {
    font-size: 30px;
    line-height: 1.38;
    font-weight: 300;
    color: var(--primary)
}

@media only screen and (max-width: 1199px) {
    .ap-testimonial-item .text {
        font-size: 26px
    }
}

@media only screen and (max-width: 991px) {
    .ap-testimonial-item .text {
        font-size: 22px
    }
}

@media(max-width: 575px) {
    .ap-testimonial-item .text {
        font-size: 20px
    }
}

.ap-testimonial-item .post {
    font-size: 18px;
    display: inline-block
}

.ap-testimonial-item .name {
    font-size: 18px;
    line-height: 1;
    display: inline-block;
    color: var(--primary)
}

.ap-testimonial-item .text-wrapper {
    margin-top: 53px
}

@media only screen and (max-width: 1199px) {
    .ap-testimonial-item .text-wrapper {
        margin-top: 33px
    }
}

.ap-testimonial-item .author {
    margin-top: 44px
}

@media only screen and (max-width: 1199px) {
    .ap-testimonial-item .author {
        margin-top: 34px
    }
}

.ap-faq-area .section-title {
    color: var(--white)
}

.ap-faq-area .section-content {
    background-color: var(--black);
    display: grid;
    gap: 0px;
    grid-template-columns: auto 650px;
    justify-content: space-between
}

@media only screen and (max-width: 1399px) {
    .ap-faq-area .section-content {
        grid-template-columns: auto 550px
    }
}

@media only screen and (max-width: 1199px) {
    .ap-faq-area .section-content {
        grid-template-columns: auto 500px
    }
}

@media only screen and (max-width: 991px) {
    .ap-faq-area .section-content {
        grid-template-columns: auto
    }
}

.ap-faq-area .accordion-wrapper {
    margin-top: 47px
}

.ap-faq-area .accordion .accordion-button {
    font-size: 24px;
    line-height: 1;
    color: var(--white);
    padding-top: 18px;
    padding-bottom: 18px;
    padding-inline-start: 0;
    padding-inline-end: 0;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    text-align: start;
    font-weight: 400
}

@media only screen and (max-width: 1199px) {
    .ap-faq-area .accordion .accordion-button {
        font-size: 18px
    }
}

.ap-faq-area .accordion .accordion-button .section-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    padding: 8px 16px;
    display: inline-block;
    border-radius: 10px;
    background-color: var(--white)
}

@media only screen and (max-width: 1199px) {
    .ap-faq-area .accordion .accordion-button br {
        display: none
    }
}

.ap-faq-area .accordion .accordion-button::after {
    content: "+";
    color: var(--white);
    background-image: none;
    line-height: 1;
    width: auto;
    height: auto;
    font-size: 25px;
    margin-inline-start: 50px;
    margin-inline-start: auto;
    margin-inline-end: 0
}

.ap-faq-area .accordion .accordion-button:not(.collapsed) {
    pointer-events: none
}

.ap-faq-area .accordion .accordion-button:not(.collapsed)::after {
    content: "-"
}

.ap-faq-area .accordion .accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background-color: rgba(0, 0, 0, 0);
    border-radius: 0px
}

.ap-faq-area .accordion .accordion-item:not(:first-child) {
    margin-top: 0px
}

.ap-faq-area .accordion .accordion-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.ap-faq-area .accordion .accordion-body {
    font-size: 18px;
    line-height: 1.44;
    padding-inline-start: 0px;
    padding-inline-end: 0px;
    padding-bottom: 24px;
    padding-top: 0;
    color: var(--white-2)
}

@media only screen and (max-width: 991px) {
    .ap-faq-area .accordion .accordion-body {
        padding-bottom: 23px
    }
}

.ap-faq-area .thumb {
    position: relative
}

.ap-faq-area .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.ap-faq-area .thumb .wc-btn-circle {
    background-color: var(--black);
    width: 100px;
    height: 100px;
    border-radius: 0;
    color: var(--white)
}

.ap-faq-area .content-last {
    padding: 73px 60px 80px
}

@media only screen and (max-width: 1199px) {
    .ap-faq-area .content-last {
        padding: 53px 40px 60px
    }
}

.ap-team-area {
    background-color: var(--black)
}

.dark .ap-team-area {
    background-color: #171717
}

.ap-team-area .section-title {
    max-width: 540px;
    margin-inline: auto;
    color: var(--white)
}

.ap-team-area .section-header {
    text-align: center
}

.ap-team-area .section-header .text {
    max-width: 630px;
    margin-inline: auto;
    color: var(--white-2)
}

.ap-team-area .section-header .text-wrapper {
    margin-top: 22px
}

@media only screen and (max-width: 1199px) {
    .ap-team-area .section-header .text-wrapper {
        margin-top: 12px
    }
}

.ap-team-area .team-wrapper-box {
    margin-top: 63px
}

@media only screen and (max-width: 1399px) {
    .ap-team-area .team-wrapper-box {
        margin-top: 53px
    }
}

@media only screen and (max-width: 1199px) {
    .ap-team-area .team-wrapper-box {
        margin-top: 43px
    }
}

.ap-team-area .team-wrapper {
    display: grid;
    gap: 40px 30px;
    grid-template-columns: repeat(4, 1fr)
}

@media only screen and (max-width: 1399px) {
    .ap-team-area .team-wrapper {
        gap: 40px 30px
    }
}

@media only screen and (max-width: 991px) {
    .ap-team-area .team-wrapper {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media only screen and (max-width: 767px) {
    .ap-team-area .team-wrapper {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width: 575px) {
    .ap-team-area .team-wrapper {
        grid-template-columns: repeat(1, 1fr)
    }
}

.ap-team-area .team-wrapper>*:nth-child(2n+1) {
    margin-top: 70px
}

@media only screen and (max-width: 991px) {
    .ap-team-area .team-wrapper>*:nth-child(2n+1) {
        margin-top: 0
    }
}


.ap-ap-team-box .thumb img {
    width: 100%
}

.ap-team-box .title {
    font-size: 24px;
    line-height: 1;
    color: var(--white)
}

@media only screen and (max-width: 1199px) {
    .ap-team-box .title {
        font-size: 20px
    }
}

.ap-team-box .text {
    font-size: 16px;
    font-weight: 500;
    margin-top: 7px;
    color: var(--white-2)
}

@media only screen and (max-width: 1199px) {
    .ap-team-box .text {
        margin-top: 3px
    }
}

.ap-team-box .content {
    margin-top: 37px
}

@media only screen and (max-width: 1399px) {
    .ap-team-box .content {
        margin-top: 27px
    }
}



.ap-pricing-area .section-title {
    max-width: 680px;
    margin: 0 auto
}

.ap-pricing-area .section-header {
    text-align: center
}

.ap-pricing-area .pricing-wrapper-box {
    margin-top: 57px
}

@media only screen and (max-width: 1399px) {
    .ap-pricing-area .pricing-wrapper-box {
        margin-top: 47px
    }
}

@media only screen and (max-width: 1199px) {
    .ap-pricing-area .pricing-wrapper-box {
        margin-top: 37px
    }
}

.ap-pricing-area .pricing-wrapper {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr)
}

@media only screen and (max-width: 991px) {
    .ap-pricing-area .pricing-wrapper {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media only screen and (max-width: 767px) {
    .ap-pricing-area .pricing-wrapper {
        grid-template-columns: repeat(1, 1fr)
    }
}

.ap-pricing-box {
    background-color: #fbf9f9;
    padding: 47px 50px 50px
}

.dark .ap-pricing-box {
    background-color: #1b1b1b
}

@media only screen and (max-width: 1199px) {
    .ap-pricing-box {
        padding: 27px 30px 30px
    }
}

.ap-pricing-box .tag {
    font-size: 18px;
    color: var(--primary);
    display: inline-block;
    line-height: 1
}

.ap-pricing-box .feature-list {
    margin-top: 39px
}

.ap-pricing-box .feature-list li {
    display: flex;
    align-items: center
}

.ap-pricing-box .feature-list li:not(:first-child) {
    margin-top: 15px
}

.ap-pricing-box .feature-list li img {
    margin-inline-end: 10px
}

.dir-rtl .ap-pricing-box .feature-list li img {
    transform: rotateY(180deg)
}

.ap-pricing-box .price {
    font-size: 60px;
    line-height: 1;
    margin-top: 17px
}

@media only screen and (max-width: 1399px) {
    .ap-pricing-box .price {
        font-size: 50px
    }
}

@media only screen and (max-width: 991px) {
    .ap-pricing-box .price {
        font-size: 40px
    }
}

.ap-pricing-box .wc-btn-primary {
    margin-top: 50px
}

@media only screen and (max-width: 1199px) {
    .ap-pricing-box .wc-btn-primary {
        margin-top: 40px
    }
}

.dark .ap-pricing-box .wc-btn-primary:hover {
    color: var(--black)
}


.ap-contact-area-inner {
    padding-inline: 30px;
    background-color: var(--black);
    position: relative;
    z-index: 1;
    overflow: hidden
}

.dark .ap-contact-area-inner {
    background-color: #1b1b1b
}

.ap-contact-area-inner .shape-1 {
    position: absolute;
    inset-inline-end: -6%;
    top: -15%;
    z-index: -1;
    width: 440px
}

@media only screen and (max-width: 1399px) {
    .ap-contact-area-inner .shape-1 {
        top: -45%
    }
}

@media only screen and (max-width: 1199px) {
    .ap-contact-area-inner .shape-1 {
        width: 340px
    }
}

@media only screen and (max-width: 991px) {
    .ap-contact-area-inner .shape-1 {
        width: 270px;
        top: -35%
    }
}

@media only screen and (max-width: 767px) {
    .ap-contact-area-inner .shape-1 {
        display: none
    }
}

.dir-rtl .ap-contact-area-inner .shape-1 img {
    transform: rotateY(180deg)
}

.ap-contact-area .section-title {
    max-width: 830px;
    margin-inline: auto;
    color: var(--white)
}

@media only screen and (max-width: 1919px) {
    .ap-contact-area .section-title {
        max-width: 730px
    }
}

@media only screen and (max-width: 1199px) {
    .ap-contact-area .section-title {
        max-width: 580px
    }
}

@media only screen and (max-width: 991px) {
    .ap-contact-area .section-title {
        max-width: 480px
    }
}

.ap-contact-area .section-content {
    text-align: center
}

.ap-contact-area .section-content .btn-wrapper {
    margin-top: 42px
}

@media only screen and (max-width: 991px) {
    .ap-contact-area .section-content .btn-wrapper {
        margin-top: 22px
    }
}

.ap-contact-area .section-content .wc-btn-underline {
    color: var(--white);
    text-transform: uppercase
}


.inner-footer-area {
    background-color: var(--primary)
}

.dark .inner-footer-area {
    background-color: #1b1b1b
}

.inner-footer-area-inner {
    position: relative;
    z-index: 1
}

.inner-footer-area-inner .shape-1 {
    position: absolute;
    top: 0;
    inset-inline-start: calc(100% - 235px);
    width: 550px;
    z-index: -1
}

@media only screen and (max-width: 1199px) {
    .inner-footer-area-inner .shape-1 {
        width: 350px
    }
}

@media only screen and (max-width: 767px) {
    .inner-footer-area-inner .shape-1 {
        display: none
    }
}

.dir-rtl .inner-footer-area-inner .shape-1 img {
    transform: rotateY(180deg)
}

.inner-footer-area .section-title {
    font-size: 100px;
    line-height: 1;
    color: var(--white);
    margin-top: -25px
}

@media only screen and (max-width: 1919px) {
    .inner-footer-area .section-title {
        font-size: 100px;
        margin-top: -25px
    }
}

@media only screen and (max-width: 1199px) {
    .inner-footer-area .section-title {
        font-size: 70px;
        margin-top: -17px
    }
}

@media only screen and (max-width: 991px) {
    .inner-footer-area .section-title {
        font-size: 40px;
        margin-top: -9px
    }
}

@media only screen and (max-width: 767px) {
    .inner-footer-area .section-title {
        font-size: 35px;
        margin-top: -8px
    }
}

.inner-footer-area .section-header .text {
    font-size: 30px;
    line-height: 1.26;
    max-width: 850px;
    font-weight: 300;
    color: var(--white-2)
}

@media only screen and (max-width: 1919px) {
    .inner-footer-area .section-header .text {
        font-size: 32px
    }
}

@media only screen and (max-width: 1199px) {
    .inner-footer-area .section-header .text {
        font-size: 26px
    }
}

@media only screen and (max-width: 767px) {
    .inner-footer-area .section-header .text {
        font-size: 18px
    }
}

.inner-footer-area .section-header .text-wrapper {
    margin-top: 18px
}

.footer-cta {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 79px;
    padding-bottom: 79px;
    margin-top: 60px;
    display: grid;
    gap: 30px 120px;
    grid-template-columns: 190px 190px 1fr
}

@media only screen and (max-width: 1919px) {
    .footer-cta {
        padding-top: 59px;
        padding-bottom: 59px;
        margin-top: 50px
    }
}

@media only screen and (max-width: 1199px) {
    .footer-cta {
        gap: 30px 40px
    }
}

@media only screen and (max-width: 991px) {
    .footer-cta {
        grid-template-columns: 150px 150px 1fr
    }
}

@media only screen and (max-width: 767px) {
    .footer-cta {
        grid-template-columns: auto;
        padding-top: 39px;
        padding-bottom: 39px;
        margin-top: 40px
    }
}

.footer-cta .title {
    font-size: 20px;
    line-height: 1.5;
    color: var(--white)
}

.footer-cta .footer-nav-list {
    margin-top: 11px
}

.footer-cta .footer-nav-list li {
    font-size: 16px;
    line-height: 1.46;
    color: var(--white-2)
}

.footer-cta .newsletter {
    border-inline-start: 1px solid rgba(255, 255, 255, .08);
    padding-inline-start: 108px;
    padding-top: 16px;
    padding-bottom: 39px
}

@media only screen and (max-width: 1199px) {
    .footer-cta .newsletter {
        padding-inline-start: 48px;
        padding-top: 6px;
        padding-bottom: 19px
    }
}

@media only screen and (max-width: 767px) {
    .footer-cta .newsletter {
        padding-inline-start: 0;
        padding-top: 0;
        padding-bottom: 0;
        border-inline-start: 0
    }
}

.footer-cta .newsletter .input-field {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--white);
    padding-bottom: 25px
}

.footer-cta .newsletter input {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: var(--white);
    font-size: 24px;
    font-weight: 300
}

.footer-cta .newsletter input::-moz-placeholder {
    color: var(--white)
}

.footer-cta .newsletter input::placeholder {
    color: var(--white)
}

.dir-rtl .footer-cta .newsletter button img {
    transform: rotateY(180deg)
}

.copyright-area-inner {
    display: flex;
    gap: 20px 60px;
    justify-content: space-between;
    align-items: center;
    padding: 51px 0;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

@media only screen and (max-width: 1919px) {
    .copyright-area-inner {
        padding: 35px 0
    }
}

@media only screen and (max-width: 767px) {
    .copyright-area-inner {
        flex-direction: column
    }
}

.copyright-area .text {
    font-size: 16px;
    line-height: 1.37;
    color: var(--white-2)
}

.copyright-area .text a {
    color: var(--white)
}

.copyright-area .text a:hover {
    color: var(--white-2)
}

.copyright-area .footer-nav-list {
    display: flex;
    gap: 10px 78px;
    flex-wrap: wrap
}

@media only screen and (max-width: 767px) {
    .copyright-area .footer-nav-list {
        gap: 10px 38px
    }
}

.copyright-area .footer-nav-list a {
    font-size: 16px;
    color: var(--white)
}

.copyright-area .footer-nav-list a:hover {
    color: var(--white-2)
}

.work-box .thumb img {
    height: 250px;
    object-fit: cover;
}


div#main-content { padding: 20px 0; }
div#main-content h2.wp-block-heading { margin-bottom: 10px; margin-top: 30px; }

