:root {
    --blue-primary: #00adee;
    --blue-primary-rgb: 0, 173, 238;
    --blue-secondary: #004a70;
    --blue-secondary-rgb: 0, 74, 112;
    --blue-tertiary: #122a4f;
    --blue-quaternary: #0b203f;
    --blue-quaternary-rgb: 11, 32, 63;
    --blue-quinary: #0f456a;
    --blue-quinary-rgb: 0, 74, 112;
    --white-primary: #ffffff;
    --white-primary-rgb: 255, 255, 255;
}

.color-blue-primary {
    color: var(--blue-primary);
}

.color-blue-secondary {
    color: var(--blue-secondary);
}

.color-white-primary {
    color: var(--white-primary);
}

.container {
    width: 100%;
    max-width: 1300px;
}

h1,
.h1 {
    font-size: 30px;
}

@media (min-width: 769px) {

    h1,
    .h1 {
        font-size: 60px;
    }
}

@media (min-width: 992px) {

    h1,
    .h1 {
        font-size: 90px;
    }
}

@media (min-width: 1200px) {

    h1,
    .h1 {
        font-size: 114px;
    }
}

/* menu button begin */
.toggleMenu {
    display: inline-block;
    width: 36px;
    min-width: 36px;
    height: 36px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    border: 1px solid transparent;
    vertical-align: middle;
}

@media (min-width: 992px) {
    .toggleMenu {
        display: none;
    }
}

.toggleMenu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--white-primary);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.toggleMenu span:nth-child(1) {
    top: 6px;
}

.toggleMenu span:nth-child(2),
.toggleMenu span:nth-child(3) {
    top: 50%;
    margin-top: -1px;
}

.toggleMenu span:nth-child(4) {
    bottom: 6px;
}

.openMenu .toggleMenu {
    /*border-color: #fff;*/
}

.openMenu .toggleMenu span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.openMenu .toggleMenu span:nth-child(2) {
    transform: rotate(45deg);
}

.openMenu .toggleMenu span:nth-child(3) {
    transform: rotate(-45deg);
}

.openMenu .toggleMenu span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

/* menu button end */

/* size begin */
#windowSize * {
    font-family: "Arial", sans-serif !important;
}

#windowSize {
    position: fixed;
    left: 0px;
    bottom: 120px;
    z-index: 100;
    background: rgba(0, 0, 0, 1);
    padding: 3px;
    text-align: right;
    font-weight: normal;
}

@media (min-width: 768px) {
    #windowSize {
        bottom: 250px;
    }
}

#windowSize tr {
    border-top: 1px solid #aaa;
}

#windowSize tr:first-of-type {
    border-top: none;
}

#windowSize td {
    font-size: 11px;
    color: #eee;
    margin: 0;
    padding: 0;
    text-align: center;
}

#windowSize td span.hideMe {
    display: block;
    height: 0;
    line-height: 0;
    overflow: hidden;
    transition: all 300ms ease;
    padding: 0;
    color: #777;
}

#windowSize:hover td span {
    height: auto;
    line-height: 1;
    padding: 2px 0;
}

#windowSize b {
    color: red;
    font-weight: bold;
}

#windowSize p span {
    display: inline-block;
    padding: 0 3px;
    font-weight: bold;
}

#windowSize .ipAddress {
    max-width: 60px;
    word-wrap: break-word;
}

/* size end */

html,
body {
    background-color: var(--blue-secondary);
    color: var(--white-primary);
    font-family: 'DINCond-RegularAlternate', sans-serif;
    font-weight: normal;
    font-size: 20px;
    line-height: 1.3;
}

@media (min-width: 992px) {

    html,
    body {
        font-size: 22px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn .ico {
    width: 24px;
}

.btn .ico img {
    display: block;
    width: 100%;
}

.btn-outline-primary {
    border: 1px solid var(--white-primary);
    color: var(--white-primary);
    background-color: transparent;


    padding: 7px 14px;
    font-size: 16px;
    border-radius: 5px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 0 0 0 var(--blue-secondary);

    &:hover {
        background-color: var(--blue-primary);
        color: var(--white-primary);
        border-color: var(--blue-primary);
        box-shadow: 0 0 20px 0 var(--blue-primary);
    }
}

@media (min-width: 992px) {
    .btn-outline-primary {
        padding: 10px 20px;
        font-size: 22px;
    }
}

.section-title {
    font-size: 32px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    text-align: center;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 48px;
    }
}

@media (min-width: 992px) {
    .section-title {
        font-size: 60px;
    }
}

@media (min-width: 1600px) {
    .section-title {
        font-size: 90px;
    }
}

.line-separator {
    width: 100%;
    height: 1px;
    background-color: var(--white-primary);
    margin: 20px 0;
}




.logo-wrapper {
    display: flex;
    align-items: center;
    width: 150px;
    max-width: 100%;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0));
}

.logo-wrapper .logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: all 0.3s ease;
    gap: 0;
}

.logo-wrapper .logo-link img {
    display: block;
    width: 100%;
    transition: all 0.3s ease;
}

.logo-wrapper .logo-link .logo-ship {
    width: 30%;
    margin-bottom: 5%;
}

.logo-wrapper .logo-link .logo-antarktys-text {
    width: 100%;
    margin: 5% auto
}

.logo-wrapper .logo-link .logo-vodka-text {
    width: 60%;
}

.title-tag {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--blue-primary);
    font-size: 18px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.title-tag:before {
    content: '';
    display: block;
    width: 100px;
    max-width: 20%;
    height: 1px;
    background-color: var(--blue-primary);
}

.title-tag-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--white-primary);
    font-size: 18px;
    font-weight: normal;
    text-transform: uppercase;
}

.title-tag-centered:before,
.title-tag-centered:after {
    content: '';
    display: block;
    width: 70px;
    max-width: 20%;
    height: 1px;
    background-color: var(--white-primary);
}

.section-no-content {
    padding: 50px 0;

    position: relative;
    background: url("../img/front/home/bg-ice-closer-up.png") no-repeat right bottom;
    background-image: image-set(url("../img/front/home/bg-ice-closer-up.webp") type("image/webp"),
            url("../img/front/home/bg-ice-closer-up.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.section-no-content .wrap {
    width: 500px;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    border: 2px solid var(--white-primary);
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    background: rgba(var(--blue-secondary-rgb), 0.5);
    backdrop-filter: blur(5px);
}

.section-no-content .wrap .logo {
    display: block;
    margin: 10px auto 30px;
    max-width: 300px;
    width: 100%;
}


.section-no-content .wrap h2 {
    font-size: 24px;
    margin-bottom: 20px;
}



.section-no-content .logo-wrapper {
    display: flex;
    align-items: center;
    width: 250px;
    margin: 0 auto 20px;
    max-width: 100%;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0));
}

.section-no-content .logo-wrapper .logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: all 0.3s ease;
    gap: 0;
}

.section-no-content .logo-wrapper .logo-link img {
    display: block;
    width: 100%;
    transition: all 0.3s ease;
}

.section-no-content .logo-wrapper .logo-link .logo-ship {
    width: 30%;
    margin-bottom: 5%;
}

.section-no-content .logo-wrapper .logo-link .logo-antarktys-text {
    width: 70%;
    margin: 5% auto
}

.section-no-content .logo-wrapper .logo-link .logo-vodka-text {
    width: 30%;
}