/* font-family: "Inter", serif; */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

body {
    margin: 0;
    padding: 0;
    background: #fefefe;
    font-family: "Inter", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #374252;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-weight: 400;
    color: #8d8d8d;
    margin: 0 0 10px;
    letter-spacing: 0.3px;
}

a {
    outline: none;
    text-decoration: none;
    color: inherit;
}

h2 {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 30px;
}

img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

.extension-list {
    padding: 80px 0;
}

.container {
    position: relative;
    max-width: 1380px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.sec-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    padding: 10px;
    transition: .3s;
    border-radius: 50px;
    font-size: 14px;
    color: #374252;
    border: 1px solid #374252;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    line-height: normal;
}

.discover-more .btn span.btn-text {
    display: none;
    transition: .3s;
}

.discover-more .btn:hover span.btn-text {
    display: block;
}

.btn img {
    height: 18px;
    width: 18px;
}

.btn-blue {
    background-color: #374252;
    border: 1px solid #374252;
    color: #fff;
}

.discover-more {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 10px;
}

.sec-title h2 {
    background-image: linear-gradient(25deg, rgb(60 223 255 / 80%) 0%, #ffffff 100%);
    background-repeat: no-repeat;
    background-size: 100% 1.1rem;
    background-position: 0px 95%;
    transition: all 250ms;
    display: inline-block;
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 45px;
}

.extension-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0 0;
}

.list-item {
    max-width: calc(33.33% - 20px);
    width: 100%;
    transition: all .2s ease-out;
}

.list-item-in {
    box-shadow: 0px 1px 10px rgb(0 0 0 / 10%);
    padding: 15px 15px 16px;
    border-radius: 20px;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.list-item-details {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.list-item-details p {
    font-size: 14px;
}

.list-item-details p a {
    color: #1d8aff;
    text-decoration: underline;
}

.list-item-img {
    display: block;
    position: relative;
    padding-bottom: 72%;
}

.list-item-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* review */
.review-section {
    padding: 20px 0 80px;
    overflow: hidden;
}

.review-section .sec-title {
    margin: 0;
    text-align: left;
}

.review-slider {
    padding-top: 40px;
}

#review-slider {
    overflow: visible;
}

#review-slider .swiper-wrapper {
    height: unset;
}

#review-slider .swiper-slide {
    display: flex;
    flex-direction: column;
    height: auto;
}

.review-slide {
    padding: 50px 45px;
    border-radius: 16px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #E4E6E6;
    box-shadow: 0px 2px 10px 0 rgba(20, 20, 43, 0.141);
}

.review-slide .review-content {
    margin-bottom: 30px;
}

.review-slide .review-content p {
    color: #313435;
    margin-bottom: unset;
}

.review-slide .review-ext-name .ext-name {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-slide .review-ext-name .ext-name img {
    height: 40px;
    width: 40px;
    padding: 5px;
    background-color: #efefef;
    border-radius: 8px;
}

.review-slide .review-ext-name .ext-name h3 {
    font-size: 18px;
}

.review-slide .review-ext-name p {
    margin-bottom: unset;
    font-size: 16px;
    color: #374252;
}

.review-slide .review-ext-name {
    margin-top: auto;
}

#review-slider .swiper-button-disabled {
    background-color: #fff !important;
    opacity: unset !important;
}

#review-slider .swiper-button-disabled::after {
    color: #313435 !important;
}

#review-slider .swiper-button-next,
#review-slider .swiper-button-prev {
    width: 60px;
    height: 60px;
    background-color: #313435;
    border-radius: 10px;
    border: 1px solid #E4E6E6;
    box-shadow: 0px 2px 10px 0 rgba(20, 20, 43, 0.141);
    top: -90px;
}

#review-slider .swiper-button-next:after,
#review-slider .swiper-button-prev:after {
    color: #fff;
    font-size: 25px;
}

#review-slider .swiper-button-prev {
    left: auto;
    right: 90px;
}

