/* START ============= base */

html,
body {
    height: 100%;
}

body {
    color: #000;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-overflow-scrolling: touch;
}

* {
    box-sizing: border-box;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 0%;
    height: 100%;
}

.container-fluid {
    width: 100%;
    padding: 0 10px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px rgb(255 255 255) inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

@media (min-width: 1024px) {
    .container-fluid {
        width: 100%;
        padding: 0 20px;
    }
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 70px 0;
    width: 100%;
}

/* END: ============== base */

.header {
    background-color: #f15635;
    padding: 15px 0;
    z-index: 99;
}

.header-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

@media (min-width: 1024px) {
    .header-content {
        padding: 0;
    }
}

.banner {
    width: 100%;
    background-image: url(../Images/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 678px;
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .banner {
        min-height: 590px;
    }
}

.banner-nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.banner-nav-item {
    margin: 0 3px;
}

@media (min-width: 1024px) {
    .banner-nav-item {
        margin: 0 7px;
    }
}

.banner-nav-item::after {
    content: "//";
    font-size: 22px;
    font-weight: bold;
    line-height: 1.18;
    color: #e4e4e4;
}

.banner-nav-item:last-child::after {
    display: none;
}

.banner-nav-link {
    font-size: 19px;
    font-weight: bold;
    line-height: 1.18;
    color: #e4e4e4;
    text-transform: uppercase;
    padding: 0 5px;
}

@media (min-width: 1024px) {
    .banner-nav-link {
        font-size: 22px;
        padding: 0 10px;
    }
}

.banner-nav-link:hover {
    text-decoration: underline;
}

.logo-media {
    height: 60px;
}

.footer-logo {
    width: 148px;
    display: block;
    margin-bottom: 20px;
}

.footer-logo-media {
    width: 100%;
}

.nav-header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 90px;
    background-color: #f15635;
    transform: scaleY(0);
    max-height: 0;
    transform-origin: top;
    z-index: 99;
}

.nav-header.mobile-nav-header {
    transition: all 0.5s ease-in-out;
}

.mobile-menu-open .nav-header {
    transform: scaleY(1);
    max-height: 100vh;
    z-index: 99;
}

@media (min-width: 1024px) {
    .nav-header {
        padding: 0;
        width: inherit;
        position: static;
        background-color: transparent;
        max-height: inherit;
        transform: scaleY(1);
    }
}

.nav-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .nav-list {
        align-items: center;
        flex-direction: row;
    }
}

.nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.035);
}




.nav-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.035);
}

@media (min-width: 1024px) {
    .nav-item {
        margin: 0 4px;
        border-bottom: none;
        border-top: none;
    }
}

@media (min-width: 1200px) {
    .nav-item {
        margin: 0 10px;
    }
}

.nav-link {
    display: block;
    text-transform: uppercase;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.23;
    padding: 12px 40px;
    transition: all 0.3s ease;
    position: relative;
}

@media (min-width: 1024px) {
    .nav-link {
        padding: 0 5px;
    }
}


.nav-link.btn-link::before {
    display: none;
}

.nav-footer .nav-item:hover .nav-link {
    color: #fff;
}

.nav-item:hover .nav-link {
    color: #58585b;
}

@media (min-width: 1024px) {
    .nav-item:hover .nav-link {
        color: #e4b296;
    }
}

.burger {
    cursor: pointer;
    height: 16px;
    width: 20px;
    position: relative;
    z-index: 12;
}

@media (min-width: 1024px) {
    .burger {
        display: none;
    }
}

.burger-line {
    position: absolute;
    background: #fff;
    width: 100%;
    height: 2px;
}

.burger-line-top {
    top: 0;
}

.mobile-menu-open .burger-line-top {
    transform: rotate(45deg);
    top: 4px;
}

.burger-line-mid {
    top: 7px;
}

.mobile-menu-open .burger-line-mid {
    opacity: 0;
    visibility: hidden;
}

.burger-line-bottom {
    bottom: 0;
}

.mobile-menu-open .burger-line-bottom {
    transform: rotate(-45deg);
    bottom: 10px;
}

.main {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 9;
}

@media (min-width: 820px) {
    .main {
        margin-bottom: 406px;
    }
}

.footer {
    background-color: #414042;
    width: 100%;
    z-index: 5;
}

@media (min-width: 820px) {
    .footer {
        position: fixed;
        bottom: 0;
        left: 0;
    }
}


.footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0;
}

.footer-social {
    flex: none;
}

@media (min-width: 1024px) {
    .footer-social {
        width: 33.1%;
    } 
}

@media (min-width: 820px) {
    .footer-content {
        flex-direction: row;
        padding: 30px 0;
    }
}

/* .nav-content {
    flex: 1 1 35%;
    width: 100%;
    display: flex;
    justify-content: space-between;
} */

@media (min-width: 1024px) {
    .nav-content {
        width: auto;
    }
}

