@font-face {
    font-family: 'Tandelle Regular';
    src: url('../fonts/Tandelle Regular.ttf') format('truetype');
}
/*Index php*/
*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
a{
    color: #000000;
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}
ol, ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
}

body {
    font-size: 18px;
    font-family: 'Arsenal', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    background-color: #012E72;
    margin: 0;
}
.container{
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 26px;
}
.section{
    padding: 28px 0;
    max-width: 1300px;
    margin: 0 auto;
    background-color: #fff;
}
/*Custom select*/
.custom-select#stateSelect {
    position: relative;
    display: inline-block;
    width: 100%;
}
div#stateSelect:after {
    content: '\25BC';
    font-size: 11px;
    position: absolute;
    color: #000;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
}
.custom-select#stateSelect input {
    width: 100%;
    cursor: pointer;
}
.custom-select#stateSelect input::placeholder{
    color: #000;
}
#stateSelect .select__list {
    list-style: none;
    margin: 0;
    position: absolute;
    z-index: 1;
    width: 100%;
    font-size: 14px;
    overflow-y: scroll;
    height: 315px;
    padding: 10px 0;
    box-shadow: 0 3px 7px rgba(0, 0, 0, .2);
    background-color: #fff;
    border: 1px solid #ccc;
}
#stateSelect .select__list:not(.open) {
    display: none;
}
#stateSelect .select__list.open {
    display: block;
}
#stateSelect .select__list-item {
    padding: 8px;
    cursor: pointer;
}
.select__list-item:hover {
    background-color: #f0f0f0;
}
/*Header*/
.header{
    position: static;
    top: 0;
    left: 50%;
    z-index: 10;
    width: 100%;
    padding: 15px 0;
    background-color: #DDDDDD;
    box-shadow: 1px 1px 2px #ddd;
    max-width: 1300px;
    margin: 0 auto;
}
.header__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    font-size: 16px;
}
.header__menu{
    display: flex;
    gap: 20px;
}
.header__menu li{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2px;
}
.header__menu li span {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 100px;
}
.header__menu li img{
    width: 30px;
}
.header__contact{
    font-weight: bold;
    font-size: 18px;
}
.header__menu li a:hover,
.phone-number:hover{
    color: #00539c;
}
/*Home banner*/
.home-banner.section{
    position: relative;
    padding-top: 0;
    background-image: url('../img/Fotoliascaled.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.home-banner.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background:linear-gradient(to bottom, rgba(41,106,186,.85), rgba(41,106,186,0));
}
.home-banner.section .container{
    position: relative;
    max-width: 1300px;
    padding: 0;
}
.home-box-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 40px;
    color: #fff;
    gap: 20px;
    border-bottom: 3px solid #000;
}
.home_box-header__title{
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 90px;
    margin: 0;
    letter-spacing: -4px;
}
.home-box-header__suptitleBox h2{
    font-style: italic;
    font-size: 38px;
    margin: 0;
    font-family: 'Tandelle Regular', sans-serif;
    font-weight: 400;
}
.home-box-header__suptitleBox p{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    color: #FFF534;
    font-weight: bold;
    font-size: 22px;
    line-height: 1;
    text-shadow: 1px 1px 2px #000;
}
.home-box-header__suptitleImg{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
home-box-header__suptitleImg a{
    cursor: pointer;
}
.home-box-header__suptitleImg img{
    max-height: 100px;
}
.home-box-body{
    position: relative;
}
.home-box-body__title{
    font-size: 46px;
    color: #fff;
    padding: 10px 25px 180px 80px;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    position: relative;
    z-index: 2;
}
.home_box-header__title span,
.home-box-body__title span{
    color: #FFF534;
}

.banner-position-img{
    position: absolute;
    max-height: 410px;
    right: 20px;
    top: 9%;
}
.home-box-body__content{
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 100px 25px;
    gap: 150px;
    position: relative;
    z-index: 2;
    top: 100px;
}
.home-box-body__content img{
    max-height: 250px;
}
.home-box-body__content img.mobile_ver{
    display: none;
}
.home-box-body__left img{
    max-height: 250px;
    margin: 0 auto;
}
.home-box-body__left h4{
    text-wrap: nowrap;
    margin: 0;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}
.home-box-body__left h4 span{
    display: block;
    text-align: left;
}
.home-box-body__right{
    border-radius: 20px;
    border: 2px solid #ccc;
    background-color: #1F63B8;
    box-shadow: 1px 1px 2px black;
}
.home-box-body__right ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}
.home-box-body__right li{
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    width: 50%;
    box-sizing: border-box;
    padding: 10px 15px 10px 80px;
    font-size: 28px;
    color: #fff;
    display: flex;
    position: relative;
}
.home-box-body__right li::before {
    content: url("../img/check_circle.png");
    display: block;
    position: absolute;
    left: 10px;
    width: 93%;
    border-bottom: 2px solid #fff;
}
.home-box-body__right li.no-border::before {
    border-bottom: none;
}
/*Yourself*/
.yourself-title{
    font-size: 38px;
    color: #000;
    margin-bottom: 0;
}
.yourself-section{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}
.yourself-section__list{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    font-weight: 600;
    padding-left: 20px;
    font-size: 20px;
    line-height: 1.5;
    color: #990000;
    margin-bottom: 40px;
}
.yourself-section__list ul{
    list-style: disc;
}
.yourself-section__text{
    font-size: 23px;
    line-height: 1.5;
    margin-bottom: 25px
}
.yourself-section__text:last-child{
    margin-bottom: 0;
}
.yourself-section__image{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: -22px;
}
.yourself-section__image img{
    max-width: 500px;
}
.container-header-box{
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    max-width: 700px;
}
.yourself .container-header-box{
    gap: 20px;
    width: 56%;
    justify-content: space-between;
}
.container-header-box.full-width{
    justify-content: space-between;
    margin-bottom: 0;
}
.container-header-box.remove-maxwidth{
    max-width: 100%;
    border-top: 2px solid #000;
    padding: 15px 0;
}
.container-header-box a{
    align-self: center;
    width: 40px;
    cursor: pointer;
    transform: rotate(90deg);
    flex-shrink: 0;
}
/*Ingredients section*/
.ingredients-section{
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 20px;
}
.ingredients-item {
    position: relative;
}
.ingredients-icon{
    position: relative;
    margin: 0 5px 18px 5px;
}
.ingredients-icon .ingredients-description{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    /*bottom: 0;*/
    height: 100%;
    z-index: 1;
    width: 100%;
    padding: 4px;
    font-size: 13.5px;
    text-align: center;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.8);
    left: 50%;
    transform: translate(-50%);
    opacity: 0;
    transition: height 1.1s ease-in-out, opacity 0.9s ease-in-out;
}
.ingredients-item:hover .ingredients-icon .ingredients-description,
.ingredients-icon.active .ingredients-description,
.ingredients-icon:hover  .ingredients-description{
    overflow: auto;
    /*height: 220px;*/
    opacity: 1;
}
.ingredients-item .ingredient-button{
    display: block;
    text-align: center;
    color: #fff;
    font-weight: 700;
    border-radius: 22px;
    font-size: 15px;
    padding: 2px 0;
    background-color: #6A791A;
    cursor: pointer;
    /*max-width: 310px;*/
    margin: 0 8px;
}
.custom-progress-container {
    right: 47%;
    transform: rotate(270deg);
    position: absolute;
    bottom: 38%;
    width: 220px;
    height: 18px;
    background: #fff !important;
    border: 2px solid #ccc;
    overflow: hidden;
    border-radius: 20px;
}
.custom-progress {
    height: 100%;
    width: 20%;
    background-color: #6A791A;
}
.custom-progress.mediumgreen{
    width: 30%;
    background-color: #9C9D06;
}
.custom-progress.lightgreen{
    background-color: #C9BC47;
    width: 29%;
}
.custom-progress.mediumorange{
    background-color: #DF9D10;
    width: 38%;
}
.custom-progress.darkpurple{
    width: 30%;
    background-color: #7C7DF7;
}
.custom-progress.darkorange{
    background-color: #F16932;
    width: 25%;
}
.ingredients-item .mediumgreen.ingredient-button{
    background-color: #9C9D06;
}
.ingredients-item .lightgreen.ingredient-button{
    background-color: #C9BC47;
}
.ingredients-item .mediumorange.ingredient-button{
    background-color: #DF9D10;
}
.ingredients-item .darkpurple.ingredient-button{
    background-color: #7C7DF7;
}
.ingredients-item .darkorange.ingredient-button{
    background-color: #F16932;
}
/*Defense section*/
.defense-section{
    display: flex;
    align-items: center;
    gap: 30px;
    border: 3px solid #DEDBDB;
    border-radius: 35px;
    padding: 30px 10px 30px 0;
}
.defense-section img{
    max-width: 200px;
}
.defense-title{
    font-size: 27px;
    color: #000;
    margin-bottom: 15px;
}
.defense-description{
    font-size: 20px;
    margin: 0;
}
/*Effective section*/
.effective.section{
    padding: 0;
}
.effective-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
}
.effective-section:before {
    content: '';
    position: absolute;
    left: 50%;
    width: 1px;
    top: 50%;
    height: 100%;
    border-left: 3px dashed #000;
    display: inline-block;
    transform: translate(-50%, -50%);
}
.effective-section__title{
    margin-bottom: 15px;
}
.effective-section__box{
    max-width: 500px;
}
.effective-section__text{
    margin-bottom: 30px;
}
.effective-section__box:last-child .effective-section__text{
    margin-bottom: 0;
}
.effective-section img{
    max-width: 400px;
}
.effective-section__img{
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: center;
}
/*Contact section*/
.contact-section{
    display: flex;
    justify-content: space-between
}
.contact__menu{
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.contact__menu li{
    display: flex;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 10px 25px;
    border: 3px solid #000;
}
.contact__menu li span{
    max-width: 100px;
    line-height: 1.1;
}
.contact-section__rightImg{
    margin-top: 30px;
}
.contact-section__leftImg{
    display: flex;
    align-items: center;
    text-align: center;
    max-width: 400px;
    gap: 5px;
    margin-left: -25px;
}
.contact-section__leftImg .contact-section__leftBox{
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}
.contact-section__leftImg .contact-section__leftBox >a{
    max-width: 120px;
    margin-bottom: 100px;
}
.contact-section__leftBox .box-banner{
    position: relative;
}
.contact-section__leftBox .box-banner h4{
    position: absolute;
    top: 19%;
    left: 18%;
    margin: 0;
    font-size: 41px;
    color: #fff;
    transform: rotate(-45deg);
}
.contact-section__rightBox h3{
    color: #A4DD8D;
    font-style: italic;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
}
.contact-form {
    height: auto;
    margin-top: 30px;
    padding: 35px;
    border: 3px solid #B8B8B8;
    border-radius: 35px;
    width: 520px;
}
.contact-form label a{
    color: #00bcd4;
}
.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}
.form-group {
    width: calc(50%);
    margin-bottom: 10px;
    padding: 0 5px;
}
label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 5px;
}
input {
    padding: 8px;
    box-sizing: border-box;
    outline: none;
    border: 2px solid #285396;
    width: 100%;
}
.form-submit{
    display: block;
    border: none;
    margin: 0 auto;
    padding: 0;
    background: none;
    cursor: pointer;
}

