@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* Function for PX to REM */
body {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: normal;
}
@media  (min-width: 1480px){
    body {
        font-size: 22px;
    }
}
body a {
    text-decoration: none;
}

body a:hover {
    color: unset !important;
}

body ul,
body ol {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

body button {
    border: none;
    padding: 0;
    background-color: transparent;
}

.red-button {
    padding: 15px 40px;
    border-radius: 22px;
    background: #9D270D;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    color: #fff;
    margin-top: 15px;
    -webkit-box-shadow: 0px 20px 70px rgb(241 165 1 / 15%);
    box-shadow: 0px 20px 70px rgb(241 165 1 / 15%);
}
@media screen and (min-width: 1400px) {
    .red-button {
        font-size: 18px;
    }
}
hr {
    border: 1px solid #E8E8E8 !important;

}
@media screen and (min-width: 1681px) {
    h4{
        font-size:2.5rem;
        font-weight: bold;
    }
    h5{
        font-size: 2.3rem;
        font-weight: bold;
    }
    h6{
        font-size: 1.2rem;
        font-weight: bold;
    }
    p{
        font-size: 1.6rem;
        line-height: 1.9rem;
    }
}
@media screen and (min-width:1400px) and (max-width: 1680px) {
    h4{
        font-size:2.3rem;
        font-weight: bold;
    }
    h5{
        font-size: 2.2rem;
        font-weight: bold;
    }
    h6{
        font-size: 1.2rem;
        font-weight: bold;
    }
    p{
        font-size: 1.2rem;
        line-height: 1.9rem;
    }
}
h6 {
    font-weight: 700;
}
/*****************/
.maintain {
    background: url(../img/mainten-bg.svg) no-repeat left top;
    border-bottom: 1px solid #e4e4e4;
}

.maintain .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 6px 0;
}

@media only screen and (max-width: 768px) {
    .maintain .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.maintain .wrapper svg {
    height: 56px;
}

.maintain .wrapper .text {
    font-size: 20px;
    line-height: 32px;
    font-weight: bold;
}

@media only screen and (max-width: 992px) {
    .maintain .wrapper .text {
        font-size: 18px;
        text-align: center;
        padding: 6px;
    }
}

.hero__box {
    margin-top: 28px;
    margin-bottom: 48px;
}

@media only screen and (max-width: 1200px) {
    .hero__box {
        margin-top: 120px;
    }
}

@media only screen and (max-width: 992px) {
    .hero__box {
        margin-top: 30px;
    }
}

.hero__box .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .hero__box .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.hero__box .wrapper .info {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

@media only screen and (max-width: 992px) {
    .hero__box .wrapper .info {
        width: 100%;
    }
}

.hero__box .wrapper .info h2 {
    position: relative;
    font-weight: bold;
    font-size: 30px;
    color: #000;
    margin-bottom: 70px;
    font-family: "Poppins", sans-serif;
    text-align: left;
}

@media only screen and (max-width: 1400px) {
    .hero__box .wrapper .info h2 {
        font-size: 25px;
    }
}

.hero__box .wrapper .info h2::after {
    content: "What is Clexi?";
    position: absolute;
    right: 50%;
    top: 50%;
    font-weight: bold;
    font-size: 94px;
    color: #000;
    opacity: 0.05;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    width: 110%;
    font-family: "Poppins", sans-serif;
}

@media only screen and (max-width: 1400px) {
    .hero__box .wrapper .info h2::after {
        font-size: 80px;
    }
}

@media only screen and (max-width: 1200px) {
    .hero__box .wrapper .info h2::after {
        font-size: 65px;
    }
}

@media only screen and (max-width: 768px) {
    .hero__box .wrapper .info h2::after {
        font-size: 45px;
    }
}

.hero__box .wrapper .info p {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.03em;
    line-height: 38px;
    text-align: justify;
    color: #343434;
    margin-bottom: 43px;
    padding-right: 24px;
}

.hero__box .wrapper .info .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -12px;
    padding-right: 24px;
}

@media only screen and (max-width: 1400px) {
    .hero__box .wrapper .info .links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0;
    }
}

.hero__box .wrapper .info .links a {
    display: inline-block;
    padding: 16px;
    border-radius: 12px;
    width: calc(50% - 24px);
    margin: 0 12px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: #fff;
}

@media only screen and (max-width: 1400px) {
    .hero__box .wrapper .info .links a {
        margin-bottom: 15px;
        width: 100%;
    }
}

.hero__box .wrapper .info .links .green {
    background: #05ce78;
}

.hero__box .wrapper .info .links .red {
    background: #E91478;
}

@media only screen and (max-width: 992px) {
    .hero__box .wrapper .img {
        margin-bottom: 25px;
    }
}

.hero__box .wrapper .img svg {
    height: 500px;
}

@media only screen and (max-width: 1200px) {
    .hero__box .wrapper .img svg {
        max-width: 500px;
        max-height: 500px;
    }
}

@media only screen and (max-width: 600px) {
    .hero__box .wrapper .img svg {
        width: 100%;
        height: 100%;
    }
}

