

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Onest:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.banner-top-wrapper {
	--font-family: "Onest", sans-serif;
    --second-family: "Inter", sans-serif;
    --third-family: "Montserrat", sans-serif;
    --text-color: #ffffff;
    --border-radius: 33px;
}

.margin-top-notice {
    margin-top: 0 !important;
}

.banner-top-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    border-radius: 0 0 35px 35px;
    height: 135px;
    margin-left: 70px;
    padding: 44px 66px 41px;
    -webkit-box-shadow: 0 11px 36px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 11px 36px 0 rgba(0, 0, 0, 0.15);
    background: #fff;
}

.banner-top-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
    height: 100%;
}

.banner-top-logo img {
    max-width: 245px;
}

.banner-top-text {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}

.banner-top-text p {
    max-width: 630px;
    margin-bottom: 0;
    font-family: var(--third-family);
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    color: #000;
}

.banner-top-btn {
    height: 70px;
    padding: 20px;
    -webkit-box-shadow: -3px 3px 13px 0 rgba(0, 0, 0, 0.11);
            box-shadow: -3px 3px 13px 0 rgba(0, 0, 0, 0.11);
    background: #fff;
    border: 1px solid #000;
    border-radius: 49px;
    width: 300px;
    text-align: center;
    font-family: var(--third-family);
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    color: #000 !important;
    text-decoration: none !important;
}

.banner-top-btn span {
	font-weight: 800;
}

@media (max-width: 1502px) {   
    .banner-top-logo img {
        max-width: 180px;
    }
    
	.banner-top-text p, .banner-top-btn a {
        font-size: 18px;
    }
    
        .banner-top-btn {
        /*height: 60px;*/
	}
}

@media (max-width: 1440px) {    
    .banner-top-btn {
        font-size: 20px;
        width: 74%;
    }
}

@media (max-width: 1200px) {
    .banner-top-wrapper {
        padding: 24px 36px;
        height: unset;
    }
    
    .banner-top-content {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        row-gap: 20px;
    }
    
    .banner-top-text p {
        max-width: unset;
    }
}

@media (max-width: 768px) {   
    .banner-top-wrapper {
        margin-left: 0;
    }
    
    .banner-top-content {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    
    .banner-top-text p {
        text-align: center;
    }
}

@media (max-width: 415px) {   
    .banner-top-btn {
        padding: 15px;
    }
}

@media (max-width: 391px) {      
    .banner-top-wrapper {
        padding: 20px;
        height: unset;
    }
    
    .banner-top-content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
        gap: 12px;
    }
    
    .banner-top-logo img {
        max-width: 72px !important;
    }
    
    .banner-top-text p {
        font-size: 9px !important;
        text-align: left;
    }
    
    .banner-top-btn {
        display: none;
    }
}
