@font-face {
    font-family: Roboto;
    src: url(../../fonts/Roboto-Regular.ttf) format("opentype");
}

@font-face {
    font-family: RobotoMedium;
    src: url(../../fonts/Roboto-Medium.ttf) format("opentype");
}

@font-face {
    font-family: RobotoBold;
    src: url(../../fonts/Roboto-Bold.ttf) format("opentype");
}

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

body {
    line-height: 1.2;
    font-family: Roboto;
    color: #fff;
    background-color: #2d373b;
}

.container {
    max-width: 1330px;
    margin-left: auto;
    margin-right: auto;
}

.row {
    display: flex;
    flex-direction: row;
}

.column {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.justify-content-center {
    justify-content: center;
}

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

.align-items-end {
    align-items: flex-end;
}

.align-items-start {
    align-items: flex-start;
}

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

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

.fs-24 {
    font-size: 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    font: normal 20px/1.2 Roboto;
}

h2 {
    font: normal 48px/56px Roboto;
}

.empty-space {
    height: 16px;
}

.custom-checkbox {
    min-height: 25px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-checkbox p {
    line-height: 1.7;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 1px solid #cd0000;
}

.custom-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: #eee;
}

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

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 8px;
    top: 4px;
    width: 4px;
    height: 10px;
    border: solid #cd0000;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.custom-checkbox p {
    line-height: 21px;
    font-size: 14px;
    text-align: left;
    font-family: Roboto !important;
}

.top {
    padding: 30px 0;
    text-align: center;
    color: #fff;
    background-color: #ff0000;
}

.top h1 {
    line-height: 120%;
    margin-bottom: 35px;
    font-family: RobotoMedium;
    font-size: 32px;
    text-transform: uppercase;
}

.top p {
    line-height: 120%;
    font-size: 24px;
    font-family: Roboto;
}

body > section.top > div > div:nth-child(3) > p {
    font-size: 18px !important;
    text-transform: none;
}

.top h3 {
    margin-bottom: 25px;
    font-family: RobotoMedium;
    font-size: 32px;
}

.header {
    padding: 50px 0;
    color: #fff;
    background: radial-gradient(86.61% 86.61% at 50% 0%, rgba(30, 58, 69, 0.5) 0%, rgba(6, 33, 44, 0) 100%), #79A4B6;
}

.header h2 {
    width: 100%;
    max-width: 850px;
    margin-bottom: 20px;
    font-size: 56px;
    font-weight: 700;
    font-family: RobotoBold;
    text-align: center;
}

.header p {
    width: 100%;
    max-width: 680px;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 700;
    font-family: RobotoBold;
    text-align: center;
}

.form-container {
    padding: 30px 0 60px;
    background-color: #d1edf9;
}

.form-container .container {
    max-width: 1100px;
}

.form-container .row {
    column-gap: 80px;
}

.form-container .row .column:nth-child(1) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 30px;
}

.form-container .row .column:nth-child(1) img {
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18);
    border-radius: 20px;
}

.form-container .row .column:nth-child(2) .orderForm {
    height: 100%;
    padding: 32px;
    color: #000;
    background: #fff;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18);
    border-radius: 20px;
    text-align: center;
}

.form-container .row .column:nth-child(2) .orderForm h3 {
    line-height: 48px;
    margin-bottom: 10px;
    font-size: 40px;
    font-family: RobotoBold;
    color: #ff0000;
}

.form-container .row .column:nth-child(2) .orderForm p {
    line-height: 30px;
    font-size: 20px;
    font-family: Roboto;
    color: #000;
}

.form-container .row .column:nth-child(2) .orderForm p.black {
    margin-top: 20px;
    line-height: 42px;
    font-size: 32px;
    font-family: RobotoBold;
    color: #000;
}

.form-container .row .column:nth-child(2) .orderForm p.small {
    margin-top: 15px;
    line-height: 24px;
    font-size: 16px;
    font-family: Roboto;
    color: #000;
}

.form-container .row .column:nth-child(2) .orderForm p.red {
    margin-top: 15px;
    line-height: 67px;
    font-size: 56px;
    font-family: RobotoBold;
    color: #ff0000;
}

.form-container .row .column:nth-child(2) .orderForm hr {
    margin: 25px 0;
    border: none;
    border-top: 1px solid #000;
}