.download__app__box {
    padding-top: 32px;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
    background-image: url(../../img/downloadBg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 0;
    margin-bottom: 100px;
}

.download__app__box .wave {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: none;
}

@media only screen and (max-width: 992px) {
    .download__app__box {
        margin-top: 30px;
        margin-bottom: 56px;
    }
}

.download__app__box .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .download__app__box .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.download__app__box .wrapper .info {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

@media only screen and (max-width: 992px) {
    .download__app__box .wrapper .info {
        width: 100%;
    }
}

.download__app__box .wrapper .info h2 {
    position: relative;
    font-weight: bold;
    font-size: 24px;
    color: #000;
    margin-bottom: 70px;
    font-family: "Poppins", sans-serif;
}

.download__app__box .wrapper .info h2::after {
    content: "Cléxi app";
    position: absolute;
    right: 50%;
    top: 50%;
    font-weight: bold;
    font-size: 85px;
    color: #000;
    opacity: 0.05;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    width: 100%;
    font-family: "Poppins", sans-serif;
}

@media only screen and (max-width: 1200px) {
    .download__app__box .wrapper .info h2::after {
        font-size: 65px;
    }
}

@media only screen and (max-width: 768px) {
    .download__app__box .wrapper .info h2::after {
        font-size: 45px;
    }
}

.download__app__box .wrapper .info .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media only screen and (max-width: 500px) {
    .download__app__box .wrapper .info .items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.download__app__box .wrapper .info .items a {
    width: 210px;
    height: 64px;
    border-radius: 12px;
    background: #080809;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 9px;
}

.download__app__box .wrapper .info .items a svg {
    height: 35px;
}

@media only screen and (max-width: 500px) {
    .download__app__box .wrapper .info .items a {
        width: 100%;
    }
}

@media only screen and (max-width: 992px) {
    .download__app__box .wrapper .img {
        margin-bottom: 48px;
    }
}

.download__app__box .wrapper .img svg {
    max-width: 700px;
    max-height: 550px;
}

@media only screen and (max-width: 1200px) {
    .download__app__box .wrapper .img svg {
        max-width: 500px;
        max-height: 500px;
    }
}

@media only screen and (max-width: 600px) {
    .download__app__box .wrapper .img svg {
        width: 100%;
        height: 100%;
    }
}

.software__support {
    margin-bottom: 100px;
}

@media only screen and (max-width: 992px) {
    .software__support {
        margin-bottom: 56px;
    }
}

.software__support .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .software__support .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.software__support .wrapper .right {
    width: 50%;
    text-align: right;
}

@media only screen and (max-width: 992px) {
    .software__support .wrapper .right {
        width: 100%;
        height: 300px;
        margin-bottom: 16px;
    }
}

.software__support .wrapper .right svg {
    max-width: 100%;
    max-height: 100%;
}

.software__support .wrapper .left {
    width: 50%;
    padding-right: 40px;
}

@media only screen and (max-width: 992px) {
    .software__support .wrapper .left {
        width: 100%;
        padding-right: 0;
    }
}

.software__support .wrapper .left h5 {
    font-weight: bold;
    font-size: 28px;
    letter-spacing: 0.01em;
    text-align: left;
    color: #000;
    font-family: "Poppins", sans-serif;
    margin-bottom: 24px;
}

.software__support .wrapper .left p {
    font-weight: bold;
    font-size: 18px;
    line-height: 32px;
    text-align: justify;
    color: #343434;
    padding: 0;
    margin-bottom: 24px;
}

.software__support .wrapper .left a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 18px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
    padding: 12px;
    padding-left: 24px;
    margin-bottom: 32px;
}

.software__support .wrapper .left a span {
    font-weight: bold;
    font-size: 16px;
    text-align: left;
    color: #252425;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Poppins", sans-serif;
}

.software__support .wrapper .left a span svg {
    margin-right: 6px;
    height: 36px;
    margin-bottom: 4px;
}

.software__support .wrapper .left a .downlowd__arrow {
    height: 56px;
}

.software__support .wrapper .left h4 {
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 0.01em;
    text-align: left;
    color: #000;
    margin-bottom: 24px;
    font-family: "Poppins", sans-serif;
}

.report__problem .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 40px 24px;
    border-radius: 24px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 99px rgba(44, 44, 44, 0.06);
    box-shadow: 0px 0px 99px rgba(44, 44, 44, 0.06);
    margin: 16px 32px 40px 32px;
}

@media only screen and (max-width: 576px) {
    .report__problem .wrapper {
        padding: 40px 24px;
    }
}

.report__problem .wrapper p {
    font-weight: bold;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    color: #2b2b2b;
    margin-bottom: 32px;
    max-width: 820px;
}

@media only screen and (max-width: 576px) {
    .report__problem .wrapper p {
        font-size: 20px;
    }
}

.report__problem .wrapper a {
    font-weight: bold;
    font-size: 14px;
    text-align: right;
    color: #fff;
    padding: 16px 96px;
    border-radius: 16px;
    background: #9D270D;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

@media only screen and (max-width: 576px) {
    .report__problem .wrapper a {
        padding: 16px;
        width: 100%;
        font-size: 20px;
    }
}

header {
    position: relative;
    padding-top: 16px;
    padding-bottom: 16px;
}

@media only screen and (max-width: 992px) {
    header {
        padding: 20px 0;
        -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    }
}

@media only screen and (max-width: 480px) {
    header {
        padding: 10px 0 !important;
        -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    }
}

header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

header .wrapper .logo {
    display: inline-block;
}

header .wrapper .logo svg {
    height: 42px;
    padding: 5px;
}

@media only screen and (max-width: 1200px) {
    header .wrapper .logo {
        width: 153px;
    }

    header .wrapper .logo svg {
        width: 100%;
    }
}

@media only screen and (max-width: 576px) {
    header .wrapper .logo {
        width: unset;
    }

    header .wrapper .logo svg {
        height: 33px !important;
        width: unset;
    }
}

header .wrapper > nav {
    z-index: 1000;
}

@media only screen and (max-width: 992px) {
    header .wrapper > nav {
        position: absolute;
        right: 0;
        top: 100%;
        width: 100%;
        padding-left: 40px;
        background: #f9f9f9;
        padding-top: 20px;
        padding-bottom: 20px;
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    header .wrapper > nav {
        padding-left: 15px;
    }
}

header .wrapper > nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    header .wrapper > nav > ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

header .wrapper > nav > ul > li {
    margin-left: 56px;
    position: relative;
}

@media only screen and (max-width: 992px) {
    header .wrapper > nav > ul > li {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 600px) {
    header .wrapper > nav > ul > li {
        margin-left: 15px;
    }
}

header .wrapper > nav > ul > li > a {
    font-weight: 400;
    font-size: 0.9rem;
    text-align: left;
    color: #898989;
}

header .wrapper > nav > ul > li:hover .submenu {
    display: block;
}

header .wrapper > nav > ul > li .submenu {
    z-index: 10000;
    display: none;
    padding-top: 5px;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    min-width: 136px;
}

@media only screen and (max-width: 992px) {
    header .wrapper > nav > ul > li .submenu {
        top: 70%;
        left: 0;
        -webkit-transform: unset;
        transform: unset;
    }
}

header .wrapper > nav > ul > li .submenu ul {
    border-radius: 12px;
    background: #fff;
    padding: 15.8px 22.5px 24.7px 19.6px;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
}

header .wrapper > nav > ul > li .submenu ul li {
    margin-bottom: 19.4px;
}

header .wrapper > nav > ul > li .submenu ul li:last-child {
    margin-bottom: 0px;
}

header .wrapper > nav > ul > li .submenu ul li a {
    font-weight: bold;
    font-size: 13px;
    color: #000;
}

header .wrapper > nav > ul > li .submenu__big {
    min-width: 150px !important;
}

header .wrapper > nav > ul > .active a {
    color: #9D270D;
    font-weight: bold;
}

header .wrapper .mobile__menu {
    display: none;
}

header .wrapper .mobile__menu svg {
    height: 14px;
}

@media only screen and (max-width: 992px) {
    header .wrapper .mobile__menu {
        display: block;
    }
}

header .mobile__menu__items {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    top: 0;
    right: 0;
    z-index: 999999;
    padding-top: 29px;
}

header .mobile__menu__items .close__item {
    margin-right: 19px;
}

header .mobile__menu__items .close__item .btn-close {
    background: transparent url("../img/X.svg") no-repeat;
}

header .mobile__menu__items .item__conteiner {
    height: 100vh;
    overflow: auto;
}

header .mobile__menu__items nav {
    margin: 51px 45px 0 51px;
}

header .mobile__menu__items nav > ul > li {
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #969696;
    padding-bottom: 18.8px;
    margin-bottom: 21.2px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.3);
}

header .mobile__menu__items nav > ul > li > a {
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #969696;
}

header .mobile__menu__items nav > ul > li .submenu {
    display: none;
    margin-top: 20px;
    margin-left: 16px;
}

header .mobile__menu__items nav > ul > li .submenu ul li {
    margin-bottom: 15px;
}

header .mobile__menu__items nav > ul > li .submenu ul li a {
    font-weight: normal;
    font-size: 16px;
    line-height: 27px;
    color: #969696;
}

header .mobile__menu__items nav > ul .active {
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    color: #f66200;
}

header .mobile__menu__items nav > ul .active a {
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    color: #f66200;
}

header .mobile__menu__items nav > ul .has__sub {
    position: relative;
}

header .mobile__menu__items nav > ul .has__sub::after {
    position: absolute;
    content: "";
    height: 8.746px;
    width: 5.197px;
    background-image: url("../img/arr.svg");
    background-repeat: no-repeat;
    background-position: center right;
    right: 0;
    top: 3px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

header .mobile__menu__items nav > ul .open__sub::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

header .mobile__menu__items nav > ul .open__sub .submenu {
    display: block !important;
}

@media only screen and (max-width: 576px) {
    footer {
        padding: 0px 16px;
    }
}

footer .warpper {
    padding-top: 40px;
    padding-bottom: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 992px) {
    footer .warpper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 48px;
    }
}

footer .warpper .cantact__us {
    /*width: 30%;*/
    padding-right: 32px;
}

@media only screen and (max-width: 992px) {
    footer .warpper .cantact__us {
        width: 50%;
    }
}

@media only screen and (max-width: 768px) {
    footer .warpper .cantact__us {
        width: 100%;
        padding-right: 0;
        margin-bottom: 32px;
    }
}

footer .warpper .cantact__us h4 {
    margin-bottom: 22.8px;
    font-weight: bold;
    font-size: 18px;
    line-height: 34px;
    text-align: left;
    color: #2b2b2b;
}

@media only screen and (max-width: 576px) {
    footer .warpper .cantact__us h4 {
        font-size: 14px;
        margin-bottom: 18px;
    }
}

footer .warpper .cantact__us ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
}

footer .warpper .cantact__us ul li h6 {
    width: calc(56% - 28px);
    text-align: left;
    margin-bottom: 0;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #2b2b2b;
}

@media only screen and (max-width: 992px) {
    footer .warpper .cantact__us ul li h6 {
        width: calc(100% - 28px);
    }
}

footer .warpper .cantact__us ul li svg {
    margin-top: 1px;
    margin-right: 8px;
}

footer .warpper .follow__us {
    /*width: 30%;*/
    /*padding-right: 32px;*/
}

@media only screen and (max-width: 992px) {
    footer .warpper .follow__us {
        width: 50%;
    }
}

@media only screen and (max-width: 768px) {
    footer .warpper .follow__us {
        width: 100%;
        padding-right: 0;
        margin-bottom: 10px;
    }
}

footer .warpper .follow__us h4 {
    margin-bottom: 8.5px;
    font-weight: bold;
    font-size: 22px;
    line-height: 34px;
    text-align: left;
    color: #2b2b2b;
}
footer  sub{
    font-size:11px;
}
@media only screen and (max-width: 576px) {
    footer .warpper .follow__us h4 {
        font-size: 18px;
        margin-bottom: 18px;
    }
}

footer .warpper .follow__us ul {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-bottom: 0px;
    width: 100%;
    justify-content: space-between;
}

footer .warpper .follow__us ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 48px;
    margin-bottom: 4px;
}

@media only screen and (max-width: 576px) {
    footer .warpper .follow__us ul li a {
        width: 38px;
        height: 38px;
        margin-right: 12px;
    }

    footer .warpper .follow__us ul li a svg {
        height: 15px;
    }
}

footer .warpper .follow__us h6 {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    text-align: left;
    color: #2b2b2b;
    margin-bottom: 28px;
    margin-top: 24px;
}

@media only screen and (max-width: 576px) {
    footer .warpper .follow__us h6 {
        font-size: 14px;
        margin-bottom: 18px;
    }
}

footer .warpper .follow__us .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .warpper .follow__us .items a {
    padding: 8px;
    border-radius: 12px;
    background: #080809;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 8px;
}

footer .warpper .follow__us .items a svg {
    height: 24px;
    max-width: 100px;
}

@media only screen and (max-width: 500px) {
    footer .warpper .follow__us .items a {
        margin-bottom: 8px;
    }
}

footer .warpper .form__box {
    width: 40%;
}

@media only screen and (max-width: 992px) {
    footer .warpper .form__box {
        margin-top: 32px;
        width: 100%;
    }
}

footer .warpper .form__box form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

footer .warpper .form__box form input,
footer .warpper .form__box form textarea {
    border-radius: 5px;
    background: transparent;
    border: 1px solid #b0b0b0;
    padding: 16px 16px;
    margin-bottom: 13px;
}

footer .warpper .form__box form input::-webkit-input-placeholder,
footer .warpper .form__box form textarea::-webkit-input-placeholder {
    font-weight: normal;
    font-size: 16px;
    text-align: left;
    color: #2b2b2b;
}

footer .warpper .form__box form input:-ms-input-placeholder,
footer .warpper .form__box form textarea:-ms-input-placeholder {
    font-weight: normal;
    font-size: 16px;
    text-align: left;
    color: #2b2b2b;
}

footer .warpper .form__box form input::-ms-input-placeholder,
footer .warpper .form__box form textarea::-ms-input-placeholder {
    font-weight: normal;
    font-size: 16px;
    text-align: left;
    color: #2b2b2b;
}

footer .warpper .form__box form input::placeholder,
footer .warpper .form__box form textarea::placeholder {
    font-weight: normal;
    font-size: 16px;
    text-align: left;
    color: #2b2b2b;
}

@media only screen and (max-width: 576px) {
    footer .warpper .form__box form input::-webkit-input-placeholder,
    footer .warpper .form__box form textarea::-webkit-input-placeholder {
        font-size: 14px;
    }

    footer .warpper .form__box form input:-ms-input-placeholder,
    footer .warpper .form__box form textarea:-ms-input-placeholder {
        font-size: 14px;
    }

    footer .warpper .form__box form input::-ms-input-placeholder,
    footer .warpper .form__box form textarea::-ms-input-placeholder {
        font-size: 14px;
    }

    footer .warpper .form__box form input::placeholder,
    footer .warpper .form__box form textarea::placeholder {
        font-size: 14px;
    }
}

footer .warpper .form__box form input[type="text"] {
    width: 40%;
    margin-right: 13px;
}

@media only screen and (max-width: 576px) {
    footer .warpper .form__box form input[type="text"] {
        width: 100%;
        margin-right: 0;
    }
}

footer .warpper .form__box form input[type="email"] {
    width: calc(60% - 13px);
}

@media only screen and (max-width: 576px) {
    footer .warpper .form__box form input[type="email"] {
        width: 100%;
    }
}

footer .warpper .form__box form textarea {
    width: 100%;
    height: 100px;
    padding-top: 24px;
    padding-left: 19px;
}

@media only screen and (max-width: 576px) {
    footer .warpper .form__box form textarea {
        padding-top: 8px;
    }
}

footer .warpper .form__box form button {
    padding: 13px 48px;
    border-radius: 16px;
    background: #9D270D;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: #fff;
    -webkit-box-shadow: 0px 20px 70px rgba(241, 165, 1, 0.15);
    box-shadow: 0px 20px 70px rgba(241, 165, 1, 0.15);
}

@media only screen and (max-width: 576px) {
    footer .warpper .form__box form button {
        font-size: 14px;
    }
}

footer .copyright {
    text-align: center;
    padding-bottom: 32px;
}

@media only screen and (max-width: 576px) {
    footer .copyright {
        padding-bottom: 10px;
    }
}

footer .copyright h6 {
    font-weight: normal;
    font-size: 16px;
    line-height: 17px;
    text-align: center;
    color: #2b2b2b;
    margin: 0;
}

@media only screen and (max-width: 576px) {
    footer .copyright h6 {
        font-size: 12px;
    }
}

/**************index****/
.main .section__1 {
    height: 93vh;
    overflow: hidden;
}

@media screen and (max-width: 480px) {
    .main .section__1 {
        height: auto;
        background: #010001;
    }
}
.main .section__1 video {
    right: 0;
    top: -51.59px;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
}

@media screen and (max-width: 480px) {
    .main .section__1 video {
        right: 0;
        top: 0;
        min-width: 100%;
        min-height: auto;
        width: 100%;
        height: 100%;
        position: relative !important;
    }
}

.main .section__2 {
    background-image: url("/img/B.png");
    background-repeat: repeat;
    background-position: 0px;
    background-size: cover;

}

@media screen and (min-width: 1480px) {
    .main .section__2 {
        background-size: cover;
        padding: 0px !important;
    }
    .main .section__2 .token {
        text-align: right;
    }
}
@media screen and (max-width: 480px) {
    .main .section__2 {
        /*background-image: url("/img/a-mobile.png");*/
        /*background-position: top;*/
        padding: 0px !important;
        /*background-size: cover;*/
    }
}

.main .section__2 .content {
    /*width: 42%;*/
    text-align: justify;
    line-height: 1.5rem;
    font-size: 0.9rem;
    font-weight: 300;
    display: grid;
    grid-template-columns: 43% 50%;
    justify-content: space-between;
    align-items: center;
}

@media screen and (min-width: 1480px) {
    .main .section__2 .content {
        grid-template-columns: 38.5% 50%;
    }

}
@media screen and (max-width: 480px) {
    .main .section__2 .container {
       /*padding-left: 0px !important;*/
       /*padding-right: 0px !important;*/
    }
    .main .section__2 .content {
        width: 100%;
        margin-top: 230px;
        padding: 30px 30px 0px 30px;
        text-align: justify;
        grid-template-columns: 100%;
    }
    .main .section__2 .content  .text{
        order:1;
    }
    .main .section__2 .content h5 {
        text-align: center;
        font-size: 1.4rem;
        line-height: 2.1rem;
    }

    .main .section__2 .content a {
        margin: 3rem;
        width: 70%;
        display: block;
    }
}
@media screen and (min-width: 1400px) and (max-width: 1680px){
    main .section__2 p {
        font-size: 1.3rem;
        line-height: 1.9rem;
    }
}
.main .section__3 {
    display: grid;
    font-size: 1rem;
    grid-template-columns: 50% 50%;
}
.main .section__3 img{
    width:100%;
}
@media screen and (max-width: 480px) {
    .main .section__3 {
        grid-template-columns: 100%;
    }

    .main .section__3 p {
        font-size: 0.8rem;
    }
}
@media screen and (min-width: 1480px) {
    .main .section__3 .position-absolute  {
        padding: 130px !important;
    }
}
.main .section__3 h5 {
    color: white;
}

.main .section__3 button {
    border-radius: 2rem;
    border: 1px solid white;
    padding: 0.5rem 1.3rem;
    color: white;
    font-size: 0.8rem;
    margin: 10px 0px;
}
@media screen and (min-width: 1480px) {
    .main .section__3 button {
        font-size: 1.3rem;
    }
}
.main .section__4 .features {
    align-items: center;
    grid-template-columns: repeat(4, 24%);
    column-gap: 2%;
    justify-content: space-between;
    display: grid;
}

@media screen and (max-width: 480px) {
    .main .section__4{
        padding-bottom: 1.5rem;
    }
    .main .section__4 h4{
        padding-bottom: 1.5rem;
    }
    .main .section__4 .features {
        grid-template-columns: repeat(2, 48%);
    }
}

.main .section__4 .features .item {
    margin: auto;
    text-align: center;
    display: grid;
    /*height: 100px;*/
    justify-items: center;
    width: 100%;
    font-size:15px;
    align-items: end;
    align-content: space-between;
    font-weight: bold;
    position: relative;
    /*display: inline-block;*/
}

.main .section__4 .features .item > .front,
.main .section__4 .features .item > .back {
    display: block;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-duration: 0.5s;
    transition-property: transform, opacity;
}
.main .section__4 .features .item > .back h6{

    line-height: 1.7rem;
}
.main .section__4 .features .item > .front {
    transform: rotateY(0deg);
}

.main .section__4 .features .item > .back {
    position: absolute;
    opacity: 0;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transform: rotateY(-180deg);
}

.main .section__4 .features .item:hover > .front {
    transform: rotateY(180deg);
}

.main .section__4 .features .item:hover > .back {
    opacity: 1;
    transform: rotateY(0deg);
    background: white;
}

.main .section__4 .features .item > .front img{
    width:80px;
}
.main .section__4 .features .item > .front,
.main .section__4 .features .item > .back {
    display: grid;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    color: #363F43;
    width: inherit;
    height: 311px;
    padding: 1em;
    border-radius: 10px;
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: space-evenly;
}

.main .section__4 .features .item > .front p,
.main .section__4 .features .item > .back p {
    font-size: 0.9rem;
    color: #363F43;
    font-weight: 300;
}
@media screen and (min-width: 1681px) {
    .main .section__4 .features .item > .front,
    .main .section__4 .features .item > .back {
        font-size: 1.4rem;
    }
}
@media screen and (min-width: 1400px) {
    .main .section__4 .features .item h6{
        font-size:1.4rem;
    }
    .main .section__4 .features .item > .front,
    .main .section__4 .features .item > .back {
        height: 425px;
        font-size: 1.3rem;
    }
    .main .section__4 .features .item > .front img{
      width:100px;
    }
    .main .section__4 .features .item > .front p,
    .main .section__4 .features .item > .back p {
        font-size:1.3rem;
    }
}
@media screen and (min-width: 1800px) {
    .main .section__4 .features .item h6 {
        font-size: 1.8rem;
        line-height: 2.5rem;
    }
    .main .section__4 .features .item > .front, .main .section__4 .features .item > .back{
        font-size: 1.6rem;
    }
     .main .section__4 .features .item > .back p{
         font-size:1.4rem;
     }
}
@media screen and (max-width: 480px) {
    .main .section__4 .features .item > .front p,
    .main .section__4 .features .item > .back p {
        font-size: 0.7rem;
        color: #000;
        font-weight: 300;
    }
}
.main .section__5 {
    background: linear-gradient(0deg, #EDEDED 64%, #fff 35%);
    position: relative;
}

.main .section__5 .info {
    display: grid;
    grid-template-columns: 50% 50%;
    font-size:17px;
}

.main .section__5 .info ul {
    list-style-type: disc;
    padding-left: 10px;
}

.main .section__5 .info .devices {
    transform: translateY(36px);
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
}

.main .section__5 .tools {
    display: grid;
    grid-template-columns: 17% 17% 17%;
    column-gap: 3%;
    align-items: baseline;
    justify-items: center;
}
.main .section__5 .tools .item{
    justify-items: center;
    font-size:19px;
}
@media screen and (min-width: 1400px) {
    .main .section__5 {
        background: linear-gradient(0deg, #EDEDED 60%, #fff 35%)
    }
    .main .section__5 .tools {
        grid-template-columns: 14% 14% 14%;
    }
    .main .section__5 .tools sub{

    }
    .main .section__5 .info {
        line-height: 2.5rem;
        padding-top: 0px !important;
        font-size:17px;
    }
    .main .section__5 .info .devices {
        transform: translateY(8px);
        position: absolute;
        right: 0;
        bottom: 0;
        width: 45%;
    }
    .main .section__5 .watching h4{
        word-spacing: 1rem;
    }
}
@media screen and (min-width: 1801px) {
    .main .section__5 .info .devices {

        width: 34%;
    }
    .main .section__5 .info {

        font-size:24px;
    }
    .main .section__5 .tools sub{
        font-size:18px;
    }
}
@media screen and (max-width: 480px) {
    .main .section__5 {
        margin-top: 0px !important;
    }

    .main .section__5 .container {
        padding: 0px;
        display: grid;
        justify-items: center;
    }

    .main .section__5 .watching {
        order: 1;
        text-align: center;
    }
    .main .section__5 .watching h4{
        font-weight: bold;
    }
    .main .section__5 .info {
        position: relative;
        height: 586px;
        width: 100%;
        grid-template-columns: 100%;
    }

    .main .section__5 .info .devices {
        top: 0px;
        width: 100%;
    }

    .main .section__5 .info .description {
        transform: translateY(269px);
        font-size: 1rem;
    }

    .main .section__5 .info .description .tools {
        grid-template-columns: repeat(3, 30%);
        justify-items: center;
    }
}

.main .section__6 {
    display: grid;
    grid-template-columns: 32% 27% 32%;
    justify-content: space-between;
    justify-items: center;
    align-items: center;

}
@media screen and (max-width: 480px) {
    .main .section__6 {
        grid-template-columns: repeat(1,1fr);
        justify-items: stretch;
        align-items: center;
    }
    .main .section__6  .start{
        order: 2;
        margin-top: 30px;
    }
    .main .section__6  .middle{
        order: 1;
        text-align: center;
    }
    .main .section__6  .end{
        order: 3;
    }
}
.main .section__6 .left-side {
    display: grid;
    grid-template-columns: 80% 20%;
    line-height: 0.9rem;
    column-gap: 3%;
    align-items: center;
    margin-bottom: 24px;
}

.main .section__6 .left-side img, .main .section__6 .right-side img {
    width:90px;
    height: 90px;
}

.main .section__6 .left-side sub, .main .section__6 .right-side sub {
    text-align: justify;
    text-align-last: left;
    width: 100%;
    display: block;
    line-height: 1.5rem;
    font-size:16px;
}
@media screen and (max-width:1350px){
    .main .section__6 .left-side sub, .main .section__6 .right-side sub {
        font-size: 13px;
    }
}
.main .section__6 .right-side {
    display: grid;
    grid-template-columns: 22% 80%;
    column-gap: 3%;
    line-height: 0.9rem;
    margin-bottom: 24px;
    align-items: center;
}
@media screen and (min-width: 1480px) {
    .main .section__6 .left-side img, .main .section__6 .right-side img {
        width: 90px;
        height: 90px;
    }
}
@media screen and (max-width: 480px) {
    .main .section__6 .left-side,.main .section__6 .right-side {
        grid-template-columns:12% 83%;
    }
    .main .section__6 .left-side .text h6, .main .section__6 .right-side .text h6 {
        text-align: left !important;
        font-weight: bold;
    }
    .main .section__6 .left-side .text {
        order: 2;
    }
    .main .section__6 .left-side .icon {
        order: 1;
    }
}
.main .section__6 .center {
    background: #FFF7EB;
    border-radius: 544px;
    height: 240px;
    padding-top: 19px;
}

.main .section__7 {
    background-image: url("/img/sec7.png");
    background-size: cover;
    background-repeat: no-repeat;
    font-size: 19px;

}

.main .section__7 .position-absolute{
    right: 0px;
    display: flex;
    justify-content: flex-end;
}

.main .section__7 .container{
    display:flex;
    justify-content:space-between;
    align-items: center;
}
.main .section__7 ul {
    list-style-type: disc;
}
@media screen and (min-width: 1400px) {
    .main .section__7 {

    }
}
@media screen and (max-width: 480px) {
    .main .section__7 {
        background-image: url("/img/safe3.png");
        background-position: top;

    }
    .main .section__7 .token{
        grid-template-columns: 100% !important;
        padding: 20px;
        margin-top: 220px;
    }
    .main .section__7 ul{
        grid-template-columns: 100% !important;
        padding: 20px;
    }
}

.main .section__8 {
    background-image: url("/img/design.png");
    background-size: cover;
    background-repeat: no-repeat;
    font-size: 1rem;
    /*background-position-y: -63px;*/

}

.main .section__8 .design {
    display: grid;
    grid-template-columns: 50% 35%;
    justify-content: space-between;
    justify-items: stretch;
    column-gap: 10%;
}
@media screen and (min-width: 1400px) and (max-width: 1680px){
.main .section__8 .design h5 {
    font-size: 1.7rem;
    font-weight: 500;
}
}
@media screen and (max-width: 480px) {
    .main .section__8 {
        background-image: url("/img/design2.png");
        margin: 0px !important;
    }
    .main .section__8 .design {
        grid-template-columns: 100%;
        padding: 30px;
        margin-bottom: 200px;
    }
}
.main .section__8 .design img {
    width: 70px;
}
@media screen and (min-width: 1681px) {
    .main .section__8 h5{
        font-size:1.9rem;
    }
}
@media screen and (min-width: 1480px) {
    .main .section__8 .design {
        /*grid-template-columns: 50% 39%;*/
    }
    .main .section__8 h5{
        font-size:1.7rem;
    }
    .main .section__8 .design img {
        width: 100px;
    }
}
.main .section__9 {
    background-image: url("/img/clexi-app.png");
    background-size: cover;
    background-repeat: no-repeat;
    font-size: 1rem;
    /*background-position-y: -63px;*/

}
@media screen and (max-width: 480px) {
    .main .section__9 {
        background-image: url("/img/clexi-app2.png");
            padding: 0px !important;

    }
    .main .section__9 .container{
        margin: 0px !important;
    }
    .main .section__9 .content {
        width: 78% !important;
    }
    .main .section__9 .content .buttons {
        margin: 0px !important;
    }
}
.main .section__9 button {
    border: 1px solid white;
    background: #080809;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 11px;
    align-items: center;
    display: flex;
    justify-content: space-between;
}
@media screen and (min-width: 1400px) {
    .main .section__9 button {
        font-size: 18px;
        height: 65px;
    }
}
@media screen and (min-width: 1681px) {
    .main .section__9 button {
        font-size: 22px;
    }
}

/*************************8*/
.page__2 .first__section {
    margin: 25px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.page__2 .first__section .left {
    width: 50%;
}

.page__2 .first__section .left img {
    height: 381px;
}

.page__2 .first__section .right {
    width: 50%;
    padding-left: 30px;
}

.page__2 .first__section .right h3 {
    font-weight: bold;
    font-size: 30px;
    line-height: 44px;
    text-align: left;
    color: #000;
    margin-bottom: 24px;
}

.page__2 .first__section .right p {
    font-weight: normal;
    font-size: 18px;
    letter-spacing: 0.03em;
    line-height: 31px;
    text-align: justify;
    color: #343434;
}

@media only screen and (max-width: 992px) {
    .page__2 .first__section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .page__2 .first__section .left {
        width: 100%;
        text-align: center;
    }

    .page__2 .first__section .right {
        width: 100%;
        padding-left: 0;
    }

    .page__2 .first__section .right h3 {
        width: 100%;
    }

    .page__2 .first__section .right p {
        width: 100%;
    }
}

@media only screen and (max-width: 576px) {
    .page__2 .first__section {
        margin-top: 35px;
    }

    .page__2 .first__section .right h3 {
        font-size: 14px;
        text-align: center;
        margin-bottom: 18px;
        line-height: unset;
        margin-top: 40px;
    }

    .page__2 .first__section .right p {
        font-size: 14px;
    }

    .page__2 .first__section .left img {
        height: unset;
        max-width: 100%;
        width: 100%;
    }
}

.page__2 .video__section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.page__2 .video__section .item {
    width: calc(33.33% - 18px);
    padding-bottom: 43px;
    margin: 9px;
    position: relative;
}

.page__2 .play-icon {
    position: absolute;
    margin: auto;
    cursor: pointer;
    left: 0;
    right: 0;
    display: block;
    text-align: center;
}

@media only screen and (max-width: 576px) {
    .page__2 .video__section .item {

        margin-bottom: 37px;
    }
}

@media only screen and (max-width: 992px) {
    .page__2 .video__section .item {
        width: calc(50% - 18px);
    }
}

@media only screen and (max-width: 576px) {
    .page__2 .video__section .item {
        width: 100%;
        margin: 9px 0;
    }
}

.page__2 .video__section .item video {
    width: 100%;
    height: 205px;
    -o-object-fit: cover;
    object-fit: cover;
    border: 1px solid #707070;
    border-radius: 12px;
}

@media only screen and (max-width: 576px) {
    .page__2 .video__section .item video {
        height: 220px;
    }
}

.page__2 .video__section .item h5 {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.01em;
    text-align: center;
    color: #000;
    margin-top: 16px;
    margin-bottom: 0;
}

@media only screen and (max-width: 576px) {
    .page__2 .video__section .item h5 {
        font-size: 15px;
    }
}

.page__3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 67px;
}

.page__3 .left {
    width: 50%;
    text-align: left;
    overflow-x: hidden;
}

.page__3 .left img {
    height: 663px;
    margin-left: -50px;
}

@media only screen and (max-width: 1100px) {
    .page__3 .left img {
        height: 570px;
    }
}

@media only screen and (max-width: 992px) {
    .page__3 .left img {
        height: unset;
    }
}

.page__3 .right {
    width: calc(35% + 50px);
}

@media only screen and (max-width: 1300px) {
    .page__3 .right {
        width: 50%;
        padding-right: 40px;
    }
}

.page__3 .right h3 {
    font-weight: bold;
    font-size: 30px;
    line-height: 44px;
    text-align: left;
    color: #000;
    margin-bottom: 34px;
}

@media only screen and (max-width: 450px) {
    .page__3 .right h3 {
        text-align: center;
        font-size: 14px;
        margin-bottom: 18px;
        line-height: unset;
    }
}

.page__3 .right p {
    font-weight: normal;
    font-size: 18px;
    letter-spacing: 0.01em;
    line-height: 32px;
    text-align: justify;
    color: #343434;
    margin-bottom: 63px;
}

@media only screen and (max-width: 450px) {
    .page__3 .right p {
        font-size: 14px;
    }
}

.page__3 .right .btns h6 {
    margin-bottom: 17px;
    font-weight: bold;
    font-size: 20px;
    text-align: left;
    color: #000;
}

@media only screen and (max-width: 450px) {
    .page__3 .right .btns h6 {
        font-size: 14px;
    }
}

.page__3 .right .btns .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.page__3 .right .btns .items a {
    width: 181.06px;
    height: 59.39px;
    border-radius: 17.5px;
    background: #080809;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 8px;
}

.page__3 .right .btns .items a:first-child {
    margin-right: 13px;
}

@media only screen and (max-width: 420px) {
    .page__3 .right .btns .items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .page__3 .right .btns .items a {
        width: 100%;
    }

    .page__3 .right .btns .items a:first-child {
        margin-right: 0px;
    }
}

@media only screen and (max-width: 992px) {
    .page__3 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 0px;
    }

    .page__3 .left {
        width: 100%;
    }

    .page__3 .left img {
        height: unset;
        max-width: 100%;
    }

    .page__3 .right {
        width: 100%;
        padding-right: 0;
        padding: 24px;
        margin: 0;
    }

    .page__3 .right .btns h6 {
        font-size: 14px;
        text-align: center;
        margin-bottom: 18px;
        width: 100%;
    }
}

@media only screen and (max-width: 576px) {
    .page__3 {
        margin-bottom: 30px;
    }

    .page__3 .right h3 {
        text-align: center;
        font-size: 14px;
        margin-bottom: 18px;
    }

    .page__3 .right p {
        font-size: 14px;
    }

    .page__3 .right .btns h6 {
        font-size: 14px;
        text-align: center;
        margin-bottom: 18px;
        width: 100%;
    }
}

.page__4 .first__section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 93px;
}

.page__4 .first__section .left {
    width: 50%;
    padding-right: 24px;
}

.page__4 .first__section .left h3 {
    font-weight: bold;
    font-size: 30px;
    line-height: 44px;
    text-align: left;
    color: #000;
    margin-bottom: 33px;
}

.page__4 .first__section .left p {
    font-weight: normal;
    font-size: 18px;
    line-height: 31px;
    text-align: justify;
    color: #343434;
    margin-bottom: 0;
}

.page__4 .first__section .right {
    width: 50%;
    text-align: right;
}

.page__4 .first__section .right img,
.page__4 .first__section .right svg {
    height: 450px;
}

@media only screen and (max-width: 1300px) {
    .page__4 .first__section .right img,
    .page__4 .first__section .right svg {
        height: 400px;
    }
}

@media only screen and (max-width: 576px) {
    .page__4 .first__section .right img,
    .page__4 .first__section .right svg {
        height: 230px;
    }
}

@media only screen and (max-width: 992px) {
    .page__4 .first__section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin-bottom: 16px;
        margin-top: 0px;
    }

    .page__4 .first__section .left {
        width: 100%;
        padding-right: 0;
    }

    .page__4 .first__section .right {
        width: 100%;
        text-align: center;
        margin-top: 24px;
    }

    .page__4 .first__section .right svg,
    .page__4 .first__section .right img {
        max-width: 100%;
        max-height: 100%;
    }
}

