@font-face {
    font-family: "Montserrat Regular";
    src: url("../fonts/montserrat-regular.woff") format("woff"),
        /* Modern Browsers */
        url("../fonts/montserrat-regular.woff2") format("woff2");
    /* Modern Browsers */
    font-weight: normal;
    font-style: normal;
}

html {
    font-family: "Montserrat Regular", 'Arial', sans-serif;
    font-size: 16px;
    /* line-height: 22px; */
    scroll-behavior: smooth;
    /* scroll-margin-top: -100px; */
    font-weight: 500;
    word-wrap: break-word;
}

ul, li, p, h1, h2, h3 {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

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

a:hover {
    color: #45C8D0;
    text-decoration: underline;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type='number'] {
    -moz-appearance: textfield;
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.link_basic:hover {
    color: var(--basic-hover-color);
}

img {
    max-width: 100%;
}


button {
    background-color: inherit;
    border: none;
}

.body {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    align-items: center;
    min-height: 100vh;
    /* position: relative; */
}

.body--no-scroll {
    overflow: hidden;
    width: 100vw;
}

.main {
    width: 100%;
}

.wrapper {
    box-sizing: border-box;
    padding: 0 calc(50% - 640px);
}

@media (max-width: 1324px) {
    .wrapper {
        padding: 0 22px;
    }
}

@media (max-width: 1000px) {
    .wrapper {
        padding: 0;
    }
fieldset {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
}
.flex_line {
     display: block!important; 
}
.gap--40 {
    gap: 20px!important; 
}
.margin-bottom--40 {
    margin-bottom: 10px!important;
}
.margin-top--30 {
    margin-top: 10px!important;
}
.margin-top--50 {
    margin-top: 20px!important;
}
.gap--27 {
    gap: 7px!important;
}
.request_input {
    margin-top: 5px;
    padding: 14px;
    resize: none;
    min-width: 246px;
}
}



/* request_form */

.request_form_section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.40);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.request_form_section--close {
    display: none;
}

.request_form_wrapper {
    position: relative;
    background-color: #FFFFFF;
    padding: 60px 50px;
}

.close_button {
    position: absolute;
    right: 47px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1D1D1D;
    cursor: pointer;
    transition: background-color .5s;
}

.close_button:hover {
    background-color: tomato;
}

.request_form {
    display: flex;
    flex-direction: column;
    width: 900px;
}

.radio_label {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
}

.radio_label:hover {
    color: #3d3d3d;
}

.radio_description {
    font-weight: 600;
}

.radio_description::before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(50% - 14px);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #45C8D0;
}

input:checked+.radio_description::before {
    background-color: #45C8D0;
}

.request_input {
    margin-top: 10px;
    padding: 17px;
    resize: none;
    min-width: 246px;
}

.request_input--textarea {
    width: 900px;
    height: 100px;
    box-sizing: border-box;
}

.request_button {
    cursor: pointer;
    color: #FFFFFF;
    background-color: #1D1D1D;
    padding-top: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;
}

@media (max-width: 1000px) {
    .request_form_section {
        position: absolute;
        top: 63px;
        height: calc(100vh - 83px);
        z-index: 5;
        zoom: 1;
    }

    .close_button {
        display: none;
    }

    .request_form_wrapper {
        padding: 30px 22px 50px;
        box-sizing: border-box;
        max-height: 100%;
        overflow: scroll;
    }

    .request_input--textarea {
        width: 100%;
        max-width: 100%;
    }

    .request_form {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }
}



/* header */
.header {
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #E6E7E8;
    padding: 23px calc(50% - 640px);
    background-color: #FFFFFF;
}

