@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-ExtraLight.ttf") format("truetype");
    font-weight: 200
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Light.ttf") format("truetype");
    font-weight: 300
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Regular.ttf") format("truetype");
    font-weight: 400
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Medium.ttf") format("truetype");
    font-weight: 500
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-SemiBold.ttf") format("truetype");
    font-weight: 600
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Bold.ttf") format("truetype");
    font-weight: 700
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-ExtraBold.ttf") format("truetype");
    font-weight: 800
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Black.ttf") format("truetype");
    font-weight: 900
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-ExtraLight.ttf") format("truetype");
    font-weight: 200
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Light.ttf") format("truetype");
    font-weight: 300
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Regular.ttf") format("truetype");
    font-weight: 400
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Medium.ttf") format("truetype");
    font-weight: 500
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-SemiBold.ttf") format("truetype");
    font-weight: 600
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Bold.ttf") format("truetype");
    font-weight: 700
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-ExtraBold.ttf") format("truetype");
    font-weight: 800
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Black.ttf") format("truetype");
    font-weight: 900
}

header {
    position: fixed;
    z-index: 999;
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    top: 0;
}

header .header-wrap {
    display: flex;
    width: calc(100% - 100px);
    padding: 15px 50px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between
}

header .header-wrap a.button {
    background: var(--unnamed-color-000000) 0% 0% no-repeat padding-box;
    background: #000000 0% 0% no-repeat padding-box;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    padding: 14px 35px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    margin-left: 20px;
}

header .header-wrap a.button:hover {
    background: #ffc400;
}

header .header-wrap .logo img {
    width: 130px;
    height: auto
}