@media only screen and (max-width: 576px) {
    .page__4 .first__section .right svg,
    .page__4 .first__section .right img {
        width: 100%;
        height: unset;
        margin-bottom: 18px;
    }

    .page__4 .first__section .left h3 {
        font-size: 14px;
        text-align: center;
        margin-bottom: 18px;
    }

    .page__4 .first__section .left p {
        font-size: 14px;
    }
}

.page__4 .second__section h3 {
    font-weight: bold;
    font-size: 25px;
    letter-spacing: 0.01em;
    line-height: 45px;
    text-align: left;
    color: #343434;
    margin-bottom: 30px;
}

@media only screen and (max-width: 576px) {
    .page__4 .second__section h3 {
        font-size: 14px;
        text-align: center;
        margin-bottom: 28px;
    }
}

.page__4 .second__section .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.page__4 .second__section .items .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    margin-bottom: 40px;
}

@media only screen and (max-width: 992px) {
    .page__4 .second__section .items .item {
        width: 100%;
        margin-bottom: 30px;
    }
}

.page__4 .second__section .items .item picture {
    width: 105px;
    height: 105px;
    border-radius: 12px;
    background: transparent;
    border: 2px solid #707070;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.page__4 .second__section .items .item picture img,
.page__4 .second__section .items .item picture svg {
    height: 77px;
}

@media only screen and (max-width: 768px) {
    .page__4 .second__section .items .item picture {
        height: 68px;
        width: 68px;
    }

    .page__4 .second__section .items .item picture img,
    .page__4 .second__section .items .item picture svg {
        height: 50px;
    }
}

.page__4 .second__section .items .item h5 {
    width: calc(100% - 105px);
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    font-size: 18px;
    letter-spacing: 0.01em;
    line-height: 31px;
    text-align: justify;
    color: #343434;
    padding-right: 90px;
}

@media only screen and (max-width: 1200px) {
    .page__4 .second__section .items .item h5 {
        padding-right: 40px;
    }
}

@media only screen and (max-width: 992px) {
    .page__4 .second__section .items .item h5 {
        padding-right: 0;
    }
}

@media only screen and (max-width: 768px) {
    .page__4 .second__section .items .item h5 {
        font-size: 14px;
        padding-left: 13.5px;
        line-height: 19px;
        width: calc(100% - 82px);
    }
}

.page__4 .gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 51px;
    border-top: 1.5px solid #e4e4e4;
    margin-bottom: 30px;
}