.form-container .row .column:nth-child(2) .orderForm a {
    line-height: 42px;
    padding: 12px 40px;
    font-size: 32px;
    font-family: RobotoBold;
    color: #fff;
    text-transform: uppercase;
    background-color: #ff0000;
    border-radius: 40px;
    display: inline-block;
}

.form-container .row .column:nth-child(2) .orderForm p.last {
    margin-top: 32px;
    line-height: 28px;
    font-size: 20px;
    font-family: RobotoBold;
    color: #000;
    text-transform: uppercase;
}

#right {

	display:none;
}

.blue-1 {
    padding: 30px 0 110px;
    background-color: #79a4b6;
}

.blue-1 .background {
    background-color: #fff;
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.14);
    border-radius: 32px;
}

.blue-1 p {
    line-height: 130%;
    font-size: 32px;
    font-family: RobotoBold;
}

.blue-1 p.black {
    color: #000;
}

.blue-1 p.red {
    margin-top: 30px;
    color: #ff0000;
}

.blue-1 .container {
    max-width: 1100px;
}

.blue-1 .column:nth-child(1) {
    flex: 0 0 490px;
    padding: 10px 40px 10px 10px;
}

.blue-1 .column:nth-child(2) {
    flex-grow: 1;
    padding: 40px 60px 40px 0;
}

.red-1 {
    padding: 100px 0 110px;
    color: #fff;
    background: radial-gradient(80.92% 80.92% at 50% 0%, #FF0000 0%, rgba(255, 0, 0, 0) 100%), #2F0707;
}

.red-1 .container {
    max-width: 1040px;
}

.red-1 h2 {
    font-size: 47px;
    font-family: RobotoBold;
    text-align: center;
}

.red-1 p {
    line-height: 30px;
    font-size: 20px;
    font-family: Roboto;
}

.red-1 img {
    border-radius: 20px;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18);
}

.red-1 .row:nth-child(2),
.red-1 .row:nth-child(3) {
    margin-top: 100px;
}

.red-1 .row:nth-child(3) .column:nth-child(2) {
    padding-left: 40px;
}

.green-1 {
    padding: 90px 0 150px;
    color: #fff;
    background: radial-gradient(95.27% 38.66% at 50% 0%, #106022 0%, rgba(10, 57, 20, 0) 100%), #139145;
}

.green-1 .container {
    max-width: 1040px;
}

.green-1 img {
    border-radius: 20px;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18);
}

.green-1 .row:nth-child(2) .column:nth-child(1) {
    flex: 0 0 600px;
}

.green-1 .row:nth-child(2) .column:nth-child(2) {
    flex-grow: 1;
}

.green-1 .row:nth-child(3) img {
    margin: 100px auto 0;
}

.green-1 h2 {
    margin-bottom: 120px;
    font-family: RobotoBold;
    font-size: 48px;
    text-align: center;
}

.green-1 h2 small {
    margin-top: -10px;
    font-size: 32px;
    font-family: RobotoBold;
    display: block;
}

.green-1 p {
    line-height: 30px;
    font-size: 20px;
    font-family: Roboto;
}

.blue-2 {
    padding: 100px 0 60px;
    color: #fff;
    background: radial-gradient(154.52% 88.79% at 50% 0%, #21507B 0%, rgba(35, 99, 158, 0) 100%), #E4F1FF;
}

.blue-2 .container {
    max-width: 1040px;
}

.blue-2 h2 {
    margin-bottom: 80px;
    font-size: 48px;
    font-family: RobotoBold;
    text-align: center;
}

.blue-2 p {
    line-height: 30px;
    font-size: 20px;
    font-family: Roboto;
    color: #000;
}

.blue-2 img {
    border-radius: 20px;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18);
}

.blue-2 .row:nth-child(2) {
    align-items: center;
}

.blue-2 .row:nth-child(2) .column:nth-child(1) {
    flex: 0 0 580px;
}

.blue-2 .row:nth-child(2) .column:nth-child(2) {
    flex-grow: 1;
    align-items: flex-end;
}

.blue-3 {
    padding: 30px 0 55px;
    color: #000;
    background-color: #e4f1ff;
}

.blue-3 .container {
    max-width: 1040px;
}

.blue-3 img {
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18);
}

.blue-3 .row {
    align-items: center;
}

.blue-3 .row:nth-child(1) {
    margin-bottom: 80px;
}

.blue-3 .row:nth-child(1) p {
    line-height: 30px;
    font-size: 20px;
}

