@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
    --site-bg-color: #fff;
    --site-green: #379194;
    --site-darkgreen: #234557;
}
html {
    overflow-x: hidden;
    margin: 0 !important
}
body{
    background: var(--site-bg-color) !important;    
    height: fit-content;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.site_header{
    max-width: 96.9vw;
    left: 0.7vw;
}
.site_header-logo{}

/* Hero box */
.hero-container{
    width: 100%;
    aspect-ratio: 1470 / 572;
    background: url('/wp-content/themes/tftraderaw/assets/images/hero-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    position: relative;    
    padding: 0 3vw 0 2vw;
    border-radius: 20px;
}
.hero-container .hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.hero-container .hero-text * {
    font-family: 'Inter';
}
.hero-title{
    font-size: clamp(14px, 10vh, 40px);
    width: clamp(300px, 30vw, 600px);
    line-height: 1;
    font-weight: 800;
    color: var(--site-bg-color);
    margin-bottom: 10px;
}
.hero-subtitle{}
.hero-btn{
    width: fit-content;
    padding: 10px 20px;
    background: #fff;
    border-radius: 8px;
    margin-top: 20px;
    cursor:pointer;
    box-shadow: 0 30px 30px -15px #003f47;
}
.hero-bg-text{
    position: absolute;
    bottom: -3%;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc( 100% - 6vw);
    text-align: center;
    z-index: 0
}
.hero-bg-text span {
    font-size: clamp(3vw, 9.5vw, 90vw);
    display: inline-block;
    text-transform: uppercase;
    color: var(--site-bg-color);
    
    font-weight: 900;
}

.hero-box{
    position: relative; 
    width: 98vw;
    display: flex;
    flex-direction: column;
    align-items: center;      
    padding: 1vw 0 0 0vw
}
.hero-box::after{
    /*content: "";*/
    background-image: url("/wp-content/themes/tftraderaw/assets/images/redlogo.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: right;
    position: absolute;
    top: -25px;
    right: 0;
    height: 100%;
    width: 78%; 
}
.hero-box .hero-car-image{
    position: absolute;
    z-index: 10;
    bottom: -20%;
    width: clamp(320px, 50vw , 709px);
    justify-self: center;
    margin-left: 30%
}
/* Brands */
.brands-box{
    display: grid;
    position: relative;
    gap: 50px;
    /*border-top: 1px dashed var(--site-green)*/
    margin: 0 0 50px 0
}
.brands-grid{
    grid-template-columns: repeat(6, 1fr);
}
.brands-box .grid {
    gap: 20px
}
.brands-box .grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 10px 15px
}
.brands-box .grid a img {
    max-width: 90%;
    aspect-ratio: 1 / 1;
    object-fit: scale-down;
}
.brands-box > div:nth-of-type(1){
    
}
.brands-box .brands-title{
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    margin-bottom: 40px;
    font-size: 48px;
    text-transform: uppercase;
    padding-top: 150px
}
.brands-box .brands-title .red{
    color: #DE0014;
}
.brands-box .brands-text{
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    line-height: 28px;
    color: #515151
}

/* About */
.about-box{
    display: grid;
    position: relative;
    gap: 50px;    
    margin: 50px 0
}

.about-box .about-title{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    margin-bottom: 40px;
    font-size: 48px;
    text-transform: uppercase;
    padding-top: 150px
}
.about-box .about-title .red{
    color: var(--site-darkgreen);
}
.about-box .about-text{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 28px;
    color: var(--site-darkgreen)
}
.a-like-btn{
    background: linear-gradient(45deg, #369194, #08395c);
    color: #FEFEFE;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 35px;
    border-radius: 30px;
    text-decoration: none;
    width: fit-content;
    margin-top: 50px;
}
.about-container {    
    position: relative; 
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;   
}
.about-container::before{
    content: "";
    /*background-image: url(/wp-content/themes/tftraderaw/assets/images/redlogo.svg);*/
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: left;
    position: absolute;
    top: 25%;
    left: 0;
    height: 100%;
    width: 50%; 
}
.about-img {
    background: #eee;
    background-image: url(/wp-content/themes/tftraderaw/assets/images/road.png);
    background-position-y: 33%;
    border-radius: 12px;    
    aspect-ratio: 2 / 3;
    margin-right: 20%;
    padding-left: 15%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.about-img img{
    max-width: 40vw;
}
.a-like-btn:hover{
    color: #fff;
}

.why-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 100px;
    padding-top: 70px;
    padding-bottom: 0px;
}
.why-box *{ font-family: "Montserrat", sans-serif; }
.why-box .why-sup-title{
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #222;
    text-transform: uppercase;
    font-weight: 200;
}
.why-box .why-sub-title{
    font-size: 16px;
    line-height: 22px;
    color: var(--site-darkgreen);    
    font-weight: 400;
    margin: 0px 0px 50px 0;
    text-align: center;
    padding: 0 10%
}
.why-box .why-title{
    font-size: 48px;    
    color: #222;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0px 0px 25px 0
}
.red { 
    color: var(--site-darkgreen) !important;     
}
.why-box .why-grid{
    display: grid;
    gap: 30px;
   
}
.why-box .why-grid .grid-el{
    background: #FDFDFD;
    border-radius: 8px;
    padding: 15px 15px 25px 15px;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 3fr;
}
.why-box .why-grid .grid-el .grid-image{
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-box .why-grid .grid-el .grid-text{
    display: flex;
    flex-direction: column;
}
.why-box .why-grid .grid-el .grid-text b{
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #222;
}
.why-box .why-grid .grid-el .grid-text span{
    font-weight: 400;
    font-size: 11px;
    line-height: 14px;
    color: #222;
}

.opinions-container{
    padding: 0 0 80px 0;    
    width: 100%;
    margin-bottom: 0px;
    position: relative; 
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;   
}
.opinions-box{
    display: grid;
    padding-top: 0px;
    padding-bottom: 70px;
}
.news-card{

}
.news-container{
    padding: 80px 0;
    background: #fff;
    width: 100%;
    margin-bottom: 70px;
    position: relative; 
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;   
}
.news-box{
    display: grid;
    padding-top: 70px;
    padding-bottom: 70px;
}
.news-card{

}
.news-card .news-title{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    
}
.news-card .news-text{
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;    
}
.news-card .news-date .red{
    color: rgb(125,211,252) !important
}
.news-card .news-date{
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;    
    text-transform: uppercase;
}
.news-title-main {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    letter-spacing: -1px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}
.news-title-slave {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    letter-spacing: -1px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}
.news-title-text {
    margin-top: auto;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #222;
    padding-right: 20px
}
.news-title-button {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;    
    color: #fff;
    background: linear-gradient(45deg, #369194, #08395c);
    height: 42px;
    border-radius: 22px;
    width: fit-content;
    padding: 5px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 34px;
    cursor: pointer;
}
.map-container{
    padding: 0px 0;    
    width: 100%;
    margin-bottom: 70px;
    position: relative; 
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;   
}
.map-container form {
    background-color: #fefefe !important;
    border-radius: 12px;
    position: absolute;
    right: 8%;
    box-shadow: 0 40px 50px -30px #174177;
}
.map-box{
    display: grid;
}
.hamburger {
    /* width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: #eee; */
}
#masthead {
    position: sticky;
    top: 1vw;
    background: #111;
    z-index: 1000;
    margin-top: 1vw;    
    border-radius: 16px;
    margin-bottom: 1em;
}
.home #masthead {
    position: fixed;
    background: transparent;
    z-index: 1000;
    top: 0;
    margin-top: 2vw;    
    border-radius: 16px;
    margin-bottom: 0em;
    max-width: 96vw !important;
    left: 2vw;
    padding: 0 1vw
}
#masthead #menu-toggle svg path{
    stroke: #DE0014;
}
#masthead img[alt="logo"]{
    max-height: 50px
}
#masthead .lang-ul{
    display: flex;
    gap: 15px
}
#masthead a{
    font-family: 'Inter' !important; 
    text-transform: uppercase;
}
@media (max-width: 768px){    
    .hero-box::after{
        /*content: "";*/
        background-image: url(/wp-content/themes/tftraderaw/assets/images/redlogo.svg);
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 58%;
    } 
    .about-img img{
        max-width: 100%;
    }   
    .about-container::before{
        display: none;
    }
    .why-box {
        margin: 30px 0 70px 0 
    }
    .about-box .about-title {
        padding-top: 0px
    }
    .brands-box{
        margin-top: 0px
    }
}

