* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 300ms ease-out;
}

@font-face {
    font-family: "TFArrow Medium";
    src: url("assets/fonts/TFArrow/TFArrow\ Medium/TFArrow\ Medium.ttf")
        format("truetype");
}

@font-face {
    font-family: "TFArrow Bold";
    src: url("assets/fonts/TFArrow/TFArrow\ Bold/TFArrow\ Bold.ttf")
        format("truetype");
}
@font-face {
    font-family: "TFArrow Light";
    src: url("assets/fonts/TFArrow/TFArrow\ Light/TFArrow\ Light.ttf")
        format("truetype");
}

:root {
    --color-blue: rgba(7, 18, 44, 1);
    --color-gold: rgba(239, 220, 171, 1);
    --bold-font: "TFArrow Bold";
    --medium-font: "TFArrow Medium";
    --light-font: "TFArrow Light";
    --page-padding: 0 162px;
    --title-font-size-big: 130px;
    --title-font-size-medium: 100px;
    --title-font-size-small: 80px;
    --text-font-size-extrabig: 24px;
    --text-font-size-big: 22px;
    --text-font-size-medium: 20px;
    --text-font-size-small: 18px;
    --text-font-size-extrasmall: 16px;
    --font-weight-large: 700;
    --font-weight-medium: 550;
    --font-weight-thin: 300;
    --first-section-height: 100vh;
}
html {
    scroll-behavior: smooth;
}
#video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    z-index: -1;
}

main {
    overflow: hidden;
}

/* header */
header {
    padding-bottom: 30px;
    background-color: rgba(7, 18, 44, 0.4);
    box-shadow: 0px 40px 40px rgba(7, 18, 44, 0.4);
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
}

.header_item {
    max-width: 2000px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 18px 60px 0 60px;
}
.header_logo {
    flex: 1;

    > img {
        cursor: pointer;
    }
}
.logo {
    display: block;
    width: 210px;
    height: 100%;
}
/*.toggle_header{*/
/*    display: none;*/
/*}*/

.toggle_header_black, .black_user{
    display: none;
}
.user_page_color{
    color: #efdcab;
}
.nav_bar {
    flex: initial;
    display: flex;
    align-items: center;
}
.nav_bar ul {
    display: flex;
    gap: 48px;
}
.header_links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;
}
.header_language {
    display: flex;
    gap: 20px;
    align-items: center;
}
.header_icons {
    display: flex;
    gap: 12px;

    > li {
        align-self: center;
    }

    > li > a {
        display: flex;
        align-self: center;
    }
    > li:nth-child(1) > a {
        width: 20px;
    }
    > li:nth-child(3) > a {
        width: 25px;
    }

    > li > span {
        color: #fff;
    }
}

.sign_in_button {
    width: 100px;
    height: 38px;

    border: 1px solid var(--color-gold);
    background-color: inherit;
    color: var(--color-gold);
    transition: all 0.5s ease;

    font-family: var(--medium-font);
    font-size: var(--text-font-size-small);
    font-weight: var(--font-weight-medium);
    line-height: 20px;
    letter-spacing: 1.1655442714691162px;
    text-align: center;
}
.sign_in_button.hide {
    display: none;
}
.user_button {
    position: relative;
}
.user_menu {
    display: none;
    border-radius: 10px 0px 10px 10px;
    position: absolute;
    top: 100%;
    right: 0;
    padding: 34px 54px !important;
    background: var(--color-blue);
}
.user_menu.show {
    display: block;
}

.user_menu > li > a {
    display: flex;
    padding: 10px;
    width: max-content;
    align-items: center;
    gap: 14px;
}
.user_menu > li > a > span {
    min-width: max-content;
    color: var(--color-gold);
    font-family: var(--medium-font);
    font-size: var(--text-font-size-big);
    font-weight: var(--font-weight-medium);
    line-height: 23.18px; /* 105.365% */
    letter-spacing: 0.09px;
}
.user_button.blue_header > .user_menu {
    background: var(--color-gold);
}
.user_button.blue_header > .user_menu > li > a > span {
    color: var(--color-blue);
}
.sign_in_button:hover {
    background-color: var(--color-gold);
    color: var(--color-blue);
    transition: all 0.5s ease;
}

