*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
}
.container{
    max-width: 1280px;
    width: 100%;  
    margin: 0 auto;
    padding: 0px 20px;   
}

.row{
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
    margin: 0px -20px;
}
header {
    background: #fff;
    position: sticky;
    top: 0;
    left: 0;
    padding: 11px 0px;
    width: 100%;
    z-index: 9999;
}

header a {
    margin: 0 auto;
    display: block;
}
header a > img{
    max-width: 140px;
    width: 100%;
}
section.hero::after {
    position: absolute;
    content: "";
    background: #00000042;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.hero {
    background-image: url("images/Tat.svg");
    background-size: cover;
    background-position: top -50px center;
    background-repeat: no-repeat;
    width: 100%;
    height: calc(100vh - 117px);
    max-width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.hero .hero-text{
    z-index: 1;
    margin: auto;
} 

.hero .hero-text h3{
    font-family: sans-serif;
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
    line-height: 100%;
    padding-top: 100px;
}

.hero .hero-text h2{
    font-family: cursive;
    font-size: 30px;
    color: #ffffff;
    font-weight: 500;
    font-style: bold;
    text-align: center;
    padding-top: 30px;
}

.hero .hero-text h1{
    font-family: cursive;
    font-size: 55px;
    color: #ffffff;
    font-weight: 700;
    font-style: bold;
    text-align: center;
    padding-top: 30px;
}

.hero .hero-text p{
    font-family: sans-serif;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    padding-top: 30px;
    margin-top: auto;
}

@media screen and (max-width: 767px){
    header a > img {
    max-width: 80px;
}
header {
    padding: 7px 0px;
}
section.hero {
    height: 420px;
    background-position: top center;
    align-items: end;
    padding-bottom: 50px;
}
.hero .hero-text h2 {
    font-size: 20px;
    padding-top: 15px;
    line-height: 26px;
}
.hero .hero-text p {
    font-size: 16px;
    padding: 15px 0px 0px;
}
.container {
    max-width: 100% !important;
}
.hero .hero-text h3 {
    padding: 0px;
    font-size: 18px;
}
.hero .hero-text h1 {
    font-size: 35px;
    padding: 15px 0px 0px;
}
}

