@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

.no-scroll{
    overflow: hidden;
}

ol, ul{
    list-style-type: none; 
}

/*contact form 7 start*/
span.wpcf7-not-valid-tip,
div.wpcf7 .ajax-loader,
div.wpcf7-mail-sent-ok,
div.wpcf7-validation-errors, 
div.wpcf7-acceptance-missing,
div.wpcf7-response-output{
    display: none !important;
}
.form-front .wpcf7-not-valid{
    border: 1px solid #e52428 !important;
}   

.wpcf7-not-valid {
    border-color: #f34f41 !important;
}
.alertify-notifier .ajs-message.ajs-warning{
    background: white;
    -webkit-box-shadow: 0 0 3px #333333;
    box-shadow: 0 0 3px #333333;
}
.alertify-notifier .ajs-message.ajs-success {
    color: #fff;
    background: rgba(40, 136, 62, 0.9);
    text-shadow: 0 0 1px rgba(0,0,0,.5);
}
.alertify-notifier{
    z-index: 99998;
}
/*contact form 7 end*/



/* main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: auto;
    width: 100%;
} */


.color-orange{
    color: #f1cb30;
}
.form-send{
    /*margin-top: 40px;*/
    border: 7px solid #bebebe;
    width: 100%;
    max-width: 500px;
    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: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0px 15px 34px 15px;
    background-color: white;
}
.title-form-send{
    font-size: 24px;
    font-weight: 700;
    color: black;
    text-align: center;
    margin-bottom: 30px;
}
.form-send > *:not(.title-form-send){
    max-width: 345px;
    width: 100%;
}
.form-send input:not([type="submit"]),
.form-send textarea,
.form-control{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    outline: none;
    -webkit-appearance: none;
    height: 48px;
    border-radius: 8px;
    border: 1px solid rgba(191, 197, 195, 0.20);
    text-align: center;
    background-color: transparent;
    font-size: 14px;
    width: 100%;
    padding: 0 10px;
}
.form-send input:not([type="submit"]):focus,
.form-send textarea:focus{
    border-color: #e06618;
}
.form-send textarea{
    padding: 12px 20px;
    height: 136px;
    margin-bottom: 22px;
    font-size: 14px;
}
.form-send input[type="submit"], .btn-custom{
    background-color: #e06618;
    width: 100%;
    min-height: 56px;
    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;
    text-align: center;
    text-transform: uppercase;
    color: white;
    font-size: 20px;
    font-weight: 700;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    outline: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    -webkit-appearance: none;    
}
.form-send input[type="submit"]:hover, .btn-custom:hover {
    -webkit-box-shadow: inset 0 0 0 2px #e06618, inset 0 0 0 4px white;
            box-shadow: inset 0 0 0 2px #e06618, inset 0 0 0 4px white;
}


/*preloader start*/
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fafafa;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.spin {
    width: 280px;
    height: 280px;
    top: 25%;
    left: 50%;
    margin-left: -150px;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: black;
    position: absolute;
    -webkit-animation: spin 1500ms infinite linear;
            animation: spin 1500ms infinite linear;
}
.img-preloader{
    width: 160px;
    height: auto;
    top: calc(25% + 150px);
    left: calc(50% + 150px);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-left: -155px;
    position: absolute;
}
.spin:before {
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 3px solid transparent;
    border-top-color: #e06618;
    -webkit-animation: antispin 700ms infinite linear;
            animation: antispin 700ms infinite linear;
    content: "";
    position: absolute;
    border-radius: 60%;
}

@-webkit-keyframes spin { 
    100% {
        -webkit-transform:rotate(360deg);
                transform:rotate(360deg);
} }

@keyframes spin { 
    100% {
        -webkit-transform:rotate(360deg);
                transform:rotate(360deg);
} }
@-webkit-keyframes antispin {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-360deg);
                transform: rotate(-360deg);
    }
}
@keyframes antispin {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-360deg);
                transform: rotate(-360deg);
    }
}
/*preloader end*/






.class-empty,
.class_empty{
    overflow: hidden !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    min-height: 0 !important;
    border-top-width: 0 !important;
    border-bottom-width: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}




