@font-face {
    font-family: 'Impograpiko';
    src: url(fonts/Roamantic.otf);
}

*{
    margin: 0;
    padding: 0;
}

body{
    background: linear-gradient(-45deg, #00864b, #344c9c, #a6292a);
	background-size: 300% 300%;
	animation: gradient 15s ease infinite;
	height: 100vh;
    font-family: 'Impograpiko', arial;
}

.container{
    width: 100%;
    min-height: 100vh;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
    overflow: hidden;
}

/*section{
    width: 100%;
    height: 100%;
    color: #1f1f1f;
    background: radial-gradient(ellipse at right bottom, #111119 0%, #434343 100%);
}*/

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 0 89px;
    padding-left: 150px;
    z-index: 10000;
}

header ul{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 300px;
}

header ul li{
    position: relative;
    list-style: none;
    display: inline-block;
    margin-right: 30px;
}

header ul li a{
    color: #ffffff !important;
    position: relative;
    margin: 0 15px;
    text-decoration: none;
    transition: 0.5s;
    font-family: 'Impograpiko';
    font-size: 14px;
    font-weight: normal;
}

header ul li a:hover{
    color: #a3a3a3 !important;
    transition: all 0.5s ease 0s;
}

header.sticky{
    background: #1f1f1f;
}

header.sticky ul li a{
    color:rgb(255, 255, 255);
}

header.sticky ul li a:hover{
    color: #a3a3a3;
    transition: all 0.5s ease 0s;
}

/*header::after{
    content: '';
    width: 100%;
    height: 1px;
    background: white;
    position: absolute;
    top: 99px;
}*/

.logo{
    width: 120px;
    cursor: pointer;
    margin: 30px 0;
    
}

.menu-icon{
    display: none;
    width: 25px;
    cursor: pointer;
}

.row{
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 100px 0;
}

.col-1{
    flex-basis: 40%;
    position: relative;
}

.col-1 h1{
    font-size: 100px;
    margin-left: -20px;
    position: relative;
    margin-bottom: 30px;

}

.col-1 h2{
    color:rgb(241, 241, 241);
    font-size: 100px;

}

.col-1 h3{
    font-size: 30px;
    color: #dfdfdf;
    margin: 30px 0 20px;
    font-weight: normal;
}

.col-2{
    position: relative;
    flex-basis: 40%;
    display: flex;
    align-items: center;
}

.social-links-header{
    display: flex;
    font-weight: normal;
    opacity: 0.5;
    justify-content: center;
    margin: 40px 0 0px;
    color: #ffffff;
}

.social-links{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3px 0 20px;
    margin-left: -4px;
}

svg:hover{
    transform: scale(1.2);
}

svg{
    transition: all 0.5s;
    transform-origin: 50% 50%;
}

.col-2{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    height: 0;
    margin-bottom: 50px;
}

.col-2 iframe{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer{
    text-align: center;
    vertical-align: middle;
    font-size: 16px;
    font-family: Helvetica;
    background-color: rgb(207, 207, 207);
    width: 100%;
    height: 30px;
    line-height: 30px;
}

.footer a:link, a:visited{
    text-decoration: none;
    color: #1f1f1f;
}

@media only screen and (max-width:700px){
    .menu-icon{
        display: block;

    }
    header ul{
        margin: -240px;
    }
    header ul li a{
        display: none;
    }
    header{
        padding: 0 25px;
    }
    .row{
        flex-direction: column-reverse;
        margin: 50px 0;
    }
    .col-2{
        flex-basis: 100%;
        margin-bottom: 50px;
    }
    .col-1{
        flex-basis: 100%;
        text-align: center;
    }
    .col-1 h2{
        font-size: 35px;
    }
    .col-1 h3{
        line-height: 32px;
    }
    .social-links-header{
        margin-top: 50px;
        justify-content: center;
    }
    .social-links{
        justify-content: center;
    }
    .footer{
        font-size: 13px;
    }
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