.brands_line {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about_block_wrapper {
    width: 475px;
    display: flex;
    flex-direction: column;
}

.bg--1 {
    flex-grow: 3;
    background-color: #45C8D0;
}

.about_button_wrapper {
    flex-grow: 1;
    background-color: #45C8D0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_button {
    cursor: pointer;
    color: #FFF;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #1d1d1d;
    padding: 20px 93px;
}

.about_button--padding-20-30 {
    padding: 20px 30px;
    display: flex;
    align-items: center;
}

.about_button--padding-20-30:hover {
    color: #45C8D0;
    text-decoration: none;
}

.about_button:hover {
    background-color: #1d1d1dcc;
}

@media (max-width: 1324px) {
    .header {
        padding: 23px 22px;
    }

    .brands_lines {
        overflow: hidden;
    }
}

@media (max-width: 1000px) {
    .main {
        width: 100%;
        padding: 0 22px;
        box-sizing: border-box;
    }

    .header {
        position: sticky;
        top: 0vh;
        padding: 12px 22px;
        z-index: 5;
    }

    .brands_lines {
        margin-left: -22px;
        margin-right: -22px;
        overflow: scroll;
    }

    .brands_lines::-webkit-scrollbar {
        display: none;
    }

    .brands_line {
        width: 1920px;
    }

    .brands_logo {
        flex-shrink: 0;
    }

    .about_block_wrapper {
        width: 100%;
    }

    .about_button_wrapper {
        height: 150px;
    }


}

@media (max-width: 764px) {
    .bg--1 {
        height: calc(100vw - 159px);
    }

    .about_button_wrapper {
        height: calc(100vw - 264px);
    }

    .about_button {
        padding: 20px 48px;
    }

}

.brand_katalog_title {
    padding: 20px;
}

/* sections */
.sections {
    margin-right: 25px;
    /*flex-grow: 1;*/
	display: none;
}

.sections_title {
    display: none;
}

.sections_item {
    position: relative;
    width: 235px;
    background-color: #FFFFFF;
}


.sections_item:not(:last-child) {
    border-bottom: 1px solid #E6E7E8;
}

.sections_item--active.sections_item:not(:last-child) {
    border-bottom: 1px solid #F2F2F2;
}

.sections_item--active {
    background-color: #F2F2F2;
    color: #45C8D0;
}

.sections_link {
    display: block;
    box-sizing: border-box;
    padding: 15px 45px 15px 15px;
    font-size: 14px;
    font-weight: 600;
}

.sections_link:hover {
    display: block;
    text-decoration: none;
    box-sizing: border-box;
    padding: 15px 45px 15px 15px;
}

.sections_icon {
    position: absolute;
    right: 15px;
    z-index: 3;
    top: calc(50% - 10px);
}

.sections_link:hover+.sections_icon {
    color: #45C8D0;
}

.products {
  /*  display: flex;*/
    flex-direction: column;
    align-items: center;
	width: 100%;
}

.product_list {
    display: flex;
    flex-wrap: wrap;
    gap: 160px;
}

.product_list_card {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.product_card {
    position: relative;
    display: flex;
    max-width: 320px;
    width: 320px;
	/*height: 560px;*/
    box-sizing: border-box;
	/*padding-bottom: 35px;*/
}

.product_card_recommendation {
    position: relative;
    display: flex;
    max-width: 200px;
    width: 200px;
	/*height: 560px;*/
    box-sizing: border-box;
	padding-bottom: 30px;
}

.product_title_recommendation {
    display: inline-block;
    margin: 20px auto 0px 0px;
    padding: 7px 10px;
    background-color: #fff;
    font-weight: 600;
    font-size: 20px;
}

.product_card:hover .product_image_wrapper{
    outline-offset: -2px;
    outline: 2px solid #45C8D0;
}

.product_link {
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
    justify-content: space-between;
}

.product_link:hover {
    color: inherit;
    text-decoration: none;
}

.product_favorite_button {
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background-color: gray;
    cursor: pointer;
}

.product_favorite_button--active {
    background-color: #45C8D0;
}

.title_icon_active {
    display: none;
}

.product_favorite_button--active .title_icon_active {
    display: block;
}

.product_favorite_button--active .product_icon {
    display: none;
}

.product_image_wrapper {  
	flex-grow: 1;
    display: flex;
    align-items: center;
    height: 300px;
    max-height: 300px;
    overflow: hidden;
}

.product_image_wrapper_card {  
	flex-grow: 1;
    display: flex;
    align-items: center;
    height: 200px;
    max-height: 200px;
    overflow: hidden;
}


.product_title_wrapper {
    flex-grow: 1;
    display: flex;
    align-items: self-start;
	/*height:70px;*/
}

@media (max-width: 1000px) {
.product_image_wrapper {
    flex-grow: 1;
    display: flex;
    align-items: self-start;
    height: auto !important; 
}
}

.product_title {
    display: inline-block;
    margin: 20px auto 0px 0px;
    padding: 7px 10px;
    background-color: #fff;
    font-weight: 600;
    font-size: 26px;
}

.product_title--no_margin_left {
    margin-left: 0;
}

.filter_block_title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 20px;
    cursor: pointer;
    box-sizing: border-box;
}

.filter_wrap {
    padding: 0 60px;
    margin-bottom: 40px;
    max-height: 500px;
    transition: max-height .3s;
    overflow: hidden;
}

.filter--close {
    max-height: 0;
}

.filter_title_icon {
    margin-left: 10px;
    transition: transform .3s;
    transform: rotateX(180deg);
}

.filter_title_icon--open {
    transform: rotateX(0deg);
}

@media (max-width: 1324px) {
    .product_list {
        justify-content: space-around
    }

}

@media (max-width: 1000px) {
    .sections_title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }


    .title_icon--open {
        transform: rotate(-90deg);
    }

    .sections {
        margin-right: 0;
    }

    .sections_item {
        width: 100%;
        max-width: 100%;
    }

    .sections_list {
        max-height: 1000px;
        transition: max-height .3s;
    }

    .sections_item--close {
        height: 0;
        overflow: hidden;
    }

    .product_list {
        justify-content: center;
		gap: 30px;
    }

    .product_card {
        max-width: 100%;
        width: 100%;
    }

    .product_link {
        width: 100%;
    }
	.filter_wrap {
    padding: 0 10px!important;
    margin-bottom: 40px;
    max-height: 500px;
    transition: max-height .3s;
    overflow: hidden;
}
}