.blue-3 .row:nth-child(1) .column:nth-child(1) {
    flex: 0 0 655px;
}

.blue-3 .row:nth-child(1) .column:nth-child(2) {
    padding-left: 80px;
    flex-grow: 1;
}

.blue-3 .row:nth-child(2) .column:nth-child(1) {
    flex-grow: 1;
}

.blue-3 .row:nth-child(2) .column:nth-child(2) {
    flex: 0 0 480px;
    padding-left: 80px;
}

.blue-3 .row:nth-child(2) p {
    line-height: 27px;
    font-size: 18px;
}

.blue-4 {
    padding: 150px 0;
    color: #000;
    background: linear-gradient(360deg, #E4F1FF 10%, rgba(228, 241, 255, 0) 50.16%), linear-gradient(180deg, #E4F1FF 18.47%, rgba(228, 241, 255, 0) 90%), #0C5386;
}

.blue-4 .container {
    max-width: 1090px;
}

.blue-4 .container .background {
    padding: 65px;
    background-color: #fff;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18);
    border-radius: 30px;
}

.blue-4 .row {
    align-items: center;
    column-gap: 95px;
}

.blue-4 .row .column:nth-child(1) p {
    line-height: 130%;
    font-size: 32px;
    font-family: RobotoBold;
}

.blue-4 .row .column:nth-child(2) p {
    line-height: 36px;
    font-size: 24px;
    font-family: RobotoMedium;
}

.blue-5 {
    padding: 60px 0;
    background-color: #e4f1ff;
    color: #000;
}

.blue-5 .container {
    max-width: 1040px;
}

.blue-5 .row:nth-child(1) {
    align-items: center;
}

.blue-5 .row:nth-child(1) .column:nth-child(1) {
    padding-right: 130px;
}

.blue-5 p {
    line-height: 27px;
    font-size: 18px;
    font-family: Roboto;
}

.blue-5 .background {
    margin-top: 50px;
    padding: 30px;
    background: #2d4059;
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.14);
    border-radius: 24px;
}

.blue-5 .background p {
    color: #fff;
    line-height: 130%;
    font-size: 32px;
    font-family: RobotoBold;
    text-align: center;
}

.green-2 {
    padding: 120px 0 150px;
    color: #fff;
    background-color: #0c8282;
}

.green-2 .container {
    max-width: 1040px;
}

.green-2 .row:nth-child(1) img {
    border-radius: 20px;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18);
}

.green-2 .row:nth-child(2) p {
    width: 100%;
    max-width: 510px;
    line-height: 140%;
    margin: 30px auto 0;
    font-size: 24px;
    font-family: RobotoBold;
    text-align: center;
}

.green-2 .row:nth-child(3) {
    margin-top: 110px;
    column-gap: 80px;
}

.green-2 .row:nth-child(3) h3 {
    line-height: 48px;
    font-size: 40px;
    font-family: RobotoBold;
}

.green-2 .row:nth-child(3) p {
    line-height: 27px;
    font-size: 18px;
    font-family: Roboto;
}

.green-2 .row:nth-child(3) img {
    border-radius: 20px;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18);
}

.green-2 .row:nth-child(4) {
    margin-top: 80px;
    column-gap: 80px;
}

.green-2 .row:nth-child(4) img {
    border-radius: 20px;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18);
}

.green-2 .row:nth-child(5) {
    margin-left: -30px;
    margin-right: -30px;
    margin-top: 100px;
    column-gap: 80px;
    align-items: center;
}

.green-2 .row:nth-child(5) img {
    border-radius: 20px;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18);
}

.green-2 .row:nth-child(5) p {
    line-height: 27px;
    font-size: 17px;
    font-family: Roboto;
}

.green-2 .row:nth-child(5) p strong {
    font-family: RobotoBold;
}

.green-2 .row:nth-child(5) p.large {
    line-height: 30px;
    font-size: 20px;
    font-family: RobotoBold;
}

.image-1 {
    padding-top: 210px;
    padding-bottom: 110px;
    color: #fff;
    background: url('./images/17.png') no-repeat #2d4059;
    background-size: cover;
    background-position: top center;
}

.image-1 .container {
    max-width: 900px;
}

.image-1 h2 {
    width: 100%;
    max-width: 700px;
    line-height: 48px;
    margin-bottom: 30px;
    font-size: 40px;
    font-family: RobotoBold;
    text-align: center;
}

.image-1 p {
    line-height: 27px;
    font-size: 18px;
    font-family: Roboto;
    text-align: center;
}

