/*@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;500;600;700;900&display=swap');
*/
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Coustard:wght@900&display=swap');

*{
    box-sizing: border-box;
}

body,
input,
button{
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}

p{
    font-weight: 400;
    font-size: 18px;
    line-height: 1.45em;
    margin-top: 0;
    margin-bottom: 1.5em;
}

.title{
    font-family: 'Coustard', serif;
    font-weight: 900;
    color:#562c2d;
}

h2.title,
h1.title{
    font-size: 32px;
    margin-bottom: 0.3em;
    margin-top: 0;
    line-height: 1em;
}

b,
strong{
    font-weight: 600;
}

img{
    max-width: 100%;
}

.container{
    max-width: 1140px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 30px;
    padding-right: 30px;
}

.container-column{
    flex-direction: column;
}

/* HEDAER */

header{
    padding: 20px 0;
}

header .container{
    align-items: center;
}

.header-left,
.header-right{
    width: 50%;
}

.logo-desktop{
    max-width: 280px;
}

.header-right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-nav{
    margin-right: 40px;
}

.header-nav a{
    text-decoration: none;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
    color:#562c2d;
}

.social {
    display: flex;
    column-gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.social img{
    max-width: 40px;
}
/* HERO SECTION */

.hero-section {
    background: linear-gradient(to bottom, #c8eff0 50%,#d8e9de 100%);
    padding-top: 60px;
    padding-bottom: 70px;
}

.col-left{
    width: 60%;
    padding-right: 15%;
}

.hero-section .col-right{
    width: 40%;
    padding: 0 4%;
}

.logos-row{
    display: flex;
}

.logos-row a{
    margin-right: 10px;
}

.logos-row img{
    max-height: 60px;
    width: auto;
}

/* SUBSCRIBE SECTION */
.subscribe-section{
    background-color: #deeef0;
    padding: 60px 0;
}

.subscribe-section .container{
    flex-direction: column;
    align-items: flex-start;
}

.subscribe-section .title{
    margin-bottom: 0;
}

.subscribe-title{
    width: 100%;
    margin-bottom: 30px;
}

.subscribe-form{
    width: 100%;
}

.subscribe-form form{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mc-form{
    width: 100%;
}

.mc-field-group{
    width: 60%;
}

#mce-EMAIL{
    width: 100%;
    height: 60px;
    padding: 15px 20px;
    font-size: 20px;
    border: none;
}

.subscribe-form input:not[type='submit']{
    width: 60%;
    height: 80px;
    padding: 15px 30px;
    font-size: 20px;
    border: none;
}

.subscribe-form button,
#mc-embedded-subscribe{
    width: calc(40% - 30px);
    height: 60px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    background: #97dbde;
    -webkit-appereance: default;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
}

/* VIDEO SECTION */

.video-section{
    padding: 60px 0 50px;
    background: linear-gradient(to bottom, #dce7da 20%, #f2e0c2 101%);
}

.video-wrap{
    position: relative;
    /*padding-bottom: 66%;*/
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
}

.video-wrap iframe{
    position: absolute;
    top:0;
    width: 100%;
    height: 100%;
}

/* FOOTER */
footer{
    background-color: #532c2c;
    color:white;
    padding-bottom: 30px;
    padding-top: 30px;
}

#mce-responses{
    margin-top: 10px;
    font-weight: 600;
}

footer p{
    max-width: 400px;
    margin-bottom: 0;
}

footer > .container{
    align-items: center;
}

footer .social img{
    max-width: 40px;
}

.footer-left{
    width: 65%;
}

.footer-right{
    width: 35%;
}

.hide-desktop{
    display: none;
}

@media (max-width: 1023px){

    .col-left{
        padding-right: 7%;
    }

    .hero-section .col-right{
        padding: 0;
    }

    .subscribe-title{
        width: 300px;
    }

    .subscribe-form form{
        column-gap: 15px;
    }

    .subscribe-form input{
        width: 70%;
        padding:15px 20px;
    }

}

@media (max-width:767px){

    p{
        font-size: 24px;
    }

    h1.title,
    h2.title{
        font-size: 64px;
        line-height: 1.1em;
        margin-bottom: 40px;
    }

    .container{
        flex-wrap: wrap;
    }

    .hero-section .col-left,
    .hero-section .col-right{
        width: 100% !important;
    }

    .hero-section .col-right{
        padding-top: 30px;
    }

    .col-left {
        padding-right: 0%;
    }

    .logos-row{
        column-gap:20px;
    }

    .logos-row a{
        width: 100%;
        margin-right: 0;
    }

    .logos-row img {
        max-height: unset !important;
        width: 100%;
    }

    .subscribe-title {
        width: 100%;
        margin-bottom:20px;
    }

    .subscribe-form {
        width: 100%;
        margin-top: 20px;
    }

    .subscribe-form input:not([type='checkbox']),
    .subscribe-form button,
    #mce-EMAIL,
    #mc-embedded-subscribe{
        width: 100%;
        height: 100px;
    }

    .subscribe-form input,
    #mce-EMAIL,
    #mc-embedded-subscribe{
        padding:15px 30px;
        font-size:32px;
    }
    
    .mc-field-group{
        width: 100%;
    }

    .subscribe-form button{
        font-size: 32px;
    }

    .subscribe-form form{
        padding-left: 0;
        row-gap: 30px;
        flex-wrap: wrap;
    }

    #mc-embedded-subscribe{
        order:3;
    }

    #mergeRow-gdpr{
        order: 2;
        margin: 0!important;
    }

    .subscribe-section{
        padding: 50px 0 30px;
    }

    .footer-left,
    .footer-right{
        width: 100%;
    }

    footer p{
        max-width: 100%;
        margin-bottom: 20px;
    }

    footer .social{
        justify-content: flex-start;
    }

    footer .social img {
        max-width: unset;
        height: 70px;
        width: auto;
    }

    .hide-mobile{
        display: none;
    }

    .hide-desktop{
        display: inline-block;
    }

    .header-nav {
        margin-right: 20px;
    }

    .header-left{
        max-width: 100px;
    }

    .header-right{
        width: calc(100% - 100px);
    }

    header .social img{
        max-width: unset;
        height: 50px;
        width: auto;
    }

    .logo-mobile{
        height: 80px;
        width: auto;
    }

    header {
        padding: 10px 0;
    }

    #mce-responses{
        order: 4;
        margin-top: 0 !important;
    }
}