.nav-footer {
    display: flex;
    width: 100%;
    justify-content: center;
}

@media (min-width: 820px) {
    .nav-footer {
        display: flex;
        width: auto;
        justify-content: flex-start;
    }
}

.nav-footer .nav-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

@media (min-width: 1024px) {
    .nav-footer .nav-list {
        display: flex;
        justify-content: flex-start;
        margin: 0 25px;
    }
}

.nav-footer .nav-item {
    margin: 0;
}

.nav-footer .nav-link {
    font-size: 16px;
    color: #f15635;
    padding: 5px 8px;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

@media (min-width: 1024px) {
    .nav-footer .nav-link {
        padding: 5px 10px;
    }
}

.nav-footer .nav-link:before {
    display: none;
}

.nav-footer .nav-link:hover {
    color: #fff;
}

.nav-link.is-mobile {
    font-size: 10px;
}

@media (min-width: 1024px) {
    .nav-link.is-mobile {
        display: none;
    }
}

.social {
    display: flex;
    margin-bottom: 30px;
}

.social-item {
    margin: 0 6px;
}

/* @media (min-width: 1024px) {
    .social-item {
        margin: 0 10px;
    }
} */

.social-link {
    display: block;
    font-size: 16px;
    color: #f15635;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    color: #fff;
}

.copyright {
    display: block;
    width: 100%;
    color: #e4e4e4;
    padding: 15px 0;
    font-size: 12px;
    line-height: 1;
    text-align: center;
}

/* 
.socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 auto;
} */

@media (min-width: 1024px) {
    .socials {
        display: flex;
        flex-direction: column;
        flex: none;
    }
}

.contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .contacts {
        align-items: stretch;
        flex-direction: row;
        flex: 2 1;
    }
}

.contacts-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 19px;
}

@media (min-width: 1024px) {
    .contacts-list {
        align-items: center;
        align-items: stretch;
        margin-bottom: 0;
    }
}

.contacts-item {
    margin: 0 0 7px;
    line-height: 18px;
}

/* .contacts-item:nth-child(4),
.contacts-item:nth-child(3) {
    display: none;
}

@media (min-width: 1024px) {
    .contacts-item:nth-child(4),
    .contacts-item:nth-child(3) {
        display: block;
    }
}
@media (min-width: 1024px) {
    .contacts-item:last-child {
        display: none;
    }
} */

/* .contacts-link {
    font-size: 10px;
    font-weight: normal;
    color: #e4e4e4;
    line-height: 18px;
    margin-bottom: 18px;
} */

@media (min-width: 1024px) {
    .contacts-link {
        margin-bottom: 0;
        margin-right: 26px;
    }
}

.form {
    max-width: 465px;
    width: 100%;
    margin: 0 auto;
}

.form-reopen-acc {
    max-width: 327px;
    width: 100%;
    margin: 0 auto;
}

.form-contact-us {
    max-width: 327px;
    width: 100%;
    margin: 0 auto;
}

.form-block {
    display: flex;
    align-items: flex-end;
    min-width: 0%;
    margin-bottom: 16px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 327px;
}

.form-label {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.14;
    color: #000;
    margin-bottom: 7px;
}

.form-control {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 14px;
    border-radius: 4px;
    border: solid 1px #888888;
    background-color: #ffffff;
}

.form-dropdown {
    width: 100%;
    height: 48px;
    border-radius: 4px;
    border: solid 1px #888888;
    background-color: #ffffff;
    position: relative;
}

.form-dropdown-control {
    border-radius: 4px;
    font-size: 14px;
    padding: 0 16px;
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
    color: #414042;
    -webkit-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

select {
    background-color: #fff;
    box-shadow: none;
}

.form-dropdown-control:focus {
    outline: none;
}

.form-dropdown::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2px;
    width: 30px;
    height: 30px;
    z-index: 999;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='Capa_1' x='0px' y='0px' width='512px' height='512px' viewBox='0 0 306 306' style='enable-background:new 0 0 306 306;' xml:space='preserve' class=''%3E%3Cg%3E%3Cg transform='matrix(6.12323e-17 1 -1 6.12323e-17 306 0)'%3E%3Cg%3E%3Cg id='chevron-right'%3E%3Cpolygon points='94.35,0 58.65,35.7 175.95,153 58.65,270.3 94.35,306 247.35,153 ' data-original='%23EF5169' class='active-path' data-old_color='%23EF5169' fill='%23F15635'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 13px;
    background-position: center;
    pointer-events: none;
}

.form-textarea {
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    height: 100px;
    resize: none;
    padding: 15px 16px;
    font-size: 14px;
    border-radius: 4px;
    border: solid 1px #888888;
    background-color: #ffffff;
}

.form-textarea::placeholder {
    color: #e4e4e4;
}

.form-control::-webkit-input-placeholder {
    color: #e4e4e4;
}