.blue-6 {
    padding-top: 50px;
    padding-bottom: 50px;
    color: #fff;
    background: radial-gradient(50% 50% at 50% 50%, rgba(0, 10, 255, 0.5) 0%, rgba(0, 10, 255, 0) 100%), #2D4059;
}

.blue-6 .container {
    max-width: 1040px;
}

.blue-6 h3 {
    line-height: 42px;
    font-size: 32px;
    font-family: RobotoBold;
}

.blue-6 p {
    line-height: 27px;
    font-size: 18px;
    font-family: Roboto;
}

.blue-6 img {
    border-radius: 20px;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18);
}

.blue-6 .row {
    align-items: center;
    column-gap: 80px;
}

.blue-6 .row .column:nth-child(1) {}

.blue-6 .row .column:nth-child(2) {
    align-items: flex-end;
}

.video {
    padding-top: 110px;
    padding-bottom: 60px;
    color: #fff;
    background-color: #2d4059;
}

.video h3 {
    margin-bottom: 60px;
    font-size: 48px;
    font-family: RobotoBold;
    text-align: center;
}

.video h3 small {
    display: block;
    font-size: 32px;
}

.video video {
    width: 100%;
    height: auto;
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.14);
    border-radius: 20px;
}

.blue-7 {
    padding-bottom: 110px;
    color: #fff;
    background-color: #2d4059;
}

.blue-7 .container {
    max-width: 1040px;
}

.blue-7 p {
    line-height: 27px;
    font-size: 18px;
    text-align: center;
}

.blue-7 .background {
    margin-top: 60px;
    padding: 15px;
    background: #faddbc;
    border-radius: 32px;
}

.blue-7 .background .row {
    column-gap: 30px;
    align-items: center;
}

.blue-7 .background .row .column:nth-child(1) {
    flex: 0 0 300px;
}

.blue-7 .background .row .column:nth-child(2) {
    flex-grow: 1;
}

.blue-7 .background p {
    line-height: 40px;
    font-size: 20px;
    font-family: Roboto;
    color: #000;
    text-align: left;
}

.blue-7 .background p.black {
    line-height: 38px;
    font-size: 32px;
    font-family: RobotoBold;
}

.blue-7 .background p.red {
    line-height: 48px;
    font-size: 40px;
    font-family: RobotoBold;
    color: #ff0000;
}

.red-2 {
    padding: 80px 0 50px;
    color: #fff;
    background-color: #b31c51;
}

.red-2 h2 {
    width: 100%;
    max-width: 550px;
    line-height: 48px;
    margin-bottom: 40px;
    font-size: 40px;
    font-family: RobotoBold;
    text-align: center;
}

.red-2 .container {
    max-width: 945px;
}

.red-2 img {
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18);
}

.red-2 p {
    margin-bottom: 0;
    line-height: 24px;
    font-size: 16px;
    font-family: Roboto;
}

.red-2 p strong {
    font-family: RobotoBold;
}

.red-2 .custom-checkbox p {
    line-height: 21px;
    font-size: 14px;
    font-family: Roboto;
}

.red-2 .row:nth-child(3) {
    margin-top: 80px;
    column-gap: 45px;
}

.red-2 .row:nth-child(4) {
    margin-top: 100px;
    flex-direction: column;
    align-items: center;
}

.red-2 .row:nth-child(5) p {
    line-height: 21px;
    font-size: 14px;
    font-family: Roboto;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.blue-8 {
    padding: 100px 0;
    color: #fff;
    background-color: #266986;
}

.blue-8 h2 {
    width: 100%;
    max-width: 600px;
    margin-bottom: 80px;
    font-size: 40px;
    font-family: RobotoBold;
    text-align: center;
}

.blue-8 .row:nth-child(2) {
    column-gap: 48px;
    align-items: flex-start;
}

.blue-8 .row:nth-child(2) .column {
    background-color: #fff;
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.14);
    border-radius: 32px;

}

.blue-8 .row:nth-child(2) .column img {
    width: 100%;
    height: auto;
}

.blue-8 .row:nth-child(2) .column .text {
    padding: 24px 32px;
}


.blue-8 .row:nth-child(2) .column .text h3 {
    line-height: 42px;
    font-family: RobotoBold;
    font-size: 32px;
    text-align: center;
    color: #000;
}

