:root {
    --brand: #049CA4;
    --body: #52525B;
    --brand-black: #27272A;
    --black: #0B1123;
    --brand-white: #fff;
    --brand-blue: #76ABD6;
    --brand-bg: #E1FDFF;
    --poppins-font: "Poppins", sans-serif;
    --comfortaa-font: "Comfortaa", sans-serif;
}

/* reset */
* {
    margin: 0;
    padding: 0;
    font-style: normal;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Comfortaa", sans-serif;
}

body {
    color: var(--brand-black);
}

a:hover {
    cursor: pointer;
}

.hide {
    display: none;
}

.container {
    width: 100%;
    padding-right: calc(1rem * .5);
    padding-left: calc(1rem * .5);
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

.row {

    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-.5 * 1rem);
    margin-left: calc(-.5 * 1rem);
}

.col-12 {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.pt-90 {
    padding-top: 90px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}


.d-flex {
    display: flex;
}

p {
    font-family: var(--poppins-font);
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}

h1 {
    color: var(--brand-black);
    font-weight: 700;
    font-size: 56px;
    line-height: 84px;
}

h2 {
    font-size: 40px;
    line-height: 44px;
    font-weight: 700;
}

/*navigation*/
.main-nav {
    margin-top: 24px;
}

.nav-logo {
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 12;
}

.nav-toggle {
    width: 36px;
    height: 36px;
    position: relative;
    cursor: pointer;
    z-index: 122;
}

.nav-toggle:hover {
    opacity: 0.8;
}

.nav-toggle .nav-toggle-bar,
.nav-toggle .nav-toggle-bar::after,
.nav-toggle .nav-toggle-bar::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: var(--brand-black);
    content: "";
    height: 4px;
    transition: all 0.5s;
    width: 100%;
}

.nav-toggle .nav-toggle-bar {
    margin-top: 0;
}

.nav-toggle .nav-toggle-bar::after {
    margin-top: 10px;
}

.nav-toggle .nav-toggle-bar::before {
    margin-top: -10px;
}

.nav-toggle.expanded .nav-toggle-bar {
    background: transparent;
}

.nav-toggle.expanded .nav-toggle-bar::after, .nav-toggle.expanded .nav-toggle-bar::before {
    background: var(--brand-black);
    margin-top: 0;
}

