/*
Theme Name: unlmtd
Theme URI: https://unlmtd-club.com
Author: Atelier Yvon
Author URI: https://atelieryvon.com
Description: Custom unlmtd theme
Requires at least: WordPress 5.0
Version: 1.0
*/


:root {
  --main-font: 'Heebo';
}

body {
    background-color: var(--main-bg-color);
    font-family: var(--main-font);
    color:var(--font-color);
    margin: 0px;
}


html::-webkit-scrollbar {
  display: none;
}

html {
    -ms-overflow-style: none;  
  scrollbar-width: none;  
}


.landing {
    display: grid;
    grid-template-columns: 1fr 45%;
    min-height: 100vh;
}

.landing .left {
    padding: 3vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.landing .left .smallText {
    font-weight: 500;
    font-size: 10px;
}

.landing .left .headline {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 3vw;
    line-height: 1.2em;
}

.landing .left .headline p {
    margin: 0;
}

.landing .left .separator {
    width: 0px;
    height: 0.5px;
    background-color: var(--font-color);
    margin: 30px 0px 30px;
}

.landing .left .logo {
    width: 62%;
}

.landing .left .bottom {
    position: relative;
}

.landing .left .bottom .grid {
    display: grid;
    grid-template-columns: 55% 1fr;
    align-items: end;
}

.landing .left .bottom .social {
    position: absolute;
    bottom: 0px;
    right:0px;
}

.landing .left .bottom .social p {
    margin:0;
}

.landing .left .bottom .social a {
    color:var(--font-color) !important;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    font-family: var(--main-font);
}

.form-container {
    overflow: hidden;$
    margin-bottom: 10px;
}

.sib-form {
    font-size: 10px;
    font-family: var(--main-font);
    padding: 0px;
    transform: translateY(100%);
}
#sib-container {
    background: transparent;
    padding: 0px;
}
#sib-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 310px;
    margin: 0 0 0 auto;
    position: relative;
    --bar-width: 0px;
}
#sib-form:after {
    content:"";
    height: 0.5px;
    width: var(--bar-width);
    background-color: var(--font-color);
    position: absolute;
    left: 0;
    bottom: 0px;
}
.sib-form-block {
    padding: 0px;
}
.sib-form-block__button {
    padding: 0px;
    background-color: transparent;
    font-family: var(--main-font);
    font-weight: 700;
    text-transform: uppercase;
    color:var(--font-color);
}
.sib-form-block__button-with-loader {
    min-height: auto;
}
.sib-form .entry__field {
    background: transparent;
    border: 0px;
    margin: 0px;
    color: var(--font-color);
    font-family: var(--main-font);
    font-size: 10px;
    width: -webkit-fill-available;
    box-shadow: none  !important;
}
.sib-form .input  {
    padding: 3px 5px !important;
    border: solid 0.5px;
    height: auto !important;
    min-width: 150px;
}
.sib-form .input::placeholder  {
    color:var(--font-color);
}
.sib-form-message-panel {
    max-width: 310px;
        float: right;
        border: solid 0.5px;
}

.landing .right {
    background-size: cover;
    background-position: center;
}

.anim_lines .line-container {
    overflow: hidden;
}

.anim_lines .line-container .line {
    transform: translateY(110%);
}



.grecaptcha-badge {
    display: none !important;
}




@media (min-width: 1025px){ 
  .hidden-on-desktop {
    display: none !important;
   }
}

@media (max-width: 1024px) {
  
  .hidden-on-tablet {
    display: none !important;
   }
    
}



@media (max-width: 767px){ 
   .hidden-on-mobile {
    display: none !important;
   }
   .landing {
        grid-template-columns: 1fr;
    }
    .landing .left {
        padding: 50px 40px 30px;
    }
    .landing .left .bottom .grid {
        grid-template-columns: 1fr;
    }
    .landing .left .headline {
        font-size: 44px;
    }
    .sib-form {
        margin-top: 50px;
    }
    #sib-form {
        max-width: none;
        margin: 0 auto;
        padding:0px;
        border: none;
    }
    .sib-form .input  {
        padding: 0px !important;
        border: none;
    }
    .landing .left .logo {
        margin-top: 120px;
        width: 148px;
    }
    .landing .right {
        height: 60vh;
    }

}