.blue-8 .row:nth-child(2) .column .text h3 small {
    line-height: 27px;
    font-size: 18px;
    font-family: Roboto;
    font-weight: 400;
    display: block;
}

.blue-8 .row:nth-child(2) .column .text p {
    line-height: 30px;
    font-size: 18px;
    font-family: Roboto;
    color: #000;
    margin: 0;
}

.white-1 {
    padding: 110px 0 70px;
    color: #000;
    background-color: #fff;
}

.white-1 .container {
    max-width: 1310px;
}

.white-1 h2 {
    line-height: 48px;
    font-size: 40px;
    color: #2d4059;
    font-family: RobotoBold;
    text-align: center;
}

.white-1 h2 small {
    line-height: 34px;
    font-size: 24px;
    display: block;
}

.white-1 .table {
    width: 100%;
    margin-top: 70px;
    border: 1px solid #000;
}

.white-1 .table .table-row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #000;
}

.white-1 .table .table-row:last-child {
    border-bottom: none;
}

.white-1 .table .table-row .col {
    padding: 28px 24px;
    flex: 0 0 calc(100% / 3);
}

.white-1 .table .table-row .col h3 {
    line-height: 48px;
    margin-bottom: 15px;
    font-size: 32px;
    font-family: Roboto;
    text-align: center;
}

.white-1 .table .table-row .col img {
    margin: 0 auto;
}

.white-1 .table .table-row .col p {
    line-height: 24px;
    margin: 0;
    font-size: 16px;
    font-family: Roboto;
    text-align: center;
}

.white-1 .table .table-row .col:nth-child(1) p {
    font-family: RobotoBold;
    text-align: left;
}

.white-1 .table .table-row .col:nth-child(3) p {
    font-family: RobotoBold;
    color: #139045;
}

.white-1 .mobile-table {
    width: 100%;
    margin-top: 40px;
    border: 1px solid #000;
    display: none;
}

.white-1 .mobile-table .table-row {
    display: flex;
}

.white-1 .mobile-table .table-row:not(:last-child) {
    border-bottom: 1px solid #000;
}