@media only screen and (max-width: 576px) {
    .page__4 .gallery {
        -ms-flex-wrap: unset;
        flex-wrap: unset;
        overflow-x: scroll;
    }
}

.page__4 .gallery .item {
    width: calc(33.33% - 16px);
    height: 207px;
    border-radius: 12px;
    border: 1px solid #707070;
    margin: 8px;
    overflow: hidden;
    cursor: pointer;
}

.page__4 .gallery .item:first-child {
    margin-left: 0;
}

.page__4 .gallery .item:last-child {
    margin-right: unset;
}

.page__4 .gallery .item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (max-width: 992px) {
    .page__4 .gallery .item {
        width: calc(50% - 18px);
        margin: 9px;
    }

    .page__4 .gallery .item:first-child {
        margin-left: 9px;
    }
}

@media only screen and (max-width: 576px) {
    .page__4 .gallery .item {
        width: 100%;
        margin: 9px 0;
        min-width: 265px;
        margin-right: 16px;
        height: 159px;
    }

    .page__4 .gallery .item:first-child {
        margin-left: unset;
    }
}

@media only screen and (max-width: 576px) {
    .page__4 .gallery .item {
        min-width: 265px;
        margin-right: 16px;
        height: 159px;
    }
}

.image__container {
    position: relative;
}