.menu_item > a {
    cursor: pointer;
    font-family: var(--bold-font);
    text-transform: uppercase;
    font-weight: var(--font-weight-large);
    font-size: var(--text-font-size-big);
    transition: color 0.5s ease;
    color: var(--color-gold);
}
.menu_item > a:hover {
    color: var(--color-blue);
    transition: color 0.5s ease;
}
.blue_header > .menu_item > a > svg > path {
    transition: all 0.3s ease;
    stroke: var(--color-blue);
}
.blue_header > .menu_item > a:hover > svg > path {
    stroke: var(--color-gold);
}
.menu_item > a > svg > path {
    transition: all 0.3s ease;
    stroke: var(--color-gold);
}
.menu_item:nth-child(1) > a > svg > path {
    fill: var(--color-gold);
}
.menu_item > a:hover > svg > path {
    stroke: var(--color-blue);
}
.menu_item:nth-child(1) > a:hover > svg > path {
    fill: var(--color-blue);
}
header > a:hover,
header > button:hover,
header > img:hover {
    background-color: #fff; /* Change background color of header when any of these child elements are hovered */
}

.header_line {
    display: none;
    width: 0;
    height: 26px;
    border: 0.5px solid rgba(239, 220, 171, 0.5);
}

.header_menu {
    display: none;
    position: relative;
    cursor: pointer;
    width: 40px;
    height: 24px;
}
.menu_top_line {
    position: absolute;
    width: 22px;
    top: 0;
    left: 0;
    border: 1px solid var(--color-gold);
    transition: all 0.5s ease;
}
.menu_middle_line {
    position: absolute;
    width: 38px;
    top: 8px;
    left: 0;
    border: 1px solid var(--color-gold);
    transition: all 0.5s ease;
}
.menu_bottom_line {
    position: absolute;
    width: 24px;
    top: 16px;
    left: 14px;
    border: 1px solid var(--color-gold);
    transition: all 0.5s ease;
}
.clicked.header_menu {
    .menu_top_line {
        width: 15px;
        left: 2px;
        top: 2px;
        transform: rotate(43.32deg);
    }
}
.clicked.header_menu {
    .menu_middle_line {
        width: 32px;
        transform: rotate(-45deg);
    }
}
.clicked.header_menu {
    .menu_bottom_line {
        width: 17px;
        top: 14px;
        transform: rotate(45deg);
    }
}

.mobile_menu_header {
    position: fixed;
    box-shadow: unset;
    background-color: unset;
}
.mobile_menu_header .sign_in_button {
    transition: all 1s ease;
    border-color: var(--color-blue);
    color: var(--color-blue);
}
.mobile_menu_header .header_line {
    transition: all 1s ease;
    border-color: var(--color-blue);
}
.mobile_menu_header .header_menu > * {
    transition: all 1s ease;
    border-color: var(--color-blue);
}
.mobile_menu_header .header_links {
    margin-top: 0;
}
.menu_box {
    display: none;
}
.menu_box.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 998;
    top: 0;
    left: 0;
    background: var(--color-gold);
    padding-top: 100px;
}
.menu_box_buttons {
    display: flex;
    flex-direction: row-reverse;
    gap: 88px;
    align-items: center;
}
.menu_box.show .header_language {
    display: flex;
}
.menu_box.show .header_icons > li > span {
    color: var(--color-blue);
}
.menu_box.show .header_language .menu_item > a {
    color: var(--color-blue);
}
.menu_box.show .header_icons {
    display: flex;
}
.menu_box.show .nav_bar {
    display: block;
    height: 100%;
}
.menu_box_nav_bar > ul {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10%;
    color: var(--color-blue);
}
.menu_box_nav_bar .menu_item > a {
    color: var(--color-blue);
}