header .header-wrap .navigation-menu-wrap {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

header .header-wrap .navigation-menu-wrap div[class*=menu-main-menu] {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

header .header-wrap .navigation-menu-wrap div[class*=menu-main-menu] .menu-nav {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    list-style: none
}

header .header-wrap .navigation-menu-wrap div[class*=menu-main-menu] .menu-nav li a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px
}

header .header-wrap .navigation-menu-wrap div[class*=menu-main-menu] .menu-nav li a:hover {
    color: #fc0;
    text-decoration: none
}

header .header-wrap .lng-wrap {
    position: relative;
    display: flex;
    width: auto;
    margin: 0 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

header .header-wrap .lng-wrap .lng-current {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 60px;
    height: 60px;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    font-weight: 400;
    text-decoration: none;
    text-align: right;
    text-transform: uppercase;
    background-image: url("assets/images/ico_lng.svg");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 25px auto;
    cursor: pointer
}

header .header-wrap .lng-wrap .lng-list {
    position: absolute;
    z-index: 20;
    top: 50px;
    display: none;
    width: 60px;
    list-style: none;
    margin: 0;
    padding: 0
}

header .header-wrap .lng-wrap .lng-list li {
    text-align: right;
    text-transform: uppercase;
    padding: 5px 0
}

header .header-wrap .lng-wrap .lng-list li a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px
}

header .header-wrap .lng-wrap .lng-list li a:hover {
    color: #fc0;
    text-decoration: none
}

header .header-wrap .hamburger {
    display: none;
    width: 35px;
    height: 90px;
    margin-left: 25px;
    background-image: url("assets/images/ico_hamburger.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    cursor: pointer
}

header.bck-color {
    background-color: #fff
}

@media(max-width: 1200px) {
    header .header-wrap {
        width: calc(100% - 40px);
        padding: 0 20px
    }

    header .header-wrap .logo img {
        width: 110px;
        height: auto
    }

    header .header-wrap .navigation-menu-wrap {
        display: none
    }

    header .header-wrap .hamburger {
        display: block
    }
}

#rsp-nav-wrap-wrap {
    position: fixed;
    z-index: 9999;
    left: -99999px;
    display: block;
    width: 100%;
    height: 100svh;
    transition: left .5s ease;
    top: 0;
}

#rsp-nav-wrap-wrap .rsp-nav-wrap {
    display: flex;
    flex-direction: column;
    width: calc(100% - 40px);
    height: 100svh;
    padding: 0 20px;
    background-color: #fff
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .rsp-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(103, 103, 118, .2)
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .rsp-header .logo img {
    width: 110px;
    height: auto
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .rsp-header .lng-wrap {
    position: relative;
    display: flex;
    width: auto;
    margin: 0 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .rsp-header .lng-wrap .lng-current {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 60px;
    height: 60px;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    font-weight: 400;
    text-decoration: none;
    text-align: right;
    text-transform: uppercase;
    background-image: url("assets/images/ico_lng.svg");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 25px auto;
    cursor: pointer
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .rsp-header .lng-wrap .lng-list {
    position: absolute;
    z-index: 20;
    top: 50px;
    display: none;
    width: 60px;
    list-style: none;
    margin: 0;
    padding: 0
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .rsp-header .lng-wrap .lng-list li {
    text-align: right;
    text-transform: uppercase;
    padding: 5px 0
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .rsp-header .lng-wrap .lng-list li a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .rsp-header .lng-wrap .lng-list li a:hover {
    color: #fc0;
    text-decoration: none
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .rsp-header .close {
    display: block;
    width: 35px;
    height: 25px;
    margin-left: 25px;
    background-image: url("assets/images/ico_close.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    cursor: pointer
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .navigation-menu-wrap {
    margin: 100px 0 auto;
    padding: 0 20px
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .navigation-menu-wrap ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin: 0;
    padding: 0
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .navigation-menu-wrap ul li {
    display: block
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .navigation-menu-wrap ul li a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .navigation-menu-wrap ul li a:hover {
    color: #ffc400;
    text-decoration: none
}

.navigation-menu-wrap ul li.button {
    display: none;
}

@media screen and (max-width: 768px) {
    #rsp-nav-wrap-wrap .rsp-nav-wrap .navigation-menu-wrap ul li.button {
        display: block;
        margin-top: 7vh;
    }

    #rsp-nav-wrap-wrap .rsp-nav-wrap .navigation-menu-wrap ul li.button a {
        padding: 14px 35px;
        color: #fff;
        background: var(--unnamed-color-000000) 0% 0% no-repeat padding-box;
        background: #000000 0% 0% no-repeat padding-box;
        border-radius: 30px;
    }
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .legal-menu-wrap {
    margin: 0 0 50px;
    padding: 0 20px
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .legal-menu-wrap ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 0;
    padding: 0
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .legal-menu-wrap ul li {
    display: block
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .legal-menu-wrap ul li a {
    color: #676776;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 28px
}

#rsp-nav-wrap-wrap .rsp-nav-wrap .legal-menu-wrap ul li a:hover {
    color: #ffc400;
    text-decoration: none
}

#rsp-nav-wrap-wrap.show {
    left: 0;
	display: block!important;
}

#rsp-nav-wrap-wrap.hide {
    left: -1300px;
	display: none!important;
}

footer {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

footer .footer-wrap {
    display: flex;
    box-sizing: border-box;
    max-width: 1204px;
    width: calc(100% - 60px);
    margin: 100px auto 95px;
    padding: 0;
    flex-direction: row;
    align-items: flex-start;
}

footer .footer-wrap .logo img {
    width: 160px;
    height: auto
}

footer .footer-wrap .footer-nav-block {
    width: 100%;
    max-width: 184px;
    margin-left: 120px;
}

footer .footer-wrap .footer-nav-block h3 {
    display: block;
    font-size: 16px;
    line-height: 28px;
    color: #000;
    font-weight: 700;
    margin: 0 0 19px
}

footer .footer-wrap .footer-nav-block .footer-nav div[class*=container] ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none
}

footer .footer-wrap .footer-nav-block .footer-nav div[class*=container] ul li a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    opacity: 0.6;
}

footer .footer-wrap .footer-nav-block .footer-nav div[class*=container] ul li a:hover {
    color: #ffc400;
    text-decoration: none
}

footer .disclamer-wrap {
    display: block;
    box-sizing: border-box;
    max-width: 1204px;
    width: calc(100% - 40px);
    font-size: 14px;
    line-height: 24px;
    color: #676776;
    margin: 0 auto 20px;
}

footer .footer-copy {
    display: flex;
    box-sizing: border-box;
    max-width: 1204px;
    width: calc(100% - 60px);
    padding: 40px 0px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(103, 103, 118, .2);
    margin: auto;
}

footer .footer-copy .copy {
    font-size: 12px;
    line-height: 20px;
    color: #000;
    opacity: 0.6;
}

footer .footer-copy .copy a {
    color: #000;
    text-decoration: none;
    opacity: 0.6;
}

footer .footer-copy .copy a:hover {
    color: #ffc400;
    text-decoration: none
}

footer .footer-copy .langs .lng-wrap {
    position: relative;
    display: flex;
    width: auto;
    margin: 0 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

footer .footer-copy .langs .lng-wrap .lng-current {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 60px;
    height: 60px;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    font-weight: 400;
    text-decoration: none;
    text-align: right;
    text-transform: uppercase;
    background-image: url("assets/images/ico_lng.svg");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 25px auto;
    cursor: pointer
}

footer .footer-copy .langs .lng-wrap .lng-list {
    position: absolute;
    z-index: 20;
    top: 50px;
    display: none;
    width: 60px;
    list-style: none;
    margin: 0;
    padding: 0
}

footer .footer-copy .langs .lng-wrap .lng-list li {
    text-align: right;
    text-transform: uppercase;
    padding: 5px 0
}

footer .footer-copy .langs .lng-wrap .lng-list li a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px
}

footer .footer-copy .langs .lng-wrap .lng-list li a:hover {
    color: #fc0;
    text-decoration: none
}

@media(max-width: 1200px) {
    footer .footer-wrap {
        width: 100%;
        margin: 100px 0;
        padding: 0 20px
    }
}

@media(max-width: 991px) {
    footer .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 47px;
        margin-bottom: 47px;
    }

    footer .footer-copy {
        width: 90%;
        padding: 25px 0;
    }

    footer .disclamer-wrap p {
        font-size: 12px;
    }

    footer .footer-wrap .footer-nav-block {
        margin-left: 0;
    }

    footer .footer-copy .copy {
        font-size: 10px;
    }
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-ExtraLight.ttf") format("truetype");
    font-weight: 200
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Light.ttf") format("truetype");
    font-weight: 300
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Regular.ttf") format("truetype");
    font-weight: 400
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Medium.ttf") format("truetype");
    font-weight: 500
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-SemiBold.ttf") format("truetype");
    font-weight: 600
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Bold.ttf") format("truetype");
    font-weight: 700
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-ExtraBold.ttf") format("truetype");
    font-weight: 800
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Black.ttf") format("truetype");
    font-weight: 900
}

.layout-hero-wrap {
    display: flex;
    width: calc(100% - 60px);
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-position: right center, right top !important;
    background-repeat: no-repeat, no-repeat !important;
    background-size: 76svh auto, cover !important;
    margin: 100px 30px 0;
    border-radius: 30px;
    padding: 96px 0 150px;
}

.layout-hero-wrap .layout-hero {
    display: flex;
    max-width: 1360px;
    width: calc(100% - 60px);
    padding: 0 30px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start
}

.layout-hero-wrap .layout-hero div[class*=content] {
    display: flex;
    max-width: 800px;
    flex-direction: column;
    align-items: flex-start
}

.layout-hero-wrap .layout-hero div[class*=content] h1 {
    display: block;
    font-size: 50px;
    line-height: 63px;
    color: #000000;
    font-weight: 700;
    margin: 0 0 20px
}

.layout-hero-wrap .layout-hero div[class*=content] .text {
    display: block;
    font-size: 22px;
    line-height: 32px;
    color: #000000;
    font-weight: 400;
    margin: 0 0 90px
}

.layout-hero-wrap .layout-hero div[class*=content] .bullets {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px
}

.layout-hero-wrap .layout-hero div[class*=content] .bullets .bullet {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px
}

.layout-hero-wrap .layout-hero div[class*=content] .bullets .bullet span {
    font-size: 18px;
    line-height: 23px;
    color: #000;
    font-weight: 400
}

.layout-hero-wrap .layout-hero div[class*=design] {
    display: none;
    height: auto;
    width: 100%;
    text-align: center;
    margin-top: 30px
}

.layout-hero-wrap .layout-hero div[class*=design] img {
    width: 80%;
    height: auto
}

@media(max-width: 1980px) {
    .layout-hero-wrap {
        background-position: right -10% center, right top;
        background-repeat: no-repeat, no-repeat;
        background-size: 60svh auto, cover
    }
}

@media(max-width: 1500px) {
    .layout-hero-wrap {
        background-size: 50svh auto, cover
    }
}

@media(max-width: 1200px) {
    .layout-hero-wrap {
        display: flex;
        height: auto;
        padding: 150px 0 0;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
		width: 95vw;
		background: none, transparent linear-gradient(180deg, #F0F0F0 0%, #FFFFFF 101%) 0% 0% no-repeat padding-box !important;
    }

    .layout-hero-wrap .layout-hero {
        display: flex;
        max-width: 1360px;
        width: calc(100% - 40px);
        padding: 0 20px 50px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start
    }

    .layout-hero-wrap .layout-hero div[class*=content] {
        max-width: 100%
    }

    .layout-hero-wrap .layout-hero div[class*=content] h1 {
        font-size: 30px;
        line-height: 40px
    }

    .layout-hero-wrap .layout-hero div[class*=content] .text {
        font-size: 16px;
        line-height: 26px;
        margin: 0 0 40px
    }

    .layout-hero-wrap .layout-hero div[class*=content] .bullets {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px
    }

    .layout-hero-wrap .layout-hero div[class*=content] .bullets .bullet img {
        width: 15px;
        height: auto
    }

    .layout-hero-wrap .layout-hero div[class*=content] .bullets .bullet span {
        font-size: 12px;
        line-height: 15px
    }

    .layout-hero-wrap .layout-hero div[class*=design] {
        display: block
    }
}

@media(max-width: 768px) {
    .layout-hero-wrap .layout-hero {
        padding-bottom: 0;
    }

    .layout-hero-wrap .layout-hero div[class*=content] .bullets {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px
    }

    .layout-hero-wrap {
        padding-top: 0;
        width: calc(100% - 40px)!important;
        margin: 100px 20px 0;
        background: transparent linear-gradient(180deg, #F0F0F0 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box !important;
    }

    .layout-hero-wrap .layout-hero div[class*=design] {
        order: 1;
    }

    .layout-hero-wrap .layout-hero div[class*=content] {
        order: 2;
    }

    .layout-hero-wrap .layout-hero div[class*=design] img {
        width: 100%;
    }

    .layout-hero .wgd-flights-wrap {
        padding: 0;
        background: none;
        width: 100%;
        box-shadow: none;
        border: none;
    }

    .layout-hero .wgd-flights-wrap .wdg-form .btn-claim {
        margin: 0;
        border-radius: 30px !important;
    }

    .layout-hero .wgd-flights-wrap .wdg-form .wdg-departure,
    .layout-hero .wgd-flights-wrap .wdg-form .wdg-arrival {
        margin: 0;
    }

    .layout-hero .wgd-flights-wrap .wdg-form .wdg-arrival {
        margin-bottom: 10px;
    }

    .layout-hero .wgd-flights-wrap .wdg-form .wdg-departure input {
        border-radius: 10px 10px 0 0;
    }

    .layout-hero .wgd-flights-wrap .wdg-form .wdg-arrival input {
        border-radius: 0 0 10px 10px;
        border-left: 1px solid #f4f4f0;
    }

    .layout-hero-wrap .layout-hero div[class*=content] .text {
        margin-bottom: 30px;
    }

    main .layout-block-with-icon-wrap {
        background: none;
    }

    main .layout-block-with-icon-wrap .layout-block-with-icon {
        padding: 120px 20px 0;
        width: calc(100% - 40px);
    }

    .layout-hero-wrap .layout-hero div[class*=content] .bullets {
        display: none;
    }
}


.layout-block-with-icon-wrap {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.layout-block-with-icon-wrap .layout-block-with-icon {
    display: flex;
    max-width: 1360px;
    width: calc(100% - 60px);
    padding: 0 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px
}

.layout-block-with-icon-wrap .layout-block-with-icon .block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: calc(25% - 75px);
    padding: 30px 30px 30px;
    background: transparent linear-gradient(0deg, #FFCC00 0%, #FCE92C 100%) 0% 0% no-repeat padding-box;
    border-radius: 20px;
    box-shadow: 0px 20px 60px 0px rgba(34, 34, 34, .05);
    transition: all .1s ease-in;

}

.layout-block-with-icon-wrap .layout-block-with-icon .block img {
    width: auto;
    height: 50px
}

.layout-block-with-icon-wrap .layout-block-with-icon .block h3 {
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: #000;
    font-weight: 700;
    margin: 50px 0 0
}

@media(max-width: 1200px) {
    .layout-block-with-icon-wrap {
        background-color: #f4f4f0
    }

    .layout-block-with-icon-wrap .layout-block-with-icon {
        width: calc(100% - 60px);
        padding: 100px 30px
    }

    .layout-block-with-icon-wrap .layout-block-with-icon .block {
        width: calc(50% - 55px);
        padding: 30px 20px 30px;
        gap: 0;
    }
}

@media(max-width: 768px) {
    .layout-block-with-icon-wrap .layout-block-with-icon .block {
        width: calc(100% - 40px)
    }

    .layout-block-with-icon-wrap .layout-block-with-icon .block h3 {
        margin-top: 10px;
        font-size: 20px;
        line-height: 26px;
    }

    .layout-block-with-icon-wrap .layout-block-with-icon .block img {
        width: 34px;
        height: 34px;
    }
}

.layout-title-with-text-wrap {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.layout-title-with-text-wrap .layout-title-with-text {
    display: flex;
    max-width: 1360px;
    width: calc(100% - 60px);
    margin: 70px 0 150px;
    padding: 0 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.layout-title-with-text-wrap .layout-title-with-text .title-line {
    position: relative;
    display: block;
    width: 100%
}

.layout-title-with-text-wrap .layout-title-with-text .title-line .under-line {
    position: absolute;
    top: 14px;
    left: 0;
    z-index: 10;
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fc0
}

.layout-title-with-text-wrap .layout-title-with-text .title-line h4 {
    position: relative;
    z-index: 20;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #fff;
    display: block;
    font-size: 12px;
    line-height: 28px;
    color: #000;
    font-weight: 600;
    margin: 0;
    padding: 0 10px 0 0;
    text-align: left;
    text-transform: uppercase
}

.layout-title-with-text-wrap .layout-title-with-text .title-text {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-top: 40px
}

.layout-title-with-text-wrap .layout-title-with-text .title-text h2 {
    max-width: 555px;
    display: block;
    font-size: 36px;
    line-height: 46px;
    color: #000;
    font-weight: 700;
    margin: 0;
    padding: 0;
    text-align: left
}

.layout-title-with-text-wrap .layout-title-with-text .title-text .text {
    max-width: 430px;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #000;
    font-weight: 400;
    text-align: left
}

@media(max-width: 1200px) {
    .layout-title-with-text-wrap .layout-title-with-text {
        display: flex;
        max-width: 1360px;
        width: calc(100% - 40px);
        margin: 100px 0;
        padding: 0 20px
    }

    .layout-title-with-text-wrap .layout-title-with-text .title-text {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: 20px
    }

    .layout-title-with-text-wrap .layout-title-with-text .title-text h2 {
        max-width: 100%;
        font-size: 23px;
        line-height: 29px;
        margin: 0 0 10px
    }

    .layout-title-with-text-wrap .layout-title-with-text .title-text .text {
        max-width: 100%;
        font-size: 16px;
        line-height: 28px
    }
}



#specific-block.layout-block-with-icon-wrap {
    display: block;
    text-align: center;
    padding: 0;
    margin: 70px auto 0;
    max-width: 1360px;
    width: 100%;
}

#specific-block.layout-block-with-icon-wrap .layout-block-with-icon {
    padding: 100px 0;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 20px 60px #2222220D;
    border-radius: 30px;
    margin: auto;
    width: 100%;
    box-sizing: border-box;
}

.layout-block-with-icon-inner {
	display: flex;
	margin: auto;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	width: 100%;
	gap: 20px;
}

#specific-block.layout-block-with-icon-wrap .layout-block-with-icon-inner {
	max-width: 600px;
	align-items: center;
}

#specific-block.layout-block-with-icon-wrap .layout-block-with-icon .block {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    align-items: center;
    padding: 0;
    height: auto;
    width: auto;
}

#specific-block.layout-block-with-icon-wrap .layout-block-with-icon .block:nth-child(2n) img {
	height: 30px;
}

#specific-block.layout-block-with-icon-wrap .layout-block-with-icon .block h3 {
    display: none;
}

#specific-block.layout-block-with-icon-wrap .layout-block-with-icon .block img {
    height: 70px;
}

#specific-block.layout-block-with-icon-wrap .layout-block-with-icon .block:first-child img {
    height: 75px;
}


.layout-title-with-text-logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto
}

@media(max-width: 768px) {
    .layout-title-with-text-logo {
        margin: 100px auto 0
    }

    #specific-block.layout-block-with-icon-wrap {
        margin: 70px 20px 0;
        width: calc(100% - 40px);
    }

	#specific-block.layout-block-with-icon-wrap .layout-block-with-icon {
		padding: 40px 0px;
	}
	
	#specific-block.layout-block-with-icon-wrap .layout-block-with-icon .layout-block-with-icon-inner {
		justify-content: center;
    }

    #specific-block.layout-block-with-icon-wrap .layout-block-with-icon .block:nth-child(2n) {
        margin: 30px 0;
    }

    #specific-block.layout-block-with-icon-wrap .layout-block-with-icon .block:nth-child(2n) img {
        max-height: 30px;
		max-height: 15px;
    }

    #specific-block.layout-block-with-icon-wrap .layout-block-with-icon .block img {
        width: auto;
        max-width: 100%;
        max-height: 38px;
    }
}