/*pop-up start*/
.modal-container{
    max-width: 570px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    background-color: transparent;
    padding: 0;
}
.modal-block-m{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    max-width: 100%;
    width: 100%;
    position: relative;
    border-radius: 6px;
    background-color: white;
    margin: auto;
    overflow: hidden;
}
.modal-img{
    width: 100%;
    max-width: 170px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    height: auto;
}
.modal-content{
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    /*max-width: 400px;*/
    max-width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 33px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.modal-content .title{
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
    padding-bottom: 18px;
}
.modal-caption{
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}
.modal-title{
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 37px;
}
.modal-close{
    position: absolute;
    width: 16px;
    height: 16px;
    right: 18px;
    top: 18px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/close-modal.svg);
    cursor: pointer;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.modal-close:hover{
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.modal-content form{
    margin-top: 4px;
}
.modal-content span{
    width: 100%;
}
.compensate-for-scrollbar{
    margin-right: 0 !important;
}
.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="tel"],
.modal-content select,
.modal-content textarea{
    border: 1px solid #CCCCCC;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 0;
    min-height: 44px;
    padding: 7px 20px;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    margin-top: 12px;
}
.modal-content textarea{
    height: 88px;
}

.modal-content input[type="submit"]{
    width: 100%;
    border: none;
    margin-top: 16px;
    cursor: pointer;
    min-height: 46px;
    outline: none;
}
.modal-content .submit:hover{
    background-color: #78CC80;
    color: white;
}
/*pop-up end*/

/*privacy-policy start*/
.block-privacy-policy{
    font-size: 10px;
    padding: 0;
    margin-top: 20px;
    color: #8c807a;
    font-weight: 400;
    width: 100%;
    text-align: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 34px;
    background-image: url(../img/polit.png);
    background-size: 20px auto;
    background-repeat: no-repeat;
    background-position: 0 0;
    min-height: 20px;
}
.modal-container .block-privacy-policy{
    background-image: url(../img/polit-front.png);
    background-size: 16px auto;
    background-position: 0 1px;
    padding-left: 26px;
}
.block-privacy-policy .link-privacy-policy{
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
    color: #8c807a;
}
.link-privacy-policy{
    text-decoration: underline;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.link-privacy-policy:hover{
    text-decoration: none;
}
/*privacy-policy end*/



/*polit start*/

.modal-container-polit{
    max-width: 95%;
    max-height: 95%;
    width: 1000px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 36px 34px;
    height: auto;
    position: relative;
}
.modal-block-polit{
    width: 100%;
    max-width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.modal-close-polit{
    position: absolute;
    top: 24px;
    right: 24px;
    border: 2px solid transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 34px;
    height: 34px;
    background-image: url(../img/close-modal.svg);
    background-size: 22px auto;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    cursor: pointer;
    border-radius: 100%;
    z-index: 100;
}
.modal-close-polit:hover{
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.modal-content-polit{
    line-height: 22px;
}
.title-modal-polit{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.02em;
    position: relative;
}

/*polit end*/



main ul,
main ol,
.fancybox-container ul,
.fancybox-container ol{
    list-style-type: none;
    padding: 0;
    margin: 25px 0;
}
main ol,
.fancybox-container ol{
    counter-reset: section; 
}
main ol li,
.fancybox-container ol li{
    padding-left: 35px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    min-height: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: 100%;
    margin-bottom: 25px;
}
main ol li:before,
.fancybox-container ol li:before{
    counter-increment: section;                 
    content: counter(section);
    width: 22px;
    height: 22px;
    background-color: #e06618;
    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;
    text-align: center;
    color: white;
    padding: 3px 2px 1px 2px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: 700;
    font-size: 12px;
    border-radius: 100%;
}
/*
main ul li,
.fancybox-container ul li{
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 18px;
    margin-bottom: 12px;
}*/
/*
main ul li:after,
.fancybox-container ul li:after{
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 5px;
    background-color: #e06618;
    border-radius: 100%;
}*/
main li,
.fancybox-container li{
    font-size: 16px;
    line-height: 20px;
}
main li:last-child,
.fancybox-container li:last-child{
    margin-bottom: 0;
}







@media (max-width: 770px){
    .h1 {
        font-size: 22px;
    }
    .caption-h1{
        font-size: 18px;
        margin-top: 16px;
    }
    .block-content{
        margin-top: 30px;
    }
    .logo{
        margin-right: 30px;
    }
    .title-form-send{
        font-size: 20px;
        margin-bottom: 20px;
    }
}
@media (max-width: 700px){
    .modal-img{
        display: none;
    }
    .modal-container{
        max-width: 400px;
    }
    .modal-content,
    .modal-container-polit{
        padding: 20px;
    }
    .modal-close,
    .modal-close-polit{
        right: 10px;
        top: 10px;
    }
    .modal-title,
    .title-modal-polit{
        font-size: 24px;
        line-height: 28px; 
    }
    .modal-content .input,
    .modal-content .submit{
        min-height: 44px;
        margin-top: 12px;
    }
    .modal-content .submit{
        margin-top: 15px;
    }
}


@media (max-width: 570px){
    .h1 span{
        display: block;
    }
    .form-send{
        padding: 25px 15px;
        border-width: 4px;
        margin-top: 30px;
    }
    .header-container{
        -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;
        padding: 15px;
        text-align: center;
    }
    .logo-caption{
        padding-top: 15px;
        margin-left: 0px;
    }
}


/*modals*/

.modal,
.modal-box {
	z-index: 900;
}

.modal-sandbox {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: transparent;
}

.modal {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgb(0,0,0);
	background: rgba(0,0,0,.5);
	overflow: auto;
}

.modal-box {
	position: absolute;
	width: 80%;
	max-width: 320px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	animation-name: modalbox;
	animation-duration: .4s;
	animation-timing-function: cubic-bezier(0,0,.3,1.6);
	/* background-color: #28282c; */
	color: #ffffff;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.21);
	border-radius: 3px;
	padding: 40px 35px;
    border-radius: 24px
}


.modal-header {
	line-height: 24px;
}


/* Close Button */
.close-modal {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
	opacity: .6;
    color: #000;
    padding: 16px;
    line-height: 1;
}
.close-modal:hover{
	opacity: 1;
}

/* Animation */
@-webkit-keyframes modalbox {
	0% {
		top: 0;
		opacity: 0;
	}
	100% {
		top: 50%;
		opacity: 1;
	}
}

@keyframes modalbox {
	0% {
		top: 0;
		opacity: 0;
	}
	100% {
		top: 50%;
		opacity: 1;
	}
}

/*form in modal*/
.modal_title{
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    margin-bottom: 32px;
    line-height: 30px;
    color: #090E12;
}
.modal_form{
	text-align: center;
    color: #000;
}
.modal_form .btn{
	border: none;
    outline: none;
    background-color: #090E12;
    height: 48px;
    text-transform: none;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: #fff;
}
.modal_form .btn:hover{
    color: #090E12;
    background-color: #FC0;
}
.modal_form .btn:focus{

}
.modal_form .form-group{
    margin-bottom: 17px;
}
.modal_form p{
	position: relative;
	margin: 0 0 35px;
}
.modal_form p label{
	display: block;
	z-index: 2;
	position: absolute;
	background-color: #28282c;
	padding: 0 7px;
	left: 10px;
	top: -10px;
	font-weight: 300;
}
.modal_form p input{
	display: block;
	font-weight: 300;
	background-color: transparent;
	border-width: 1px;
	border-color: rgb(102, 102, 111);
	border-style: solid;
	border-radius: 3px;
	line-height: 38px;
	width: 100%;
	color: #fff;
	padding: 0 15px;
}
.modal_form button{
	width: 100%;
	justify-content: center;
}

/*-------------------- POPUP --------------------*/
.overlay {
	left: 0;
	opacity: 0;
	position: fixed;
	width: 100%;
	top: 0;
	height: 100%;
	z-index: -1;
	-webkit-transition: opacity .4s;
	transition: opacity .4s;
	background-color: rgba(0,0,0,.7);
}
.popup {
	left: 50%;
	-webkit-transform: translate(-50%, -50%) scale(0);
	transform: translate(-50%, -50%) scale(0);
	position: fixed;
	top: 50%;
	z-index: -1;
	-webkit-transition: .4s ease;
	transition: .4s ease;
	max-width: 440px;
	width: 100%;
	background-color: #fff;
	padding: 30px 20px;
}
.popup.active {
	z-index: 10;
	-webkit-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
}
body.modal .overlay {
	opacity: 1;
	z-index: 9;
	overflow: hidden;
}
body.modal {
	overflow: hidden;
}
.popup h5 {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 24px;
	text-align: center;
	margin-bottom: 20px;
	color: #000;
}
.popup-close {
	width: 28px;
	height: 28px;
	position: absolute;
	right: -35px;
	top: -35px;
	cursor: pointer;
	-webkit-transition: .4s ease;
	transition: .4s ease;
}
.popup-close::before,
.popup-close::after {
	content: "";
	width: 2px;
	height: 35px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: auto;
	background-color: #fff;
	-webkit-transition: .3s ease;
	transition: .3s ease;
}
.popup-close::before {
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
	transform: translate(-50%,-50%) rotate(45deg);
}
.popup-close::after {
	-webkit-transform: translate(-50%,-50%) rotate(-45deg);
	transform: translate(-50%,-50%) rotate(-45deg);
	z-index: 1;
}
.popup-close:hover::before,
.popup-close:hover::after {
	opacity: .6;
}
.popup ul li{
	margin-bottom: 10px;
}
.popup ul li:last-child{
	margin-bottom: 0;
}
.popup input[type="submit"]{
	border: none;
	text-transform: uppercase;
	max-width: 290px;
	margin: 20px auto 0;
	background-color: red;
	color: #fff;
	-webkit-transition: .4s ease;
	transition: .4s ease;
	font-weight: 700;
	font-size: 16px;
	display: block;
	width: 100%;
	height: 46px;
	padding: 0 20px;
}
.popup .popup-btn:hover{
	opacity: .7;
}

.reg_log .tab_nav ul{
	border-bottom:3px solid #cbcbcb;
	padding: 0 0px 15px 0px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
    justify-content: space-between;
    list-style: none;
}
.reg_log .tab_nav ul li{
	font-size: 20px;
	color: #000;
	cursor: pointer;
    position: relative;
    width: 50%;
    text-align: center;
}
.reg_log .tab_nav ul li.active:before{
	position: absolute;
	left: 0;
	bottom: -18px;
	height: 3px;
	width: 100%;
	content: "";
	background-color: #e06618;
}
.reg_log .tab_nav ul li.active{
	color: #e06618;
}

.sign_in_holder, .log_in_holder {
    display:none;
}

.sign_in_holder.active, .log_in_holder.active {
    display:block;
}

.error-message{
    color: #e06618;
    font-size: 11px;
    position: relative;
/*    top: -15px;*/
}

.help-block {
    color: #e06618;
    font-size: 14px;
    position: relative;
    top: -10px;
}

.lost-password {
    text-align: center;
    margin-top: 20px;
}
.lost-password a {
    color: #BFC5C3;
    text-decoration: none;
}
.lost-password a:hover{
    text-decoration: underline;
    color: #000;
}
.input_block li{
    position: relative;
    color: #fff;
    font-size: 18px;
    padding-left: 60px;
    margin-bottom: 15px;
    min-height: 45px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.input_block li span{
    display: inline-block;
    vertical-align: middle;
}
.input_block li span.mark{
    position: relative;
    height: 37px;
    width: 41px;
}
.input_block li span.mark {
    content: '';
    height: 37px;
    width: 41px;
    display: -webkit-inline-flex;
    display: inline-flex;
    background: url("../img/checked.png")no-repeat center center;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.cover_outside.q_style{
    margin-top: 40px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.cover_outside.q_style .input_block{
    order: 2;
    width: 600px;
    margin-left: 40px;
}
@media (max-width: 991px) {
    .cover_outside.q_style{
        -webkit-flex-flow: column;
        -moz-flex-flow: column;
        -ms-flex-flow: column;
        -o-flex-flow: column;
        flex-flow: column;
    }
    .cover_outside.q_style .input_block{
        margin-left: 0;
        margin-top: 30px;
        max-width: 380px;
    }
}

/* new styles */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #040213; }

h1 {
  font-size: 60px;
  line-height: 80px;
  font-weight: 700;
  text-transform: uppercase; }

h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  text-transform: uppercase; }

h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: #FFCC00;
  text-transform: uppercase; }

h4 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0 25px; }

.container {
  width: 100%;
  max-width: 1730px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 15px; }

main section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0; }

.section_title {
  text-align: center; }

.row {
  width: 100%;
  display: flex; }

.logo_wrap {
  display: flex;
  align-items: center; }
  .logo_wrap .logo_txt {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7; }
  .logo_wrap .logo_img {
    margin-right: 20px; }
.logo_wrap .logo_img img{
    width:180px; 
}
.btn {
  display: block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  border-radius: 5px;
  background-color: #FFCC00;
  padding: 20px 45px;
  cursor: pointer;
  width: max-content;
  transition: all .3s;
  height: max-content;
  text-transform: uppercase; }

.btn:hover {
  background-color: #fff; }

.header_btn {
  font-size: 14px;
  font-weight: 400;
  padding: 10px 25px;
  margin: 5px 10px;
  text-transform: none; }

.reg-btn {
  background-color: #fff; }

.reg-btn:hover {
  transition: all .3s;
  background-color: #FFCC00; }

header {
  width: 100%;
  background-color: transparent;
  padding: 50px 5px 20px;
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center; }
  header .row {
    justify-content: space-between;
    align-items: center; }
  header .btn_wrap {
    display: flex; }

main {
  width: 100%; }

.first-section {
  position: relative; }
  .first-section .first_bg {
    position: absolute;
    top: -15%;
    left: -20%;
    z-index: 2;
    transform: rotate(-30deg);
    height: 500px;
    width: 150%;
    background: url(../img/bg_first.png) repeat-x; }
  .first-section .container {
    position: relative;
    z-index: 3; }
    .first-section .container .row {
      justify-content: flex-end;
      align-items: center; }
    .first-section .container .phone {
      background-color: #000;
      width: 100%;
      max-width: 398px;
      height: 734px;
      border: 2px solid #fff;
      border-radius: 30px;
      margin: 40px;
      display: flex;
      justify-content: center;
      position: relative;
      overflow: hidden; }
      .first-section .container .phone .phone_shadow {
        top: 0;
        left: 0;
        position: absolute;
        background: url(../img/bg_phone.png);
        width: 100%;
        height: 100%; }
      .first-section .container .phone .phone-head {
        position: absolute;
        top: 0;
        height: 100px;
        width: 100%;
        z-index: 6;
        background: black;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #040213 56%); }
      .first-section .container .phone .popup_wrap {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 45px;
        width: 90%;
        height: initial;
        overflow: hidden;
        position: relative; }
        .first-section .container .phone .popup_wrap .popup_item {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          margin: 20px 0;
          opacity: 0;
          transition: all .2s linear;
          margin-left: -500px; }
          .first-section .container .phone .popup_wrap .popup_item .popup_logo {
            height: 66px;
            width: 66px;
            border: 1px solid #626262;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 30px; }
          .first-section .container .phone .popup_wrap .popup_item .popup_msg {
            font-size: 18px;
            line-height: 28px; }
            .first-section .container .phone .popup_wrap .popup_item .popup_msg .msg_sum {
              font-size: 30px;
              font-weight: 700;
              line-height: 40px; }
        .first-section .container .phone .popup_wrap .popup_item.test {
          opacity: 1;
          margin-left: 0; }
    .first-section .container .first_txt {
      margin-left: 100px;
      width: 50%; }
      .first-section .container .first_txt p {
        width: 79%;
        font-size: 24px;
        line-height: 34px; }
      .first-section .container .first_txt h1 span {
        color: #FFC638; }
    .first-section .container .btn_wrap {
      margin: 70px 0; }

.trafic-section .section_title {
  width: 75%;
  margin: 40px; }

.trafic-section .trafic_line {
  justify-content: space-around; }
  .trafic-section .trafic_line .trafic_item {
    max-width: 240px;
    width: 100%; }
  .trafic-section .trafic_line .trafic_img {
    height: 100%;
    max-height: 96px; }

.advant-section, .booking-section {
  position: relative;
  background: #004eff;
  background: url(../img/advant-bg.png), linear-gradient(0deg, #004ef0 14%, #ac7dd6 29%, #ac7dd6 38%, #004ef0 61%, #ac7dd6 76%);
  background-position: top;
  background-size: contain;
  background-repeat: repeat-y;
  padding-bottom: 200px;
  cursor: none;
  overflow: hidden; }
  .advant-section .top_shd, .booking-section .top_shd {
    position: absolute;
    width: 100%;
    height: 40px;
    top: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #040213 72%); }
  .advant-section .spotlight, .advant-section .spotlight2, .booking-section .spotlight, .booking-section .spotlight2 {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    background-image: radial-gradient(#040213, #040213); }
  .advant-section .row, .booking-section .row {
    position: relative;
    z-index: 2;
    padding: 200px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.05;
    transition: all .7s linear; }
  .advant-section .container, .booking-section .container {
    align-items: flex-end; }
  .advant-section .advant_txt, .booking-section .advant_txt {
    width: 42%;
    position: relative;
    z-index: 5; }
    .advant-section .advant_txt h2, .booking-section .advant_txt h2 {
      margin: 55px 0 45px;
      text-transform: uppercase; }
    .advant-section .advant_txt p, .booking-section .advant_txt p {
      width: 79%;
      font-size: 18px;
      line-height: 30px; }
    .advant-section .advant_txt .btn_wrap, .booking-section .advant_txt .btn_wrap {
      margin: 80px 0; }
  .advant-section .advant_bg-img img, .booking-section .advant_bg-img img {
    width: 100%; }
  .advant-section .row:nth-child(2n+1) .advant_bg-img, .booking-section .row:nth-child(2n+1) .advant_bg-img {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    left: 3%; }
  .advant-section .row:nth-child(2n) .container, .booking-section .row:nth-child(2n) .container {
    align-items: flex-start; }
  .advant-section .row:nth-child(2n) .advant_bg-img, .booking-section .row:nth-child(2n) .advant_bg-img {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    right: 0; }
  .advant-section .row:nth-child(1) .advant_txt, .booking-section .row:nth-child(1) .advant_txt {
    width: 41%; }
    .advant-section .row:nth-child(1) .advant_txt p, .booking-section .row:nth-child(1) .advant_txt p {
      font-size: 24px;
      line-height: 34px; }
  .advant-section .row:nth-child(2) .advant_bg-img, .booking-section .row:nth-child(2) .advant_bg-img {
    right: 10%; }
  .advant-section .row:nth-child(3) .advant_bg-img, .booking-section .row:nth-child(3) .advant_bg-img {
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    left: 15%; }

.advant-section .row.active, .booking-section .row.active {
  opacity: 1; }

.princip-section {
  background-color: #fff;
  color: #000; }
  .princip-section .princip_line {
    justify-content: space-around;
    margin: 80px 0; }
  .princip-section .princip_item {
    max-width: 360px;
    padding: 5px; }
    .princip-section .princip_item .princip_numb {
      font-size: 72px;
      font-weight: 700;
      color: #FFCC00; }

.booking-section {
  background: url(../img/advant-bg.png), linear-gradient(0deg, #004ef0 31%, #004ef0 81%);
  background-position: center;
  background-size: cover;
  padding-bottom: 0; }
  .booking-section .row {
    padding: 140px 0; }
    .booking-section .row .container {
      align-items: flex-start; }
      .booking-section .row .container .booking_txt {
        width: 45%;
        position: relative;
        z-index: 5; }
        .booking-section .row .container .booking_txt p {
          width: 85%;
          font-size: 24px;
          line-height: 34px; }
        .booking-section .row .container .booking_txt .btn_wrap {
          margin: 70px 0 20px; }
      .booking-section .row .container .booking_bg-img {
        position: absolute;
        top: 65%;
        transform: translateY(-50%);
        right: 3%; }
        .booking-section .row .container .booking_bg-img img {
          width: 100%; }

footer {
  width: 100%;
  background-color: #020106;
  padding: 40px 0;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center; }
  footer .container {
    align-items: flex-start; }
  footer .footer_line {
    margin: 40px 0;
    display: flex; }
    footer .footer_line .about-text {
      width: 70%;
      margin-right: 40px; }
  footer .logo_wrap {
    margin-right: 100px; }
  footer .link_wrap {
    display: flex;
    align-items: center; }
footer .link_wrap a{
    border-radius: 100%;
    width: 47px;
    height: 47px;
    display: inline-flex;
    background-color: #524E65;
    align-items: center;
    justify-content: center;
    transition: .3s background-color;
}
footer .link_wrap a:hover{
    background-color: #f1cb2f;
}
footer .link_wrap a:hover svg{
    fill: #020106;

}
footer .link_wrap  a svg{
    fill: #020106;
    width: 28px;
    height: 16px; 

}   
footer .link_wrap  svg{
    fill: #524E65;
    width: 47px;
    height: 47px;
    transition: .3s fill;
}  
footer .link_wrap  svg:hover{
    fill: #f1cb2f;
}  
footer .link_wrap .social_link {
    margin: 5px 20px; }
  footer ul {
    list-style: none;
    margin: 0;
    padding: 10px; }
    footer ul li {
      margin-bottom: 10px; }
    footer ul a {
      text-decoration: none;
      color: #fff; }
    footer ul a:hover {
      color: #FFCC00; }

@media screen and (max-width: 1850px) {
  .container {
    width: calc(100% - 40px);
    margin: 0 20px; }
  .trafic-section .trafic_line {
    justify-content: space-around; } }

@media screen and (max-width: 1600px) {
  h1 {
    font-size: 50px;
    line-height: 62px;
    margin: 10px 0; }
  h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 53px; }
  h3 {
    font-size: 22px;
    line-height: 30px;
    margin: 10px 0; }
  h4 {
    font-size: 20px;
    margin: 10px 0 20px; }
  header {
    padding: 30px 5px 10px; }
  .advant-section {
    padding-bottom: 100px; }
  .advant-section .row, .booking-section .row {
    padding: 150px 0 90px; }
  .advant-section .row:nth-child(1) .advant_txt, .booking-section .row:nth-child(1) .advant_txt {
    width: 51%; }
  .advant-section .row:nth-child(2) .advant_bg-img, .booking-section .row:nth-child(2) .advant_bg-img {
    right: 0%; }
  .advant-section .row:nth-child(3) .advant_bg-img, .booking-section .row:nth-child(3) .advant_bg-img {
    top: 60%;
    left: 8%;
    width: 28%; }
  .advant-section .row:nth-child(2n) .advant_bg-img, .booking-section .row:nth-child(2n) .advant_bg-img {
    top: 55%;
    width: 45%; }
  .advant_bg-img {
    width: 44%; }
  .advant-section .advant_txt, .booking-section .advant_txt {
    width: 55%; }
  .booking-section .row .container .booking_txt {
    width: 61%; }
  .first-section .container .first_txt {
    margin-left: 50px; }
  .first-section .container .btn_wrap {
    margin: 50px 0; }
  .first-section .container .phone {
    max-width: 300px;
    height: 540px; }
  .first-section .container .phone .popup_wrap {
    align-items: flex-start;
    padding: 10px 15px;
    padding-left: 40px; }
  .first-section .container .phone .popup_wrap .popup_item {
    margin: 10px 0;
    margin-left: -500px; }
  .first-section .container .phone .popup_wrap .popup_item .popup_logo {
    height: 60px;
    width: 60px;
    margin-right: 25px; }
  .first-section .container .phone .popup_wrap .popup_item .popup_msg {
    font-size: 16px;
    line-height: 22px; }
  .first-section .container .phone .popup_wrap .popup_item .popup_msg .msg_sum {
    font-size: 24px; }
  .first-section .container .first_txt p {
    font-size: 22px;
    line-height: 32px; }
  .princip-section .princip_line {
    margin: 40px 0; }
  .princip-section .princip_item {
    max-width: 270px; }
  .princip-section .princip_item .princip_numb {
    font-size: 66px; }
  .booking-section .row .container .booking_bg-img {
    top: 73%;
    width: 53%; } }

@media screen and (max-width: 1200px) {
  h2 {
    font-size: 32px;
    line-height: 40px; }
  .first-section .container .phone {
    margin: 20px; }
  .first-section .container .first_txt {
    margin-left: 50px; }
  .advant-section .row, .booking-section .row {
    padding: 100px 0; } }

@media screen and (max-width: 1020px) {
  h1 {
    font-size: 46px;
    line-height: 50px; }
  .first-section .first_bg {
    display: none; }
  .logo_wrap .logo_img {
    margin: 5px 0 20px; }
  .first-section .container .first_txt {
    margin-left: 20px;
    width: 100%; }
  .first-section .container .row {
    align-items: center;
    flex-direction: column; }
  .first-section .container .btn_wrap {
    margin: 40px 0; }
  header .row {
    align-items: center;
    flex-direction: column; }
  .logo_wrap .logo_txt {
    display: none; }
  .trafic-section .trafic_line {
    flex-wrap: wrap;
    width: 100%; }
  .trafic-section .trafic_line .trafic_item {
    max-width: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .trafic-section .trafic_line .trafic_item p {
    margin-top: 0;
    margin-bottom: 40px; }
  .advant-section .row:nth-child(1) .advant_txt, .booking-section .row:nth-child(1) .advant_txt {
    width: 100%; }
  .advant-section .advant_txt, .booking-section .advant_txt {
    width: 100%; }
  .advant-section .row:nth-child(2n+1) .advant_bg-img, .booking-section .row:nth-child(2n+1) .advant_bg-img {
    top: 74%;
    left: auto;
    right: 0; }
  .advant-section .row:nth-child(2n) .advant_bg-img, .booking-section .row:nth-child(2n) .advant_bg-img {
    top: 75%;
    width: 48%; }
  .advant-section .row, .booking-section .row {
    padding: 60px 0; }
  .princip-section .princip_line {
    flex-direction: column;
    align-items: center;
    margin: 30px 0; }
  .booking-section .row .container .booking_bg-img {
    top: 84%;
    width: 44%; }
  .advant-section, .booking-section {
    padding-bottom: 0;
    padding-top: 0; }
  .booking-section .row .container .booking_txt {
    width: 100%; }
  footer .footer_line {
    width: 100%;
    margin: 10px 0;
    flex-direction: column;
    align-items: flex-start; }
  footer .footer_line .about-text {
    width: 100%;
    margin-right: 10px; } }

@media screen and (max-width: 760px) {
  h1 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 0; }
  h2 {
    font-size: 22px;
    line-height: 30px; }
  h3 {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    margin: 10px 0; }
  h4 {
    font-size: 18px;
    margin: 10px 0 20px; }
  .first-section .container .phone {
    display: none; }
  .first-section .container .first_txt {
    margin-left: 10px; }
  .first-section .container .first_txt p {
    width: 100%;
    font-size: 16px;
    line-height: 26px; }
  .first-section .container .btn_wrap {
    margin: 25px 0; }
  .trafic-section .section_title {
    width: 100%;
    margin: 0; }
    .trafic-section .section_title h2 {
      text-align: left; }
  .trafic-section .trafic_line .trafic_item {
    margin: 15px 0;
    max-width: 100%;
    width: 100%; }
  .advant_bg-img {
    display: none; }
  .advant-section .row, .booking-section .row {
    padding: 20px 0; }
  .advant-section .advant_txt h2, .booking-section .advant_txt h2 {
    margin: 25px 0 20px; }
  .advant-section .advant_txt p, .booking-section .advant_txt p {
    width: 100%;
    font-size: 14px;
    line-height: 22px; }
  .advant-section .row:nth-child(1) .advant_txt p, .booking-section .row:nth-child(1) .advant_txt p {
    font-size: 16px;
    line-height: 24px; }
  .advant-section .advant_txt .btn_wrap, .booking-section .advant_txt .btn_wrap {
    margin: 30px 0; }
  .btn {
    padding: 20px 30px; }
  .princip-section .princip_item .princip_numb {
    font-size: 60px; }
  .booking-section .row .container .booking_txt p {
    width: 100%;
    font-size: 16px;
    line-height: 26px; }
  .booking-section .row .container .booking_bg-img {
    display: none; }
  .header_btn {
    padding: 10px 25px; } }


.lang-sw{
    position: relative;
    text-transform: uppercase;
    margin-right: 60px;
    margin-left: auto;
}
.lang-sw > a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.lang-sw > a img {
    width: 30px;
    margin-right: 10px;
}
.lang-sw ul.dropdown{
    display: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 19;
    left: 50%;
    margin-left: -55px;
    top: calc(100% + 20px);
    width: 110px;
    background-color: #212121;
    border: 1px solid rgba(84,84,84,0.3);
}
.lang-sw .dropdown li a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
}
.lang-sw .dropdown li a img {
    width: 20px;
    height: 10px;
    margin-right: 15px;
}
.lang-sw > a:hover,
.lang-sw .dropdown li a:hover {
    color: #ecaf00;
}
@media screen and (max-width: 1020px){
    .lang-sw{
        margin-right: auto;
        margin-left: auto;
    }        

}    



/*new index page*/
*{
    box-sizing:border-box;
}
@font-face {
    font-family: Inter;
    src: url(../fonts/inter/Inter-Regular.ttf);
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: Inter;
    src: url(../fonts/inter/Inter-Bold.ttf);
    font-style: normal;
    font-weight: bold;
}
@font-face {
    font-family: Inter;
    src: url(../fonts/inter/Inter-Medium.ttf);
    font-style: normal;
    font-weight: 500;
}
@font-face {
    font-family: Inter;
    src: url(../fonts/inter/Inter-SemiBold.ttf);
    font-style: normal;
    font-weight: 600;
}
body{
    font-family: Inter, sans-serif;
    font-weight: 500;
    height: 100vh;
    overflow: hidden;
}
header{
    padding: 30px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
}
.header_btn{
    margin: 0;
    height: 56px;
    padding: 0 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: -0.42px;
    text-transform: uppercase;
    border-radius: 8px;
    font-weight: 500;
}
.header_btn+.header_btn{
    margin-left: 4px;
}
.section-fullscreen{
    justify-content: space-between;
    height: 100vh;
    overflow: hidden;
    background-image: url(../img/fsbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; 
    padding: 180px 0 60px;
}
.section-fullscreen .section-row{
    width: 100%;
}
.section-fullscreen .section-row+.section-row{
    margin-top: 50px;
}
.container{
    display: block;
    width: 1390px;
    padding: 0 15px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.d-flex{
    display: flex;
    justify-content: space-between;
    margin: 0 -10px;
}
.d-flex .col{
    width: calc(40% - 20px);
    position: relative;
    margin: 0 10px;
}
.section-fullscreen h1{
    text-transform: none;
    font-size: 88px;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    letter-spacing: -3.52px;
    margin: 0;
}
.section-fullscreen h1 span{
    color: #FC0;
}
.section-fullscreen h1+p{
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.4px;
    margin: 30px 0 0;
    max-width: 336px;
}
.section-fullscreen .section-row:first-child .col:last-child p{
    margin: 0;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.72px;
    max-width: 468px;
}
.section-fullscreen .btn_wrap p{
    color: #BFC5C3;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: -0.42px;
    margin: 30px 0 0;
    max-width: 263px;
}
.section-fullscreen .btn_wrap .btn{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    padding: 0 30px;
    height: 76px;
    border-radius: 12px;
    font-size: 16px;
    letter-spacing: -0.48px;
    text-transform: uppercase;
}
.section-fullscreen .list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 20px;
}
.section-fullscreen .list .item{
    display: flex;
    align-items: center;
    padding: 16px 0 16px 16px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: rgba(35, 35, 35, 0.20);
    backdrop-filter: blur(47px);
}
.section-fullscreen .list .item .icon{
    width: 70px;
    min-width: 70px;
    height: 70px;
    margin-right: 14px;
    border-radius: 20px;
    background: rgba(43, 43, 43, 0.50);
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-fullscreen .list .item p{
    margin: 0;
    font-size: 18px;
    line-height: 90%; /* 16.2px */
    letter-spacing: -0.72px;
}
.phone-holder{
    position: absolute;
    z-index: 10;
    width: 334px;
    height: 674px;
    box-shadow: 10px 14px 84px 0px rgba(2, 2, 2, 0.90);
    background-image: url(../img/phone-holder.png);
    background-size: contain;
    bottom: -215px;
    left: 318px;
    overflow: hidden;
}
.phone-holder .inner{
    padding: 200px 25px 40px;
}
#notificationsList .item{
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(3, 3, 3, 0.20);
    backdrop-filter: blur(47px);
    margin-bottom: 5px;
    padding: 14px;
    display: flex;
    position: relative;
}
#notificationsList .item .icon{
    width: 35px;
    height: 35px;
    min-width:35px;
    margin-right: 13px;
    background-image: url(../img/ntf-icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
#notificationsList .item .name{
    font-size: 12px;    
}
#notificationsList .item .profit{
    color: #28C928;
    font-size: 15px;
    line-height: 90%; 
    letter-spacing: -0.6px;
    margin: 5px 0;
}
#notificationsList .item p{
    margin: 0;
    letter-spacing: -0.4px;
    font-size: 10px;
    opacity: .5;
}
#notificationsList .item .time{
    font-size: 10px;
    opacity: .5;
    position: absolute;
    top: 14px;
    right: 14px;
}
.vis_mob{
    display: none !important;
}
.modal_form .btn{
    font-weight: 500;
    border-radius: 8px;
}
@media screen and (max-width: 1900px) {
    .section-fullscreen{
        padding-top: 116px;
    }
    .section-fullscreen h1{
        font-size: 68px;
    }
    .phone-holder{
        width: 290px;
        bottom: -300px;
        left: 430px;
    }
    .section-fullscreen .section-row:first-child .col:last-child p{
        font-size: 20px;
    }
    .section-fullscreen .list{
        margin-top: -60px;
    }
    .phone-holder .inner{
        padding: 150px 18px 40px;
    }
    .section-fullscreen .list .item{
        padding-right: 10px;
    }
    .section-fullscreen .list .item .icon{
        width: 50px;
        height: 50px;
        min-width:50px;
    }
    .section-fullscreen .list .item .icon svg{
        width: 30px;
        height: 30px;
    }
    .section-fullscreen .list .item p{
        font-size: 16px;
        line-height: 1.1;
    }
}
@media screen and (max-width: 1300px){
    body{
        overflow: auto;
        height: auto;
        min-height: 100vh;
    }
    .section-fullscreen{
        height: auto;
        min-height:100vh;
        justify-content: flex-start;
    }
    .phone-holder{
        display: none;
    }
    .d-flex .col{
        width: calc(50% - 20px);
    }
}
@media screen and (max-width: 1023px){
    header .row{
        flex-direction: row;
    }
    header{
        padding: 16px 0;
    }
    .logo_wrap .logo_img{
        margin: 0;
        width: 48px;
        overflow: hidden;
        font-size: 0;
    }
    .header_btn{
        font-size: 10px;
        height: 36px;
        padding: 0 20px;
    }
    .d-flex{
        flex-direction: column;
    }
    .d-flex .col{
        width: calc(100% - 20px);
    }
    .section-fullscreen{
        padding-top: 102px;
        padding-bottom: 30px;
    }
    .section-fullscreen .list{
        margin-top: 40px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-left: -4px;
        margin-right: -4px;
        grid-gap: unset;
    }
    .section-fullscreen .list .item{
        width: calc(50% - 8px);
        margin: 0 4px 8px;
    }
    .section-fullscreen h1{
        text-align: center;
        font-size: 50px;
    }
    .section-fullscreen h1+p{
        font-size: 18px;
        margin-top: 20px;
    }
    .section-fullscreen h1+p{
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }
    .vis_mob{
        display: flex !important;
    }
    .hid_mob{
        display: none !important;
    }
    .section-fullscreen .section-row:first-child .col:last-child p{
        margin-right: auto;
        margin-left: auto;
        text-align: center;
        margin-top: 40px;
        font-size: 13px;
    }
    .section-fullscreen .btn_wrap{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .section-fullscreen .list .item{
        padding: 10px 5px 10px 10px;
        border-radius: 20px;
    }
    .section-fullscreen .list .item p{
        font-size: 12px;
    }
    .section-fullscreen .list .item .icon{
        width: 45px;
        height: 45px;
        min-width: 45px;
        border-radius: 12px;
        margin-right: 9px;
    }
    .section-fullscreen .list .item .icon svg{
        width: 26px;
        height: 26px;
    }
    .section-fullscreen .section-row+.section-row{
        margin-top: 40px;
    }
    .section-fullscreen .btn_wrap p{
        font-size: 10px;
        margin-top: 16px;
    }
}

.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.skiptranslate{
    display: none !important;
}
.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q{
    background-color: transparent !important;
    box-shadow: none !important;
}