/* Section One */

.homepage_first_section {
    height: var(--first-section-height);
    width: 100%;
    position: relative;
}
.header_left_bottom {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 110px;
    bottom: 76px;
}
.explore > p {
    display: flex;
}
.explore1 > p {
    color: var(--color-gold);
    font-family: var(--light-font);
    font-size: 72px;
    font-weight: var(--font-weight-thin);
    line-height: 122.336%; /* 88.333px */
    letter-spacing: 5.776px;
}
.explore2 > p {
    margin-left: 80px;
    color: var(--color-gold);
    font-family: var(--medium-font);
    font-size: var(--title-font-size-big);
    font-weight: var(--font-weight-medium);
    line-height: 122.336%; /* 182.467px */
    text-transform: uppercase;
    letter-spacing: 11.932px;
}
.explore3 > p {
    color: var(--color-gold);
    font-family: var(--light-font);
    font-size: 32px;
    font-weight: var(--font-weight-thin);
    line-height: 122.336%; /* 39.147px */
    letter-spacing: 2.56px;
}
.header_right_bottom {
    position: absolute;
    right: 110px;
    bottom: 76px;
}
.header_right_bottom span {
    font-family: var(--light-font);
    font-size: var(--text-font-size-medium);
    font-weight: var(--font-weight-thin);
    line-height: 31px;
    letter-spacing: 0.08em;
    text-align: left;
    color: var(--color-gold);
}

/* Section Two */

.homepage_second_section {
    position: relative;
    padding: var(--page-padding);
    display: flex;
    display: grid;
    padding-top: 104px;
    grid-template-areas:
        "header-box  img-box"
        "description img-box"
        "description button-box";
    justify-content: center;
    column-gap: 28px;
    grid-row-gap: 30px;
}
.nairian_title {
    display: flex;
    position: relative;
}
.nairian_title span{
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 2px;
    font-size: 200px;
    font-family: var(--bold-font);
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
}
.letter_nf {
    background: url('./assets/images/nairian_group/nf.jpg') no-repeat;
}
.letter_af {
    background: url('./assets/images/nairian_group/af.jpg') no-repeat;
}
.letter_if {
    background: url('./assets/images/nairian_group/if.jpg') no-repeat;
}
.letter_r {
    background: url('./assets/images/nairian_group/r.jpg') no-repeat;
}
.letter_is {
    background: url('./assets/images/nairian_group/is.jpg') no-repeat;
}
.letter_as {
    background: url('./assets/images/nairian_group/as.jpg') no-repeat;
}
.letter_ns {
    background: url('./assets/images/nairian_group/ns.jpg') no-repeat;
}



.home_page_first_line {
    width: calc(100% - 120px);
    height: auto;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 120px;
}

.home_page_second_line {
    width: 100%;
    height: auto;
    position: absolute;
    top: 148px;
    left: 0;
}

/* Section Two header */

.header_box {
    z-index: 2;
    grid-area: header-box;
}
.description_head {
    font-family: var(--light-font);
    min-width: 100%;
    max-width: fit-content;
    font-weight: var(--font-weight-thin);
    font-size: var(--title-font-size-small);
    color: var(--color-blue);
    line-height: 77px;
    letter-spacing: 1px;
    text-align: left;
    overflow: visible;
    padding-left: 4px;
}
.description_head_name {
    margin-top: 32px;
    color: var(--color-gold);
    font-family: var(--bold-font);
    font-size: var(--title-font-size-medium);
    font-weight: var(--font-weight-large);
    letter-spacing: 0.17731092870235443px;
    text-align: left;
}

/* Secation two text */
.description_box {
    z-index: 2;
    grid-area: description;
}
.description {
    max-width: 440px;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    gap: 30px;
    font-family: var(--medium-font);
    color: var(--color-blue);
    font-size: var(--text-font-size-big);
    font-weight: var(--font-weight-medium);
    line-height: 21px;
    letter-spacing: 0.20000000298023224px;
    text-align: justify;
}