.image__container .btn-close {
    position: absolute;
    right: 17px;
    top: 13px;
}

@media only screen and (max-width: 768px) {
    .image__container .btn-close {
        right: 52px;
    }
}

@media only screen and (max-width: 576px) {
    .image__container .btn-close {
        right: 40px;
    }
}

@media only screen and (max-width: 430px) {
    .image__container .btn-close {
        right: 30px;
    }
}

.overlay__gallery {
    z-index: 10;
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    background: #6b6b6c;
    opacity: 0.46;
}

.overlay__gallery__active {
    display: block;
}

.image__box {
    z-index: 11;
    position: fixed;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    top: 10%;
}

@media only screen and (max-width: 768px) {
    .image__box {
        width: 100vw;
        text-align: center;
    }
}

.image__box img {
    border-radius: 14px;
    max-width: 100%;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .image__box img {
        width: 90vw;
    }
}

.page__6 .first__section {
    display: grid;
    grid-template-columns: 40% 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.page__6 .first__section .left {
    /*width: 50%;*/
    padding-left: 24px;
}

.page__6 .first__section .left h3 {
    font-weight: bold;
    font-size: 30px;
    line-height: 44px;
    text-align: left;
    color: #000;
    margin-bottom: 29px;
}

.page__6  p {
    font-weight: normal;
    font-size: 0.9rem;
    line-height: 31px;
    text-align: justify;
    color: #343434;
    margin-bottom: 0;
}

.page__6 .first__section .right {
    /*width: 50%;*/
    text-align: left;
}

.page__6 .first__section .right img,
.page__6 .first__section .right svg {
    height: 400px;
}

@media only screen and (max-width: 1300px) {
    .page__6 .first__section .right img,
    .page__6 .first__section .right svg {
        height: 373px;
    }
}

@media only screen and (max-width: 576px) {
    .page__6 .first__section{
        grid-template-columns: 100%;
    }
    .page__6 .first__section .right img,
    .page__6 .first__section .right svg {
        height: unset;
        width: 100%;
    }
}

@media only screen and (max-width: 992px) {
    .page__6 .first__section {
        flex-direction: column;
        margin-bottom: 16px;
        margin-top: 0px;
    }

    .page__6 .first__section .left {
        width: 100%;
        padding-left: 0;
    }

    .page__6 .first__section .right {
        width: 100%;
        text-align: center;
        margin-top: 0px;
    }

    .page__6 .first__section .right svg,
    .page__6 .first__section .right img {
        max-width: 100%;
        max-height: 100%;
    }
}

@media only screen and (max-width: 576px) {
    .page__6 .first__section {
        margin-top: 34px;
    }

    .page__6 .first__section .right {
        margin-top: 10px;
    }

    .page__6 .first__section .right img,
    .page__6 .first__section .right svg {
        height: unset;
        width: 95%;
        margin-bottom: 18px;
    }

    .page__6 .first__section .left h3 {
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

    .page__6 .first__section .left p {
        font-size: 14px;
    }
}

.page__6 .second__section p {
    text-align: justify;
    color: #343434;
    margin-bottom: 70px;
    margin-top: 18px;
}

@media only screen and (max-width: 576px) {
    .page__6 .second__section p {
        font-size: 14px;
        margin-top: 18px;
    }
}
@media only screen and (min-width: 1400px) {
    .page__6 .first__section {
        /*width: 71%;*/
        margin: auto;
        grid-template-columns: 40% 60%;
    }
    .page__6 .second__section{
        margin:auto;
        /*width:71%;*/
    }
    .page__6 .second__section p {
        font-size: 1.3rem;
        line-height:2rem;
        font-weight:300;

        margin-top: 18px;
    }
    .page__6 .first__section .left{
        /*width: 66%;*/
    }
    .page__6 .first__section .left p {
        font-size: 1.3rem;
        line-height:2rem;
        font-weight:300;

    }
}
@media only screen and (min-width: 1680px) {
    .page__6 .first__section {
        width: 85%;
        margin: auto;
        grid-template-columns: 39% 60%;
    }
    .page__6 .second__section {
        width: 85%;
    }
}
.page__7 .first__section {
    display: grid;
    grid-template-columns: 43% 55%;
    justify-content: space-between;
    margin-top: 93px;

}

.page__7 .first__section .left {
    /*padding-right: 24px;*/
    text-align: left;
}

.page__7 .first__section .right h3 {
    font-weight: bold;
    font-size: 25px;
    line-height: 31px;
    padding-bottom: 3px;
    text-align: left;
    color: #363F43;
}
@media (min-width: 2000px) {
    .page__7 .first__section .right h3{
        padding-bottom: 40px;
    }
}
.page__7  p {
    font-weight: normal;
    font-size: 0.9rem;
    line-height: 1.7rem;
    text-align: justify;
    color: #343434;
    margin-bottom: 0;
}

@media only screen and (max-width: 576px) {
    .page__7 .first__section .right h3 {
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

    .page__7 .first__section .right p {
        font-size: 14px;
    }
}

.page__7 .first__section .left {
    text-align: left;
}

.page__7 .first__section .left img,
.page__7 .first__section .left svg {
    /*height: 400px;*/
}

@media only screen and (max-width: 1300px) {
    .page__7 .first__section .left img,
    .page__7 .first__section .left svg {
        /*height: 340px;*/
    }
}

@media only screen and (max-width: 576px) {
    .page__7 .first__section .left img,
    .page__7 .first__section .left svg {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 992px) {
    .page__7 .first__section {
        grid-template-columns: 95%;
        margin-bottom: 16px;
        justify-content: center;
        margin-top: 20px;
    }

    .page__7 .first__section .right {
        width: 100%;
        padding-right: 0;
    }

    .page__7 .first__section .left {
        width: 100%;
        text-align: center;
        margin-top: 0px;
    }

    .page__7 .first__section .left svg,
    .page__7 .first__section .left img {
        max-width: 100%;
        max-height: 100%;
    }
}

.page__7 .second__section  {

    margin-bottom: 54px;
    margin-top: 20px;
}

@media only screen and (max-width: 576px) {
    .page__7 .second__section p {
        font-size: 14px;
        font-weight: normal;
    }
}

.page__7 .third__section {

    margin-bottom: 60px;
    background: #F7F7F7;
    padding: 30px;
    border-radius: 20px;

}

@media only screen and (max-width: 576px) {
    .page__7 .third__section {
        margin-bottom: 36px;
    }
}

.page__7 .third__section h4 {
    line-height: 32px;
    text-align: left;
    color: #343434;
    font-size: 1.5rem;
    margin-bottom: 22px;
}

@media only screen and (max-width: 576px) {
    .page__7 .third__section h3 {
        font-size: 14px;
        line-height: 21px;
    }
}

.page__7 .third__section ul li {
    font-weight: normal;
    font-size: 0.9rem;
    line-height: 25px;
    text-align: left;
    color: #343434;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

@media only screen and (max-width: 576px) {
    .page__7 .third__section ul li {
        font-size: 14px;
        font-weight: normal;
    }
}

.page__7 .third__section ul li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 10px;
}

.page__8 {
    margin-top: 93px;
    margin-bottom: 80px;
}
@media (min-width: 1400px){
    .page__7 p{
        font-weight: 300;
        font-size:1.3rem;
        line-height: 2rem;
        text-align: justify;
        color: #343434;
    }
    .page__7 .third__section ul li {
        font-weight: 300;
        font-size: 1.3rem;
        line-height: 2rem;
        text-align: left;
        color: #343434;
        padding-left: 20px;
        position: relative;
        margin-bottom: 8px;
    }
}
@media only screen and (max-width: 576px) {
    .page__8 {
        margin-top: 40px;
        margin-bottom: 30px;
    }
}

.page__8 h3 {
    font-weight: bold;
    font-size: 30px;
    line-height: 44px;
    text-align: left;
    color: #000;
    margin-bottom: 45px;
}

@media only screen and (max-width: 576px) {
    .page__8 h3 {
        font-size: 14px;
        margin-bottom: 28px;
        line-height: unset;
        text-align: center;
    }
}

.page__8 .download__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.page__8 .download__box a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 45px;
    padding-right: 24px;
    border-radius: 20px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
    margin-bottom: 26px;
}

.page__8 .download__box a .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% - 82px);
}

.page__8 .download__box a .item span {
    font-weight: 600;
    font-size: 25px;
    line-height: 34px;
    text-align: left;
    color: #252425;
    margin-left: 19px;
}

@media only screen and (max-width: 576px) {
    .page__8 .download__box a .item span {
        font-size: 9px;
    }
}

.page__8 .download__box a small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 82.14px;
    height: 82.14px;
    border-radius: 12px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.09);
}