/* filter */
.form {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.filter_wrapper {
    position: relative;
}

.filter_wrapper--button {
    margin-top: 20px;
    display: flex;
    align-items: end;
}

.textarea {
    min-height: 50px;
}

.select2-container {
    /* display: flex; */
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    /* gap: 5px; */
    align-items: center;
    width: 300px;
    border: 1px solid #E6E7E8;
}

.select2-container--below {
    min-height: 40px;
}

.select2-container .selection {
    width: 100%;
}

.select2-container .select2-selection {
    /* display: flex; */
    width: 100%;
    min-height: 40px;
    padding: 6px 6px 6px 6px;
    font-size: 14px;
    background-color: #FFFFFF;
    border: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    /* display: flex; */
    flex-wrap: wrap;
    align-items: center;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 3px;
    display: inline-flex;
    align-items: center;
    padding-left: 0;
    border-radius: 0;
    background-color: inherit;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border: none;
    position: relative;
    font-size: 25px;
    line-height: 26px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 0px 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding: 5px;
    align-items: center;
    font-size: 14px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: none;
    background-color: #FFFFFF;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 3px;
    height: 25px;
}

.select2-results__options::-webkit-scrollbar {
    width: 0px;
    border-radius: 3px;
}

.select2-results__options::-webkit-scrollbar-track {
    background-color: #FFFFFF;
    border-radius: 3px;
}

.select2-results__options::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: lightgrey;
}

.select2-container--default .select2-results__option--selected {
    background-color: #FFFFFF;
    position: relative;
}

.select2-container--default .select2-results__option--selected::after {
    position: absolute;
    top: calc(50% - 3px);
    right: 10px;
    content: '';
    width: 10px;
    height: 4px;
    box-sizing: border-box;
    border-left: 1px solid black;
    border-bottom: 1px solid black;
    transform: rotate(-45deg);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #F2F2F2;
    color: #1D1D1D;
}

.select2-results__option--selectable {
    height: 25px;
}

.textarea:hover {
    border: 1px solid black;
}

.textarea_button {
    position: absolute;
    right: 15px;
    cursor: pointer;
    height: 20px;
    width: 20px;
}

.textarea_button_arrow {
    display: block;
    transition: transform .2s;

}

.textarea--black_border {
    border: 1px solid black;
    background-color: #FFFFFF;
}

.textarea_button_arrow--close {
    transform: rotateX(180deg);

}

.checkbox--off {
    display: none;
}

.checkboxs_wrapper {
    position: absolute;
    overflow: auto;
    display: flex;
    flex-direction: column;
    width: 320px;
    border: 1px solid #E6E7E8;
    max-height: 300px;
    z-index: 2;
    background-color: white;
}

.checkboxs_wrapper::-webkit-scrollbar {
    width: 5px;
}

.checkboxs_wrapper::-webkit-scrollbar-track {
    background-color: lightgray;
}

.checkboxs_wrapper::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.checkboxs_wrapper--close {
    display: none;
}

.item {
    padding: 12px;
    cursor: pointer;
}

.item:hover {
    background-color: #E6E7E8;
}

.item:not(:last-child) {
    border-bottom: 1px solid #E6E7E8;
}

.checkbox_title {
    position: relative;
    display: block;
}