.layout-block-with-icon-and-text-wrap {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.layout-block-with-icon-and-text-wrap .layout-block-with-icon-and-text {
    display: flex;
    max-width: 1360px;
    width: calc(100% - 60px);
    padding: 0 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px
}

.layout-block-with-icon-and-text-wrap .layout-block-with-icon-and-text .block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(33.33% - 95px);
    padding: 40px;
    background: #FFFFFD 0% 0% no-repeat padding-box;
    box-shadow: 0px 20px 60px #2222220D;
    border-radius: 20px;
    transition: all .1s ease-in
}

.layout-block-with-icon-and-text-wrap .layout-block-with-icon-and-text .block img {
    width: auto;
    height: 55px;
    margin-bottom: 62px
}

.layout-block-with-icon-and-text-wrap .layout-block-with-icon-and-text .block .text-wrap {
    display: flex;
    flex-direction: column;
    transition: transform .1s ease
}

.layout-block-with-icon-and-text-wrap .layout-block-with-icon-and-text .block .text-wrap h3 {
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: #000;
    font-weight: 700;
    margin: 0 0 20px;
    padding: 0
}

.layout-block-with-icon-and-text-wrap .layout-block-with-icon-and-text .block .text-wrap .text {
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #000;
    font-weight: 400
}

.layout-block-with-icon-and-text-wrap .layout-block-with-icon-and-text .block:hover {
    background: #F0F0F0 0% 0% no-repeat padding-box;
    box-shadow: 0px 10px 60px #2222221A;
}