.white-1 .mobile-table .table-row .col-header {
    flex: 0 0 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.white-1 .mobile-table .table-row .col-header h3 {
    font-size: 22px;
    font-family: RobotoBold;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.white-1 .mobile-table .table-row .col {
    flex: 0 0 50%;
    padding: 10px;
}

.white-1 .mobile-table .table-row .col p {
    font-size: 14px;
    font-family: RobotoBold;
}

.white-1 .mobile-table .table-row .col:nth-child(2) {
    border-left: 1px solid #000;
}

.white-1 .mobile-table .table-row .col:nth-child(2) p {
    text-align: center;
    font-family: Roboto;
}

.white-1 .mobile-table.green .table-row .col:nth-child(2) p {
    color: #139045;
}

.white-2 {
    padding: 110px 0;
    color: #000;
    background-color: #fff;
}

.white-2 .container {
    max-width: 1310px;
}

.white-2 .row {
    column-gap: 80px;
}

.white-2 .row .column:nth-child(1) {
    flex: 0 0 480px;
    row-gap: 50px;
}

.white-2 .row .column:nth-child(2) {
    flex-grow: 1;
}

.white-2 img {
    border-radius: 32px;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18);
}

.white-2 h3 {
    line-height: 48px;
    font-size: 40px;
    font-family: RobotoBold;
    color: #2d4059;
}

.white-2 p {
    line-height: 24px;
    font-size: 16px;
    font-family: Roboto;
}

.white-2 p strong {
    margin-bottom: 15px;
    font-size: 18px;
    font-family: RobotoBold;
    display: block;
}

.white-2 p:not(.title) {
    position: relative;
    padding-left: 20px;
}

.white-2 p:not(.title)::before {
    content: '•';
    left: 5px;
    position: absolute;
}

.white-2 hr {
    margin: 25px 0;
    border: none;
    border-top: 1px solid #000;
}

.yellow-1 {
    padding: 100px 0;
    background: url('images/28.png') left center no-repeat #fdb718;
    background-size: cover;
}

.yellow-1 .row {
    justify-content: flex-end;
}

.yellow-1 .background {
    width: 100%;
    max-width: 725px;
    padding: 40px 72px;
    background: #f4f4f4;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18);
    border-radius: 32px;
}

.yellow-1 .background h3 {
    line-height: 58px;
    margin-bottom: 40px;
    font-size: 48px;
    font-family: RobotoBold;
    color: #ff0000;
}

.yellow-1 .background p {
    line-height: 34px;
    font-size: 24px;
    font-family: RobotoBold;
    text-align: center;
    color: #000;
}

.black-1 {
    padding: 100px 0 20px;
    color: #fff;
    background-color: #2d373b;
}

.black-1 h2 {
    line-height: 58px;
    margin-bottom: 30px;
    font-size: 48px;
    font-family: RobotoBold;
    text-align: center;
}

.black-1 h2 small {
    line-height: 34px;
    font-size: 24px;
    display: block;
}

.black-1 p {
    line-height: 27px;
    font-size: 18px;
    font-family: Roboto;
    text-transform: uppercase;
    text-align: center;
}

.black-1 p.strong {
    width: 100%;
    max-width: 500px;
    margin-top: 30px;
    font-family: RobotoBold;
    text-transform: none;
}

.black-1 p.small {
    line-height: 21px;
    font-size: 14px;
    font-family: Roboto;
    text-transform: none;
}

.black-1 .custom-checkbox {
    margin-top: 30px;
    margin-bottom: 80px;
}

.black-1 .custom-checkbox .checkmark,
.black-1 .custom-checkbox .checkmark::after {
    border-color: #000;
}

.black-1 .row:nth-child(2) p {
    width: 100%;
    max-width: 700px;
}

@media all and (max-width: 1099px) {
    .column {
        width: 100%;
    }

    .top {
        padding: 40px 20px;
    }

    .header {
        padding: 40px 20px;
    }

    .header h2 {
        line-height: 42px;
        font-size: 32px;
    }

    .form-container {
        padding: 40px 20px;
    }

    .form-container .row {
        column-gap: unset;
        flex-direction: column;
    }

    .form-container .row .column:nth-child(1) {
        margin-bottom: 30px;
    }

    .form-container .row .column:nth-child(2) .orderForm {
        width: 100%;
        max-width: 510px;
        height: auto;
        margin: 0 auto;
        padding: 20px;
    }

    .form-container .row .column:nth-child(2) .orderForm h3 {
        line-height: 40px;
        font-size: 28px;
    }

    .form-container .row .column:nth-child(2) .orderForm p {
        line-height: 24px;
        font-size: 16px;
    }

    .form-container .row .column:nth-child(2) .orderForm p.black {
        line-height: 40px;
        font-size: 28px;
    }

    .form-container .row .column:nth-child(2) .orderForm p.red {
        line-height: 60px;
        font-size: 40px;
    }

    .form-container .row .column:nth-child(2) .orderForm a {
        display: block;
        width: 100%;
        padding: 12px;
        font-size: 28px;
        text-align: center;
    }

    .form-container .row .column:nth-child(2) .orderForm p.last {
        margin-top: 25px;
        font-size: 18px;
        text-align: center;
    }

    .blue-1 {
        padding: 40px 20px;
    }

    .blue-1 .container .background {
        padding: 10px;
    }

    .blue-1 .container .background .row {
        flex-direction: column;
    }

    .blue-1 .container .background .row .column {
        flex: unset;
        width: 100%;
        padding: 0;
    }

    .blue-1 p {
        margin-top: 30px;
        padding: 0 20px;
        font-size: 18px;
    }

    .blue-1 p.red {
        margin-bottom: 30px;
    }

    .red-1 {
        padding: 40px 20px;
    }

    .red-1 h2 {
        line-height: 42px;
        font-size: 32px;
    }

    .red-1 .row:nth-child(2), .red-1 .row:nth-child(3) {
        margin-top: 40px;
        flex-direction: column;
    }

    .red-1 .row:nth-child(2) {
        flex-direction: column-reverse;
    }

    .red-1 .row .column {
        width: 100%;
        margin-top: 40px;
        align-items: center;
    }

    .red-1 .row:nth-child(3) .column:nth-child(2) {
        padding-left: 0;
    }

    .green-1 {
        padding: 40px 20px;
    }

    .green-1 h2 {
        line-height: 42px;
        margin-bottom: 40px;
        font-size: 32px;
    }

    .green-1 h2 small {
        margin-top: 10px;
        font-size: 20px;
        line-height: 30px;
    }

    .green-1 .row {
        flex-direction: column-reverse;
    }

    .green-1 .row .column {
        flex: unset !important;
        width: 100%;
        align-items: center;
    }

    .green-1 img {
        margin: 0 auto 40px;
    }

    .green-1 .row:nth-child(3) img {
        margin-top: 40px;
    }

    .blue-2 {
        padding: 40px 20px;
    }

    .blue-2 h2 {
        line-height: 42px;
        margin-bottom: 40px;
        font-size: 32px;
    }

    .blue-2 .row:nth-child(2) {
        flex-direction: column-reverse;
    }

    .blue-2 .row:nth-child(2) .column:nth-child(1) {
        flex: unset;
        width: 100%;
    }

    .blue-2 .row:nth-child(2) .column:nth-child(2) {
        width: 100%;
        margin-bottom: 30px;
        align-items: center;
    }

    .blue-3 {
        padding: 0 20px 40px;
    }

    .blue-3 .row:nth-child(1) {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .blue-3 .row:nth-child(1) .column:nth-child(1) {
        flex: unset;
        width: 100%;
    }

    .blue-3 .row:nth-child(1) .column:nth-child(2) {
        padding-left: 0;
        width: 100%;
        margin-top: 30px;
    }

    .blue-3 .row:nth-child(2) {
        flex-direction: column-reverse;
    }

    .blue-3 .row:nth-child(2) .column:nth-child(1) {
        width: 100%;
        margin-top: 30px;
    }

    .blue-3 .row:nth-child(2) .column:nth-child(2) {
        flex: unset;
        width: 100%;
        padding-left: 0;
    }

    .blue-3 .row:nth-child(2) p {
        line-height: 30px;
        font-size: 20px;
    }

    .blue-4 {
        padding: 40px 20px 60px;
    }

    .blue-4 .container .background {
        padding: 30px 20px;
    }

    .blue-4 .row {
        column-gap: 0;
        flex-direction: column;
        align-items: unset;
    }

    .blue-4 .row .column:nth-child(1) {
        margin-bottom: 30px;
    }

    .blue-4 .row .column:nth-child(1),
    .blue-4 .row .column:nth-child(2) {
        width: 100%;
    }

    .blue-4 .row .column:nth-child(1) p,
    .blue-4 .row .column:nth-child(2) p {
        text-align: center;
    }

    .blue-4 .row .column:nth-child(1) p {
        font-size: 27px;
    }

    .blue-5 {
        padding: 40px 20px;
    }

    .blue-5 .row:nth-child(1) {
        flex-direction: column-reverse;
    }

    .blue-5 .row:nth-child(1) .column {
        width: 100%;
    }

    .blue-5 .row:nth-child(1) .column:nth-child(1) {
        padding-right: 0;
        margin-top: 30px;
    }

    .blue-5 .background {
        margin-top: 30px;
        padding: 20px;
        background: #2d4059;
        box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.14);
        border-radius: 24px;
    }

    .blue-5 .background p {
        line-height: 32px;
        font-size: 22px;
    }

    .green-2 {
        padding: 40px 20px;
    }

    .green-2 .row:nth-child(3) {
        margin-top: 40px;
        flex-direction: column-reverse;
    }

    .green-2 .row:nth-child(3) h3 {
        margin-top: 30px;
        font-size: 32px;
    }

    .green-2 .row:nth-child(4) {
        margin-top: 40px;
        flex-direction: column;
        row-gap: 30px;
    }

    .green-2 .row:nth-child(5) {
        margin-left: unset;
        margin-right: unset;
        margin-top: 30px;
        row-gap: 30px;
        flex-direction: column;
    }

    .image-1 {
        padding: 40px 20px;
    }

    .blue-6 {
        padding: 40px 20px;
    }

    .blue-6 .row {
        flex-direction: column-reverse;
    }

    .blue-6 .row .column {
        width: 100%;
    }

    .blue-6 .row .column:nth-child(1) {
        margin-top: 30px;
    }

    .video {
        padding: 40px 20px;
    }

    .video h3 {
        margin-bottom: 40px;
        font-size: 32px;
    }

    .video h3 small {
        font-size: 22px;
    }

    .video video {
        width: 90vw;
        height: 50.8vw;
        margin: 0 auto;
        display: block;
    }

    .blue-7 {
        padding: 0 20px 40px;
    }

    .blue-7 p {
        line-height: 27px;
        font-size: 18px;
        text-align: center;
    }

    .blue-7 .background {
        margin-top: 30px;
        padding: 10px;
    }

    .blue-7 .background .row {
        flex-direction: column;
    }

    .blue-7 .background .row .column:nth-child(1) {
        flex: unset;
    }

    .blue-7 .background .row .column:nth-child(2) {
        margin-top: 30px;
        flex-grow: unset;
    }

    .blue-7 .background p {
        font-size: 18px;
        text-align: center;
    }

    .blue-7 .background p.black {
        line-height: 28px;
        font-size: 22px;
    }

    .blue-7 .background p.red {
        margin-top: 15px;
        margin-bottom: 15px;
        line-height: 38px;
        font-size: 30px;
    }

    .red-2 {
        padding: 40px 20px;
    }

    .red-2 .row:nth-child(3) {
        margin-top: 40px;
        flex-direction: column;
    }

    .red-2 .row:nth-child(4) {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .red-2 .row:nth-child(4) > div:nth-child(1) {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .blue-8 {
        padding: 40px 20px;
    }

    .blue-8 h2 {
        line-height: 42px;
        margin-bottom: 40px;
        font-size: 32px;
    }

    .blue-8 .row:nth-child(2) {
        flex-direction: column;
        row-gap: 30px;
    }

    .blue-8 .row:nth-child(2) .column .text {
        padding: 20px;
    }

    .white-1 {
        padding: 40px 10px;
    }

    .white-1 h2 {
        line-height: 42px;
        font-size: 30px;
        padding: 0 10px;
    }

    .white-1 h2 small {
        line-height: 28px;
        font-size: 20px;
    }

    .white-1 .row {
        flex-direction: column;
    }

    .white-1 .table {
        display: none;
    }

    .white-1 .mobile-table {
        display: block;
    }

    .white-2 {
        padding: 40px 20px;
    }

    .white-2 .row {
        flex-direction: column;
        row-gap: 40px;
    }

    .white-2 .row .column:nth-child(1) {
        flex: unset;
        width: 100%;
        row-gap: 40px;
    }

    .white-2 .row .column:nth-child(2) {
        flex-grow: unset;
        width: 100%;
    }

    .white-2 h3 {
        line-height: 42px;
        font-size: 32px;
    }

    .white-2 hr {
        margin: 20px 0;
    }

    .yellow-1 {
        padding: 40px 20px;
    }

    .yellow-1 .background {
        margin-top: 200px;
        padding: 20px;
    }

    .yellow-1 .background h3 {
        line-height: 42px;
        margin-bottom: 30px;
        font-size: 32px;
        text-align: center;
    }

    .yellow-1 .background p {
        line-height: 27px;
        font-size: 18px;
    }

    .black-1 {
        padding: 40px 20px;
    }

    .black-1 .row:nth-child(4) > div:nth-child(1) {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 40px;
    }

    .black-1 h2 {
        line-height: 52px;
        font-size: 32px;
        margin-bottom: 40px;
    }

    .black-1 h2 small {
        font-size: 22px;
    }

    .black-1 p {
        font-size: 16px;
    }

    .black-1 .custom-checkbox {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}

/*  ORDER FORM  */
form.form_panel,
form.form_panel * {
    box-sizing: border-box !important;
}

form.form_panel {
    margin-top: 100px;
    width: 100%;
    max-width: 700px;
    margin: 45px auto 0;
    color: #fff;
    font-family: Arial, sans-serif;
    display: block;
    background-color: #000;
}

form.form_panel .header {
    color: #d90000;
    text-align: center;
    background-color: transparent;
}

form.form_panel p {
    text-align: left;
}

form.form_panel .radio_buttons .buttons_left {
    width: 50%;
    float: left;
}

form.form_panel .radio_buttons .buttons_right {
    width: 50%;
    float: right;
}

form.form_panel .radio_buttons input[type="radio"] {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

@media all and (max-width: 560px) {
    form.form_panel .radio_buttons .buttons_left,
    form.form_panel .radio_buttons .buttons_right {
        width: 100%;
        float: none;
    }
}

.form_control .txtinput {
    background-color: #fff;
    width: 100% !important;
}

.form_control .select_wrapper {
    max-width: 280px;
    background-color: #fff;
}

#sum {
    max-width: 280px;
    width: 100%;
}

@media all and (max-width: 740px) {
    form.form_panel {
        width: 90%;
        margin: 0 auto;
        padding: 5%;
    }

    form.form_panel .txtinput {
        width: 100%;
        padding: 14px 2%;
    }

    .form_control .select_wrapper select {
        width: 90%;
    }
}