@media only screen and (max-width: 576px) {
    .page__8 .download__box a {
        padding: 24px;
    }

    .page__8 .download__box a .item svg {
        height: 40px;
    }

    .page__8 .download__box a .item span {
        font-size: 18px;
        margin-left: 8px;
    }

    .page__8 .download__box a small {
        width: 60px;
        height: 60px;
    }
}

@media only screen and (max-width: 576px) {
    .page__8 .download__box a {
        padding: 12px;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .page__8 .download__box a .item svg {
        height: 23px;
        width: unset;
    }

    .page__8 .download__box a .item span {
        font-size: 9px;
    }

    .page__8 .download__box a small {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .page__8 .download__box a small svg {
        height: 9px;
    }
}

.page__9 {
    margin-top: 93px;
    margin-bottom: 78px;
}

@media only screen and (max-width: 576px) {
    .page__9 {
        margin: 0px 0;
        margin-top: 20px;
        margin-bottom: 30px;
    }
}

.page__9 .first__section h3 {
    font-weight: bold;
    font-size: 30px;
    line-height: 44px;
    text-align: left;
    color: #000;
    margin-bottom: 65px;
    padding-left: 13px;
}

@media only screen and (max-width: 768px) {
    .page__9 .first__section h3 {
        margin-bottom: 18px;
    }
}

@media only screen and (max-width: 576px) {
    .page__9 .first__section h3 {
        display: none;
    }
}

.page__9 .first__section .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.page__9 .first__section .items .item {
    width: calc(33.33% - 27px);
    height: 180px;
    border-radius: 20px;
    background-color: #e4e4e4;
    position: relative;
    padding-top: 45px;
    margin: 13px;
}

@media only screen and (max-width: 992px) {
    .page__9 .first__section .items .item {
        width: calc(50% - 27px);
    }
}

@media only screen and (max-width: 768px) {
    .page__9 .first__section .items .item {
        width: 100%;
        margin: 13px 0;
    }
}

@media only screen and (max-width: 567px) {
    .page__9 .first__section .items .item {
        width: 100%;
        margin: 20px;
    }
}

.page__9 .first__section .items .item .discount {
    position: absolute;
    top: -24px;
    left: -24px;
    z-index: 1;
}

@media only screen and (max-width: 576px) {
    .page__9 .first__section .items .item .discount {
        top: -18px;
        left: -18px;
    }
}

.page__9 .first__section .items .item .price__box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #f8f7f7;
    width: calc(100% - 200px);
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 24px;
}

@media only screen and (max-width: 1400px) {
    .page__9 .first__section .items .item .price__box {
        width: calc(100% - 150px);
    }
}

@media only screen and (max-width: 1200px) {
    .page__9 .first__section .items .item .price__box {
        width: calc(100% - 135px);
    }
}

.page__9 .first__section .items .item .price__box::before {
    position: absolute;
    content: "";
    top: 0;
    right: -40px;
    width: 0;
    height: 0;
    border-top: 75px solid #f8f7f7;
    border-right: 40px solid transparent;
}

.page__9 .first__section .items .item .price__box .price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
}

.page__9 .first__section .items .item .price__box .price h6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
    font-size: 39px;
    line-height: 23px;
    text-align: center;
    color: #000;
    margin-bottom: 8px;
    margin-right: 16px;
}

.page__9 .first__section .items .item .price__box .price h6 small {
    font-weight: 500;
    font-size: 16px;
    line-height: 15px;
    text-align: center;
    color: #000;
    margin-right: 9px;
}

.page__9 .first__section .items .item .price__box .price span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 9px;
    font-weight: 500;
}

.page__9 .first__section .items .item .price__box .price span strong {
    font-size: 12px;
    margin-left: 4px;
}

.page__9 .first__section .items .item .price__box h5 {
    font-weight: 500;
    font-size: 19px;
    line-height: 12px;
    text-align: left;
    color: #707070;
    margin-bottom: 0;
}

.page__9 .first__section .items .item .old__price {
    padding-left: 24px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: -0.01em;
    line-height: 12px;
    text-align: left;
    color: #e30404;
    text-decoration: line-through;
    margin-top: 12px;
}

.page__9 .first__section .items .item .product__image {
    position: absolute;
    top: 20px;
    right: 37px;
}

@media only screen and (max-width: 1400px) {
    .page__9 .first__section .items .item .product__image {
        top: 30px;
        right: 7px;
        height: 130px;
    }
}

@media only screen and (max-width: 1200px) {
    .page__9 .first__section .items .item .product__image {
        top: 33px;
        right: 18px;
        height: 114px;
    }
}

.page__9 .buy__now {
    width: 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 72px;
}