/* .layout-block-with-icon-and-text-wrap .layout-block-with-icon-and-text .block:hover img {
    filter: brightness(0%)
} */

.layout-block-with-icon-and-text-wrap .layout-block-with-icon-and-text .block:hover .text-wrap {
    transform: translateY(-35px)
}

@media(max-width: 1024px) {
	.layout-hero-wrap {
		width: 94vw;
		background: none, transparent linear-gradient(180deg, #F0F0F0 0%, #FFFFFF 101%) 0% 0% no-repeat padding-box !important;
	}
	
    .layout-block-with-icon-and-text-wrap .layout-block-with-icon-and-text {
        display: flex;
        width: calc(100% - 40px);
        padding: 0 20px;
        flex-wrap: nowrap;
        gap: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 1rem;
        max-width: 100%;
    }

    .layout-block-with-icon-and-text-wrap .layout-block-with-icon-and-text .block {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        min-width: 318px;
        padding: 30px 20px 40px;
    }

    .layout-block-with-icon-and-text-wrap .layout-block-with-icon-and-text .block img {
        width: auto;
        height: 45px;
        margin-bottom: 50px
    }

    .layout-block-with-icon-and-text-wrap .layout-block-with-icon-and-text .block .text-wrap h3 {
        font-size: 18px;
        line-height: 23px
    }

    .layout-block-with-icon-and-text-wrap .layout-block-with-icon-and-text .block:hover .text-wrap {
        transform: translateY(-25px)
    }
}

.layout-block-with-image-wrap {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent linear-gradient(180deg, #F0F0F0 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
}

.layout-block-with-image-wrap .layout-block-with-image {
    max-width: 1360px;
    width: calc(100% - 60px);
    padding: 0 30px;

}

.layout-block-with-image-wrap .layout-block-with-image .block-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.layout-block-with-image-wrap .layout-block-with-image .block-text {
    display: flex;
    flex-direction: column;
    width: calc(40% - 144px);
    padding: 0;
}

.layout-block-with-image-wrap .layout-block-with-image .title-line {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 40px;
}

.layout-block-with-image-wrap .layout-block-with-image .title-line .under-line {
    position: absolute;
    top: 14px;
    left: 0;
    z-index: 10;
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fc0
}

.layout-block-with-image-wrap .layout-block-with-image .title-line h4 {
    position: relative;
    z-index: 20;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #fff;
    display: block;
    font-size: 12px;
    line-height: 28px;
    color: #000;
    font-weight: 600;
    margin: 0;
    padding: 0 10px 0 0;
    text-align: left;
    text-transform: uppercase
}

.layout-block-with-image-wrap .layout-block-with-image .title-line h4 {
    background-color: #f4f4f0
}

.layout-block-with-image-wrap .layout-block-with-image .block-text h3 {
    display: block;
    font-size: 36px;
    line-height: 46px;
    color: #000;
    font-weight: 700;
    margin: 0 0 16px
}

.layout-block-with-image-wrap .layout-block-with-image .block-text h4 {
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #000;
    font-weight: 400;
    margin: 0 0 40px
}

.layout-block-with-image-wrap .layout-block-with-image .block-text .text {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    font-weight: 400;
    margin: 0;
    text-align: left;
    opacity: 0.6;
}

.layout-block-with-image-wrap .layout-block-with-image .block-text .btn-clr-brd {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 50px;
    padding: 19px 60px;
    background: var(--unnamed-color-000000) 0% 0% no-repeat padding-box;
    background: #000000 0% 0% no-repeat padding-box;
    border-radius: 30px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all .1s ease-in
}

.layout-block-with-image-wrap .layout-block-with-image .block-text .btn-clr-brd:hover {
    background-color: #fc0
}

@media(max-width: 768px) {
    .layout-block-with-image-wrap .layout-block-with-image .block-text .btn-clr-brd {
        width: calc(100% - 60px);
        text-align: center;
        padding: 18px 30px;
        max-width: fit-content;
    }

    #know-your-rights.layout-block-with-image-wrap .layout-block-with-image .block-text .text {
        margin-bottom: 0;
    }
}

.layout-block-with-image-wrap .layout-block-with-image .block-image {
    position: relative;
    width: 70%;
    max-width: 900px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 20px 60px #2222220D;
    border-radius: 30px;
}

.layout-block-with-image-wrap .layout-block-with-image .block-image .image {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    opacity: .4;
    mix-blend-mode: luminosity;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover
}

.layout-block-with-image-wrap .layout-block-with-image .block-image .image-content {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    justify-content: space-between;
}

.layout-block-with-image-wrap .layout-block-with-image .block-image .image-content .right-content {
    width: 100%;
    max-width: 430px;
    margin-left: -40px;
}

.layout-block-with-image-wrap .layout-block-with-image .block-image .image-content img {
    width: 100%;
    height: auto
}

.layout-block-with-image-wrap .layout-block-with-image .block-image .image-content h3 {
    display: block;
    font-size: 36px;
    line-height: 46px;
    color: #000;
    font-weight: 700;
    margin: 30px 0 20px
}

.layout-block-with-image-wrap .layout-block-with-image .block-image .image-content .text {
    display: block;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    font-weight: 400;
    margin: 0 0 56px;
    text-align: left
}

.layout-block-with-image-wrap .layout-block-with-image .block-image .image-content .btn-clr {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding: 19px 60px;
    background: var(--unnamed-color-000000) 0% 0% no-repeat padding-box;
    background: #000000 0% 0% no-repeat padding-box;
    border-radius: 31px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all .1s ease-in
}

.layout-block-with-image-wrap .layout-block-with-image .block-image .image-content .btn-clr:hover {
    background-color: #ffc400
}

@media(max-width: 768px) {
    .layout-block-with-image-wrap .layout-block-with-image .block-image .image-content .btn-clr {
        width: calc(100% - 60px);
        text-align: center;
        padding: 18px 30px
    }

    header .header-wrap a.button {
        display: none;
    }

    #know-your-rights.layout-block-with-image-wrap .layout-block-with-image .block-image .image-content {
        padding: 20px;
        width: calc(100% - 40px);
    }

    #know-your-rights.layout-block-with-image-wrap .layout-block-with-image .block-image .image-content .right-content {
        margin-left: 0;
    }
}