/* Section Two Images */
.img_box {
    z-index: 2;
    grid-area: img-box;
    max-width: 744px;
    display: flex;
    align-items: flex-end;
}
.img_box_images {
    position: relative;
    width: 100%;
    height: auto;
}

.img_box_img_1 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.img_box_img_1_line {
    z-index: -1;
    position: absolute;
    width: calc(100% - 30px);
    height: 100%;
    left: 0;
    bottom: -20px;
    border: 1px solid var(--color-gold);
}
.img_box_img_1_img {
    max-width: calc(100% - 30px);
    max-height: 100%;
    overflow: hidden;
}
.img_box_img_2 {
    position: absolute;
    width: 52%;
    height: 72%;
    top: 40%;
    left: -14%;
    display: flex;
    justify-content: flex-end;
}
.img_box_img_2_line {
    position: absolute;
    bottom: -20px;
    left: 0;
    z-index: -1;
    height: 100%;
    width: calc(100% - 22px);
    border: 1px solid var(--color-gold);
}
.img_box_img_2_img {
    height: 100%;
    width: calc(100% - 22px);
}

/* Section two button */
.button_box {
    z-index: 2;
    grid-area: button-box;
    justify-self: center;
    margin-left: 100px;
}
.read_more_button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    gap: 16px;
    position: relative;
}
.read_more_button .text {
    font-family: var(--medium-font);
    font-weight: var(--font-weight-medium);
    font-size: var(--text-font-size-medium);
}
.read_more_button > svg > circle {
    fill: transparent;
    transition: all 0.3s ease;
}
.read_more_button:hover > svg > circle {
    fill: var(--color-gold);
    stroke: var(--color-gold);
}

/* Section Three */

.homepage_third_section {
    position: relative;

    margin-top: 200px;
    padding: var(--page-padding);
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: var(--color-blue);
}
.third_setion_title {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}
.third_setion_title > h2 {
    font-family: var(--light-font);
    font-weight: var(--font-weight-medium);
    font-size: var(--title-font-size-small);
    color: var(--color-gold);
}
.tour_row {
    max-width: 100%;
    width: max-content;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(auto, 300px));
    justify-content: center;
    gap: 28px;
}
.tour_box {
    position: relative;
    width: 300px;
    height: 320px;
}
.tour_line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px solid var(--color-gold);
}
.tour_img {
    position: absolute;
    object-fit: contain;
    width: calc(100% - 20px);
    height: calc(100% - 20px);

    overflow: hidden;
    right: 0;
    top: 0;
}
.tour_img > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.tour_box:hover .tour_img{
    transform: translateY(-10px);
    transition: all .3s ease-in;
}


.tour_img_content {
    position: relative;
    width: 100%;
    height: 100%;
}
.tour_img_content img{
    height: 100%;
    object-fit: cover;
}
.tour_img_content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(7, 18, 44, 1)
    );
    z-index: 1;
}
.tour_name {
    position: absolute;
    width: 100%;
    bottom: 26px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
    font-family: var(--medium-font);
    font-size: var(--text-font-size-big);
    font-weight: var(--font-weight-medium);
    color: var(--color-gold);
    text-align: center;
}
.tour_delay {
    position: absolute;
    right: 8px;
    top: 8px;
    padding: 4px;
    background-color: var(--color-gold);

    > span {
        font-family: var(--light-font);
        font-size: 13px;
        font-weight: var(--font-weight-thin);
        letter-spacing: 0.13758094608783722px;
        text-align: center;
    }
}

