:root {
    --text-color: #202020;
    --default-color: rgb(255, 0, 0);
    --main-color: rgb(0, 255, 0);
    --secondary-color: rgb(0, 0, 255);
    --default-size: 14px;
    --default-indent: 15px;
    --default-font: 'Montserrat', sans-serif;
    --default-weight: 400;
    --default-radius: 10px;
}
html, body {
    scroll-behavior:smooth;
    overflow-x: hidden;
}
* {
    margin: 0;
    padding: 0;
}
p, h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
}
a, a:hover {
    text-decoration: none;
    color: #000;
}
button:focus, input:focus, textarea:focus {
    outline: none;
    border-color: #0060AA;
}

.input_container {
    width: 390px;
    position: relative;
}

input:not([type='radio']):not([type='checkbox']), textarea, select {
    text-transform: uppercase;
    padding: 23.5px 24px;
    border: none;
    border-radius: 30px;
    width: 100%;
    webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 70px;
    background-color: #fff;
    font-size: 16px;
}
.input_container label {
    text-transform: uppercase;
    color: #85888D;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
}
.checkbox_container {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 530px;
    width: 80%;
}

.checkbox_container p {
    font-size: 14px;
    line-height: 17px;
}

.checkbox_container p span{
    font-size: 14px;
}

.checkbox_label {
    position: relative;
    display: block;
    width: 16px;
    margin-bottom: 0;
}
input[type="checkbox"] {
    position: absolute;
    top: 5px;
    right: 0;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.checkmark {
    position: absolute;
    top: 5px;
    right: 0;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border: 1px solid #85888D;
    border-radius: 3px;
    cursor: pointer;
}

.checkmark:hover {
    background-color: #ccc;
}
  
  /* When the checkbox is checked, add a blue background */
.checkbox_container input:checked ~ .checkmark {
    background-color: #0060AA;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox_label input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox_label .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.input_container input:focus, .input_container select:focus, .input_container textarea:focus {
    border-color: #0060AA;
}

select:required:invalid  {
    text-transform: uppercase;
    color: #85888D;
    font-size: 14px;
    font-weight: 600;
}

select option {
    color: #000;
    font-weight: 400;
}


select option[value=""]{
    text-transform: uppercase;
    color: #85888D;
    font-size: 14px;
    font-weight: 600;
}

img {
    max-width: 100%;
}
body {
    font-family: var(--default-font);
    font-size: var(--default-size);
    font-weight: var(--default-weight);
    color: var(--text-color);
}
.transition {
    -webkit-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
}
.bg-lightgray {
    background-color: #f1f1f1;
}
.bg-mediumgray {
    background-color: #373737;
}
.bg-darkgray {
    background-color: #242424;
}
.all-btn {
    display: inline-block;
    text-align: center;
    color: var(--default-color);
    font-weight: 500;
    padding: 7px 27px;
    -webkit-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
    width: fit-content;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    border: 1px solid var(--default-color);
    border-radius: var(--default-radius);
    margin: var(--default-indent) 0;
}
.main-btn {
    border-color: var(--main-color);
    background-color: var(--main-color);
    color: var(--text-color);
}
.main-btn:hover {
    box-shadow: 3px 3px 15px 0 var(--main-color);
}
.secondary-btn {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    color: var(--text-color);
}
.secondary-btn:hover {
    box-shadow: 3px 3px 15px 0 var(--secondary-color);
}
.burger-menu {
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
    margin-left: 25px;
    position: relative;
}
.burger-menu span {
    display: block;
    width: 38px;
    height: 2px;
    background: #0060AA;
    position: absolute;
    left: 5px;
    -webkit-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
}
.burger-menu span:nth-child(1) {
    top: 11px;
}
.burger-menu span:nth-child(2) {
    top: 22px;
}
.burger-menu span:nth-child(3) {
    top: 22px;
}
.burger-menu span:nth-child(4) {
    top: 33px;
}
.burger-menu.open span:nth-child(1) {
    top: 0;
    opacity: 0;
}
.burger-menu.open span:nth-child(2) {
    transform: rotate(45deg);
}
.burger-menu.open span:nth-child(3) {
    transform: rotate(-45deg);
}
.burger-menu.open span:nth-child(4) {
    top: 50px;
    opacity: 0;
}
.container-wide {
    max-width: 1530px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
.menu_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 0 5%;
}

.menu li a {
    transition: all .4s ease-in-out;
    font-size: 21px;
}


.info_header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: 20%;
}

.nav {
    min-width: 763px;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.lang_container {
    display: flex;
    justify-content: space-between;
	align-items: center;
}

.top_arrow {
    width: 35px;
    height: 35px;
    cursor: pointer;
    background: url('/images/ge/up.svg') no-repeat center var(--blue);
    border: 0.5px solid #FFFFFF;
    border-radius: 4px;    
}
/*--------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 1700px) {
    .menu li a,.mod-languages .advancedSelect {
        font-size: 18px;
    }

    .nav {
        min-width: unset;
    }
}
@media screen and (max-width: 1500px){
    .container-wide {
        max-width: 1170px;
    }
}
@media screen and (max-width: 1300px){
    .container-wide {
        max-width: 970px;
    }
    .burger-menu {
        display: block;
        z-index: 5;
    }
    .header .menu_container {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 70px 15px 5px 15px;
        background: #ffff;
        z-index: 3;
        width: 100vw;
        height: 100vh;
        text-align: left;
    }

    .menu_container {
        width: 80%;
        justify-content: flex-end;
    }
    .menu li {
        padding-top: 10px;
        margin-bottom: 15px;
    }
    .menu li a {
        font-size: 18px;
        font-weight: 500;
    }

    .info_header {
        width: 500px;
        margin-top: 40px;
    }

    .nav {
        display: flex;
        flex-direction: column;
    }

    .footer .nav {
        flex-direction: row;
    }
}
@media screen and (max-width: 1100px){
    .container-wide {
        max-width: 720px;
    }
    .menu_container {
        justify-content: space-around
    }
    .footer .nav {
        display: none;
    }
}
@media screen and (max-width: 768px){
    .container-wide {
        max-width: 520px;
    }
    
}
@media screen and (max-width: 550px){
    .container-wide {
        max-width: 100%;
    }

    input:not([type='radio']):not([type='checkbox']), textarea, select  {
        padding-left: 10px;

    }

    .input_container {
        margin-top: 15px;
        width: 100%;
    }
}
@media screen and (max-width: 425px){

}