@media(max-width: 1200px) {
    .layout-block-with-image-wrap .layout-block-with-image {
        width: calc(100% - 40px);
        padding: 0 20px;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center
    }

    .layout-block-with-image-wrap .layout-block-with-image .block-text {
        width: 100%;
        padding: 0 0 50px 0
    }

    .layout-block-with-image-wrap .layout-block-with-image .block-text h3 {
        font-size: 23px;
        line-height: 29px;
        margin: 20px 0 10px
    }

    .layout-block-with-image-wrap .layout-block-with-image .block-text h4 {
        font-size: 18px;
        line-height: 28px
    }

    .layout-block-with-image-wrap .layout-block-with-image .block-text .text {
        margin: 0 0 30px
    }

    .layout-block-with-image-wrap .layout-block-with-image .block-image {
        width: 100%
    }

    .layout-block-with-image-wrap .layout-block-with-image .block-image .image-content {
        width: calc(100% - 60px);
        height: auto;
        padding: 30px
    }

    .layout-block-with-image-wrap .layout-block-with-image .block-image .image-content h3 {
        margin: 110px 0 20px
    }

    .layout-block-with-image-wrap .layout-block-with-image .block-image .image-content .text {
        margin: 0 0 20px
    }

    #know-your-rights.layout-block-with-image-wrap .layout-block-with-image .block-image .image-content {
        width: 100%;
        flex-direction: column;
    }

    .layout-block-with-image-wrap .layout-block-with-image .block-image .image-content .right-content {
        max-width: 100%;
    }

    .layout-block-with-image-wrap .layout-block-with-image .block-image .image-content .right-content .text {
        margin-bottom: 50px;
    }

    #know-your-rights.layout-block-with-image-wrap .layout-block-with-image {
        margin-bottom: 0 !important;
    }

    #know-your-rights.layout-block-with-image-wrap .layout-block-with-image .block-text {
        padding-bottom: 100px;
    }

    #know-your-rights.layout-block-with-image-wrap .layout-block-with-image .block-image .image-content h3 {
        margin-top: 20px;
    }
}