@media (max-width: 500px){
    .brands-box .brands-title {
        font-size: 28px;
        padding-top: 0px;
    }
    .brands-box .brands-text {
        font-size: 13px;
        line-height: 24px;
    }
    .about-box{
        margin-top: 0;
    }
    .about-box .about-title {
        font-size: 28px;
    }
    .about-box .about-text {
        font-size: 13px;
        line-height: 24px;
    }
    .why-box .why-sup-title {
        font-size: 16px;
        text-align: center;
    }
    .why-box .why-sub-title {
        font-size: 13px;
        line-height: 22px;
    }
    .why-box .why-title {
        font-size: 28px;
        text-align: center;
    }
    .opinions-container ,
    .news-container {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .news-container .news-box{
        gap: 35px;
    }
    .news-container .news-title-text {
        margin: 30px 0 0 0
    }
    .news-container .news-title-button {
        margin-bottom: 20px
    }
}

.lang-ul {
    display: flex;
    flex-direction: row;
}
.lang-ul li.current-lang,
.lang-ul li:hover
 {
    color: #fff;
    font-weight: 600;
    transition: all .3s ease-in;
}
.lang-ul li {
    font-family: 'Inter' !important;   
    color: rgba(255,255,255, .3);  
    transition: all .5s ease-out;  
}
.anim-text{
    display: block;
    opacity: 0;
}
.anim-text.show{
    animation: reveal 0.5s forwards var(--d) ;
    position: relative;
    z-index: 100;
}
.anim-block{
    display: block;
    opacity: 0;
    position: relative;
    z-index: 100;
}
.anim-block.show{
    animation: reveal 0.5s forwards var(--d) ;
    position: relative;
    z-index: 100;
}
@keyframes reveal {
    from {
        transform: translateY(20px);
    }   
    to {
        opacity: 1;
        transform: none;
    }
}

.page-h1{
    font-family: "Inter", sans-serif;
    font-size: 36px;
    letter-spacing: -1px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.breadcrumbs {
    display: flex;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #777;
    font-weight: 300;
    margin-bottom: 15px;
}
.breadcrumbs > li:last-child{
    color: #DE0014
}
.breadcrumbs > li::after{
    content: " > ";
    padding: 0 5px;
}
.breadcrumbs > li:last-child::after{
    content: '';
}
#content article{
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 28px;
    color: #444;
}
#content article p,  
#content article ul  
{
    padding: 15px 0;
}
#content article b,
#content article strong {
    font-weight: 500;
}

