@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body * {
    font-family: "Montserrat", serif;
}

html {
    scroll-behavior: smooth;
}

/* .page {
    background: url(../img/page-bg.webp);
} */

img {
    max-width: 100%;
}

.container {
    max-width: 1300px;
    width: calc(100% - 80px);
    margin: 0 auto;
}

.header {
    position: relative;
    z-index: 4;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 50px 0;
}

.language__wrap {
    flex: 1;
}

.header__btnBlock {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.language {}

.language__li {}

.language__current {}

.language__sub {}

.languageSub__li {}

.languageSub__link {}

.languageSub__link-span {}

.logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo__link {
    display: flex;
}

.logo__img {}

.header__btnWrap {
    max-width: 220px;
    width: 100%;
}

.header__btn {
    width: 120%;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff5e6;
    border-radius: 30px;
    position: relative;
    text-decoration: none;
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    transition: 500ms all;
    display: flex;
    gap: 7px;
}

.headerBtn__square {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ff0045;
    left: -6px;
    transition: 500ms all;
}

.headerBtn__arrow {
    width: 9px;
    height: 2px;
    background-color: #000000;
    position: relative;
    transition: 500ms all;
}

.headerBtn__arrow:after {
    content: "";
    clear: both;
    position: absolute;
    top: -3px;
    right: -2px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    rotate: -45deg;
    transition: 500ms all;
}

.header__btn:hover {
    background-color: #ff0045;
    color: #fff5e6;
}

.header__btn:hover .headerBtn__square {
    background-color: #fff5e6;
}

.header__btn:hover .headerBtn__arrow {
    background-color: #fff5e6;
    transform: translateX(5px);

}

.header__btn:hover .headerBtn__arrow:after {
    border-color: #fff5e6;
}

.language {}

.language__li {
    position: relative;
    padding: 10px 0;
}

.language__current {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background-color: #ffecc9;
    color: #000000;
    font-size: 16px;
    font-weight: bold;
}

.language__current-img {
    width: 80px;
    height: 80px;
    position: relative;
}

@keyframes wave {
    0% {
        top: 5%
    }

    100% {
        top: -5%
    }
}

.language__sub {
    position: absolute;
    top: 100%;
    left: 20px;
    background: #ffecc9;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    min-width: 50px;
    padding: 25px 10px;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    list-style: none;
    margin: 0;
    box-shadow: 0 13px 48px 0 rgb(0 0 0 / 15%)
}

.language__li:hover .language__sub {
    opacity: 1;
    visibility: visible;
    z-index: 9;
    left: -15px;
}

.languageSub__li {
    margin: 0;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
    padding-left: 10px
}

.languageSub__li:last-of-type {
    margin-bottom: 0
}

.languageSub__link {
    border: none;
    background: no-repeat;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: bold;
}

.languageSub__link-img {
    width: 20px;
    height: 20px;
    margin-right: 20px
}

.languageSub__link-span {
    font-size: 14px;
    text-transform: capitalize;
    color: #484e5c;
    font-weight: 500;
    transition: .5s all;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}

.languageSub__link:hover .languageSub__link-span {
    color: #ff0045;
}

.language__li:hover .languageSub__li {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.language__li:hover .languageSub__li:nth-of-type(1n) {
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}

.language__li:hover .languageSub__li:nth-of-type(2n) {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.language__li:hover .languageSub__li:nth-of-type(3n) {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.language__li:hover .languageSub__li:nth-of-type(4n) {
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}

.language__li:hover .languageSub__li:nth-of-type(5n) {
    -webkit-transition-delay: .5s;
    transition-delay: .5s;
}

.menu {}

.nav {
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    background-color: rgb(37 45 49 / 80%);
    border-radius: 30px;
    box-shadow: 1px 1px 35px rgb(255 255 255 / 40%);
}

.navMenu {
    display: flex;
    padding: 0 40px;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

.navMenu__li {
    position: relative;
    padding: 9px 0;
}

.active {}

.navMenu__link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: 500ms all;
    position: relative;
}

.navMenu__li:hover .navMenu__link {
    color: #fad700;
}

.navMenu__li.active .navMenu__link {
    color: #fad700;
    font-weight: bold;
}

.navMenu__link:after {
    content: "";
    clear: both;
    position: absolute;
    width: 13px;
    height: 13px;
    background-color: #ff0045;
    top: 3px;
    left: -17px;
    transition: 500ms all;
    opacity: 0;
}

.navMenu__li.active .navMenu__link::after {
    opacity: 1;
}

.navMenu__sub {
    position: absolute;
    top: 110%;
    left: 20px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    min-width: 140px;
    padding: 10px 10px;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    list-style: none;
    margin: 0;
    background-color: rgb(37 45 49 / 80%);
    border-radius: 7px;
    box-shadow: 1px 1px 35px rgb(255 255 255 / 40%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.navMenu__li:hover .navMenu__sub {
    opacity: 1;
    visibility: visible;
    z-index: 9;
    left: -15px;
}

.navMenuSub__li {}

.navMenuSub__link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: 500ms all;
}

.navMenuSub__link:hover {
    color: #fad700;
}

.page {
    background: url(../img/mog-bg.jpg), url(../img/footer-bg.webp);
    background-repeat: no-repeat no-repeat;
    background-position: center top -70px, center bottom -140px;
    background-size: contain, 100%;
    background-color: #050505;
}

.mogHeader {}

.mogHeader__content {
    display: flex;
    flex-direction: column;
}

.mogHeader__logoWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -197px;
}

.mogHeader__logo {}

.mogHeader__slugs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -400px;
    gap: 100px;
}

.mogHeader__slug span {
    color: rgb(0 0 0 / 80%);
    font-size: 65px;
    font-weight: 900;
    text-shadow: 0px 0px 9px #fff;
    transition: 500ms all;
    opacity: 0.3;
    animation: fadeInOut 9s ease-in-out infinite;
}

.mogHeader__slug:nth-child(1) span {
    animation-delay: 0s;
}

.mogHeader__slug:nth-child(2) span {
    animation-delay: 3s;
}

.mogHeader__slug:nth-child(3) span {
    animation-delay: 6s;
}

@keyframes fadeInOut {
    0% {
        opacity: 0.3;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.3;
    }
}

.informerSection {}

.informer {
    max-width: 1022px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 30px 30px 0px 80px;
    position: relative;
    align-items: center;
}

.informer:after {
    content: "";
    clear: both;
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    height: calc(100% - 130px);
    background-color: rgb(11 9 5 / 80%);
    border-radius: 19px;
    border: 1px solid #fce8c4;
}

.informer__textWrap {
    position: relative;
    z-index: 1;
}

.informer__text {
    color: #ffffff;
    font-size: 32px;
    font-weight: 500;
    line-height: 140%;
}

.informer__text span {
    color: #fad700;
}

.informer__text strong {
    text-transform: uppercase;
    font-weight: 900;
}

.informer__manWrap {
    position: relative;
    z-index: 1;
    transform: translateY(-20px);
}

.informer__man {}

.informer__imgWrap {
    display: flex;
    border: 1px solid #fce8c4;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.informer__img {}

.square {
    width: 12px;
    height: 12px;
    background-color: #ff0044;
    box-shadow: 0px 0px 14px #fff;
}

.informer .square {
    position: absolute;
    top: 150px;
    left: -4px;
    z-index: 1;
}

.informer__btnWrap {
    max-width: 420px;
    width: 100%;
    margin: -73px auto 0;
    position: relative;
    z-index: 1;
}

.btn {
    width: 100%;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff5e6;
    border-radius: 30px;
    position: relative;
    text-decoration: none;
    color: #000000;
    font-size: 24px;
    font-weight: 500;
    transition: 500ms all;
    display: flex;
    gap: 7px;
}

.btn__square {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ff0045;
    left: -6px;
    transition: 500ms all;
}

.btn__arrow {
    width: 9px;
    height: 2px;
    background-color: #000000;
    position: relative;
    transition: 500ms all;
}

.btn__arrow:after {
    content: "";
    clear: both;
    position: absolute;
    top: -3px;
    right: -2px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    rotate: -45deg;
    transition: 500ms all;
}

.btn:hover {
    background-color: #ff0045;
    color: #fff5e6;
}

.btn:hover .btn__square {
    background-color: #fff5e6;
}

.btn:hover .btn__arrow {
    background-color: #fff5e6;
    transform: translateX(5px);
}

.btn:hover .btn__arrow:after {
    border-color: #fff5e6;
}

.footer {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    padding: 140px 0 0px;
}

.footer__content {
    display: flex;
    gap: 100px;
}

.footer__info {
    flex: 1.2;
}

.footer__logoWrap {}

.footer__logo {}

.footer__textWrap {
    margin-top: 30px;
}

.footer__text {
    color: #ffffff;
    font-size: 14px;
    line-height: 170%;
    text-indent: 20px;
}

.footer__menu {
    flex: 3;
    display: flex;
    gap: 20px;
}

.footerMenu__col {
    flex: 1;
}

.footerMenu__title {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
}

.footerMenu__ulWrap {
    margin-top: 40px;
}

.footerMenu__ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footerMenu__li {}

.footerMenu__link {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    transition: 500ms all;
}

.footerMenu__link:hover {
    color: #fcf601;
}

.copyright {
    padding: 50px 0 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright__text {
    color: rgb(255 255 255 / 50%);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
}

.buyLandSection {
    margin-top: 50px;
}

.buyLand {
    max-width: 1022px;
    width: 100%;
    margin: 0 auto;
}

.buyLand__top {
    display: flex;
    position: relative;
    justify-content: flex-end;
}

.buyLandTop__iconWrap {
    position: absolute;
    left: -90px;
    top: -160px;
}

.buyLandTop__icon {}

.buyLandTop__titleWrap {
    margin-right: -60px;
    width: 800px;
}

.mogBlocks .mogBlock-reverse .mogBlock__btnWrap a
{
    font-size: 15px;
}

.buyLandTop__title {
    color: #ffecc9;
    font-size: 60px;
    font-weight: 900;
    line-height: 130%;
}

.buyLand__center {
    margin-top: 55px;
    position: relative;
    z-index: 1;
}

.buyLandCenter__titleWrap {
    margin-left: 45px;
    position: relative;
    z-index: 2;
    width: 700px;
}

.buyLandCenter__title {
    color: #ffecc9;
    font-size: 60px;
    font-weight: 900;
    line-height: 130%;
    text-indent: 40px;
}

.buyLandCenter__iconWrap {
    position: absolute;
    top: -70px;
    right: 0px;
}

.buyLandCenter__icon {}

.buyLand__bottom {
    padding-top: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.buyLand__btnWrap {
    max-width: 415px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.buyLand__btn {
    height: 50px;
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    background-color: #ff3700;
    border-radius: 33px;
    color: #fad700;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 0px 1px 1px rgba(5, 5, 5, 0.7);
    transition: 500ms all;
    gap: 30px;
}

.buyLand__bottom-bg {
    position: absolute;
    left: 50%;
    top: -100px;
    transform: translateX(-50%);
}

.buyLand__btn:hover {}

.buyLand__btn-arrow {
    width: 11px;
    height: 3px;
    position: relative;
    background-color: #fad700;
    box-shadow: 0px 1px 1px rgba(5, 5, 5, 0.7);
    transition: 500ms all;
}

.buyLandBottom__content {
    display: flex;
    justify-content: center;
    gap: 200px;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

.buyLandBottom__text {
    color: #ffecc9;
    font-size: 26px;
    font-weight: bold;
    line-height: 140%;
}

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

.buyLand__btn-arrowRight:after {
    content: "";
    clear: both;
    position: absolute;
    top: -3px;
    right: -2px;
    width: 6px;
    height: 6px;
    border-top: 3px solid #fad700;
    border-right: 3px solid #fad700;
    transform: rotate(45deg);
    box-shadow: 1px 0px 1px rgba(5, 5, 5, 0.7);
    transition: 500ms all;
}

.buyLand__btn-arrowLeft:after {
    content: "";
    clear: both;
    position: absolute;
    top: -3px;
    left: -2px;
    width: 6px;
    height: 6px;
    border-top: 3px solid #fad700;
    border-left: 3px solid #fad700;
    transform: rotate(-45deg);
    box-shadow: -1px 0px 1px rgba(5, 5, 5, 0.7);
    transition: 500ms all;
}

.buyLand__btn:hover {
    background-color: #121f18;
    box-shadow: 0px 0px 15px #fad700;
}

.mogBlocksSection {
    margin-top: 50px;
}

.mogBlocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1022px;
    width: 100%;
    margin: 0 auto;
}

.mogBlock {
    background-color: rgb(15 10 0 / 75%);
    border-radius: 19px;
    border: 1px solid #ffdab1;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
}

.mogBlock__main {
    display: flex;
    gap: 55px;
    justify-content: space-between;
    align-items: center;
}

.mogBlock__left {}

.mogBlock__content {
    max-width: 530px;
    width: 100%;
}

.mogBlock__titleWrap {}

.mogBlock__title {
    color: #fad700;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0px -1px 3px #fff;
}

.mogBlock__textWrap {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mogBlock__text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    text-shadow: 0px 0px 5px #fff;
}

.mogBlock__text b {
    font-weight: bold;
}

.mogBlock__right {}

.mogBlock__imgWrap {
    border: 1px solid #ffdab1;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
}

.mogBlock__img {}

.mogBlock__btnWrap {
    max-width: 420px;
    width: 100%;
    margin: 20px auto -60px;
}

.mogBlock__btn {
    font-size: 19px;
    background-color: #ffd7ae;
    text-align: center;
}

.mogBlock__btn:hover {
    background-color: #fff5e6;
    color: #000000;
}

.mogBlock__btn:hover .btn__arrow {
    background-color: #000000;
}

.mogBlock__btn:hover .btn__arrow:after {
    border-color: #000000;
}

.mogBlock__btnRed {
    height: 46px;
}

.mogBlock .square {
    position: absolute;
    left: -6px;
}

.mogBlock-reverse .square {
    left: initial;
    right: -6px;
}

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

i {
    font-style: italic;
}

.yourBusinessSection {
    padding: 120px 0 60px;
    background: url(../img/antallagio-bg.webp), url(../img/antallagi-logo.webp);
    background-repeat: no-repeat no-repeat;
    background-position: center top -280px, center bottom 80px;
}

.yourBusiness {
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
}

.yourBusiness__subTitleWrap {}

.yourBusiness__subTitle {
    color: #ffecc9;
    font-size: 26px;
    font-weight: 900;
    line-height: 140%;
    text-align: center;
}

.yourBusiness__titleWrap {
    margin-top: 35px;
}

.yourBusiness__title {
    color: #ffecc9;
    font-size: 60px;
    font-weight: 900;
    line-height: 110%;
    text-align: center;
}

.yourBusiness__textWrap {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.yourBusiness__text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
}

.text-center {}

.yourBusiness__subTitle span {

    color: #fad700;
}

.yourBusiness__text span {
    color: #fad700;
}

.roadmapSection {
    /* background: url(../img/roadmap-bg.webp); */
    background: url(../img/roadmap-bg-new.webp);
    background-repeat: no-repeat;
    background-position: center top -320px;
    background-size: cover;
    /* padding-bottom: 480px; */
}

.roadmap {}

.roadmap__header {
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
}

.roadmapHeader__titleWrap {
    text-align: center;
}

.roadmapHeader__title {
    color: #ffecc9;
    font-size: 60px;
    font-weight: 900;
    line-height: 110%;
}

.roadmapHeader__content {
    display: flex;
    margin-top: 20px;
    gap: 20px;
}

.roadmapHeader__imgWrap {}

.roadmapHeader__img {}

.roadmapHeader__info {
    margin-top: 10px;
}

.roadmapHeader__textWrap {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.roadmapHeader__text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    text-shadow: 0px 0px 5px #fff;
}

.roadmapHeader__text span {
    color: #fad700;
}

.roadmapHeader__btnWrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.roadmapHeader__btn {
    max-width: 420px;
    font-size: 20px;
    background-color: #ffd7ae;
}

.roadmapHeader__btn:hover {
    background-color: #fff5e6;
    color: #000000;
}

.roadmapHeader__btn:hover .btn__arrow {
    background-color: #000000;
}

.roadmapHeader__btn:hover .btn__arrow:after {
    border-color: #000000;
}

.roadmapHeader__btn:hover .btn__square {
    background-color: #ff0045;
}

.roadmapHeader__btn-icon {
    margin-right: 10px;
}

.roadmap__main {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

.roadmap__main2 {
    margin-top: 70px;
}

.roadmap__row {
    display: flex;
    justify-content: flex-end;
    min-height: 82px;
}

.roadmap__content {
    flex: 0.54;
    display: flex;
    position: relative;
    gap: 25px;
}

.roadmap__percent {
    display: flex;
    align-items: center;
    gap: 10px;
}

.roadmapPercent__cyrcle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #050505;
    font-size: 16px;
    font-weight: bold;
}

.roadmapPercent__label {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0px 0px 5px #fff;
}

.roadmap__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.roadmap__info-logo {
    position: absolute;
    bottom: -40px;
    right: 0;
}

.roadmapInfo__titleWrap {
    position: relative;
    z-index: 1;
}

.roadmapInfo__title {
    color: #fad700;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0px 0px 3px #fff;
    line-height: 140%;
}

.progressBar {
    height: 12px;
    border: 1px solid #fff;
    border-radius: 30px;
    background-color: #050505;
    max-width: 390px;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 1px;
    box-sizing: border-box;
}

.progressBar__line {
    background-image: -moz-linear-gradient(0deg, rgb(235, 200, 70) 0%, rgb(85, 235, 70) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(235, 200, 70) 0%, rgb(85, 235, 70) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(235, 200, 70) 0%, rgb(85, 235, 70) 100%);
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.roadmap__row-left {
    justify-content: flex-start;
}

.roadmap__row-left .roadmap__info {
    justify-content: flex-end;
    align-items: flex-end;
}

.roadmap__row-left .roadmap__info-logo {
    left: 0;
    right: initial;
}

.mgs-logo {
    bottom: -80px;
}

.mgw-logo {
    bottom: -40px;
}

.mgs-logo {
    bottom: -80px;
}

.roadmap__line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -35px;
}

.roadmap__informer {
    max-width: 645px;
    width: 100%;
    margin: 100px auto 0;
    border: 1px solid #ffdab1;
    border-radius: 19px;
    padding: 35px;
    box-sizing: border-box;
    position: relative;
    background-color: rgb(0 0 0 / 40%);
}

.roadmapInformer__titleWrap {}

.roadmapInformer__title {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    line-height: 140%;
    text-shadow: 0px 0px 5px #fff;
}

.roadmapInformer__subTitleWrap {}

.roadmapInformer__subTitle {
    color: #fad700;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 140%;
}

.roadmapInformer__btnWrap {
    max-width: 416px;
    width: 100%;
    margin: 20px auto -60px;
}

.roadmapInformer__btn {}

.roadmap__informer .square {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.roadmapInformer__squareLeft {
    left: -6px;
}

.roadmapInformer__squareRight {
    right: -6px;
}

.subscribeSection {
    margin-top: -340px;
}

.subscribe {
    border: 1px solid #ffdab1;
    border-radius: 19px;
    padding: 50px;
    box-sizing: border-box;
    display: flex;
    gap: 50px;
    max-width: 1060px;
    width: 100%;
    margin: 0 auto;
    background: url(../img/subscribe-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.subscribe__left {
    max-width: 360px;
    width: 100%;
}

.subscribe__titleWrap {}

.subscribe__title {
    color: #fad700;
    font-size: 32px;
    font-weight: bold;
    line-height: 130%;
    text-transform: uppercase;
    text-shadow: 0px 0px 3px #fff;
}

.subscribe__textWrap {
    margin-top: 40px;
}

.subscribe__text {
    color: #ffffff;
    font-size: 18px;
    font-style: italic;
    text-shadow: 0px 0px 5px #fff;
    line-height: 140%;
}

.subscribe__right {
    flex: 1;
}

.subscribe__subTitleWrap {}

.subscribe__subTitle {
    color: #fad700;
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
    text-shadow: 0px 0px 3px #fff;
}

.subscribe__form {
    margin: 30px 0 0 100px;
}

.subscribeForm__inputWrap {}

.subscribeForm__input {
    border: none;
    background: none;
    font-size: 18px;
    padding: 0 15px;
    height: 40px;
    border-bottom: 1px dashed #fff;
    font-weight: 500;
    font-style: italic;
    color: #fff;
    filter: drop-shadow(0px 0px 8px #fff);
    width: 100%;
    box-sizing: border-box;
}

.subscribeForm__infoTextWrap {
    margin-top: 45px;
}

.subscribeForm__infoText {
    color: #ffffff;
    font-size: 18px;
    text-shadow: 0px 0px 5px #fff;
    line-height: 140%;
}

.subscribeForm__btnWrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: -73px;
    margin-top: 36px;
}

.subscribeForm__btn {
    max-width: 420px;
    width: 100%;
    border: none;
    cursor: pointer;
    background-color: #fdec00;
    font-weight: bold;
}

.btn__square {}

.btn__arrow {}

button {
    cursor: pointer;
}

button:focus,
input:focus {
    outline: none;
}

.subscribeForm__btn:hover {
    background-color: #fff;
    box-shadow: 0px 0px 15px #fad700;
    color: #000000;
}


.subscribeForm__btn:hover .btn__arrow {
    background-color: #000000;
}

.subscribeForm__btn:hover .btn__arrow:after {
    border-color: #000000;
}

.subscribeForm__btn:hover .btn__square {
    background-color: #ff0045;
}

.ourPartnersSection {
    margin-top: 100px;
    background: url(../img/hands.webp);
    background-repeat: no-repeat;
    background-position: center top -70px;
}

.ourPartners__titleWrap {
    text-align: center;
}

.ourPartners__title {
    color: #ffecc9;
    font-size: 60px;
    font-weight: 900;
}

.ourPartners__content {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 70px;
    max-width: 900px;
    width: 100%;
    margin: 50px auto 0;
}

.ourPartners__logo {}

.ourCommunitySection {
    margin-top: 50px;
}

.ourCommunity {
    display: flex;
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
}

.ourCommunity__left {}

.ourCommunity__titleWrap {}

.ourCommunity__title {
    color: #ffecc9;
    font-size: 60px;
    font-weight: 900;
}

.ourCommunity__textWrap {
    margin-top: 20px;
}

.ourCommunity__text {
    color: #fad700;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
}

.ourCommunity__right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.socials {
    display: flex;
    gap: 60px;
}

.social {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}

.social__iconWrap {
    display: flex;
}

.social__icon {}

.social__label {
    color: #fff0eb;
    font-size: 16px;
}

.burgerMenu {
    display: none;
}

.header__content {
    padding: 30px 0;
}


.adaptiveLang__ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.adaptiveLang__li {
    position: relative;
}

.adaptiveLang__link {
    color: #fff !important;
    font-size: 16px;
}

.adaptiveLang__link.active {
    font-weight: bold;
    color: #ffe100 !important;
}

.adaptiveLang__li:not(:last-of-type):after {
    content: "";
    clear: both;
    position: absolute;
    top: 0;
    right: -10px;
    height: 100%;
    width: 1px;
    background-color: #fff;
}

.adaptiveHeader {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 30px;
}

.adaptiveLogo {
    padding: 15px 0;
}

.adaptiveLogo__link {
    display: flex;
}

.adaptiveLogo__img {
    max-width: 190px;
}

.mm-navbar, .mm-panel {
    background-color: #1a1a1a!important;
}

.mm-menu a {
    color: #fff!important;
}

.mm-listitem:after {
    border-color: #fff!important;
}

.mm-btn--next:after, .mm-btn--prev:before {
    border-color: #fff!important;
}

.mm-navbar {
    border-color: #fff!important;
}

.mogHeader__slugs2 .mogHeader__slug span {
    font-size: 45px;
}


.antallagiioSection {
    margin-top: -300px;
    margin-bottom: -500px;
}

.antallagi__content {
    background-color: #eef4f4;
    padding: 100px 50px;
    border-radius: 20px;
} 

.antallagi__logoWrap {
    text-align: center;
    margin-bottom: 135px;
    margin-top: 25px;
}

.antallagi__textCenter {
    font-size: 24px;
    text-align: center;
    line-height: 38px;
    margin-bottom: 40px;
    z-index: 1;
    position: relative;
    color: #5e6464;
}

.antallagi__text {
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 40px;
    z-index: 1;
    position: relative;
    text-indent: 43px;
    color: #5e6464;
}

.antallagi__textCenter strong {
    color: #94c31e;
    font-weight: bold;
    text-transform: uppercase;
}

.antallagi__text bold {
    font-weight: bold;
} 

.antallagi__textCenter bold {
    font-weight: bold;
} 

.antallagi_logo {
    scale: 120%;
}

.antallagi__footerText strong  {
    color: #94c31e;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 60px;
}

.antallagi__footerText {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.background_astro_man {
    position: relative;
    z-index: -1;
    left: 44.5%;
    transform: translateY(-75px);
}

.background__logoWrap {
    position: relative;
    z-index: 0;
    transform: translateY(-661px);
    left: 30px;
}

.astronautMan__imageWrap
{
    max-height: 0px;
}

.backgroundsSeparator__wrap
{
    background: linear-gradient(0deg, rgba(2,0,36,0) 0%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 80%, rgba(0,212,255,0) 100%);
    min-height: 300px;
    transform: translateY(-210px);
    z-index: -1;
    position: relative;
}

.backgroundSeparator__content
{
    height: 0px;
}

@media(max-width: 1500px) {
    .page {
        overflow: hidden;
    }

    .mogHeader__slugs2 .mogHeader__slug span {
        font-size: 25px;
    }

    .mogHeader__slugs2 {
        margin-top: -310px;
    }

    .antallagi__text {
        font-size: 20px;
    }

    .antallagi__textCenter {
        font-size: 20px;
    }
}

@media(max-width: 1200px) {
    .mogHeader__slug span {
        font-size: 50px;
    }

    .btn {
        font-size: 22px;
    }

    .informer__text {
        font-size: 26px;
    }

    .informer {
        padding: 30px 30px 0px 30px;
        box-sizing: border-box;
    }

    .buyLandTop__title {
        font-size: 40px;
    }

    .buyLandCenter__title {
        font-size: 40px;
    }

    .buyLandCenter__iconWrap {
        top: -40px;
    }

    .buyLandBottom__text {
        font-size: 24px;
    }

    .mogBlock__title {
        font-size: 26px;
    }

    .mogBlock__text {
        font-size: 16px;
    }

    .mogBlock__textWrap {
        margin-top: 30px;
    }

    .mogBlock__btn {
        font-size: 17px;
    }

    .yourBusiness__text {
        font-size: 16px;
    }

    .yourBusiness__title {
        font-size: 50px;
    }

    .yourBusinessSection {
        background-size: auto, 70%;
    }

    .roadmapHeader__title {
        font-size: 50px;
    }

    .roadmapHeader__text {
        font-size: 16px;
    }

    .roadmapHeader__btn {
        font-size: 18px;
    }

    .roadmapInformer__btn {
        font-size: 20px;
    }

    .subscribe__title {
        font-size: 28px;
    }

    .subscribe__text {
        font-size: 16px;
    }

    .subscribe__subTitle {
        font-size: 20px;
    }

    .subscribe__form {
        margin: 30px 0 0 30px;
    }

    .subscribeForm__infoText {
        font-size: 16px;
    }

    .ourPartners__title {
        font-size: 50px;
    }

    .ourCommunity__title {
        font-size: 50px;
    }

    .ourCommunity__text {
        font-size: 16px;
    }

    .socials {
        gap: 40px;
    }

    .buyLandCenter__icon {
        opacity: 0.3;
    }

    .buyLandTop__titleWrap {
        margin-right: 0px;
    }

    .buyLandTop__titleWrap {
        display: flex;
        justify-content: center;
    }

    .buyLandTop__icon {
        opacity: 0.3;
    }
    
    .buyLand__bottom-bg {
        opacity: 0.3;
    }

    .buyLandCenter__title br {
        display: none;
    }

    .mogHeader__slugs2 {
        margin-top: -240px;
    }

    .mogHeader__logoWrap2 {
        margin-top: -130px;
    }

    .antallagi_logo {
        scale: initial;
    }

    .antallagi__logoWrap {
        margin-bottom: 70px;
        margin-top: 0px;
    }

    .antallagiioSection2 {
        margin-top: -190px;
    }
}

@media(max-width: 1024px) {
    .menu {
        display: none;
    }

    .antallagiioSection {
        margin-top: -130px!important;
    }

    .language__wrap {
        display: none;
    }

    .header__btnBlock {
        display: none;
    }

    .burgerMenu {
        display: flex;
        flex: 1;
        justify-content: flex-end;
    }

    .burgerMenu__button {
        width: 50px;
        position: relative;
        border: none;
        padding: 0;
        background: transparent;
    }

    .burgerMenu__button:before,
    .burgerMenu__button:after,
    .burgerMenu__button div {
        background: #fff;
        content: "";
        display: block;
        height: 6px;
        border-radius: 3px;
        margin: 7px 0;
        transition: 0.5s;
    }

    .mm-wrapper--opened .burgerMenu__button:before {
        transform: translateY(10px) rotate(135deg);
    }

    .mm-wrapper--opened .burgerMenu__button:after {
        transform: translateY(-12px) rotate(-135deg);
    }

    .mm-wrapper--opened .burgerMenu__button div {
        transform: scale(0);
    }

    .logo__img {
        max-width: 190px;
    }

    .logo {
        justify-content: flex-start;
    }

    .header__content {
        padding: 30px 0;
        align-items: center;
    }

    .footer__content {
        flex-direction: column;
        gap: 40px;
    }

    .footer__textWrap {
        margin-top: 20px;
    }

    .copyright {
        margin-top: 40px;
        padding: 40px 0;
        border-top: 1px solid #a1a1a1;
    }

    .container {
        width: calc(100% - 40px);
    }

    #mm-1>.mm-navbar {
        display: none;
    }

    .footer {
        margin-top: -100px;
    }

    .mogHeader__logo {
        max-width: 760px;
    }

    .mogHeader__logoWrap {
        margin-top: -110px;
    }

    .mogHeader__slugs {
        gap: 50px;
        margin-top: -220px;
        margin-bottom: 30px;
    }

    .mogHeader__slug span {
        font-size: 40px;
    }

    .informer__manWrap {
        display: none;
    }

    .informer:after {
        display: none;
    }

    .informer {
        background-color: rgb(11 9 5 / 80%);
        border-radius: 19px;
        border: 1px solid #fce8c4;
        padding: 30px;
    }

    .informer__btnWrap {
        margin: -20px auto 0;
    }

    .buyLandTop__title {
        font-size: 30px;
    }

    .buyLandTop__titleWrap {
        margin: 0;
    }

    .buyLandTop__iconWrap {
        position: initial;
        left: initial;
        top: initial;
    }

    .buyLand__top {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: -90px;
    }

    .buyLandTop__icon {
        max-width: 340px;
    }

    .buyLandTop__titleWrap {
        text-align: center;
    }

    .buyLandCenter__title {
        font-size: 30px;
        text-indent: initial;
        text-align: center;
    }

    .buyLandCenter__titleWrap {
        margin-left: initial;
    }

    .buyLandCenter__iconWrap {
        position: initial;
        top: initial;
        right: initial;
    }

    .buyLand__center {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .buyLandBottom__content {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        text-align: center;
    }

    .buyLandBottom__text {
        text-align: center;
    }

    .buyLandBottom__text br {
        display: none;
    }

    .buyLand__bottom-bg {
        opacity: 0.3;
    }
    
    .buyLandBottom__content {
        margin-top: 50px;
    }

    .mogBlock__main {
        flex-direction: column-reverse;
    }

    .mogBlock__left {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mogBlock__content {
        max-width: initial;
    }

    .mogBlock-reverse .mogBlock__main {
        flex-direction: column;
    }

    .mogBlock__main {
        gap: 40px;
    }

    .mogBlock__text {
        text-align: left;
    }

    .mogBlock__textWrap {
        gap: 15px;
    }

    .yourBusiness__subTitle {
        font-size: 20px;
    }

    .yourBusiness__title {
        font-size: 40px;
    }

    .yourBusiness__textWrap {
        gap: 15px;
    }

    .roadmapHeader__title {
        font-size: 40px;
    }

    .roadmapHeader__textWrap {
        gap: 15px;
    }

    .roadmapHeader__btn {
        font-size: 16px;
    }

    .roadmap__info-logo {
        max-width: 180px;
    }

    .roadmap__info-logo {
        bottom: -30px;
    }

    .mgs-logo {
        bottom: -40px;
    }

    .roadmap__content {
        flex: 0.58;
    }

    .roadmapSection {
        padding-bottom: 430px;
    }

    .subscribe {
        flex-direction: column;
    }

    .subscribe__title br {
        display: none;
    }

    .subscribe__text br {
        display: none;
    }

    .subscribe__left {
        max-width: initial;
    }

    .subscribe__textWrap {
        margin-top: 20px;
    }

    .subscribe__form {
        margin: 30px 0 0 0px;
    }

    .subscribeForm__infoText br {
        display: none;
    }

    .subscribeForm__btnWrap {
        justify-content: center;
    }

    .ourPartners__title {
        font-size: 40px;
    }

    .ourPartners__logo {
        max-width: 200px;
    }

    .ourPartnersSection {
        background-size: 100%;
    }

    .ourCommunity {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .ourCommunity__titleWrap {
        text-align: center;
    }

    .ourCommunity__title {
        font-size: 40px;
    }

    .ourCommunity__textWrap {
        margin-top: 10px;
    }

    .roadmapSection {
        padding-bottom: 0px;
    }

    .roadmapInfo__smallText .roadmapInfo__title {
        font-size: 13px;
    }

    .antallagi__text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .antallagi__textCenter {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

@media(max-width: 768px) {
    .antallagi_logo {
        scale: 100%!important;
    }

    .informer {
        flex-direction: column-reverse;
        gap: 20px;
        padding: 20px;
    }

    .informer__text {
        font-size: 20px;
        text-wrap-style: balance;
        text-align: center;
    }

    .mogHeader__slug span {
        font-size: 30px;
    }

    .informer__text br {
        display: none;
    }

    .buyLandTop__title {
        font-size: 22px;
    }

    .buyLandCenter__title {
        font-size: 22px;
    }

    .buyLandBottom__text {
        font-size: 22px;
    }

    .mogBlock {
        padding: 20px;
    }

    .mogBlock__title {
        font-size: 24px;
    }

    .mogBlock__text {
        font-size: 14px;
    }

    .mogBlock__textWrap {
        margin-top: 10px;
    }

    .mogBlock__main {
        gap: 30px;
    }

    .mogBlock__btnWrap {
        margin: 20px auto -45px;
    }

    .mogBlocks {
        gap: 40px;
    }

    .yourBusiness__subTitle {
        font-size: 18px;
    }

    .yourBusiness__title {
        font-size: 30px;
    }

    .yourBusiness__text {
        font-size: 14px;
    }

    .roadmapHeader__content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .roadmapHeader__img {
        max-width: 180px;
    }

    .roadmapHeader__title {
        font-size: 30px;
    }

    .roadmapHeader__text {
        font-size: 14px;
    }

    .roadmap__main {
        margin-top: 70px;
    }

    .roadmap__line {
        display: none;
    }

    .roadmap__content {
        flex: 1;
    }

    .roadmap__informer {
        padding: 20px;
    }

    .roadmapInformer__title {
        text-wrap-style: balance;
    }

    .ourPartnersSection {
        margin-top: 50px;
    }

    .ourPartners__title {
        font-size: 30px;
    }

    .mogHeader__slugs2 .mogHeader__slug span {
        font-size: 16px;
    }

    .buyLandCenter__titleWrap {
        width: initial;
    }

    .antallagi__content {
        padding: 50px 20px;
    }

    .antallagi__text {
        font-size: 16px;
        line-height: 140%;
        text-indent: 10px;
    }

    .antallagi__textCenter {
        font-size: 16px;
        line-height: 140%;
    }

    .antallagi__footerText strong  {
        font-size: 40px;
    }
}

@media(max-width: 576px) {
    .logo__img {
        max-width: 120px;
    }

    .background__logoWrap {
        transform: translateY(-425px)!important;
    }
    
    .ourPartners__content
    {
        margin: 120px auto 0!important;
    }

    .background_logo
    {
        width: 300px;
    }

    .antallagi_logo {
        scale: unset!important;
        width: 250px;
    }

    .mainHomeLogo__slug {
        line-height: 140%;
        text-align: center;
        text-wrap-style: pretty;
    }

    .footer__menu {
        flex-direction: column;
    }

    .burgerMenu__button {
        width: 40px;
    }

    .burgerMenu__button:before,
    .burgerMenu__button:after,
    .burgerMenu__button div {
        height: 4px;
    }

    .footer__content {
        gap: 30px;
    }

    .footer__menu {
        gap: 30px;
    }

    .footerMenu__ulWrap {
        margin-top: 20px;
    }

    .copyright__text {
        font-size: 14px;
    }

    .copyright {
        margin-top: 30px;
        padding: 30px 0;
    }

    .footerMenu__title {
        font-size: 18px;
    }

    .footerMenu__ul {
        gap: 20px;
    }

    .footer {
        margin-top: 0;
        padding-top: 50px;
        background-size: 260%;
        background-position: center bottom;
    }

    .mogHeader__slugs {
        flex-direction: column;
        gap: 30px;
    }

    .informer__text {
        font-size: 18px;
    }

    .mogHeader__logo {
        width: 100%;
    }

    .mogHeader__logoWrap {
        margin-top: 0;
    }

    .mogHeader__slugs {
        margin-top: -40px;
    }

    .mogHeader__slug span {
        font-size: 24px;
    }

    .buyLandTop__icon {
        width: 100%;
    }

    .buyLandTop__title {
        font-size: 18px;
    }

    .buyLandCenter__title {
        font-size: 18px;
    }

    .buyLandBottom__text {
        font-size: 18px;
    }

    .mogBlock__title {
        font-size: 18px;
    }

    .btn__arrow {
        display: none;
    }

    .buyLand__btn {
        font-size: 16px;
    }

    .yourBusiness__title {
        font-size: 22px;
        line-height: 140%;
    }

    .yourBusiness__textWrap {
        margin-top: 20px;
    }

    .yourBusiness__text {
        text-align: center;
    }

    .roadmapHeader__title {
        font-size: 24px;
    }

    .roadmapHeader__img {
        max-width: 140px;
    }

    .roadmap__content {
        flex-direction: column;
    }

    .roadmap__row-left .roadmap__content {
        flex-direction: column-reverse;
    }

    .roadmap__percent {
        justify-content: center;
    }

    .roadmapInfo__title {
        text-align: center;
    }

    .roadmap__row-left .roadmap__info {
        justify-content: center;
        align-items: center;
    }

    .roadmap__row-left .roadmap__percent {
        flex-direction: row-reverse!important;
    }

    .roadmapInformer__title {
        font-size: 16px;
    }

    .roadmapInformer__subTitle {
        font-size: 16px;
    }

    .roadmap__informer {
        margin: 70px auto 0;
    }

    .ourPartners__title {
        font-size: 24px;
    }

    .ourPartners__content {
        margin: 50px auto 0 !important;
    }

    .mogBlock__btn {
        padding: 0 10px;
        box-sizing: border-box;
    }

    .antallagi__text {
        font-size: 14px;
    }

    .antallagi__textCenter {
        font-size: 14px;
    }

    .antallagi__footerText strong {
        font-size: 20px;
    }

    .antallagi__footerText {
        margin-top: 30px;
    }

    .background__logoWrap {
        display: none;
    }

    .antallagiioSection {
        margin-top: 10px!important;
        margin-bottom: 0!important;
    }
}