/* footer */
footer {
    background-color: #374252;
}

.main-footer {
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.foot-item .foot-logo a {
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
    color: #fff;
}

.main-footer .foot-item-logo {
    flex-direction: column;
    gap: 5px;
    align-items: start !important;
}

.main-footer .foot-item {
    display: flex;
    align-items: center;
}

.main-footer .foot-item p {
    margin-bottom: unset;
    color: #fff
}

.foot-links p {
    font-size: 16px;
    padding: 0 12px;
    position: relative;
}

.foot-links p:nth-child(2)::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: #fff;
    right: 0;
}

.foot-links p:nth-child(2)::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: #fff;
    left: 0;
}

.foot-links p a:hover {
    color: #3cdfffcc;
    transition: .3s;
}

.social-icon {
    gap: 20px;
}

.social-icon a:hover svg path {
    fill: #3cdfffcc;
    transition: .3s;
}

.social-icon svg {
    height: 20px;
    width: 20px;
}


/* start privacy-terms-sec */
.privacy-terms-sec {
    padding: 80px 0;
}

.small_container {
    max-width: 1100px;
    width: 100%;
    margin: auto;
    padding: 0 20px;
}

.main-privacy-terms-content {
    padding-top: 40px;
}

.main-privacy-terms-content p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
}

.main-privacy-terms-content p a {
    color: #1d8aff;
}

.main-privacy-terms-content h5 {
    font-size: 18px;
    line-height: normal;
    font-weight: 600;
    padding: 15px 0 12px 0;
}

.main-privacy-terms-content ul {
    list-style: disc;
    padding-left: 40px;
}

/* end privacy-terms-sec */


/* Subscription cancellation page */
span.step-counter {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: #f66a3c;
    border-radius: 50%;
    line-height: 1;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cancellation-steps .list-item-details h2 {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}

.sec-title h1 {
    margin-bottom: 10px;
    line-height: 1.3;
}

.cancellation-steps .list-item-in{
    padding: 0;
}
.cancellation-steps .list-item-details{
    margin-top: 0;
    padding: 20px;
}
.important-notes {
    margin-top: 32px;
    padding: 30px;
    background-color: #f7f7f8;
    border-radius: 10px;
    border-left: 4px solid #f66a3c;
}
.cancellation-steps .list-item-details p {
    color: #3e3e3e;
}
.important-notes h3 {
    margin-bottom: 20px;
    font-size: 18px;
}
.important-notes ul {
    padding-left: 20px;
}
.important-notes ul li {
    padding-bottom: 10px;
}
.cancellation-steps .list-item-img img{
    border-radius: 12px 12px 0 0;
}


/* responsive */
@media screen and (max-width: 1024px) {
    .extension-list-wrapper {
        gap: 20px;
        padding-top: 30px;
    }

    .list-item {
        max-width: calc(33.33% - 14px);
    }

    .list-item-in {
        padding: 15px;
    }

    h2 {
        font-size: 18px;
        line-height: normal;
    }

    .list-item-details p {
        font-size: 13px;
    }

    .discover-more {
        gap: 5px;
    }

    .btn {
        padding: 7px 14px;
        font-size: 12px;
    }

    .btn img {
        height: 16px;
        width: 16px;
    }

    /* review */
    .review-slide {
        padding: 30px;
    }

    .review-slide .review-content p {
        font-size: 14px;
    }

    .review-slide .review-ext-name .ext-name h3 {
        font-size: 16px;
    }

    .review-slide .review-ext-name .ext-name img {
        height: 35px;
        width: 35px;
        border-radius: 5px;
    }

    .review-slide .review-ext-name .ext-name {
        margin-bottom: 5px;
        gap: 8px;
    }

    .review-slide .review-ext-name p {
        font-size: 15px;
    }

    .review-slider {
        padding-top: 25px;
    }

    #review-slider .swiper-button-next,
    #review-slider .swiper-button-prev {
        width: 50px;
        height: 50px;
        top: -65px;
    }

    #review-slider .swiper-button-prev {
        right: 75px;
    }

    #review-slider .swiper-button-next:after,
    #review-slider .swiper-button-prev:after {
        font-size: 20px;
    }

    .review-slide .review-content {
        margin-bottom: 20px;
    }

}