@media only screen and (max-width: 576px) {
    .page__9 .buy__now {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

.page__9 .buy__now a {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    color: #fff;
    width: 150px;
    height: 55px;
    border-radius: 8px;
    background: #9D270D;
    -webkit-box-shadow: 0px 10px 30px rgba(241, 165, 1, 0.15);
    box-shadow: 0px 10px 30px rgba(241, 165, 1, 0.15);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.about .first__section{
    grid-template-columns: 49% 48%;
    margin-top: 40px;
    justify-content: space-between;
}
@media only screen and (min-width: 1480px){
    .about .first__section{
        grid-template-columns: 49% 44%;
    }
}
@media only screen and (max-width: 480px) {
    .about .first__section{
        grid-template-columns: 100%;
        margin-top: 93px;
        justify-content: space-between;
    }
}
.page__11 {
    margin-top: 90px;
    margin-bottom: 115px;
}

@media only screen and (max-width: 768px) {
    .page__11 {
        margin-top: 40px;
    }
}

.page__11 .main__content .first__section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 60px;
}

@media only screen and (max-width: 768px) {
    .page__11 .main__content .first__section {
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    }
}

.page__11 .main__content .first__section .left {
    width: 50%;
}

@media only screen and (max-width: 992px) {
    .page__11 .main__content .first__section .left {
        width: 70%;
    }
}

@media only screen and (max-width: 768px) {
    .page__11 .main__content .first__section .left {
        width: 100%;
    }
}

.page__11 .main__content .first__section .left h3 {
    font-weight: bold;
    font-size: 30px;
    text-align: left;
    color: #000;
    margin-bottom: 37px;
}

@media only screen and (max-width: 576px) {
    .page__11 .main__content .first__section .left h3 {
        font-size: 14px;
        text-align: center;
        margin-bottom: 18px;
        margin-top: 20px;
    }
}

.page__11 .main__content .first__section .left p {
    font-weight: normal;
    font-size: 18px;
    letter-spacing: 0.01em;
    line-height: 24px;
    text-align: justify;
    color: #000;
    margin-bottom: 47px;
}

@media only screen and (max-width: 576px) {
    .page__11 .main__content .first__section .left p {
        font-size: 14px;
        margin-bottom: 26px;
    }
}

.page__11 .main__content .first__section .left form .form__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.page__11 .main__content .first__section .left form .form__content input {
    height: 66.55px;
    border-radius: 12px;
    background: #fbfbfb;
    border: 1px solid #b0b0b0;
    padding-left: 19px;
    margin-bottom: 12px;
}

@media only screen and (max-width: 576px) {
    .page__11 .main__content .first__section .left form .form__content input {
        height: 48px;
    }
}

.page__11 .main__content .first__section .left form .form__content input::-webkit-input-placeholder {
    font-weight: normal;
    font-size: 15px;
    text-align: left;
    color: #2b2b2b;
}

.page__11 .main__content .first__section .left form .form__content input:-ms-input-placeholder {
    font-weight: normal;
    font-size: 15px;
    text-align: left;
    color: #2b2b2b;
}

.page__11 .main__content .first__section .left form .form__content input::-ms-input-placeholder {
    font-weight: normal;
    font-size: 15px;
    text-align: left;
    color: #2b2b2b;
}

.page__11 .main__content .first__section .left form .form__content input::placeholder {
    font-weight: normal;
    font-size: 15px;
    text-align: left;
    color: #2b2b2b;
}

@media only screen and (max-width: 576px) {
    .page__11 .main__content .first__section .left form .form__content input::-webkit-input-placeholder {
        font-size: 12px;
    }

    .page__11 .main__content .first__section .left form .form__content input:-ms-input-placeholder {
        font-size: 12px;
    }

    .page__11 .main__content .first__section .left form .form__content input::-ms-input-placeholder {
        font-size: 12px;
    }

    .page__11 .main__content .first__section .left form .form__content input::placeholder {
        font-size: 12px;
    }
}

.page__11 .main__content .first__section .left form .form__content input[type="text"] {
    width: calc(40% - 12px);
    margin-right: 12px;
}

@media only screen and (max-width: 576px) {
    .page__11 .main__content .first__section .left form .form__content input[type="text"] {
        width: 100%;
        margin-right: 0;
    }
}

.page__11 .main__content .first__section .left form .form__content input[type="email"] {
    width: 60%;
}

@media only screen and (max-width: 576px) {
    .page__11 .main__content .first__section .left form .form__content input[type="email"] {
        width: 100%;
        margin-right: 0;
    }
}

.page__11 .main__content .first__section .left form .form__content textarea {
    width: 100%;
    height: 114.24px;
    border-radius: 12px;
    background: #fbfbfb;
    border: 1px solid #b0b0b0;
    padding: 19px;
    margin-bottom: 15px;
}

.page__11 .main__content .first__section .left form .form__content textarea::-webkit-input-placeholder {
    font-weight: normal;
    font-size: 15px;
    text-align: left;
    color: #2b2b2b;
}

.page__11 .main__content .first__section .left form .form__content textarea:-ms-input-placeholder {
    font-weight: normal;
    font-size: 15px;
    text-align: left;
    color: #2b2b2b;
}

.page__11 .main__content .first__section .left form .form__content textarea::-ms-input-placeholder {
    font-weight: normal;
    font-size: 15px;
    text-align: left;
    color: #2b2b2b;
}

.page__11 .main__content .first__section .left form .form__content textarea::placeholder {
    font-weight: normal;
    font-size: 15px;
    text-align: left;
    color: #2b2b2b;
}

@media only screen and (max-width: 576px) {
    .page__11 .main__content .first__section .left form .form__content textarea::-webkit-input-placeholder {
        font-size: 12px;
    }

    .page__11 .main__content .first__section .left form .form__content textarea:-ms-input-placeholder {
        font-size: 12px;
    }

    .page__11 .main__content .first__section .left form .form__content textarea::-ms-input-placeholder {
        font-size: 12px;
    }

    .page__11 .main__content .first__section .left form .form__content textarea::placeholder {
        font-size: 12px;
    }
}

.page__11 .main__content .first__section .left form .form__content .captcha__input {
    width: 100% !important;
    margin: 0;
    margin-left: 1%;
}

.page__11 .main__content .first__section .left form .form__content .captcha__box {
    display: block;
    width: 100%;
    margin-bottom: 21px;
}

.page__11 .main__content .first__section .left form .form__content .captcha__box img {
    width: 33%;
    height: 22vh;
    border-radius: 12px;
    border: 1px solid #b0b0b0;
}

.page__11 .main__content .first__section .left form .form__content .submit__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.page__11 .main__content .first__section .left form .form__content .submit__btn span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.page__11 .main__content .first__section .left form .form__content .submit__btn span small {
    width: 24px;
    height: 24px;
    border-radius: 24px;
    font-size: 12px;
    color: white;
    padding: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 8px;
}

.page__11 .main__content .first__section .left form .form__content .submit__btn button {
    margin-right: 16px;
    font-weight: bold;
    font-size: 18px;
    text-align: right;
    color: #fff;
    padding: 16px 60px;
    border-radius: 15px;
    background: #9D270D;
    text-align: center;
}

@media only screen and (max-width: 576px) {
    .page__11 .main__content .first__section .left form .form__content .submit__btn button {
        padding: 13px 60px;
        margin-right: 10px;
        margin-bottom: 8px;
        font-size: 15px;
    }
}

.page__11 .main__content .first__section .right {
    width: 50%;
    text-align: center;
}

.page__11 .main__content .first__section .right img {
    max-width: 100%;
    height: unset;
}

@media only screen and (max-width: 992px) {
    .page__11 .main__content .first__section .right {
        width: 30%;
    }
}

@media only screen and (max-width: 768px) {
    .page__11 .main__content .first__section .right {
        width: 100%;
        text-align: center;
    }

    .page__11 .main__content .first__section .right img {
        height: 200px;
    }
}

@media only screen and (max-width: 576px) {
    .page__11 .main__content .first__section .right {
        text-align: center;
        margin-bottom: 16px;
    }

    .page__11 .main__content .first__section .right img {
        width: 100%;
        height: unset;
    }
}

.page__11 .main__content .second__section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px;
    border-radius: 30px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 40px rgba(44, 44, 44, 0.11);
    box-shadow: 0px 0px 40px rgba(44, 44, 44, 0.11);
    margin-bottom: 66px;
}

@media only screen and (max-width: 992px) {
    .page__11 .main__content .second__section {
        padding: 24px;
    }
}

.page__11 .main__content .second__section p {
    font-weight: 500;
    font-size: 18px;
    line-height: 31px;
    text-align: center;
    color: #2b2b2b;
    width: 100%;
    max-width: 528px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 576px) {
    .page__11 .main__content .second__section p {
        font-size: 14px;
        font-weight: normal;
    }
}

.page__11 .main__content .second__section button {
    border-radius: 15px;
    background: #9D270D;
    -webkit-box-shadow: 0px 10px 30px rgba(241, 165, 1, 0.15);
    box-shadow: 0px 10px 30px rgba(241, 165, 1, 0.15);
    padding: 16px 40px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    color: #fff;
}

@media only screen and (max-width: 576px) {
    .page__11 .main__content .second__section button {
        font-size: 15px;
        padding: 13px 40px;
    }
}

.page__11 .main__content .third__section h6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 13px;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 21px;
    text-align: left;
    color: #2b2b2b;
}

@media only screen and (max-width: 576px) {
    .page__11 .main__content .third__section h6 {
        -webkit-box-align: unset;
        -ms-flex-align: unset;
        align-items: unset;
    }
}

@media only screen and (max-width: 375px) {
    .page__11 .main__content .third__section h6 {
        font-size: 14px;
    }
}

.page__11 .main__content .third__section h6 svg {
    margin-right: 9px;
}

.page__11 .main__content .third__section .social__network {
    margin-top: 27px;
}

.page__11 .main__content .third__section .social__network ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.page__11 .main__content .third__section .social__network ul li {
    margin-right: 12px;
}

.page__11 .main__content .third__section .social__network ul li a {
    width: 38.29px;
    height: 38.29px;
    background: #fff;
    -webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50px;
}

.page__12 {
    margin-top: 45px;
}

@media only screen and (max-width: 576px) {
    .page__12 {
        margin-top: 37.2px;
    }
}

.page__12 .page__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 31.6px;
    margin-bottom: 46px;
    border-bottom: 1px solid #e4e4e4;
}

@media only screen and (max-width: 576px) {
    .page__12 .page__header {
        padding-bottom: 12px;
        margin-bottom: 28px;
        margin-left: 8%;
        margin-right: 8%;
    }
}

.page__12 .page__header h5 {
    font-weight: bold;
    font-size: 30px;
    line-height: 44px;
    text-align: left;
    color: #000;
    margin-bottom: 0;
}

@media only screen and (max-width: 576px) {
    .page__12 .page__header h5 {
        font-size: 14px;
    }
}

.page__12 .page__header .result {
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    text-align: left;
    color: #000;
    opacity: 0.51;
}

@media only screen and (max-width: 576px) {
    .page__12 .page__header .result {
        font-size: 10px;
    }
}

.page__12 .items .item {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 40.1px;
    margin-bottom: 31.9px;
}

@media only screen and (max-width: 576px) {
    .page__12 .items .item {
        padding-bottom: 16px;
        margin-bottom: 29px;
    }
}

.page__12 .items .item:last-child {
    border-bottom: none;
}

.page__12 .items .item .pic {
    display: block;
    max-width: 395.13px;
    border-radius: 20px;
}

@media only screen and (max-width: 992px) {
    .page__12 .items .item .pic {
        max-width: 100%;
        width: 100%;
        margin-bottom: 8px;
    }
}

.page__12 .items .item .pic img {
    width: 100%;
    border-radius: 20px;
}

@media only screen and (max-width: 576px) {
    .page__12 .items .item .pic img {
        height: 250px;
    }
}