.form-submit img{
    max-height: 70px;
}
/*Finally*/
.finally.section{
    background-color: #d9e9f7;
}
.finally-section{
    padding: 30px 0;
    max-width: 649px;
    margin: 0 auto;
    text-align: center;
    color: #285396;
}
/*Footer*/
.footer{
    position: relative;
    text-align: center;
    background: #191f2a;
    font-weight: 400;
    color: hsla(0,0%,100%,.4);
    padding-top: 90px;
    padding-bottom: 87px;
    z-index: 3;
    max-width: 1300px;
    margin: 0 auto;
}
.footer .text_sales{
    display: none;
}
.footer .social-list a {
    width: 100%;
    height: 100%;
    display: block;
}
.footer .social-list a .fa {
    color: #191f2a;
    background: hsla(0,0%,100%,.2);
    border-radius: 50%;
    line-height: 37px;
    font-size: 20px;
    transition: all .4s ease-in-out;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.social-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 240px;
    padding: 0;
    margin: 0 auto 31px;
}
.footer .social-list a .fa svg {
    width: 24px;
    height: 18px;
}
.footer a {
    color: hsla(0,0%,100%,.4);
}
.social-list__item i {
    width: 36px;
    height: 36px;
    padding: 0;
}
.footer .social-list a:hover .fa{
    background-color: #fff;
}
@media screen and (max-width: 1200px) {
    .home-box-header {
        flex-wrap: wrap;
        padding: 15px;
        gap: 10px;
    }
    .home_box-header__title {
        font-size: 70px;
        letter-spacing: -3px;
    }
    .home-box-body__right li{
        width: 100%;
    }
    .home-box-body__right li.no-border::before{
        border-bottom: 2px solid #fff;
    }
    .home-box-body__right li:last-child::before {
        border-bottom: none;
    }
    .banner-position-img{
        top: 13%;
        max-height: 350px;
    }
    .yourself-section__list {
        justify-content: space-around;
    }
    .yourself-section{
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .yourself-section__image img {
        max-width: 450px;
    }
    .yourself-section__image{
        flex-direction: row;
        margin-top: 0;
    }
    .ingredients-section{
        flex-wrap: wrap;
        gap: 40px 20px;
        justify-content: space-around;
    }
    .ingredients-icon .ingredients-description{
        font-size: 17px;
    }
    p.ingredients-description span {
        position: absolute;
        top: 50%;
        width: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .custom-progress-container {
        width: 417px;
        bottom: 42%;
        right: 45%;
        height: 25px;
    }
    .effective-section img{
        max-width: 350px;
    }
    .effective-section__box {
        max-width: 450px;
    }
    .contact-section {
        justify-content: space-around;
        gap: 20px;
        flex-wrap: wrap;
    }
    .contact-section__leftImg{
        margin-left: -15px;
    }
    .yourself .container-header-box{
        width: 100%;
        gap: 30px;
        max-width: unset;
    }
    .ingredients-item .ingredient-button{
        font-size: 20px;
    }
}
@media screen and (max-width: 991px){
    .home-banner.section {
        background-size: contain;
    }
    .header__contact span{
        display: none;
    }
    .yourself-section__image {
        flex-direction: column;
    }
    .yourself-section__list {
        flex-wrap: wrap;
        gap: 0 20px;
    }
    .contact-section__rightBox{
        padding-top: 40px;
    }
    .contact-section__leftImg .contact-section__leftBox >img{
        margin-bottom: 0;
    }
    .home-box-body__content{
        gap: 50px;
    }
    .home-box-header__suptitleImg{
        order: 2;
    }
    .home-box-header__suptitleBox{
        order:3;
    }
}
@media screen and (max-width: 767px) {
    .home-box-body__right li{
        font-size: 24px;
    }
    .home-box-body__right li::before{
        top: 9%;
    }
    .header{
        padding: 20px 0;
    }
    .header__container{
        gap: 20px;
        flex-direction: column;
    }
    .header__menu {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .header__menu li span{
        max-width: 100%;
    }
    .header__menu li img {
        display: none;
    }
    .home_box-header__title {
        font-size: 50px;
    }
    .home-box-header__suptitleBox h2{
        font-size: 28px;
    }
    .home-box-body__content{
        flex-wrap: wrap;
        justify-content: end;
        padding: 15px;
        top: 10px;
    }
    .home-box-body__left img{
        max-height: 200px;
    }
    .home-box-body__title{
        font-size: 30px;
        padding: 29px 25px 10px 15px;
    }
    .home-box-header__suptitleBox p{
        font-size: 18px;
    }
    .home-box-body__content img.desc_ver{
        display: none;
    }
    .home-box-body__content img.mobile_ver{
        display: block;
    }
    .banner-position-img{
        display: none;
    }
    .yourself-title {
        font-size: 35px;
    }
    .container-header-box{
        justify-content: space-between;
    }
    .yourself-section__list {
        justify-content: flex-start;
    }
    .yourself-section__image img {
        max-width: 450px;
    }
    .defense-section{
        flex-wrap: wrap;
        gap: 40px;
        padding: 16px;
    }
    .defense-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    .defense-section img{
        margin: 0 auto;
    }
    .ingredients-icon img {
        max-height: 200px;
    }
    .ingredients-item .ingredient-button {
        font-size: 14px;
    }
    .ingredients-icon .ingredients-description {
        font-size: 13px;
    }
    .custom-progress-container {
        width: 217px;
        bottom: 40%;
        right: 47%;
        height: 20px;
    }
    .effective-section__box{
        max-width: 100%;
    }
    .effective-section {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    .effective-section__content{
        position: relative;
    }
    .effective-section__content:before {
        content: '';
        position: absolute;
        bottom: 0;
        width: 100%;
        border-top: 3px dashed #000;
        display: inline-block;
    }
    .effective-section:before{
        display: none;
        content: none;
    }
    .effective-section__text,
    .effective-section__box:last-child .effective-section__text{
        margin-bottom: 20px;
    }
    .effective-section img{
        max-width: 300px;
    }
    .contact-form{
        max-height: 100%;
    }
    .form-row{
        margin-bottom: 0;
    }
    .form-group {
        width: 100%;
        margin-bottom: 15px;
    }
    input {
        width: 100%;
    }
    .home-box-header__suptitleImg img {
        max-height: 80px;
    }
}
@media screen and (max-width: 675px) {
    .header{
        padding: 15px 0;
    }
    .home-banner.section {
        background-size: contain;
    }
    .home-banner.section::before{
        height: 100%;
    }
}
@media screen and (max-width: 480px) {
    .home_box-header__title{
        font-size: 42px;
        line-height: 1;
    }
    .home-box-header__suptitleBox h2 {
        font-size: 22px;
        line-height: 1.4;
    }
    .home-box-header__suptitleBox p {
        font-size: 13px;
    }
    .header__menu li span {
        font-size: 14px;
    }
    .header__contact {
        font-size: 16px;
    }
    .home-box-header__suptitleImg img {
        max-height: 45px;
    }
    .home-box-body__right li::before {
        top: 4px;
        font-size: 9px;
    }
    .home-box-body__right li {
        font-size: 16px;
        margin-top: 10px;
        padding: 10px 15px 10px 70px;
    }
    .yourself-section__text {
        font-size: 20px;
    }
    .yourself-section__image img {
        max-width: 340px;
        padding: 0 16px;
    }
    .yourself-title {
        font-size: 22px;
    }
    .yourself-section__list {
        font-size: 19px;
    }
    .custom-progress-container {
        right: 40%;
        width: 180px;
        bottom: 42%;
        height: 15px;
    }
    .ingredients-icon img {
        max-height: 150px;
    }
    .ingredients-icon .ingredients-description.first-block span{
        height:100%;
    }
    .ingredients-item .ingredient-button {
        font-size: 11px;
    }
    .header__menu,
    .header__container {
        gap: 5px;
    }
    .header__menu li span {
        font-size: 15px;
    }
    .header {
        padding: 10px 0;
    }
    .header__contact {
        font-size: 16px;
    }
}
@media screen and (max-width: 400px) {
    .contact-section__leftBox .box-banner h4{
        height: 100px;
    }
}