input:checked+.checkbox_title::after {
    position: absolute;
    top: calc(50% - 3px);
    right: 0;
    content: '';
    width: 10px;
    height: 4px;
    box-sizing: border-box;
    border-left: 1px solid black;
    border-bottom: 1px solid black;
    transform: rotate(-45deg);
}

.del_tag_button {
    display: flex;
    width: 20px;
    padding: 0;
    color: black;
    cursor: pointer;
}

.tag:hover .del_tag_button {
    color: red;
}


.text_enter {
    max-width: 100%;
    flex-shrink: 1;
    cursor: text;
    width: auto;
    border: none;
}

.text_enter:focus {
    outline: none;
}

.filter_button_submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    padding: 0 22px;
    cursor: pointer;
    font-size: 14px;
	color: #000 !important;
    font-weight: 500;
    text-transform: uppercase;
    border: 2px solid #1D1D1D;
    box-sizing: border-box;
    transition: background-color .3s;
}

/*.filter_button_submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 50px;
    padding: 0 52px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid #1D1D1D;
    box-sizing: border-box;
    transition: background-color .3s;
}*/

.filter_button_submit:hover {
    background-color: #45C8D0;
    color: #FFFFFF;
    border: 2px solid #45C8D0;
}

.pagination_wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.pagination_button {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    min-width: 60px;
    height: 60px;
    box-sizing: border-box;
    z-index: 2;
    color: lightgrey;
    transition: opacity .5s;
    /* cursor: pointer; */
    border: 2px solid lightgrey;
}

.pagination_button--enabled {
    background-color: white;
    border: 2px solid #45C8D0;
    color: #45C8D0;
    cursor: pointer;
}

.pagination_button--enabled:hover {
    background-color: #45C8D0;
    color: white;
}

.pagination_button--prev {
    transform: rotate(180deg);
}

.pagination_list {
    display: flex;
    gap: 12px;
}

.pagination_link {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    padding: 20px;
    z-index: 2;
    font-weight: 600;
    transition: background-color .2s;
    /* cursor: pointer; */
}

.pagination_link:hover {
    background-color: #F2F2F2;
}

.pagination_link--active {
    background-color: #45C8D0;
    color: #FFFFFF;
}

.pagination_link--dots {
    padding-bottom: 27px;
}

.pagination_link--dots:hover {
    text-decoration: none;
}

/* product */
.back_link {
    color: #45C8D0;
}

.bordered_button {
    display: block;
    margin-right: 24px;
    padding: 18px;
    border: 2px solid #45C8D0;
}

.favorite_button {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.active_favorite_icon {
    display: none;
}

.favorite_button--active .favorite_icon {
    display: none;
}

.favorite_button--active .active_favorite_icon {
    display: block;
}

.favorite_button--active {
    background-color: #45C8D0;
}

.product_preview_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product_preview_button {
    display: block;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #45c9d080;
    width: 100%;
    height: 20px;
    box-sizing: border-box;
    color: #45C8D0;
}

.product_preview_button:hover {
    background-color: #45c9d0;
    color: #FFFFFF;
}

.product_preview_button--up svg {
    transform: rotate(-90deg);
}

.product_preview_button--down svg {
    transform: rotate(90deg);
}

.product_preview_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 180px;
    max-height: 510px;
    overflow-y: scroll;
    margin-bottom: auto;
}

.product_preview_list::-webkit-scrollbar {
    display: none;
}

.product_preview_item {
   /* display: flex;
    cursor: pointer;
    width: 100%;*/
	display: flex;
    cursor: pointer;
    width: 100%;
    min-height: 180px;
    align-items: center;
    border: 1px solid #dfdfdf;
    box-sizing: border-box;
    overflow: hidden;
}

.product_preview_item img {
    width: 100%;
}

.product_preview_item:hover {
    outline-offset: -2px;
    outline: 2px solid #45C8D0;
}

.product_image_wrap {
    position: relative;
    width: 550px;
    height: 550px;
    max-width: 100%;
    max-height: calc(100vw - 44px);
    overflow: hidden;
}

.product_image_list {
    position: absolute;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: left .2s;
}

.product_image_wrap::-webkit-scrollbar {
    display: none;
}

.product_image_item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.product_info_wrapper {
    margin-left: 27px;
    display: flex;
    flex-direction: column;
}

.markets {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 1000px) {
    .bordered_button {
        margin-right: 0;
    }

    .product_preview_button {
        display: none;
    }

    .product_preview_list {
        display: none;
    }

    .product_image_list {
        gap: 10px;
    }

    .product_image_item {
        width: 90%;
    }

    .product_image_wrap {
        position: relative;
        width: 100%;
        height: calc(100vw - 44px);
        overflow-x: hidden;
        overflow-y: hidden;
    }

    .product_info_wrapper {
        margin-left: 0;
    }
}

