* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 300;
    height: 100%;
    color: #697689;
}

.h1,
h1,
h2 {
    font-weight: 700;
    color: #29292E;
    font-size: 48px;
    text-transform: uppercase;
}

header {
    margin-top: 17px;
    margin-bottom: 20px;
}

.container {
    max-width: 1140px;
}

.flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.logo_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.logo {
    max-width: none;
    width: auto;
}

.contact_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.contact_block a {
    text-decoration: none;
    width: auto;
    font-weight: 400;
}

.tel {
    display: block;
    color: #29292E;
    margin-right: 20px;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

.tel-mobile {
    display: none;
}

.tel:hover {
    color: #00AAAD;
}

.open_btn {
    display: block;
    color: #697689;
    border: 1px solid #D4DAE3;
    border-radius: 5px;
    padding: 15px 26px;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.open_btn:hover {
    border-color: #00AAAD;
    color: #00AAAD;
}

.main-container {
    margin-top: 40px;
    text-align: center;
}

.main-container h1,
.main-container .h1 {
    max-width: 850px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 24px;
}

.main-container .price {
    font-size: 48px;
    font-weight: 700;
    color: #29292E;
}

.main-container .price {
    margin-top: 11px;
    margin-bottom: -30px;
}

.btn-main a {
    text-decoration: none;
    color: #fff;
    width: auto;
    background: #00AAAD;
    border-radius: 5px;
    padding: 14px 39px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: background .3s, color .3s;
    border: 1px solid #00AAAD;
}

.btn-main a:hover {
    background: transparent;
    color: #00AAAD;
}

.main-bg {
    background-repeat: no-repeat;
    background-position: center;
    height: 444px;
    margin-bottom: 60px;
    margin-bottom: 30px;
}
.main-container .btn-main {
    display: inline-block;
    margin-bottom: 70px;
}
.form-container {
    margin-top: 84px;
}

.form-container h2 {
    margin-bottom: 22px;
}

.form-container h2,
.form-container p {
    text-align: center;
}

.mini-container {
    padding-top: 40px;
    max-width: 950px;
    margin: 0 auto;
}

.main-text-block {
    text-align: center;
    padding-left: 55px;
}

.main-text-block p {
    font-size: 30px;
    font-weight: 700;
    color: #29292E;
    line-height: 130%;
}

.checkbox_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.checkbox_block label {
    font-size: 14px;
}

.checkbox_block label a {
    color: #00AAAD;
    text-decoration: none;
}

.checkbox_block input {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    padding: 0;
    margin-right: 10px;
    background: #ffffff;
    border: 1px solid #D4DAE3;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.checkbox_block input:checked::after {
    content: "";
    display: block;
    width: 5px;
    height: 10px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-bottom: 1px solid #00AAAD;
    border-right: 1px solid #00AAAD;
    position: absolute;
    left: 6px;
    top: 1px;
}

.checkbox_block label {
    max-width: 90%;
}

.form-control {
    padding: 20px 26px;
    border: 1px solid #D4DAE3;
    border-radius: 5px;
    margin-bottom: 20px;
}

.submit_block {
    margin-top: 38px;
    text-align: center;
    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: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.btn-primary {
    border: 1px solid #00AAAD;
    background: #00AAAD;
    color: #ffffff;
    padding: 16px 40px;
    width: auto;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border-radius: 5px;
    margin-bottom: 20px;
}

.btn-primary:hover {
    background: transparent;
    border: 1px solid #00AAAD;
    color: #00AAAD;
}

.submit_block p {
    font-size: 14px;
}

.gray-container {
    margin-top: 80px;
    padding-top: 100px;
    padding-bottom: 100px;
    background: #F4F6F8;
}

.gray-container .mini-container {
    padding-top: 0;
}

.gray-container h2 {
    text-align: center;
    margin-bottom: 63px;
}

ul li {
    list-style: none;
    position: relative;
}

ul li::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #00AAAD;
    border-radius: 6px;
    top: 9px;
    left: -25px;
}

.gray-container ul {
    color: #29292E;
    padding-left: 30px;
    margin-bottom: 72px;
}

.gray-container ul li {
    margin-bottom: 36px;
}

.gray-container ul li:last-child {
    margin-bottom: 0;
}

.gray-container a {
    text-decoration: none;
}

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

.prize-container {
    margin-top: 100px;
}

.prize-container .img {
    text-align: center;
    margin-bottom: 60px;
}

.prize_item .img {
    margin-bottom: 21px;
}

.prize_item {
    text-align: center;
}

.prize_item h3 {
    font-size: 30px;
    color: #29292E;
    margin-bottom: 19px;
}

.prize_item p {
    line-height: 130%;
}

.rules-container {
    margin-top: 84px;
}

.rules-container.mini-container {
    padding-top: 0;
}

.rules-container h2 {
    text-align: center;
    margin-bottom: 59px;
}

.rules_item {
    margin-bottom: 23px;
}

.rules_item h3 {
    font-size: 30px;
    font-weight: 700;
    color: #29292E;
    margin-bottom: 20px;
}

footer {
    margin-top: 53px;
    text-align: center;
    padding-bottom: 27px;
}

.socserv_block {
    padding-top: 11px;
    padding-bottom: 31px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.socserv_block a {
    display: block;
    margin-right: 32px;
    color: #2C353D;
    font-size: 24px;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

.socserv_block a:last-child {
    margin-right: 0;
}

.socserv_block a:hover {
    color: #00AAAD;
}

input::-webkit-input-placeholder {
    color: #697689;
    font-weight: 300;
}

input::-moz-placeholder {
    color: #697689;
    font-weight: 300;
}

input:-ms-input-placeholder {
    color: #697689;
    font-weight: 300;
}

input::-ms-input-placeholder {
    color: #697689;
    font-weight: 300;
}

input::placeholder {
    color: #697689;
    font-weight: 300;
}

@media screen and (max-width:1140px) {
    header {
        margin-top: 25px;
    }
    .logo_block .logo img {
        max-width: 130px;
    }

    .logo_block .logo:first-child {
        margin-right: 100%;
        margin-bottom: 20px;
    }

    .contact_block {
        position: absolute;
        top: 22px;
        right: 25px;
    }

    .open_btn {
        font-size: 12px;
        padding: 11px 17px;
        text-align: center;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

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

    body {
        font-size: 16px;
    }
	.main-container h1,
    .main-container .h1 {
		max-width: 700px;
	}
    .h1, h1, h2 {
        font-size: 36px;
    }

    .main-container .price {
        font-size: 36px;
    }

    img {
        max-width: 100%;
    }

    .main-bg {
        background-size: 660px;
        height: 361px;
        margin-bottom: 20px;
    }
    .main-text-block span {
        display: block;
        margin-bottom: 20px;
    }
    .main-text-block {
        padding-left: 0;
    }

    .main-text-block p {
        font-size: 20px;
    }

    .form-control {
        padding: 20px;
    }

    .checkbox_block {
        margin-bottom: 13px;
    }

    .submit_block {
        margin-top: 28px;
    }

    ul li::after {
        left: -18px;
    }

    .logo-img img {
        max-width: 231px;
    }
    .prize_item {
        margin-bottom: 30px;
    }
    .prize_item h3 {
        font-size: 20px;
    }
    .rules-container {
        margin-top: 50px;
    }
    .rules_item h3 {
        font-size: 20px;
    }
}
@media screen and (max-width: 540px) {
    .h1, h1, h2 {
        font-size: 24px;
    }
    .logo_block {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .tel {
        display: none;
    }

    .tel-mobile {
        display: block;
        font-size: 15px;
        color: #2C353D;
        -webkit-transition: color .3s;
        -o-transition: color .3s;
        transition: color .3s;
    }
    .tel-mobile:hover {
        color: #00AAAD;
    }
	.main-container h1 span,
    .main-container .h1 span {
        display: block;
        width: 100%;
    }

}