@media (max-width: 560px){
    h1.title, h2.title{
        font-size: 34px;
    }

    .container{
        padding: 0 20px;
    }

    p {
        font-size: 18px;
    }

    header .social img {
        max-width: unset;
        height: 30px;
    }

    .header-left {
        max-width: 50px;
    }
    
    .header-right {
        width: calc(100% - 50px);
    }

    .header-nav {
        margin-right:10px ;
    }

    .header-nav a{
        font-size: 17px;
        padding: 8px;
    }

    .logo-mobile {
        height: 60px;
    }

    .hero-section{
        padding-top: 40px;
        padding-bottom: 30px;
    }

    h1.title, h2.title {
        margin-bottom: 20px;
    }

    .subscribe-form{
        margin-top: 30px;
    }

    .subscribe-form form {
        row-gap: 20px;
    }

    .subscribe-form input,
    .subscribe-form button {
        padding: 15px 20px;
        font-size: 18px;
    }

    .subscribe-form input:not([type='checkbox']), .subscribe-form button {
        height: 60px;
    }

    

    .subscribe-section {
        padding: 40px 0 40px;
    }

    .video-section {
        padding: 50px 0 40px;
    }

    .video-wrap{
        margin-bottom: 40px;
        margin-top: 10px;
    }

    footer .social img {
        max-width: unset;
        height: 50px;
    }
    
    
}

#mergeRow-gdpr {
    margin-top: 20px;
    margin-bottom: 6px;
    width: 100%;
}

#mergeRow-gdpr label,
#mergeRow-gdpr p{
    font-size: 14px !important; 
    margin-bottom: 1em;
}

#mergeRow-gdpr a{
    color:#532c2c;
}
#mergeRow-gdpr label{
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

#mc-embedded-subscribe:hover{
    cursor: pointer;
}

#mergeRow-gdpr fieldset{
    border:none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    margin-bottom: 1em;
}

#mergeRow-gdpr fieldset label{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

#mergeRow-gdpr fieldset input{
    width: 20px;
}