/*
Theme Name: Trinity Talks
Author: Fullo
Author URI: https://fullo.rs
Description: Custom Wordpress Theme for Trinity Talks
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/

/* *************************
        F O N T O V I
   ************************* */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/Inter-Regular.woff') format('woff'),
    url('./fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/Inter-Bold.woff') format('woff'),
    url('./fonts/Inter-Bold.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Inter-Tight';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/InterTight-Bold.woff') format('woff'),
    url('./fonts/InterTight-Bold.woff2') format('woff2');
}


/* *************************
        G L O B A L N O
   ************************* */
* {
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    margin: 0;
}

.container {
    max-width: 1220px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6{
    margin: 0;
    font-family: "Inter-Tight", sans-serif;
    font-weight: 700;
}

p{
    margin: 0;
}

/* *************************
          H E A D E R
   ************************* */
.site-header{
    padding: 20px 0;
}
.site-header .container{
    display: flex;
    justify-content: start;
    align-items: center;
}
.site-header .container svg{
    max-width: 270px;
    width: 100%;
}
@media(max-width: 1024px){
    .site-header .container svg{
        max-width: 200px;
    }
}
@media(max-width: 767px){
    .site-header{
        padding: 15px 0;
    }
    .site-header .container svg{
        max-width: 150px;
    }
}