body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
}
p {
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 24px 0;
}
.link {
    text-decoration: none;
}
.link:hover {
    text-decoration: underline;
}
.link-white {
    color: #ffffff;
}
.link-gold {
    color: #baa082;
}
.link-footer {
    color: #9ca3af;
}
.link-footer:first-child {
    margin: 0 16px 0 0;
}
.header {
    /* background-image: url('../img/header.jpg'); */
    /* background-image: url('../img/header1.jpg'); */
    background-image: url('../img/header2.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100vh;
}
.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(17, 24, 34, 0.95) 0%, rgba(17, 24, 34, 0.8) 50%, rgba(17, 24, 34, 0.6) 100%);
    z-index: 1;
}
.ambheader {
    position: relative;
    min-height: 100vh;
}
.mainmenu {
    position: relative;
    position: fixed;
    background-color: rgb(17, 24, 34, 0.9);
    z-index: 100;
    /* filter: blur(4px); */
}
.mainmenu__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo__link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}
.logo__img {
    width: 30px;
    margin: 0 8px 0 0;
}
/*BUTTON*/
.button {
    position: relative;
    white-space: nowrap;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    padding: 12px 32px;
    border-radius: 8px;
    min-height: 56px;
    z-index: 2;
}
.button-gold {
    border: 2px solid #BAA082;
    color: #BAA082;
}
.button-gold:hover {
    background-color: #BAA082;
    color: #111822;
}
.button-goldfull {
    border: 2px solid #BAA082;
    background-color: #BAA082;
    color: #111822;
    font-weight: 500;
}
.button-goldfull:hover {
    background-color: #54483B;
    color: #fff;
}
.button-block {
    display: flex;
}
/*BUTTON END*/
/*HEADERS*/
.section__title {
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    margin: 0 0 24px 0
}
/*HEADERS END*/
/*check input*/
.custom__checkwrap {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
    z-index: 1;
    padding: 0 0 0 30px;
    margin: 0 0 8px 0;
}
.custom__checkwrap:last-of-type {
    margin: 0;
}
.custom__checkinput {
    position: absolute;
    cursor: pointer;
    left: 0;
    z-index: -1;
    width: 18px;
    height: 18px;
    opacity: 0;
}
.custom__checklabel {
    position: relative;
    cursor: pointer;
    color: var(--black, #212529);
    font-size: 16px;
    font-weight: 400 !important;
    line-height: 20px;
    margin-bottom: 0;
}
.custom__checkinput:checked~.custom__checklabel::before {
    color: #fff;
    border-color: #ccb294;
    background-color: #ccb294;
    box-shadow: none;
}
.custom__checklabel::before {
    content: '';
    position: absolute;
    display: block;
    pointer-events: none;
    transition: all .15s ease-in-out;
    background-color: #ffffff;
    border: 2px solid #E6E6E6;
    top: 0;
    left: -30px;
    width: 18px;
    height: 18px;
    border-radius: 4px;
}
.custom__checkinput:checked~.custom__checklabel::after {
    content: '';
    position: absolute;
    display: block;
    pointer-events: none;
    transition: all .15s ease-in-out;
    background-image: url('../img/check-ico.svg');
    background-repeat: no-repeat;
    background-size: 14px;
    top: 5px;
    left: -25.5px;
    width: 14px;
    height: 12px;
}
.custom__checkwrap:hover .custom__checklabel::before {
    border: 2px solid #9B9B9F;
}
.custom__checkwrap:active .custom__checklabel::before {
    border: 2px solid #86868A;
}
.custom__checkwrap:hover .custom__checkinput:checked~.custom__checklabel::before {
    border-color: #baa082;
    background-color: #baa082;
}
.custom__checkwrap:active .custom__checkinput:checked~.custom__checklabel::before {
    border-color: #91785d;
    background-color: #91785d;
}
/*check input end*/

/*spinner*/
.yn__spinner {
    content: ' ';
    display: block;
    position: relative;
    background-image: url('/img/spinner.svg');
    -webkit-animation: spin360 4s linear infinite;
    -moz-animation: spin360 4s linear infinite;
    animation: spin360 4s linear infinite;
    width: 16px;
    height: 16px;
}
.yn__spinner-dark {
    position: absolute;
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
    top: 50%;
    left: 50%;
    z-index: 2;
}
.yn__spinner-dark img {
    -webkit-animation: spin360 1s linear infinite;
    -moz-animation: spin360 1s linear infinite;
    animation: spin360 1s linear infinite;
}
.yn__spinner-show {
    visibility: visible;
    opacity: 1;
}
@-moz-keyframes spin360 { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin360 { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin360 { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}
/*spinner*/



.challenge__item {
    display: flex;
    align-items: center;
    background-color: #f9fafb;
    border-radius: 16px;
    padding: 16px;
    margin: 0 0 8px 0;
}
.challenge__item:last-of-type {
    margin: 0;
}
@media (max-width: 1280px) {
    .challenge__item {
        padding: 22px;
        margin: 0 0 24px 0;
    }
}
@media (max-width: 1024px) {
    .challenge__item {
        padding: 24px;
        margin: 0 0 32px 0;
    }
}
@media (max-width: 768px) {
    .challenge__item {
        padding: 16px;
        margin: 0 0 8px 0;
    }
}
.challenge__icowrapprt {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #54483B 0%, #BAA082 100%);
    color: #ffffff;
    min-width: 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 16px 0 0;
}



.text-center {
    text-align: center;
}
.text-biggold {
    color: #baa082;
    font-weight: 700;
    font-size: 48px;
}
.mb48 {
    margin: 0 0 48px 0;
}
.mt48 {
    margin: 48px 0 0 0;
}
.mt24 {
    margin: 24px 0 0 0;
}
.bgwhite {
    background-color: #ffffff !important;
}