/* footer */

.footer {
    width: 100%;
    box-sizing: border-box;
    background-color: #F2F2F2;
    padding: 66px calc(50% - 640px) 84px;
    font-size: 14px;
}

.footer_brand_list,
.footer_info_list {
    max-height: 500px;
    transition: max-height .3s;
}

.social_link:not(:last-child) {
    padding-right: 5px;
}

.footer_button {
    cursor: pointer;
    border: 2px solid #1D1D1D;
    padding: 20px 35px;
    transition: background-color .3s, color .5s;
}

.footer_button:hover {
    background-color: #1D1D1D;
    color: #FFFFFF;
}

@media (max-width: 1324px) {
    .form {
        justify-content: space-around;
    }

    .footer {
        padding: 66px 22px 84px;
    }
}

@media (max-width: 1000px) {

    .filter_wrapper,
    .checkboxs_wrapper {
        width: 100%;
    }

    .filter_wrapper:not(:last-child) {
        margin-right: 0;
    }

    .textarea {
        width: 100%;
    }

    .filter_button_submit {
        width: 100%;
    }

    .pagination_wrapper {
        padding: 0 22px;
        width: 100%;
        box-sizing: border-box;
    }

    .pagination_item--desktop {
        display: none;
    }
}


/* global classes */

.block {
    display: block;
}

.position-relative {
    position: relative;
}

.flex {
    display: flex;
}

.flex_line {
    display: flex;
}

.fl--wrap {
    flex-wrap: wrap;
}

.fl-jc--space-between {
    justify-content: space-between;
}

.fl-jc--flex-start {
    justify-content: flex-start;
}

.fl-ai--center {
    align-items: center;
}

.fl-ai--start {
    align-items: start;
}

.fl-direction-left {
    flex-direction: row-reverse;
}

.fl-direction-column {
    flex-direction: column;
}

.fl-grow--1 {
    flex-grow: 1;
}

.fl-shrink--0 {
    flex-shrink: 0;
}

.fl-gap--14 {
    gap: 14px;
}

.gap--27 {
    gap: 27px;
}

.gap--40 {
    gap: 40px;
}


.width--50 {
    width: 50%;
}

.width--1_2 {
    width: 31.5%;
    box-sizing: border-box;
}

.width--66 {
    width: 66%;
    box-sizing: border-box;
}

.width--200_100 {
    width: 200px;
}

.width--250_100 {
    width: 250px;
}

.width--300_100 {
    width: 300px;
}

.width--450_100 {
    width: 450px;
}

.m-width--700_100 {
    max-width: 700px;
}

.width--33-100 {
    width: 33%;
    box-sizing: border-box;
}

.width--25-100 {
    width: 25%;
}

.max-height--100 {
    max-height: 100px;
    overflow: hidden;
}

.max-height--1000 {
    max-height: 600px;
    overflow: hidden;
}

.max-height--0 {
    max-height: 0px;
    overflow: hidden;
}

.margin-top--0 {
    margin-bottom: auto;
}

.margin-top--20 {
    margin-top: 20px;
}

.margin-top--30 {
    margin-top: 30px;
}

.margin-top--40 {
    margin-top: 40px;
}

.margin-top--50 {
    margin-top: 50px;
}

.margin-top--60 {
    margin-top: 60px;
}

.margin-top--60-20 {
    margin-top: 60px;
}

.margin-top--90 {
    margin-top: 90px;
}

.margin-bottom--14 {
    margin-bottom: 14px;
}

.margin-bottom--20 {
    margin-bottom: 20px;
}

.margin-bottom--30 {
    margin-bottom: 30px;
}

.margin-bottom--40 {
    margin-bottom: 40px;
}

.margin-right--90 {
    margin-right: 90px;
}

.margin-right--26 {
    margin-right: 26px;
}

.margin-left--50 {
    margin-left: 50px;
}

.padding-55-110 {
    padding: 55px 110px;
}

.padding-55-35 {
    padding: 55px 35px;
}

.padding-60-60-80 {
    padding: 60px 60px 80px;
}

.padding-40-35 {
    padding: 40px 35px;
}

.padding-45-40 {
    padding: 45px 40px;
}

.padding-30-35 {
    padding: 30px 35px;
}

.padding-16 {
    padding: 16px;
}

