@font-face {
    font-family: "ubuntu123";
    src:
    local("Ubuntu"),
    url("/assets/Ubuntu-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "ubuntu123";
    src:
    local("Ubuntu"),
    url("/assets/Ubuntu-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}
*{
    margin: 0;
    padding: 0;
    font-family: 'ubuntu123', sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background: whitesmoke;
    color: #3A6073;
    font-size: 20px;
}
h1{
    font-size: 60px;
}
h2{
    font-size: 48px;
}
h3{
    font-size: 28px;
}

.container{
    padding: 10px 10%;
}
.rounded-border{
    border-radius: 0 0 60px 0;
}
.rounded-border2{
    border-radius: 60px 0 0 0;
}
.bold{
    font-weight: bold;
}
.text-bottom-margin{
    margin-bottom: 10px;
}
a{
    text-decoration: none;
}
.no-margin-bottom{
    margin-bottom: 0 !important;
}

/* ==============
   HEADER-SECTION 
   ============== */
#header{
    width: 100%;
    height: 600px;
    background: #3A6073;
    background: linear-gradient(to right, #3A6073 0%, #17374D 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.col-left{
    flex-basis: 50%;
    padding-right: 40px;
}
.col-left h1{
    font-size: 60px;
    text-align: right;
    color: whitesmoke;
}
.col-right{
    flex-basis: 50%;
    margin-bottom: -10px;
    margin-top: auto;
    padding-left: 40px;
}
.col-right img{
    max-width: 800px;
    height: auto;
    padding-right: 60px;
}

/* =============
   ABOUT-SECTION 
   ============= */
#about{
    padding: 20px 0;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-col-left{
    flex-basis: 50%;
    margin-top: auto;
    margin-bottom: auto;
}
.about-col-left h2{
    text-align: right;
    padding-right: 40px;
}
.about-col-right{
    flex-basis: 50%;
    margin-top: auto;
    margin-bottom: auto;
}
.about-col-right p{
    padding-left: 40px;
}

/* ===============
   SOCIALS-SECTION 
   =============== */
#socials{
    padding: 60px 0;
    background: #DEDEDE;
}
.row2{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.socials-col-left{
    flex-basis: 50%;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 0;
}
.socials-col-right{
    flex-basis: 50%;
    margin-top: auto;
    margin-bottom: auto;
    padding-left: 40px;
}
.socials-col-right h2{
    text-align: left;
}
.socials-card{
    background: #3A6073;
    background: linear-gradient(to right, #3A6073 0%, #17374D 100%);
    display: flex;
    justify-content:  flex-start;
    align-items: center;
    padding: 0;
    width: 250px;
    margin-left: auto;
    margin-right: 40px;
    margin-bottom: 20px;
}
.socials-card img{
    width: 36px;
    height: 36px;
    margin: 10px;
    padding-top: 4px;
}
.socials-card h3{
    color: whitesmoke;
    font-weight: normal;
    margin-left: 10px;
}

/* ==============
   FOOTER-SECTION 
   ============== */
.footer-row{
    background: #3A6073;
    background: linear-gradient(to right, #3A6073 0%, #17374D 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-row p{
    color: whitesmoke;
    padding: 10px
}


/* =============
   MEDIA-QUERIES 
   ============= */
@media screen and (max-width:740px){
body{
    font-size: 18px;
}
#header{
    height: 400px;
    flex-direction: column;
}
.col-left{
    padding-right: 0px;
    margin-top: 40px;
}
.col-left h1{
    font-size: 50px;
    color: whitesmoke;
}
.col-right img{
    max-width: 400px;
}
.scroll-down img{
    display: none;
}
#about{
    padding: 20px 0;
}
.row{
    flex-direction: column;
}
.about-col-left h2{
    text-align: left;
    margin-bottom: 10px;
    font-size: 30px;
}
.about-col-right p{
    padding-left: 0px;
}
#socials{
    padding: 20px 0;
}
.row2{
    flex-direction: column-reverse;
}
.socials-col-left{
    flex-basis: 50%;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 0;
}
.socials-col-right{
    padding-left: 0px;
}
.socials-col-right h2{
    text-align: left;
    margin-bottom: 10px;
    font-size: 30px;
}
.socials-col-right p{
    margin-bottom: 20px;
}
.socials-card{
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
}
.socials-card h3{
    font-weight: normal;
    font-size: 30px;
}
.footer-row{
    background: #3A6073;
    background: linear-gradient(to right, #3A6073 0%, #17374D 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}
}