* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
ul li {
    list-style: none;
}
a {
    text-decoration: none;
    display: inline-block;
    color: inherit;
    transition: 0.4s ease;
}
img {
    width: 100%;
    vertical-align: middle;
}

body {
    font-family: 'Inter Regular';
    font-weight: 400;
    overflow-x: hidden;
}
:root {
    --white-color: #FFFFFF;
    --black-color: #000000;
    --primary-color:  #af8e52;
    --secondary-color: #19448f;
    --bg-gray: #f5f5f5;
}



@font-face {
    font-family: 'Inter Regular';
    font-weight: normal;
    src:  url('../fonts/Inter-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Inter Thin';
    font-weight: normal;
    src: url('../fonts/Inter-Thin.woff') format('woff');
}

@font-face {
    font-family: 'Inter Light';
    font-weight: normal;
    src: url('../fonts/Inter-Light.woff') format('woff');
}

@font-face {
    font-family: 'Inter Medium';
    font-weight: normal;
    src:  url('../fonts/Inter-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Inter Semi Bold';
    font-weight: normal;
    src: url('../fonts/Inter-SemiBold.woff') format('woff');
}

@font-face {
    font-family: 'Inter Bold';
    font-weight: normal;
    src: url('../fonts/Inter-Bold.woff') format('woff');
}
    

    
.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
section {
    display: table;
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
}
.flex_box {
    display: flex;
    flex-direction: row;
    width: 100%;
}

@media (max-width: 1600px){
    .container {
        padding: 0px 15px;
    }
    
}

    

    
    

    

 