.wgd-flights-wrap {
    display: flex;
    width: auto;
    margin: 0 0 40px;
    padding: 20px;
    background: #FFFFFD 0% 0% no-repeat padding-box;
    box-shadow: 0px 10px 40px #0002220D;
    border: 1px solid #F8F8F0;
    border-radius: 20px;
    opacity: 1;
}

.wgd-flights-wrap .wdg-form {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center
}

.wgd-flights-wrap .wdg-form .wdg-departure {
    position: relative;
    display: block;
    width: 280px;
    height: 60px
}

.wgd-flights-wrap .wdg-form .wdg-departure input {
    display: block;
    width: 200px;
    height: 60px;
    padding: 0 20px 0 60px;
    border: none;
    border-collapse: collapse;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    background-image: url("assets/images/ico_plane_up.svg");
    background-position: left 20px center;
    background-repeat: no-repeat;
    background-size: auto;
    border: 1px solid #f4f4f0;
    border-radius: 10px 0 0 10px;
}

.wgd-flights-wrap .wdg-form .wdg-departure input::-moz-placeholder::-moz-placeholder {
    color: rgba(34, 34, 34, .8)
}

.wgd-flights-wrap .wdg-form .wdg-departure input::placeholder::-moz-placeholder {
    color: rgba(34, 34, 34, .8)
}

.wgd-flights-wrap .wdg-form .wdg-departure input::-moz-placeholder:-moz-placeholder {
    color: rgba(34, 34, 34, .8)
}

.wgd-flights-wrap .wdg-form .wdg-departure input::placeholder:-moz-placeholder {
    color: rgba(34, 34, 34, .8)
}

.wgd-flights-wrap .wdg-form .wdg-departure input:focus {
    outline: none
}

.wgd-flights-wrap .wdg-form .wdg-arrival {
    display: block;
    width: 280px;
    height: 60px;
}

.wgd-flights-wrap .wdg-form .wdg-arrival input {
    display: block;
    width: 200px;
    height: 60px;
    padding: 0 20px 0 60px;
    border-left: none;
    border-collapse: collapse;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    background-image: url("assets/images/ico_plane_down.svg");
    background-position: left 20px center;
    background-repeat: no-repeat;
    background-size: auto;
    border-top: 1px solid #f4f4f0;
    border-bottom: 1px solid #f4f4f0;
    border-right: 1px solid #f4f4f0;
    border-radius: 0 10px 10px 0;

}

.wgd-flights-wrap .wdg-form .wdg-arrival input::-moz-placeholder::-moz-placeholder {
    color: rgba(34, 34, 34, .8)
}

.wgd-flights-wrap .wdg-form .wdg-arrival input::placeholder::-moz-placeholder {
    color: rgba(34, 34, 34, .8)
}

.wgd-flights-wrap .wdg-form .wdg-arrival input::-moz-placeholder:-moz-placeholder {
    color: rgba(34, 34, 34, .8)
}

.wgd-flights-wrap .wdg-form .wdg-arrival input::placeholder:-moz-placeholder {
    color: rgba(34, 34, 34, .8)
}

.wgd-flights-wrap .wdg-form .wdg-arrival input:focus {
    outline: none
}

.wgd-flights-wrap .wdg-form .wdg-res {
    position: relative;
    z-index: 50;
    width: calc(100% - 40px)
}

.wgd-flights-wrap .wdg-form .wdg-res .airWrap {
    display: flex;
    width: 100%;
    margin: 10px 0 0;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, .25)
}

.wgd-flights-wrap .wdg-form .wdg-res .airWrap .airOne {
    display: flex;
    width: 100%;
    padding: 5px;
    flex-wrap: wrap;
    border-radius: 5px;
    transition: all .1s ease-in;
    cursor: pointer
}