@media only screen and (max-width: 500px) {
    .page__12 .items .item .pic img {
        height: 230px;
    }
}

@media only screen and (max-width: 480px) {
    .page__12 .items .item .pic img {
        height: 200px;
    }
}

@media only screen and (max-width: 430px) {
    .page__12 .items .item .pic img {
        height: 180px;
    }
}

@media only screen and (max-width: 390px) {
    .page__12 .items .item .pic img {
        height: 150px;
    }
}

@media only screen and (max-width: 360px) {
    .page__12 .items .item .pic img {
        height: 120px;
    }
}

.page__12 .items h3 {
    margin-top: 14px;
    font-weight: bold;
    font-size: 28px;
    line-height: 31px;
    text-align: left;
    margin-bottom: 16.5px;
}

@media only screen and (max-width: 576px) {
    .page__12 .items h3 {
        font-size: 14px;
        margin-bottom: 9px;
        line-height: 17px;
        text-align: justify;
    }
}

.page__12 .items h3 a {
    color: #222224;
}

.page__12 .items p {
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    text-align: justify;
    color: #2d2d2d;
    opacity: 0.8;
}

@media only screen and (max-width: 576px) {
    .page__12 .items p {
        font-size: 14px;
        font-weight: normal;
        line-height: 1.5;
        margin: 0;
    }
}

.faq__page {
    padding-bottom: 89.8px;
}

@media only screen and (max-width: 576px) {
    .faq__page {
        padding-bottom: 50px;
    }
}

.faq__page .header__page {
    margin-top: 105.9px;
    margin-bottom: 69.2px;
}

@media only screen and (max-width: 576px) {
    .faq__page .header__page {
        margin-top: 30px;
        margin-bottom: 16px;
    }
}

.faq__page .header__page h5 {
    font-weight: bold;
    font-size: 30px;
    line-height: 44px;
    color: #000;
}

@media only screen and (max-width: 576px) {
    .faq__page .header__page h5 {
        font-size: 14px;
        margin-bottom: 18px;
        text-align: center;
    }
}

.faq__page .faq__list {
    margin: 0 101px;
}

@media only screen and (max-width: 992px) {
    .faq__page .faq__list {
        margin: 0;
    }
}

.faq__page .faq__list .accordion-item {
    padding: 30.7px 26.1px 3.3px 42.2px;
    border: none;
    margin-bottom: 9.3px;
    border-radius: 15px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.12);
}

@media only screen and (max-width: 768px) {
    .faq__page .faq__list .accordion-item {
        padding-left: 12px;
    }
}

@media only screen and (max-width: 576px) {
    .faq__page .faq__list .accordion-item {
        padding: 20px;
        padding-left: 12px;
    }
}

.faq__page .faq__list .accordion-button {
    font-weight: 500;
    font-size: 16px;
    color: #000;
    text-align: left;
    padding-right: 0;
    padding-left: 0;
    margin-left: 20px;
    padding-right: 20px;
    padding-bottom: 25.7px;
    padding-top: 0;
}

@media only screen and (max-width: 768px) {
    .faq__page .faq__list .accordion-button {
        line-height: 32px;
    }
}

@media only screen and (max-width: 576px) {
    .faq__page .faq__list .accordion-button {
        font-size: 12px;
        padding-bottom: 0;
        line-height: 1.5;
    }
}

.faq__page .faq__list .accordion-body {
    border-top: 1px solid #e4e4e4;
    margin-left: 20px;
    padding-left: 0;
    padding-top: 13px;
    font-weight: normal;
    font-size: 16px;
    line-height: 26px;
    color: #000;
}

@media only screen and (max-width: 576px) {
    .faq__page .faq__list .accordion-body {
        font-size: 9px;
    }
}

.faq__page .faq__list .collapsed {
    border-bottom: 1px solid transparent;
}

.faq__page .faq__list .accordion-button:not(.collapsed) {
    font-weight: 500;
    font-size: 16px;
    color: #000;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media only screen and (max-width: 576px) {
    .faq__page .faq__list .accordion-button:not(.collapsed) {
        font-size: 12px;
    }
}

.faq__page .faq__list .accordion-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.faq__page .faq__list .accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.faq__page .faq__list .accordion-button::after {
    margin-right: 0;
    background-image: url(../img/arr.svg);
    width: 5px;
    height: 9px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    background-size: auto;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    margin-left: 20px;
}

.faq__page .faq__list .accordion-button:not(.collapsed)::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

/*# sourceMappingURL=style.css.map */

.page__privacy {
    margin-top: 93px;
    font-size: 18px;
}

.page__privacy h3 {
    font-weight: bold;
    font-size: 30px;
    line-height: 44px;
    text-align: left;
    color: #000;
    margin-bottom: 33px;
}

/******me*****/
header button {
    padding: 7px 10px;
    border-radius: 16px;
    background: #9D270D;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    color: #fff;
    -webkit-box-shadow: 0px 20px 70px rgb(241 165 1 / 15%);
    box-shadow: 0px 20px 70px rgb(241 165 1 / 15%);
}

header {
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.102);
    margin-bottom: 3%;
    background: white;
}
footer{
    background: #F7F7F7;
}
footer p {
    /*text-align-last: justify;*/
    font-size: 14px;
}

header .wrapper > nav > ul > .active > a {
    color: #9D270D;
    font-weight: bold;
    border-bottom: solid 3px #9D270D;
    padding: 15px 0px;
}

header .wrapper > nav > ul .submenu .active a {
    color: #9D270D;
    font-weight: bold;
    /*border-bottom: solid 4px #9D270D;*/
    /*padding: 13px 0px;*/
}

header .wrapper > nav > ul > li {
    margin-left: 2.5em;
    position: relative;
    padding: 15px 0px;
}

footer .warpper {

    display: grid;
    grid-template-columns:  17% minmax(24%, 18%) minmax(16.5%, 18.5%);
    justify-content: space-between;
}
@media (min-width: 1480px) {

    footer .warpper {
        grid-template-columns:  17% minmax(24%, 18%) minmax(18.5%, 16.5%);
    }
}
@media (min-width: 1681px) {
    footer .warpper {
        grid-template-columns:  17% minmax(24%, 18%) minmax(16.5%, 16.5%);
    }
}

@media  (max-width: 1400px) {

    footer .warpper {
        grid-template-columns:  17% minmax(26%, 18%) minmax(16.5%, 25%);
    }
}

footer .warpper .cantact__us ul li {
    white-space: nowrap;
}

footer .warpper .follow__us .items {
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-template-columns: 48% 48%;
    justify-content: space-between;
}

footer .warpper .follow__us .items a {
    margin-right: 0px;
}

footer .warpper .follow__us .items a svg {
    height: 25px;
    max-width: unset;
}
@media screen and (min-width:1400px ){
    footer .warpper .follow__us .items a svg {
        height: 28px;
    }
}
@media screen and (min-width:1800px ){

    footer .warpper .follow__us .items a svg {
        height: 35px;
    }
    footer .warpper .follow__us .items a {
        padding: 10px;
    }
}
/**************/
/****contact***********/
.contact h5:first-child {
    font-weight: 700;
    font-size: 1.6rem;
    color: #363F43;
    padding-top: 20px;
}

.contact p {
    font-size: 1.03rem;
}

.contact .contact-us {
    display: grid;
    width: 100%;
    grid-template-columns: 60% 40%;
    background-image: url(/img/C1.png);
    background-repeat: no-repeat;
    background-position: 280px;
    background-size: contain;
    border-radius: 20px;

}

.contact .contact-us .info {
    padding: 20px 30px;
    color: #FFFFFF;
}

.contact .contact-us .info img {
    margin-right: 10px;
}

.contact .contact-us .info h5 {
    font-weight: 700;
    font-size: 1.55em;
    line-height: 48px;
    color: #FFFFFF;
}

.contact .contact-us .form {
    background-color: white;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

.contact .contact-us .form h5 {
    font-weight: 700;
    font-size: 1.55em;
    line-height: 42px;
    color: #000000;

}

.contact .contact-us .form .form-control {
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
    border-radius: 0.8rem;
    background: rgba(0, 0, 0, 0.03);
    border: 0px;
}

.contact .contact-us .form .form-inline {
    display: grid;
    padding-bottom: 1.5%;
    column-gap: 1.5%;
    width: 100%;
    grid-template-columns: 50% 48.5%;
}

.contact .contact-us .form .form-group {
    display: flex;
    padding-bottom: 1.5%;
    width: 100%;
}

.contact .contact-us .form .form-group button {
    padding: 15px 40px;
    border-radius: 22px;
    background: #9D270D;
    font-weight: 700;
    font-size: 0.8rem;
    text-align: center;
    color: #fff;
    margin-top: 15px;
    -webkit-box-shadow: 0px 20px 70px rgb(241 165 1 / 15%);
    box-shadow: 0px 20px 70px rgb(241 165 1 / 15%);
}

.contact .info p {
    font-size: 0.9rem;
}

footer .warpper .cantact__us sub {
    display: none;
}

@media screen and (Max-width: 480px) {
    .contact {

    }

    .contact .contact-us .form {
        transform: translateY(30px);
        padding: 25px;
    }

    .contact .contact-us .form .form-control {
        font-size: .65rem;
    }

    .contact h5 {
        font-size: 22px !important;
    }

    .contact .contact-us {
        /* display: grid; */
        /* width: 100%; */
        background-position: bottom;
        grid-template-columns:100%;
        background-image: url(/img/mobile.png);
    }

    footer .warpper {
        grid-template-columns: 100%;
    }

    footer p {
        text-align-last: left;
    }

    footer .warpper .follow__us .items {
        grid-template-columns: 36% 36%;
        column-gap: 2%;
        justify-content: left;
    }

    footer .warpper .follow__us ul {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        width: 70%;
    }

    footer .warpper .cantact__us {
        grid-row: 3;
    }

    footer .warpper .follow__us:last-child {
        grid-row: 1;
    }

    footer .warpper .follow__us sub {
        display: none;
    }

    footer .warpper .cantact__us sub {
        display: block;
    }
}

/******maryam************/

@media (min-width: 1200px) {
    .container {
        max-width: 900px !important;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1200px !important;
    }
}
@media (min-width: 1750px) {
    .container {
        max-width: 1450px !important;
    }
}
