/*
Fonts:
font-family: 'Baloo Tammudu', cursive;
font-family: 'Roboto', sans-serif;

Main colors:
Dark blue: #1e2530;
Light blue: var(--main-blue);
*/
html {
    scroll-behavior: smooth; /*adds smooth scrolling when using navigation instead if instant teleport :)*/
                            /* u can assign this ti personal element if choose ?? w3cschool :)*/
}

:root {
    --main-blue: #2f5aaf;
    --main-dark-blue: #2c41b7;
    --main-middle-color: #f94d1c; /* #2e3cb5; */
    --button-collor: #FFF; /* #5764c4; */
    --button-text: #000;
    --header-link: #701900;
    --orange: #d8d8d9;/* #ea8730; */
    --text-white: #FFF;
    --text-light: #FFF;/* #707ff0 */
    --light-red: #FFF3F0;
}

@font-face {
    font-family: "QartellaExtraBold";
    src: url(../fonts/Qartella-ExtraBold.otf);
}

@font-face {
    font-family: "QartellaLight";
    src: url(../fonts/Qartella-Light.otf);
}

body {
    font-family: 'Montserrat';
    background-color: #f5f5f5;
}

* {
    box-sizing: border-box;
}

.m-r-15-d{
    margin-right: 15px;
}

.m-l-15-d{
    margin-left: 15px;
}


p, h5, h2{
    margin: 0px;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.responsive-img {
    width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

.relative {
    position: relative;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mobile-only {
    display: none;
}

.main-color {
    color: #1e2530;
}

.second-color {
    color: var(--main-blue);
}

.float-right{
    float: right;
}


.clearfix{
    clear: both;
}


/* BASE STRUCTURE */

.fluid-wrapper {
    width: 100%;
    padding: 0 4em;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 50px;
}

.wrapper-large {
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.toppad {
    padding-top: 150px;
}
.wrapper-middle {
    max-width: 1400px;
    margin: 0 auto;
    /* padding-top: 150px; */
    padding-left: 30px;
    padding-right: 30px;
    /* height: 80vh; */
    display: flex;
    justify-content: center;
    /* align-items: center; */
    /* background-color: var(--main-middle-color); */
}



.row {
    display: table;
    content: "";
    clear: both;
    width: 100%;
}

.row-pad {
    margin-left: -15px;
    margin-right: -15px;
}

.col-md-6,
.col-sm-4,
.col-md-3,
.col-md-4,
.col-md-6,
.col-md-9 {
    width: 100%;
    float: left;
}

.col-xs-6 {
    width: 50%;
    float: left;
}

.col-sm-4 {
    width: 33.33%;
}


@media (min-width: 860px) {
    .col-md-9 {
        width: 75%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-3 {
        width: 25%;
    }
}

@media (min-width: 640px) {

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-6 {
        width: 50%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-4 {
        width: 33.33%;
    }
}

.col-pad {
    padding-left: 15px;
    padding-right: 15px;
}

/* BUTTONS */
.btn{
    border: none;
    background-color: #ffffff;
    color: var(--button-text);
    border-radius: 5px;
    padding: 23px 56px 20px 56px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    display: inline-block;
}

.btn:hover {
    background-color: var(--header-link);
    color: #FFF;
}

.btn-orange {
    background-color: var(--orange);
}

.btn-orange:hover{
    /* opacity: 0.7; */
    background-color: var(--main-middle-color);
}

.btn-small {
    font-size: 18px;
}



/* HEADER */

.hero-section {
    position: relative;
}

.header {
    position: fixed;
    z-index: 999999;
    padding-top: 2em;
    width: 100%;
    transition: all 0.6s;
    height: 70px;
}

.header:after {
    display: table;
    content: "";
    clear: both;
}

.header .logo, .header .main-nav {
    display: inline-block;
    float: left;
}

.header .logo img {
    max-width: 214px;
    transition: all 0.6s;
}

.header .main-nav {
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    margin-top: 26px;
}

.header .main-nav ul li{
    display: inline-block;
}

.header .main-nav ul li a {
    border-bottom: 3px solid transparent;
}

.header .main-nav ul li a:hover,
.header .main-nav ul li a.active-nav {
    border-top: 3px solid #fff;
    color: var(--text-white);
}

.header .contact-link a.active-nav{
    background-color: var(--button-collor);
    color: #000;
}

.header .main-nav ul li a{
    font-size: 16px;
    padding: 45px 0px 10px 0px;
    color: var(--header-link);
    transition: opacity 0.3s;
    font-weight: 700;
    margin-right: 70px;
}

.header .contact-link a:hover {
    background-color: var(--header-link);
    color: #FFF;
}

.header .contact-link {
    float: right;
}



.header.sticky-header {
    background-color: var(--light-red); /*#503838; rgb(33, 46, 148); */
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.36);
    transition: all 0.6s;
}

.header.sticky-header .logo img {
    max-width: 112px;
    margin-top: 14px;
    transition: all 0.6s;
}

.header.sticky-header .contact-link a:after {
    width: 26px;
    top: 1em;
    transition: all 0.6s;
}

.header.sticky-header .main-nav ul li a:hover,
.header.sticky-header .main-nav ul li a.active-nav {
    border-bottom: none;
    color: #ffffff;
}


.header .contact-link a{
    background-color: var(--button-collor);
}


/* MAIN KV */
.main-kv {
    position: relative;
    /* background-color: var(--main-middle-color); */
    background-position: center;
    height: 100vh;
}

/* .main-kv:after{
    content: '';
    background-image: url('../images/header_after.svg');
    height: 300px;
    display: block;
    width: 100%;
    margin-top: 110px;
    background-color: #f5f5f5;
    background-repeat: no-repeat;
    background-size: contain;
} */



.main-kv__center-image{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.main-kv__box{
    /* padding-top: 25vh; */
    padding: 30px;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 1;
    margin: 20px;
    /* background-color: var(--main-middle-color); */
    /* background-color: #f5f5f5; */
    /* box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2); */
}

.main-kv__box img{
    display: block;
    margin: 0 auto;
}

.main-kv__box h5{
    font-size: 12px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 23px;
    margin-bottom: 17px;
}

.main-kv__box h2{
    font-size: 44px;
    color: rgb(236, 245, 246);
    margin-top: 21px;
    font-family: "QartellaExtraBold";
}

.main-kv__box p{
    /* color: var(--text-white); */
    color: #8c8fa2;
    font-size: 16px;
    font-family: "QartellaLight";
    line-height: 1.5;
    margin-top: 25px;
}

.main-kv__box__line{
    background-color: rgb(245, 245, 245);
    height: 2px;
    width: 78px;
    margin: 0 auto;
}

.main-kv__box a{
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.about-section__top{
    background-color: #f5f5f5;
    height: 335px;
}

.about-section__top .about_section__bg-title{
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 220px;
    color: #faf9f7;
    text-shadow: 0px 40px 40px rgba(0, 0, 0, 0.05);
    margin-right: 10%;
    text-align: right;
    margin-top: 50px;
}

@media (max-width: 1050px){
    .about-section__top .about_section__bg-title{
        font-size: 180px;
    }
}

@media (max-width: 900px){
    .about-section__top .about_section__bg-title{
        font-size: 150px;
    }
}

@media (max-width: 750px){
    .about-section__top .about_section__bg-title{
        font-size: 110px;
    }
}

@media (max-width: 500px){
    .about-section__top .about_section__bg-title{
        font-size: 80px;
    }
    .wrapper-middle {
        padding: 0;
    }
    .main-kv__box {
        padding: 0;
    }
}