/* Section Four */
.homepage_fourth_section {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
}
.nairian_travel_about_travel {
    padding: var(--page-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 46px;
}
.nairian_content_box {
    flex-shrink: 8;
    margin-top: -20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}
.nairian_content_box > h3 {
    font-family: var(--light-font);
    font-size: 50px;
    font-weight: var(--font-weight-thin);
    line-height: 47px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--color-blue);
}
.nairian_content_box > h2 {
    width: max-content;
    font-size: 68px;
    line-height: 62px;
    letter-spacing: 0em;
    text-align: left;
    font-family: var(--medium-font);
    font-weight: var(--font-weight-medium);
    color: var(--color-gold);
}
.about_armenia_button {
    width: 100%;
    margin-top: 16px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.about_armenia_button_arrow_mobile {
    display: none;
}

.about_armenia_button .text {
    font-family: var(--medium-font);
    font-size: var(--text-font-size-medium);
    font-weight: var(--font-weight-medium);
    line-height: 19px;
    letter-spacing: 0.20689363777637482px;
    text-align: justify;
}

.about_armenia_button > svg > circle {
    fill: transparent;
    transition: all 0.3s ease;
}
.about_armenia_button:hover > svg > circle {
    fill: var(--color-gold);
    stroke: var(--color-gold);
}
.about_line_img {
    top: -24px;
    left: 20px;
}
.nairian_img_box {
    flex-shrink: 2;
    position: relative;
    max-width: 800px;
}
.nairian_travel_img {
    position: absolute;
    width: 18%;
    right: 0;
    top: 0;
}

.nairian_offer {
    margin-top: 80px;
    padding: var(--page-padding);
    display: grid;
    grid-template-areas:
        "offer-header offer-img"
        "offer-content offer-img";
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.nairian_offer_header {
    grid-area: offer-header;
    align-self: flex-end;
}
.nairian_offer_content {
    grid-area: offer-content;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}
.save_up_h {
    max-width: 854px;
    font-family: var(--medium-font);
    font-size: var(--title-font-size-small);
    font-weight: var(--font-weight-medium);
    line-height: 76px;
    letter-spacing: 0em;
    text-align: left;
    height: max-content;
    color: var(--color-blue);
}
.save_up_p {
    max-width: 640px;
    font-family: var(--medium-font);
    font-weight: var(--font-weight-medium);
    font-size: var(--text-font-size-big);
    text-align: justify;
    color: var(--color-blue);
}
.b2b_login {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--color-gold);
    border-radius: 10px;
    width: 276px;
    height: 56px;
}
.b2b_login .b2b_text {
    font-family: var(--medium-font);
    font-size: var(--text-font-size-medium);
    font-weight: var(--font-weight-medium);
    line-height: 19px;
    letter-spacing: 0.1775362342596054px;
    text-align: justify;
}
.b2b_login svg {
    transition: all 0.3s ease;
}

.b2b_login:hover {
    background: #f8e4b0;
}
.b2b_login:hover svg {
    transform: translateX(20px);
}

.nairian_offer_img {
    grid-area: offer-img;
    justify-self: center;
    position: relative;
    display: flex;
    justify-content: flex-end;
    max-width: 684px;
    height: auto;
}
.nairian_offer_img_line {
    position: absolute;
    border: 1px solid var(--color-gold);
    width: calc(100% - 24px);
    height: 100%;
    z-index: -1;
    left: 0;
    bottom: -24px;
}
.nairian_offer_img_img {
    width: calc(100% - 24px);
    height: 100%;
}

.nairian_bottom {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 40px;
}
.nairian_bottom > div {
    width: 100%;
}
.nairian_bottom h3 {
    padding: var(--page-padding);
    font-family: var(--medium-font);
    font-size: 40px;
    font-weight: var(--font-weight-large);
    line-height: 98px;
    letter-spacing: 0.17731092870235443px;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-blue);
    margin-bottom: 40px;
}
.slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.plane_img {
    width: 206px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Slider Animation */

@keyframes slider-animation {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* footer */
footer {
    position: relative;
    background-color: var(--color-blue);
    padding-top: 50px;
    display: flex;
    justify-content: center;
    padding: var(--page-padding);
}
footer > .footer_container {
    max-width: 2000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer first Row */

.footer_first_row {
    padding-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid rgba(239, 220, 171, 0.1);
    padding-bottom: 40px;
}

.footer_logo {
    width: 236px;
    cursor: pointer;
}

.footer_center {
    display: flex;
    justify-self: center;
    gap: 56px;
}
.footer_buttons {
    gap: 30px;
    justify-self: center;
    display: flex;
    justify-content: space-between;
}
.footer_items_button {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: inherit;
}
.footer_items_button:hover,
.footer_links > a:hover {
    color: var(--color-gold);
    transition: font-size 0.5s ease;
    font-size: 32px;
}
.footer_buttons_text {
    color: var(--color-gold);
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: var(--bold-font);
    font-size: 32px;
    font-weight: var(--font-weight-large);
    letter-spacing: 1.718px;
    transition: font-size 0.3s ease;
    transition: padding 0.3s ease;
}
.footer_buttons_text:hover {
    font-size: 38px;
    transition: font-size 0.5s ease;
}

.footer_icons {
    justify-self: flex-start;
    gap: 16px;
    display: flex;
    justify-content: space-between;
}
.footer_icons_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    width: 34px;
    height: 100%;
    transition: width 0.3s ease;
    color: var(--color-gold);
}
.footer_icons_icon > img {
    width: 26px;
}
.footer_icons_icon:nth-child(3) {
    width: 42px;
}
.footer_icons_icon:nth-child(3) > img {
    width: 36px;
}
.footer_icons_icon:hover > img {
    width: 34px;
    transition: width 0.5s ease;
}
.footer_icons_icon:nth-child(3):hover > img {
    width: 42px;
    transition: width 0.5s ease;
}

.footer_social_media {
    justify-self: flex-end;
    display: flex;
    gap: 46px;
}
.footer_social_media > button {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.footer_social_media > button:hover {
    padding: 16px;
}

/* Footer Second Row */
.footer_links {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;

    gap: 92px;
    margin-bottom: 40px;
    margin-top: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(239, 220, 171, 0.1);
}
.footer_links > a {
    transition: font-size 0.3s ease;
    color: var(--color-gold);
    text-align: center;
    font-family: var(--bold-font);
    font-size: 28px;
    line-height: 48px;
    font-style: normal;
    font-weight: var(--font-weight-large);
    letter-spacing: 1.4px;
}
/* Footer Third Row */
.footer_rights {
    text-align: center;
    justify-self: center;
}
.rights {
    margin-bottom: 34px;
    font-family: var(--light-font);
    font-weight: var(--font-weight-thin);
    font-size: var(--text-font-size-small);
    color: var(--color-gold);
}
.to_top_button_box {
    position: absolute;
    right: 36px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.to_top_button_box span {
    color: var(--color-gold);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
        sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
}
#to_top_button {
    transition: transform 0.3s ease;
    transform: translateY(20px);
}
#to_top_button:hover {
    transition: transform 0.5s ease;
    transform: translateY(0px);
}
/* Footer for Mobile */

#map ymaps{
    width: 100% !important;
}

#mobile_footer {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 45px 25px 25px 25px;
}