.pading-left--20 {
    padding-left: 20px;
}

.pading-right--20 {
    padding-right: 20px;
}

.pading-right--20_10 {
    padding-right: 20px;
}

.bg--1 {
    background-image: url('../image/bg/about.svg');
    background-repeat: repeat;
    background-size: cover;
}

.bg--blue {
    background-color: #45C8D0;
}

.bg--gray {
    background-color: #F2F2F2;
}

.bg--black {
    background-color: #1d1d1d;
}

.text--400 {
    font-weight: 400;
}

.text--500 {
    font-weight: 500;
}

.text--600 {
    font-weight: 600;
}

.text--uppercase {
    text-transform: uppercase;
}


.text--12 {
    font-size: 12px;
    line-height: 20px;
}

.text--16 {
    font-size: 16px;
    line-height: 26px;
}

.text--24 {
    font-size: 24px;
    line-height: 32px;
}

.text--28 {
    font-size: 28px;
    line-height: 36px;
}

.text--40 {
    font-size: 40px;
    line-height: 48px;
}

.text--60 {
    font-size: 60px;
    line-height: 68px;
}

.text-center {
    text-align: center;
}

.text-italic {
    font-style: italic;
}

.color--white {
    color: #FFFFFF;
}

.color--black {
    color: var(--basic-text-color);
}

.color--gray {
    color: var(--gray-text-color);
}


.list-circle {
    list-style: disc;
    padding-left: 20px;
}

.list-minus {
    list-style: '-  ';
    padding-left: 20px;
}


.after-plus {
    position: relative;
}

.after-plus::after,
.after-plus::before {
    position: absolute;
    content: '';
    border-radius: 2px;
    background-color: var(--basic-text-color);
    transition: height .3s, top .3s;
}

.after-plus::after {
    width: 20px;
    height: 2px;
    right: 0;
    top: 17px;
}

.after-plus::before {
    width: 2px;
    height: 20px;
    right: 9px;
    top: 8px;
}

.after-minus::before {
    height: 0px;
    top: 17px;
}

.pointer {
    cursor: pointer;
}

.dropdown-list {
    transition: max-height .3s ease-in-out, margin-top .3s;
}

.no_display_desktop {
    display: none;
}


@media (max-width: 1000px) {

    .after-plus::after {
        top: -40px;
    }

    .after-plus::before {
        top: -49px;
    }

    .after-minus::before {
        top: -40px;
    }

    .flex {
        flex-direction: column;
    }

    .fl-direction--column-reverse {
        flex-direction: column-reverse;
    }

    .width--1_2 {
        width: 100%;
    }

    .width--50 {
        width: 100%;
        box-sizing: border-box;
    }

    .width--66 {
        width: 100%;
        box-sizing: border-box;
    }

    .width--250_100,
    .width--300_100,
    .width--450_100 {
        width: 100%;
        box-sizing: border-box;
    }

    .width--200_100 {
        width: 100%;
        box-sizing: border-box;
    }

    .width--33-100,
    .width--25-100 {
        width: 100%;
        box-sizing: border-box;
    }


    .margin-top--60 {
        margin-top: 50px;
    }

    .margin-top--60-20 {
        margin-top: 20px;
    }

    .margin-top--90 {
        margin-top: 60px;
    }

    .margin-bottom--30_mb {
        margin-bottom: 30px;
    }

    .margin-right--90 {
        margin-right: auto;
    }

    .margin-left--50 {
        margin-left: auto;
    }

    .margin-top--0 {
        margin-top: 0;
    }

    .margin-top--60_mb {
        margin-top: 60px;
    }

    .padding-60-60-80 {
        padding: 50px 25px 60px;
    }

    .padding-55-110 {
        padding: 115px 25px;
    }

    .padding-40-35 {
        padding: 40px 25px;
    }

    .padding-45-40 {
        padding: 45px 25px;
    }

    .padding-30-35 {
        padding: 25px;
    }

    .pading-right--20 {
        padding-right: 0;
    }

    .pading-right--20_10 {
        padding-right: 10px;
    }

    .text--40 {
        font-size: 30px;
        line-height: 42px;
    }

    .text--28 {
        font-size: 24px;
        line-height: 32px;
    }

    .width--100_mb {
        display: block;
        width: 100%;
    }

    .border-box {
        box-sizing: border-box;
    }

    .list--close {
        max-height: 0;
        overflow: hidden;
    }

    .no_display_mobile {
        display: none;
    }

    .no_display_desktop {
        display: flex;
    }
}