/*--- Fonts ---*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
/*--- Reset CSS ---*/
:root{
    --background-color:#111222;
    --default-font-color:#fff;
    --accent-color: #5292C6;

}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--default-font-color);
    -webkit-font-smoothing: antialiased;
    background-color: var(--background-color);
    background-repeat: no-repeat;
    background-size: cover;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

hr{
    display: block;
    width: 100%;
    height: 1px;
    margin: 40px 0;

    border: 0;
    background-color: #e5e5e5;
}

p {
    margin: 0 0 10px;

}

button{
    display: block;
    margin: 0;
    padding: 0;
    background: none;
    border: 0;
}

::selection {
    background: var(--accent-color);
    color: #fff;
}

::-moz-selection {
    background: var(--accent-color);
    color: #fff;
}

::-webkit-selection {
    background: var(--accent-color);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 0px;
}

a {
    text-decoration: none;
    font-size: inherit;
    color: inherit;
}

/*--- Container ---*/
.container{
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/*--- Section ---*/
section{
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 100px;
    color: var(--default-font-color);
}

.section-title{
    font-size: 3em;
    margin-bottom: 80px;
}

.main-title{
    font-size: 4em;
    margin-bottom: 50px;
}

.content{
    position: relative;
    width: 1150px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content .image{
    position: relative;
    width: 800px;
    height: 400px;
    overflow: hidden;
}

.content .image img{
    z-index: 111;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.content .text-box{
    z-index: 222;
    background-color: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 40px;
    max-width: 400px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    transform: translate(-80px, 50px)
}

.content .text-box h3{
    font-size: 2em;
    margin-bottom: 15px;
}

.content .text-box p{
    line-height: 1.4;
}

/*--- Icons ---*/
.media-icons{
    margin-top: 100px;
}

.media-icons a{
    color: var(--default-font-color);
    font-size: 2em;
    margin: 60px;
}

.info-title{
    font-size: 1.8em;
    margin-bottom: 10px;
}

.info{
    width: 700px;
    margin-left: 50px;
}

.media-info{
    width: 400px;
    margin-left: 50px;
}

.media-info li{
    list-style: none;
    font-size: 1.4em;
}

.media-info li:not(:last-child){
    margin-bottom: 50px;
}

.media-info li:nth-child(1), .media-info li:nth-child(5){
    padding-left: 100px;
}

.media-info li:nth-child(2), .media-info li:nth-child(4){
    padding-left: 50px;
}

.media-info li a{
    font-weight: 300;
    color: var(--default-font-color);
    text-decoration: none;
}

.sec-03{
    margin-bottom: 100px;
}