/* Mobile Footer First Row */

#mobile_footer_first_row .footer_logo {
    width: 120px;
    height: 32px;
}
/* Mobile Footer Second Row */
#mobile_footer_second_row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
#mobile_footer_second_row > .footer_links {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: unset;
    border-bottom: none;
}
#mobile_footer_second_row > .footer_links > a {
    text-align: left;
    font-size: var(--text-font-size-extrasmall);
    font-style: normal;
    font-weight: var(--font-weight-medium);
    line-height: 16px; /* 0.209% */
    letter-spacing: 0.312px;
}
.mobile_footer_icons {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.mobile_footer_icons > .footer_social_media > button {
    padding: 10px;
}
#mobile_footer_second_row .footer_icons {
    justify-content: center;
}
#mobile_footer_second_row .footer_icons_icon {
    width: unset;
    height: unset;
}
.mobile_footer_icons > .footer_social_media {
    gap: 20px;
}
#mobile_footer_second_row .footer_social_media button {
    width: 48px;
    height: 46px;
}
#mobile_footer_second_row > .second_row_right_side {
    display: flex;
    align-items: center;
    gap: 32px;
}
#mobile_footer_second_row > .second_row_right_side .footer_buttons {
    flex-direction: column;
}
#mobile_footer_second_row > .second_row_right_side .footer_buttons_text {
    font-size: 14px;
    font-style: normal;
    font-weight: var(--font-weight-large);
    line-height: 0.041px; /* 0.293% */
    letter-spacing: 0.383px;
}
#mobile_footer_third_row p {
    font-family: "Aeonik TRIAL";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}