@media screen and (max-width: 991px) {
    .extension-list {
        padding: 40px 0;
    }

    /* review */
    .review-section {
        padding: 20px 0 60px;
    }

    .review-slide {
        padding: 25px;
    }

    .review-slide .review-ext-name .ext-name h3,
    .review-slide .review-ext-name p {
        font-size: 15px;
    }

    #review-slider .swiper-button-next,
    #review-slider .swiper-button-prev {
        width: 45px;
        height: 45px;
        top: -40px;
    }

    #review-slider .swiper-button-next:after,
    #review-slider .swiper-button-prev:after {
        font-size: 18px;
    }

    #review-slider .swiper-button-prev {
        right: 65px;
    }

    .review-slide .review-ext-name .ext-name img {
        height: 32px;
        width: 32px;
    }

    .review-slider {
        padding-top: 50px;
    }

    .foot-links p {
        font-size: 14px;
    }

    .foot-item .foot-logo a {
        font-size: 35px;
        line-height: 50px;
    }

    /* footer */
    .main-footer .foot-item-logo {
        align-items: center !important;
    }

    .main-footer .foot-item {
        max-width: 100%;
        width: 100%;
        justify-content: center;
    }

    .main-footer {
        padding: 25px 0;
        gap: 25px;
    }

    .social-icon {
        margin-top: 15px;
    }


    .privacy-terms-sec {
        padding: 60px 0;
    }

    .main-privacy-terms-content {
        padding-top: 25px;
    }

    .main-privacy-terms-content p {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 5px;
    }

    .main-privacy-terms-content h5 {
        font-size: 17px;
        padding: 15px 0 10px 0;
    }

    .main-privacy-terms-content ul {
        padding-left: 30px;
    }
}

@media screen and (max-width: 768px) {
    .sec-title h2 {
        font-size: 26px;
        margin-bottom: 10px;
        line-height: 36px;
    }

    p {
        font-size: 14px;
    }

    .list-item {
        max-width: calc(50% - 10px);
    }

    .list-item-in {
        border-radius: 12px;
        padding: 12px;
    }

    .list-item-img img {
        border-radius: 8px;
    }
    .cancellation-steps .list-item-img img{
        border-radius: 8px 8px 0 0;
    }

    h2 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .list-item-details p {
        font-size: 12px;
        line-height: 17px;
    }

    .list-item-details {
        margin-top: 10px;
    }

    /* review */
    .review-slide {
        padding: 20px;
    }


    .foot-links p {
        font-size: 12px;
        padding: 0 7px;
    }

    .social-icon svg {
        height: 18px;
        width: 18px;
    }

    .main-privacy-terms-content ul {
        padding-left: 20px;
    }
    .cancellation-steps .list-item-details h2{
        font-size: 18px;
        margin-bottom: 8px;
    }
    span.step-counter{
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .important-notes ul li{
        font-size: 14px;
    }
    .important-notes h3{
        font-size: 16px;
        margin-bottom: 15px;
    }
    .important-notes{
        padding: 25px;
        margin-top: 25px;
    }
}

@media screen and (max-width: 512px) {
    .extension-list-wrapper {
        padding-top: 15px;
    }

    .list-item {
        max-width: 100%;
    }

    .foot-item .foot-logo a {
        font-size: 32px;
        line-height: 42px;
    }

    .foot-item.foot-links {
        flex-direction: column;
        gap: 12px;
    }

    .foot-links p:nth-child(2)::before,
    .foot-links p:nth-child(2)::after {
        content: unset;
    }

    .sec-title h1 {
        font-size: 26px;
    }
}