@import url('normalize.css');




@font-face {
    font-family: "AvenirNext";
    src: url(fonts/AvenirNextCyr-Regular.ttf);
    src: local("Avenir Next Regular"), local("fonts/Avenir-Next-Regular"), url("fonts/AvenirNextCyr-Regular.woff2") format("woff2"), url("fonts/AvenirNextCyr-Regular.woff") format("woff"), url("fonts/AvenirNextCyr-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "AvenirNext";
    src: url(fonts/AvenirNextCyr-Medium.ttf);
    src: local("Avenir Next Medium"), local("fonts/Avenir-Next-Medium"), url("fonts/AvenirNextCyr-Medium.woff2") format("woff2"), url("fonts/AvenirNextCyr-Medium.woff") format("woff"), url("fonts/AvenirNextCyr-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "AvenirNext";
    src: url(fonts/AvenirNextCyr-Bold.ttf);
    src: local("Avenir Next Bold"), local("fonts/Avenir-Next-Bold"), url("fonts/AvenirNextCyr-Bold.woff2") format("woff2"), url("fonts/AvenirNextCyr-Bold.woff") format("woff"), url("fonts/AvenirNextCyr-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

* {
    font-family: "AvenirNext";
}

.container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}
.container_l {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

body {
    background-color: #111030;
    background-image: url(../img/back_img.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 3%;
    background-attachment: fixed;
}
body.lock {
    overflow: hidden;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}
.header__logo {
    width: 180px;
}
.header__logo img {
    width: 100%;
}
.header__nums {
    display: flex;
    align-items: center;
    margin-right: 30px;
}
.header__nums__item {
    display: flex;
    align-items: center;
    margin-left: 30px;
}
.header__nums__item__inner {
    margin-left: 30px;
}
.header__nums__item:first-child {
    margin-left: 0;
}
.header__nums__item img {
    margin-right: 7px;
}
.header__nums i {
    color: #3AAFCB;
    margin-right: 7px;
}
.header__nums a {
    color: white;
    font-weight: bold;
    font-size: 14px;
    transition: .2s;
}
.header__nums a:hover {
    color: #3AAFCB;
}

.header__links {
    display: flex;
    align-items: center;
}
span {
    margin: 0;
}
.btn {
    color: white;
    font-weight: bold;
    font-size: 14px;
    padding: 12px 30px;
    border-radius: 35px;
    border: 2px solid #3AAFCB;
    transition: .2s;
    
}
.btn.light {
    border-color: #B5E5F3;
    margin-right: 40px;
    text-align: center;
}
.btn.light:hover {
    background-color:  #B5E5F3;
}
.btn.whole {
    border-color: #B5E5F3;
    background-color: #B5E5F3;
    color: #111030;
}

.btn.whole:hover {
    background-color: transparent;
    color: white;
}
.btn:hover {
    background-color: #3AAFCB;
    color: #111030;
}
.under_header {
    padding: 50px 0;
}
.under_header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.under_header__img {
    width: 40%;
}
.under_header__img img {
    width: 100%;
}
.under_header__title {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-right: 10%;
}
.big {
    font-size: 95px;
    font-weight: bold;
    color: white;
}
.bigger {
    font-size: 200px;
    font-weight: bold;
    color: white;
}
.price {
    padding: 10px 30px;
    border-radius: 10px;
    background-color: #3AAFCB;
    color: white;
    font-weight: bold;
    font-size: 50px;
    margin-top: 10px;
}
.under_header__btns {
    display: flex;
    align-items: center;
    justify-content: flex-end;     
}
.ice_mini {
    width: 150px;
    position: fixed;
    z-index: -1;
}
.ice_mini img {
    width: 100%;
}
.ice_mini.one {
    top: 50px;
    left: 20px;
}
.ice_mini.two {
    width: 80px;
}
.ice_mini.two.kek {
    left: 25%;
    bottom: 30px;
}
.ice_mini.two.lol {
    top: 300px;
    right: 0;
}
.ice_mini.three {
    bottom: 100px;
    right: 50px;
    transform: scale(-1, 1);
}
.ice_big {
    width: 25%;
    filter: blur(3px);
    position: fixed;
    z-index: -1;
}
.ice_big img {
    width: 100%;
}
.ice_big.left {
    transform: rotate(180deg);
    left: -200px;
    bottom: -120px;
}
.ice_big.right {
    transform: scale(1, -1);
    right: -150px;
    top: -180px;
}
.modal {
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.modal.active {
    display: flex;
}
.modal__logo {
    width: 180px;
}
.modal__logo img {
    width: 100%;
}
.modal__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #344867;
    padding: 50px;
    border-radius: 50px;
}
.modal__inner form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 270px;
}
.modal__inner form input {
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    margin: 7px 0;
}
.modal__inner h3 {
    font-size: 30px;
    color: white;
    margin-bottom: 10px;
    margin-top: 20px;
}
.modal__btn {
    padding: 12px 30px;
    border-radius: 35px;
    border: 2px solid #3AAFCB;
    background-color: #3AAFCB;
    color: white;
    margin-top: 40px;
    transition: .2s;
}
.modal__btn:hover {
    background-color: transparent;
}
.close__modal {
    color: white;
    font-size: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}
.under_header__btns__inner span {
    color: #3AAFCB;
}
.copyright {
	margin-top: 80px;
	text-align: right;
}
.copyright p {
	font-size: 12px;
	color: white;
}
.btn.light span {
	transition: .2s;
}

@media (max-width: 1000px) {
    .container {
        width: 90%;
    }
    .container_l {
        width: 90%;
    }
    .under_header__title {
        margin-right: 0;
    }
    .gurantie__items__wrapper {
        flex-direction: column;
    }
    .gurantie__items {
        width: 100%;    
        justify-content: center;
    }
    .gurantie__item {
        margin: 20px;
    }
}
@media (max-width: 800px) {
    .under_header__img {
        display: none;
    }
    .under_header__content {
        justify-content: center;
    }
    header {
        flex-direction: column;
    }
    .header__links {
        flex-direction: column;
    }
    .header__nums {
        margin-right: 0;
        margin: 30px 0;
    }
    .under_header {
        padding-top: 0;
    }
}
@media (max-width: 600px) {
    .big {
        font-size: 50px;
    }
    .bigger {
        font-size: 100px;
    }
    .price {
        font-size: 25px;
    }
    .under_header__btns {
        justify-content: center;
    }
    .gurantie__items__wrapper {
        width: 100%;
    }
    .gurantie {
        flex-direction: column;
        padding-top: 40px;
    }
    .under_header__btns__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
	.btn {
		background-color: #3AAFCB;
	}
    .btn.light {
        margin-right: 0;
        margin-bottom: 20px;
		background-color: #B5E5F3;
		color: #111030;
    }
	.btn.light span {
		color: #111030;
	}
	.btn.light:hover {
		color: white;
		background-color: transparent;
	}
	.btn.light:hover span {
		color: white;
	}
    .header__nums {
        flex-direction: column;
    }
    .header__nums__item:last-child {
        margin-top: 20px;
        margin-left: 0;
    }
    .btn.whole {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
		background-color: transparent;
		color: white;
    }
	.btn.whole:hover {
		background-color: #B5E5F3;
		color: #111030;
	}
    .ice_mini {
        display: none;
    }
    .ice_big {
        display: none;
    }
}