.form-control::-moz-placeholder {
    color: #e4e4e4;
}

.form-control:-ms-input-placeholder {
    color: #e4e4e4;
}

.form-control:-moz-placeholder {
    color: #e4e4e4;
}

.form-link {
    text-transform: uppercase;
    flex: none;
    padding: 16px 0;
    font-size: 10px;
    font-weight: bold;
    line-height: 1.2;
    color: #7f7f7f;
    margin-left: 30px;
}

.form-link:hover {
    text-decoration: underline;
}

.form-error {
    font-size: 12px;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.14;
    color: #f15635;
    padding: 10px 0;
}

.form-error a {
    text-decoration: underline;
}

.btn-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 327px;
    width: 100%;
    padding: 0 24px;
    margin-top: 35px;
}

.btn-group .btn {
    margin: 0;
}

.btn {
    cursor: pointer;
    min-width: 120px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    background-color: #f15635;
    border: none;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    transition: all 0.5s linear;
    margin: 35px 104px;
    display: block;
}

.btn:hover {
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.43);
}

.btn-link {
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s linear;
}

@media (min-width: 1024px) {
    .btn-link:hover {
        background-color: #e4e4e4;
    }

    .btn-link {
        display: block;
        text-transform: uppercase;
        background-color: #414042;
        border-radius: 7px;
        padding: 0 27px;
        margin-left: 9px;
        line-height: 60px;
        font-size: 13px;
        font-weight: bold;
    }
}

.btn-light {
    background-color: #e4e4e4;
    color: #f15635;
}

.link {
    font-size: 14px;
    font-weight: bold;
    color: #f15635;
    display: block;
}

.link-error {
    font-size: 10px;
    font-weight: bold;
    color: #f15635;
    display: inline-block;
}

.link-error:hover {
    text-decoration: underline;
}

.error {
    background-color: #f15635;
    height: 100%;
    display: flex;
    align-items: center;
}

.error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.confirmation-content {
    width: 100%;
}

.expiration-date {
    display: flex;
}

.expiration-date .form-group:first-child {
    flex: 1 1 auto;
}

.expiration-date .form-group:last-child {
    width: 130px;
    margin-left: 15px;
}

.security-controls {
    display: flex;
    max-width: 327px;
    width: 100%;
}

.security-controls .year-control {
    width: 200px;
}


.security-controls .form-group {
    flex: 1 1 auto;
}

.security-controls .form-group:last-child {
    margin-left: 15px;
}

.get-started {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 815px;
    width: 100%;
    margin: 0 auto;
}

.get-started .col-1 {
    flex: 0 1 367px;
    margin: 0 auto;
}

@media (min-width: 400px) {
    .get-started .col-1 {
        padding: 0 20px;
    }
}

@media (min-width: 820px) {
    .get-started .col-1 {
        margin: initial;
    }
}

.get-started .col-1.col-mt {
    margin-top: 53px;
}

.form-phone-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-phone-group .form-control {
    flex: 0 1 82px;
    max-width: 85px;
    width: 100%;
}

.form-phone-separator {
    color: #f15635;
    font-size: 13px;
    font-weight: bold;
    padding: 0 15px;
}

.form-hint-text {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.1;
    color: #414042;
}

.form-domain-text {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.14;
    letter-spacing: 1.4px;
    color: #888888;
    padding: 5px 0;
}

/* START: ========= helpers */

.display-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.flex-column {
    flex-direction: column;
}

.margin-row-auto {
    margin: 0 auto;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-16 {
    margin-bottom: 16px;
}

/* END: =========== helpers */

/* START: ====== typography */

.heading-main {
    font-size: 38px;
    font-weight: bold;
    line-height: 1.19;
    text-align: center;
    color: #ffffff;
    margin-bottom: 15px;
}

@media (min-width: 1024px) {
    .heading-main {
        font-size: 72px;
        line-height: 1.39;
        margin-bottom: 35px;
    }
}

.title {
    display: block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.17;
    color: #f15635;
    margin-bottom: 25px;
}

.text-center {
    text-align: center;
}

.text-transform {
    text-transform: uppercase;
}

.text-bold {
    font-weight: bold;
}

.text-light {
    color: #fff;
}

.text-accent {
    color: #f15635;
}

.text-dark {
    color: #000;
}

.text-bleak {
    color: #7f7f7f;
}

.fz-20 {
    font-size: 20px;
}

.fz-10 {
    font-size: 10px;
}

.fz-36 {
    font-size: 36px;
}

.title-error {
    color: #fff;
    font-size: 140px;
    font-weight: bold;
    margin-bottom: 70px;
}

@media (min-width: 1024px) {
    .title-error {
        font-size: 280px;
    }
}

.paragraph {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.71;
    color: #414042;
    margin-bottom: 20px;
}

#lbVolume input[type=checkbox] {
    -webkit-appearance: checkbox;
    appearance: auto;
}

/* END: ======== typography */