/* Modal */

.modal_area {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal_background {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(7, 18, 44, 0.7);
}
.modal_container {
    max-height: 752px;
    height: 100%;

    border: 1px solid var(--color-gold);
    display: flex;
}
.sign_in_img {
    width: 478px;
    height: 100%;
    background: lightgray 2.455px -34.962px / 248.218% 105.077% no-repeat;
    background-position: center;
    background-size: cover;
}
.form_container {
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    gap: 16px;
}
.close_button {
    position: absolute;
    right: 28px;
    top: 28px;
    font-size: 42px;
    text-align: center;
}
.form_title > h1 {
    color: var(--color-gold);
    font-family: var(--medium-font);
    font-size: 80px;
    font-style: normal;
    font-weight: var(--font-weight-large);
    line-height: 98px; /* 122.5% */
    letter-spacing: 0.177px;
}
.form_title > p {
    font-family: var(--medium-font);
    font-size: var(--text-font-size-extrasmall);
    font-weight: var(--font-weight-medium);
    line-height: 17px;
    letter-spacing: 0.20000000298023224px;
}
.form {
    margin-top: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form > input {
    width: 100%;
    height: 56px;
    border-radius: 6px;
    padding: 16px;
    border: 1px solid var(--color-blue);
    font-family: var(--medium-font);
    font-size: var(--text-font-size-medium);
    font-weight: var(--font-weight-medium);
    line-height: 21px;
    letter-spacing: 0.20000000298023224px;
    text-align: justify;
}
.form > button {
    position: absolute;
    width: 200px;
    border-radius: 4.33px;
    height: 38px;
    right: 8px;
    bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.form > button > p {
    font-family: var(--medium-font);
    font-size: 14px;
    font-weight: var(--font-weight-thin);
    line-height: 14px;
    letter-spacing: 0.1280062049627304px;
    text-align: justify;
}
.form > button > svg {
    transition: all 0.3s ease;
}
.form > button:hover {
    background: #f8e4b0;
}
.form > button:hover > svg {
    transform: translateX(10px);
}
.modal_footer > p {
    font-family: var(--medium-font);
    font-size: var(--text-font-size-extrasmall);
    font-weight: 500;
    line-height: 17px;
    letter-spacing: 0.20000000298023224px;
    text-align: justify;
}
.modal_footer > p > a {
    font-family: var(--medium-font);
    font-size: var(--text-font-size-extrasmall);
    font-weight: var(--font-weight-large);
    line-height: 17px;
    letter-spacing: 0.20000000298023224px;
    text-align: justify;
}
.modal_hidden {
    display: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    color: inherit;
}
a, .prods_alink {
    text-decoration: unset;
    color: unset;
}
a:hover {
    color: unset;
}
li {
    list-style-type: none;
}
.background_gold {
    background-color: var(--color-gold);
}
.color_gold {
    color: var(--color-gold);
}

img {
    width: 100%;
}

input[type="date"] {
    cursor: text;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* Remove spinners for Webkit browsers */
    -webkit-appearance: none;
    margin: 0; /* Optional: You can adjust margin as needed */
}

.text-danger{
    color: red;
}