.wgd-flights-wrap .wdg-form .wdg-res .airWrap .airOne .airLeft {
    width: calc(100% - 50px)
}

.wgd-flights-wrap .wdg-form .wdg-res .airWrap .airOne .airLeft .title {
    display: block;
    font-size: 16px;
    line-height: 19px;
    color: #000;
    font-weight: 600;
    margin: 0 0 5px
}

.wgd-flights-wrap .wdg-form .wdg-res .airWrap .airOne .airLeft .location {
    display: block;
    font-size: 14px;
    line-height: 19px;
    color: #000;
    font-weight: 400
}

.wgd-flights-wrap .wdg-form .wdg-res .airWrap .airOne .airright {
    display: flex;
    width: 50px;
    align-items: center;
    justify-content: center;
    background-color: #fc0;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    border-radius: 5px
}

.wgd-flights-wrap .wdg-form .wdg-res .airWrap .airOne:hover {
    background-color: #f4f4f0
}

.wgd-flights-wrap .wdg-form .btn-claim {
    display: flex;
    width: 200px;
    height: 60px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all .1s ease-in;
    background: var(--unnamed-color-000000) 0% 0% no-repeat padding-box;
    background: #000000 0% 0% no-repeat padding-box;
    border-radius: 30px;
    margin-left: 20px;
}

.wgd-flights-wrap .wdg-form .btn-claim:hover {
    background-color: #ffc400
}

@media(max-width: 991px) {
    .wgd-flights-wrap {
        width: calc(100% - 40px);
        margin: 0 auto 15px
    }

    .wgd-flights-wrap .wdg-form {
        width: 100%;
        flex-direction: column
    }

    .wgd-flights-wrap .wdg-form .wdg-departure,
    .wgd-flights-wrap .wdg-form .wdg-arrival {
        width: 100%;
        margin-bottom: 15px
    }

    .wgd-flights-wrap .wdg-form .wdg-departure input,
    .wgd-flights-wrap .wdg-form .wdg-arrival input {
        width: calc(100% - 80px);
        border-radius: 10px
    }

    .wgd-flights-wrap .wdg-form .btn-claim {
        width: 100%;
        border-radius: 10px !important
    }
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-ExtraLight.ttf") format("truetype");
    font-weight: 200
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Light.ttf") format("truetype");
    font-weight: 300
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Regular.ttf") format("truetype");
    font-weight: 400
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Medium.ttf") format("truetype");
    font-weight: 500
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-SemiBold.ttf") format("truetype");
    font-weight: 600
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Bold.ttf") format("truetype");
    font-weight: 700
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-ExtraBold.ttf") format("truetype");
    font-weight: 800
}

@font-face {
    font-family: "Mulish";
    src: url("assets/fonts/mulish/Mulish-Black.ttf") format("truetype");
    font-weight: 900
}