@media (max-width: 512px){
    * {
       /*border: 1px solid red !important;*/
    }
    .isolate {
        padding: 0 !important
    }
    #contactForm{
        margin-top: 0px;
        position: relative;
        right: 0px !important
    }
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-box .order-first{
        padding: 0px !important
    }
    .about-box .order-last 
    {
        padding: 1rem !important
    }
    .about-box .about-img{
        align-items: center;
        margin-right: 0px;
    }
    .about-box .about-img img{
        bottom: -8%;
        right: -25vw;
        position: relative;
    }
    .about-box .about-title{
        padding-top: 130px;
        font-size: 41px;
    }
    .brands-box{
        margin-bottom: 0px;        
    }
    .hero-container{
        aspect-ratio: 2 / 3;
    }
    .hero-box{
        padding: 0px !important;
    }
    .hero-bg-text{
        bottom: -1%;
    }
    .hero-bg-text span{
        font-size: clamp(3vw, 9.5vw, 90vw) !important
    }
    .hero-box > .container{
        padding: 0.5rem !important;
    }
    .hero-box .hero-car-image{
        bottom: -14%;
        margin-left: 10%
    }
    .hero-container .hero-text{
        padding: 0 20px;
    }
    #masthead .lang-ul{
        gap: 5px;
    }
    #masthead img[alt="logo"]{
        max-height: 24px;
    }
    .site-branding .order-2 {
        margin-left: 0px; 
        margin-right: auto;
    }
    .about-container{
        max-width: 100vw;
        overflow-x: hidden;
    }
    #contacts + .container,
    #about + .container,
    #brands + .container{
        max-width: 100% !important;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .why-box{
        padding-top: 50px;
        margin-bottom: 0px;
    }
    .why-sub-title{
        margin-bottom: 20px !important
    }
    .site-content .container.mb-40{
        padding: 1rem;
    }
    .breadcrumbs{
        flex-wrap: wrap;
    }
}

@media (min-width: 1921px){
    #masthead,
    #content,
    #content > div {
        max-width: 1920px !important;
    }
    .about-img{
        background-repeat: no-repeat;
        background-size: cover;
    }
    .hero-title{
        font-size: clamp(14px, 10vh, 60px);
    }
    .hero-bg-text span{

    }
    .hero-box .hero-car-image{
        bottom: -10px;
    }
    .hero-container {
        aspect-ratio: 1470 / 457;
    }
    .home #masthead{
        max-width: 1920px !important;
        left: auto !important;
        padding-left: 0px !important;
    }
    .about-box .about-text{
        font-size: 24px;
        line-height: 42px;
    }
}