.nav-toggle.expanded .nav-toggle-bar::after {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-toggle.expanded .nav-toggle-bar::before {
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav {
    cursor: pointer;
    display: flex;
    top: -20rem;
    position: absolute;
    transition: top 0.5s;
    z-index: 1;
    left: auto;
    right: 28px;
    width: 100%;
    max-width: 233px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    background: var(--brand-white);
    padding: 24px 0;
    border-radius: 8px;
}

.nav.expanded {
    top: 36px;
}

.nav ul {
    list-style: none;
    margin: auto 0;
    padding: 0;
}

.nav ul a {
    color: var(--brand-black);
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    display: inline-block;
    width: 100%;
    position: relative;
    padding: 10px 24px;
    transition: 0.3s all;
}

.nav ul a.active {
    border-right: 4px solid var(--brand);
}

.nav ul a:hover {
    background: var(--brand);
    color: var(--brand-white);
}

/*hero*/
section.hero-section {
    padding-top: 66px;
}

.hero-content-inner p {
    padding-top: 16px;
    font-size: 24px;
    line-height: 36px;
    color: var(--body);
    font-weight: 400;
    font-family: var(--poppins-font);
    padding-bottom: 48px;
}

.hero-content-inner p strong {
    font-weight: 700;
    font-family: var(--poppins-font);
}

.btn-group {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.btn {
    padding: 12px 40px;
    border-radius: 40px;
    font-family: var(--poppins-font);
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}

.btn.theme-1 {
    background: var(--brand);
    border: 1px solid var(--brand);
    color: var(--brand-white);
    padding: 12px 22px !important;
}

/* .btn.theme-1:hover{
    background: transparent;
    color: var(--brand);
} */
.btn.theme-2 {
    border: 1px solid #292932;
    color: #292932;
}

.hero-section {
    padding-bottom: 40px;
}

.hero-images-gl {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding-top: 180px;
}

.hero-images-gl img {
    border-radius: 16px;
    display: block;
    max-width: 100%;
}

.hero-images-gl div.inner {
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.hero-images-gl div.inner:nth-child(2) {
    margin-top: -130px;
}

.hero-images-gl div.inner:nth-child(1) {
    margin-top: -40px;
}

.hero-images-gl div.inner div {
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.hero-images-gl div.inner a::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: -12px;
    top: -12px;
    border-radius: 29px;
    border: 12px solid var(--brand);
    opacity: 0;
    transition: 0.3s all ease;
}

.hero-images-gl div.inner a:hover:after {
    opacity: 1;
}

.offers-sec {
    background: #f6f6f6;
}

.hide {
    display: none;
}

.tab-nav ul {
    display: none;
    justify-content: center;
}

.tab-nav ul.show {
    display: block;
}

.tab-nav ul {
    display: flex;
}

.about-us-sec {
    width: 100%;
    background: var(--brand-bg);
}

.tabs-title-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.tab-nav ul li {
    list-style: none;
}

.tab-nav ul li button {
    background: transparent;
    border: 0;
    outline: 0;
    cursor: pointer;
    padding: 21px 0;
}

.tab-nav ul li button img {
    overflow: hidden;
    pointer-events: none;
    display: block;
    opacity: .2;
    transition: 0.3s all ease;
}

.tab-nav ul li button.active img {
    opacity: 1;
}

.tab-nav ul {
    background: rgba(0, 0, 0, 0.05);
    gap: 50px;
    padding: 0 40px;
    border-radius: 16px;
}

.tab-content {
    padding-top: 68px;
}

.tab-content p strong {
    font-family: var(--poppins-font);
}

.tab-content p {
    padding-bottom: 20px;
}

.tab-item .d-flex {
    gap: 46px;
}

.tab-item .d-flex .btn {
    display: inline-block;
    width: auto;
    padding: 12px 26px 12px 25px;
}

.tab-item .d-flex .btn img {
    vertical-align: middle;
    display: inline-block;
    margin-left: 10px;
}

.nos-prd-tbs .tab-item .d-flex {
    align-items: center;
}

.nos-prd-tbs .tab-item .d-flex .imgs {
    max-width: 50%;
    width: 100%;
}

.nos-prd-tbs .tab-item .d-flex .imgs img {
    max-width: 100%;
}

.nos-prd-tbs .tab-item .d-flex .txt {
    width: 100%;
    max-width: 50%;
}

.in-title-prd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
}

.tab-content.nos-prd-tbs {
    padding-top: 25px;
}

.in-title-prd h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 26.76px;
    text-align: left;
}

.in-title-prd img {
    opacity: .5;
    max-height: 32px;
    max-width: 100%;
}

.tab-content .prod-texts p {
    padding-bottom: 0;
    font-size: 17px;
    line-height: 25px;
    font-weight: 500;
}

.tab-content .prod-texts ul {
    margin-left: 28px;
    font-size: 17px;
    line-height: 25px;
    font-weight: 500;
}

.tab-content .prod-texts ul li {
    font-family: var(--poppins-font);
}

.txt.prod-texts .color-opt {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    gap: 24px 0px;
    flex-wrap: wrap;
}

.txt.prod-texts .color-opt label {
    font-size: 18px;
    font-weight: 700;
    line-height: 20.07px;
    text-align: left;
    color: #3F3F46;
    padding-bottom: 16px;
    display: inline-block;
    width: 100%;
}


.mobion-am1 .description-desktop {
    display: block
}

.mobion-am1 .description-mobile {
    display: none;
}

.clrs {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 1px solid #000;
}

.single-clr {
    width: 60%;
}

.single-clr .ins {
    position: relative;
    width: 24px;
    height: 24px;
}

.single-clr .ins .clrs {
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    margin: 0;
}

.single-clr .radio {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}

.single-clr .ins input {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 12;
}

.single-clr .radio .extra-colors {
    width: 100%;
    position: relative;
}

.double-clr {
    width: 40%;
}

.tab-content .prod-texts p.click_color_prd {
    padding-top: 8px;
    color: #A1A1AA;
    font-size: 14px;
    line-height: 21px;
    cursor: pointer;
}

.single-clr .ins .clrs:after {
    content: '';
    width: 28px;
    height: 28px;
    position: absolute;
    left: -3px;
    top: -3px;
    border: 1px solid #D4D4D8;
    z-index: -1;
    /* background: red; */
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s all ease;
}

.single-clr .ins .clrs {
    position: relative;
}

.single-clr .ins {
    overflow: visible;
}

.single-clr .ins input:checked + .clrs:after {
    opacity: 1;
}


.extra-colors .dropdown {
    position: absolute;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 10px grey;
}

.dropdown {
    margin-top: 10px;
}

.extra-colors .inner-flex {
    display: flex;
    /* justify-content: space-between; */
    gap: 9px;
    flex-wrap: wrap;
    padding: 5px;
}

.single-clr .ins .clrs:after {
    z-index: 1;
}

.tab-content .prod-texts p.click_color_prd {
    user-select: none;
}

.custom-radio-selle .ins {
    position: relative;
    width: 42px;
    height: 42px;
}

.custom-radio-selle .ins input {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}

.custom-radio-selle {
    display: flex;
    gap: 16px;
}

.custom-radio-selle .imgsR {
    text-align: center;
    border: 1px solid transparent;
    /* padding: 4px; */
    user-select: none;
    border-radius: 4px;
}

.custom-radio-selle .imgsR img {
    display: block;
    width: 37px;
    height: 38px;
    object-fit: cover;
    margin: auto;
}

.custom-radio-selle input:checked + .imgsR {
    border: 1px solid #36B0B6;
}

.custom-radio-selle .imgsUs {
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 42px;
    vertical-align: middle;
    border: 1px solid transparent;
    border-radius: 6px;
}

.custom-radio-selle .imgsUs img {
    vertical-align: middle;
}

.custom-radio-selle .ins input:checked + .imgsUs {
    border: 1px solid rgba(54, 176, 182, 1);
}

.caracter-btns .btns-grp {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tab-item .d-flex .caracter-btns .btn {
    padding: 9px 19px;
}

.tab-content.offer-tabs {
    padding-top: 48px;
}

.offers-content-wrap {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.single-bx-offer {
    /* max-width: 50%; */
    width: calc(50% - 22.9px);
    background: rgba(1, 28, 29, 1);
    border-radius: 16px;
    padding: 24px;
}

.placeholder-boxs {
    width: calc(50% - 22.9px);
    border-radius: 16px;
    overflow: hidden;
}

.placeholder-boxs img {
    display: block;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

.single-bx-offer .icon {
    background: rgba(224, 253, 255, 1);
    border: 1px solid rgba(4, 156, 164, 1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.single-bx-offer h2 {
    padding-top: 16px;
    color: rgba(255, 255, 255, 1);
    font-size: 24px;
    font-weight: 700;
    line-height: 26.76px;
}

.single-bx-offer p {
    padding-top: 16px;
    color: #E4E4E7;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
}

.compare-bx {
    background: #FFFFFF;
    padding: 16px;
    display: inline-block;
    width: 100%;
    border-radius: 16px;
}


.compare-bx .flx {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 16px;
    gap: 16px 0;
}

.single-bx-offer .compare-bx .cont p {
    padding: 0;
    color: #52525B;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.compare-bx .flx .name strong {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    font-family: var(--poppins-font);
}

.compare-bx .flx .name {
    width: 33%;
}

.compare-bx .flx .cont {
    width: 67%;
    padding-left: 5px;
}

.single-bx-offer .compare-bx p {
    font-style: italic;
    color: #52525B;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    padding: 0;
}

.single-bx-offer .btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 26px;
    gap: 4px;
}

.single-bx-offer .btns .btn {
    padding: 12px 15px;
    min-width: 200px;
    text-align: center;
}

.single-bx-offer .btns .theme-2 {
    background: rgba(4, 156, 164, 0.18);
    color: #fff;
}

.single-bx-offer .btns .theme-2 img {
    vertical-align: middle;
}

.contact-form-wrap {
    padding-top: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 58px;
    justify-content: space-between;
}

.contact-form-wrap .imgs {
    max-width: 41%;
}

.contact-form-wrap .imgs img {
    max-width: 100%;
}

.contact-form-wrap .forms {
    width: 52%;
}

.contact-form-wrap .forms .col-12, .contact-form-wrap .forms .col-6 {
    padding-left: 0rem;
    padding-right: 0rem;
    padding-bottom: 1.5rem;
}

.contact-form-wrap .forms .col-6 {
    width: 50%;
}

.contact-form-wrap .forms select, .contact-form-wrap .forms input, .contact-form-wrap .forms textarea {
    border: 0;
    border-bottom: 1px solid rgba(161, 161, 170, 1);
    width: 100%;
    padding: 0;
    padding-bottom: 18px;
    font-family: var(--poppins-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.01em;
    text-align: left;
    outline: 0;
    color: rgba(82, 82, 91, 1);
}

.contact-form-wrap .forms .submit-btns {
    padding-top: 24px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.contact-form-wrap .forms .submit-btns p {
    font-size: 10px;
    font-weight: 400;
    line-height: 14.96px;
    text-align: left;
}

.contact-form-wrap .forms .submit-btns .btn {
    min-width: 155px;
    padding: 12px 12px;
    text-align: center;
    cursor: pointer;
}

.contact-form-wrap .forms .submit-btns .btn img {
    vertical-align: middle;
    margin-left: 12px;
}

.btn {
    cursor: pointer;
}

footer.footer-top {
    background: rgba(19, 27, 48, 1);
    padding: 50px 0;
}

.footer-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-top-content a {
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
    color: rgba(255, 255, 255, 1);
}

.footer-top-content .icons {
    display: flex;
    align-items: center;
    gap: 50px;
}

footer.footer-bottom {
    background: rgba(11, 17, 35, 1);
    padding: 40px 28px;
}

.footer-navs {
    display: flex;
    align-items: self-start;
    justify-content: space-between;
}

.widget-1 {
    margin-bottom: 20px;
}

.widget-1 h4 {
    color: rgba(118, 171, 214, 1);
    font-size: 15px;
    font-weight: 700;
    line-height: 27px;
    text-align: left;
    padding-bottom: 10px;
}

.widget-1 ul {
}

.widget-1 ul li {
    list-style: none;
}

.widget-1 ul li a {
    text-decoration: underline;
    font-size: 15px;
    font-weight: 300;
    line-height: 27px;
    text-align: left;
    color: rgba(255, 255, 255, 1);
}

.widget-1 .socials li {
    list-style: none;
    width: 32px;
    height: 32px;
    background: #fff;
    text-align: center;
    line-height: 32px;
    border-radius: 6px;
}

.widget-1 .socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.widget-1 .socials li img {
    display: inline-block;
    vertical-align: middle;
}

.widget-1 .copyright-txy {
    padding-top: 30px;
    color: rgba(255, 255, 255, 1);
}

.widget-1 .copyright-txy h5 {
    font-size: 11px;
    font-weight: 700;
    line-height: 17px;
    text-align: left;
}

.widget-1 .copyright-txy h6 {
    font-size: 11px;
    font-weight: 400;
    line-height: 17px;
    text-align: left;
}

.widget-1 .copyright-txy a {
    color: #fff;
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 99;
    overflow-x: hidden;
    overflow-y: auto;

}

.modal-content {
    position: absolute;
    top: 0%;
    left: 10%;
    /* transform: translate(-50%, -50%); */
    background-color: white;
    padding: 2rem 2.5rem;
    width: 80%;
    border-radius: 0.5rem;
    text-align: center;
}

.modal.form .modal-content {
    top: 30%;
    left: 25%;
    width: 50%;
}

.modal-content img {
    max-width: 100%;
}

.close-button {
    float: right;
    width: 1.5rem;
    font-size: 1.2em;
    line-height: 1;
    padding: 0 .2em .15em;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: #000;
    color: #fff;
    transition: color 0.12s ease-in-out;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}


.tab-item .d-flex .imgs .btn {
    display: none;
}

.tab-content .prod-texts ul li {
    font-weight: 500;
    color: rgba(82, 82, 91, 1);
}

.tab-content .prod-texts ul li span {
    font-weight: 400;
    font-family: var(--poppins-font);
}

@media (max-width: 991px) {
    .single-clr {
        width: 100%;
    }

    .double-clr {
        width: 100%;
    }

    .mobion-am1 .description-desktop {
        display: none;
    }

    .mobion-am1 .description-mobile {
        display: block;
    }

    .extra-colors .inner-flex {
        gap: 12px;
    }

    .offers-content-wrap {
        gap: 20px;
    }

    .single-bx-offer .btns {
        display: flex;
        flex-wrap: wrap;
    }

    .tab-item .d-flex .imgs img {
        max-width: 100%;
        min-width: 300px;
    }

    .single-bx-offer {
        width: 100%;
    }

    .placeholder-boxs {
        display: none;
    }

    .tab-item .d-flex,
    .tabs-title-nav {
        gap: 20px;
    }

    .contact-form-wrap .imgs {
        max-width: 100%;
    }

    .contact-form-wrap .forms {
        width: 100%;
    }

    .contact-form-wrap {
        justify-content: center;
    }

    .single-clr .radio .extra-colors {
        z-index: 1;
    }

    .hero-images-gl {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 24px;
        line-height: 36px;
    }

    .hero-content-inner {
        text-align: center;
    }

    .hero-content-inner p {
        font-size: 15px;
        line-height: 22px;
        padding-bottom: 32px;
    }

    .btn-group .btn {
        width: 100%;
    }

    .d-flex.btn-group {
        gap: 16px;
    }

    .hero-images-gl {
        gap: 4px;
        padding-top: 100px;
    }

    .hero-images-gl div.inner:nth-child(2) {
        margin-top: -60px;
    }

    .hero-images-gl div.inner a::after {
        border: 4px solid var(--brand);
        left: -4px;
        top: -5px;
    }

    .pt-90 {
        padding-top: 40px;
    }

    .pb-60 {
        padding-bottom: 40px;
    }

    h2 {
        font-size: 24px;
        line-height: 27px;
    }

    .tab-nav ul {
        padding: 0 18px;
        gap: 18px;
        justify-content: space-between;
    }

    .tab-nav {
        width: 100%;
    }

    .tab-nav ul li button img {
        max-height: 28px;
    }

    .tab-content {
        padding-top: 32px;
    }

    .tab-item .d-flex {
        flex-wrap: wrap;
    }

    .tab-item .d-flex .txt {
        width: 100%;
    }

    .tab-item .d-flex .imgs img {
        min-width: 1px;
    }

    .tab-content p {
        font-size: 14px;
        line-height: 21px;
        text-align: left;
        padding-bottom: 10px;
    }

    .nos-prd-tbs .tab-item .d-flex .imgs {
        max-width: 100%;
    }

    .nos-prd-tbs .tab-item .d-flex .txt {
        max-width: 100%;
    }

    .in-title-prd h4 {
        font-size: 20px;
        font-weight: 700;
        line-height: 22.3px;
        text-align: left;
    }

    .in-title-prd img {
        max-height: 24px;
    }

    .tab-content .prod-texts p {
        font-size: 15px;
        font-weight: 500;
        line-height: 22.2px;
        text-align: left;
    }

    .tab-content .prod-texts ul {
        font-size: 15px;
        line-height: 22.5px;
        text-align: left;
    }

    .txt.prod-texts .color-opt .single-clr {
        width: 100%;
    }

    .txt.prod-texts .color-opt .couleur-selle {
        width: 100%;
    }

    .txt.prod-texts .color-opt label {
        font-size: 18px;
        font-weight: 700;
        line-height: 20.07px;
        text-align: left;
    }

    .tab-content.offer-tabs {
        padding-top: 32px;
    }

    .single-bx-offer h2 {
        font-size: 20px;
        font-weight: 700;
        line-height: 22.3px;
        text-align: left;
    }

    .tab-content .single-bx-offer p {
        font-size: 16px;
        line-height: 24px;
        text-align: left;
    }

    .compare-bx .flx .name {
        width: 100%;
    }

    .compare-bx .flx .cont {
        width: 100%;
        padding-left: 0;
    }


    .single-bx-offer .btns {
        gap: 16px;
    }

    .single-bx-offer .btns .btn {
        max-width: 100%;
        width: 100%;
    }

    .contact-form-wrap .forms .col-6 {
        width: 100%;
    }

    .contact-form-wrap .forms .submit-btns .btn {
        width: 100%;
    }

    .contact-form-wrap .forms .submit-btns {
        flex-wrap: wrap;
        gap: 20px;
    }

    .pb-90 {
        padding-bottom: 40px;
    }

    .footer-top-content .lgo {
        width: 100%;
        text-align: center;
    }

    .footer-top-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px;
    }

    .footer-top-content .icons img {
        max-width: 100%;
    }

    .footer-navs {
        flex-wrap: wrap;
    }

    .widget-1 {
        width: 100%;
    }

    .widget-1 .socials {
        justify-content: center;
    }

    .tab-item .d-flex .caracter-btns .btn {
        font-size: 14px;
        line-height: 21px;
    }

    .tab-item .d-flex .btn {
        font-size: 17px;
    }

    .tab-item .d-flex .imgs {
        width: 100%;
        text-align: center;
    }

    .tab-item .d-flex .imgs .btn {
        display: block;
        width: 100%;
        margin-top: 32px;
    }
}

html {
    scroll-behavior: smooth;
}

.tab-nav ul {
    flex-wrap: wrap;
}

.info {
    margin-bottom: 1rem;
    border-radius: .5rem;
    padding: 1rem;
    font-size: .875rem;
    line-height: 1.25rem;
}

.info.success {
    background-color: rgb(243 250 247);
    color: rgb(3 84 63);
}

.info.error {
    background-color: rgb(253 242 242);
    color: rgb(155 28 28);
}

.grecaptcha-badge {
    visibility: hidden !important;
}