main .page-header-wrap {
    display: flex;
    width: calc(100% - 60px);
    margin: 100px 30px 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent linear-gradient(180deg, #F0F0F0 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    border-radius: 30px;
    box-sizing: border-box;
}

main .page-header-wrap .page-header {
    display: flex;
    max-width: 1360px;
    width: 100%;
    padding: 96px 0 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

main .page-header-wrap .page-header h1 {
    display: block;
    font-size: 50px;
    line-height: 68px;
    color: #000;
    font-weight: 700;
    margin: 0 0 20px
}

main .page-wrap {
    display: flex;
    width: 100%;
    padding: 50px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

main .page-wrap .page-content {
    display: flex;
    max-width: 1360px;
    width: calc(100% - 60px);
    padding: 0 30px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start
}

main .page-wrap .page-content .content {
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #000;
    font-weight: 400;
    margin: 0 0 40px
}

main .page-wrap .page-content .content p {
    margin-bottom: 30px;
}

main .page-wrap .page-content .content a {
    color: #fc0;
    text-decoration: none
}

main .page-wrap .page-content .content a:hover {
    color: #ffc400
}

@media(max-width: 1200px) {
    main .page-header-wrap {
        padding: 120px 0 0
    }

    main .page-header-wrap .page-header h1 {
        font-size: 30px;
        line-height: 40px
    }

    main .page-wrap .page-content .content {
        font-size: 16px;
        line-height: 26px
    }
}

main.sk-claim {
    background-color: #f4f4f0
}

main.sk-claim .sk-header-wrap {
    display: none;
    width: calc(100% - 40px);
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #fff
}

main.sk-claim .sk-header-wrap .sk-header-row {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between
}

main.sk-claim .sk-header-wrap .sk-header-row .logo img {
    width: 130px;
    height: auto
}

main.sk-claim .sk-header-wrap .sk-header-row .lng-wrap {
    position: relative;
    display: flex;
    width: auto;
    margin: 0 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

main.sk-claim .sk-header-wrap .sk-header-row .lng-wrap .lng-current {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 60px;
    height: 60px;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    font-weight: 400;
    text-decoration: none;
    text-align: right;
    text-transform: uppercase;
    background-image: url("assets/images/ico_lng.svg");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 25px auto;
    cursor: pointer
}

main.sk-claim .sk-header-wrap .sk-header-row .lng-wrap .lng-list {
    position: absolute;
    z-index: 20;
    top: 50px;
    display: none;
    width: 60px;
    list-style: none;
    margin: 0;
    padding: 0
}

main.sk-claim .sk-header-wrap .sk-header-row .lng-wrap .lng-list li {
    text-align: right;
    text-transform: uppercase;
    padding: 5px 0
}

main.sk-claim .sk-header-wrap .sk-header-row .lng-wrap .lng-list li a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px
}

main.sk-claim .sk-header-wrap .sk-header-row .lng-wrap .lng-list li a:hover {
    color: #fc0;
    text-decoration: none
}

main.sk-claim .sk-header-wrap .sk-header-row .hamburger {
    display: block;
    width: 35px;
    height: 90px;
    margin-left: 25px;
    background-image: url("assets/images/ico_hamburger.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    cursor: pointer
}

main.sk-claim .sk-compensation-claim-wrap {
    display: flex;
    min-height: 100svh;
    height: auto;
    flex-direction: row;
    align-items: flex-start
}

main.sk-claim .sk-compensation-claim-wrap .sk-left-column-wrap {
    position: fixed;
    display: flex;
    width: 360px;
    height: calc(100svh - 70px);
    padding: 20px 50px 50px 90px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #fff
}

main.sk-claim .sk-compensation-claim-wrap .sk-left-column-wrap .logo img {
    width: 130px;
    height: auto
}

main.sk-claim .sk-compensation-claim-wrap .sk-left-column-wrap .sk-navigation {
    margin: 0 0 auto
}

main.sk-claim .sk-compensation-claim-wrap .sk-left-column-wrap .sk-bullets {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px
}

main.sk-claim .sk-compensation-claim-wrap .sk-left-column-wrap .sk-bullets .bullet {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px
}

main.sk-claim .sk-compensation-claim-wrap .sk-left-column-wrap .sk-bullets .bullet span {
    font-size: 18px;
    line-height: 24px;
    color: #000;
    font-weight: 400
}

main.sk-claim .sk-compensation-claim-wrap .sk-right-column-wrap {
    display: flex;
    max-width: 1024px;
    width: calc(100% - 50px);
    margin: 30px 50px 50px 560px;
    flex-direction: column;
    align-items: flex-start
}

main.sk-claim .sk-compensation-claim-wrap .sk-right-column-wrap .lng-wrap {
    position: relative;
    display: flex;
    width: auto;
    margin: 0 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

main.sk-claim .sk-compensation-claim-wrap .sk-right-column-wrap .lng-wrap .lng-current {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 60px;
    height: 60px;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    font-weight: 400;
    text-decoration: none;
    text-align: right;
    text-transform: uppercase;
    background-image: url("assets/images/ico_lng.svg");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 25px auto;
    cursor: pointer
}

main.sk-claim .sk-compensation-claim-wrap .sk-right-column-wrap .lng-wrap .lng-list {
    position: absolute;
    z-index: 20;
    top: 50px;
    display: none;
    width: 60px;
    list-style: none;
    margin: 0;
    padding: 0
}

main.sk-claim .sk-compensation-claim-wrap .sk-right-column-wrap .lng-wrap .lng-list li {
    text-align: right;
    text-transform: uppercase;
    padding: 5px 0
}

main.sk-claim .sk-compensation-claim-wrap .sk-right-column-wrap .lng-wrap .lng-list li a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px
}

main.sk-claim .sk-compensation-claim-wrap .sk-right-column-wrap .lng-wrap .lng-list li a:hover {
    color: #fc0;
    text-decoration: none
}

@media(max-width: 1250px) {
    main.sk-claim .sk-header-wrap {
        display: flex;
        padding: 0 20px
    }

    main.sk-claim .sk-compensation-claim-wrap {
        display: flex;
        min-height: auto;
        height: auto;
        flex-direction: column;
        align-items: flex-start
    }

    main.sk-claim .sk-compensation-claim-wrap .sk-left-column-wrap {
        display: none
    }

    main.sk-claim .sk-compensation-claim-wrap .sk-right-column-wrap {
        display: flex;
        max-width: 100%;
        width: calc(100% - 40px);
        margin: 170px 20px 50px;
        flex-direction: column;
        align-items: flex-start
    }

    main.sk-claim .sk-compensation-claim-wrap .sk-right-column-wrap .lng-wrap {
        display: none
    }
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: #000;
    background-color: #fff;
    width: 100%
}

html {
    scroll-behavior: smooth
}

p:last-of-type {
    margin: 0 !important
}

/*# sourceMappingURL=style.min.css.map */

.acf-group-block {
    display: flex;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 20px 60px #2222220D;
    border-radius: 30px;
    justify-content: space-between;
    padding: 50px 70px;
    margin-top: 126px;
}

.acf-field-block {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    max-width: 274px;
    min-width: 224px;
    position: relative;
}

.acf-field-block strong {
    display: block;
    font-weight: normal;
    font-size: 16px;
    margin-bottom: 40px;
}

.acf-field-block:nth-child(2n) {
    padding: 0 138px;
}

.acf-field-block:nth-child(2n):before {
    content: "";
    width: 1px;
    height: 100%;
    display: block;
    background: #676776;
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 0;
}

.acf-field-block:nth-child(2n):after {
    content: "";
    width: 1px;
    height: 100%;
    display: block;
    background: #676776;
    opacity: 0.2;
    position: absolute;
    top: 0;
    right: 0;
}

.navigation-menu-wrap .menu-nav li.button {
    display: none;
}

@media screen and (max-width: 768px) {
    main #post-483 .page-wrap .page-content {
        box-sizing: border-box;
        padding: 0;
    }

    main #post-483 .page-wrap .page-content .content,
    main #post-28 .page-wrap .page-content .content {
        width: 100%;
        box-sizing: border-box;
    }

    main #post-483 .page-header-wrap,
    main #post-28 .page-header-wrap {
        padding-top: 40px;
        margin-bottom: 0;
    }

    main #post-483 .page-header-wrap .page-header,
    main #post-28 .page-header-wrap .page-header {
        padding-top: 0;
    }

    main #post-483 .page-wrap .page-content .content .acf-group-block,
    main #post-28 .page-wrap .page-content .content .acf-group-block {
        padding: 50px 44px;
        flex-direction: column;
        margin-top: 50px;
    }

    main #post-483 .page-header-wrap .page-header h1,
    main #post-28 .page-header-wrap .page-header h1 {
        margin-bottom: 0;
    }

    .acf-field-block:nth-child(2n) {
        padding: 30px 0;
        margin: 30px 0;
    }

    .acf-field-block:nth-child(2n):after {
        width: 100%;
        height: 1px;
        bottom: 0;
        top: inherit;
    }

    .acf-field-block:nth-child(2n):before {
        width: 100%;
        height: 1px;
        top: 0;
    }

    .acf-field-block strong {
        margin-bottom: 30px;
    }
}