@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
section
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right, #01000f 0%, #01000f 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px
}
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#FF7518, #ff74187c);
    clip-path: circle(30% at right 70%);
    z-index: 0
}

section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#FF7518, #6E0607);
    clip-path: circle(20% at 10% 10%);
    z-index: 0
}

.container
{
    position: relative;
    width: calc(100% - 5px);
    min-width: calc(100vh - 280px);
    min-height: 300px;
    background: linear-gradient(to right, #ffffff7c 0%, #fafbfc31 100%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .5);
    border-top: 2px solid rgba(253, 251, 251, .788);
    border-left: 2px solid rgba(253, 251, 251, .788);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    z-index: 1
}
header
{
    position: absolute;
    top: -40px;
    right: 20px;
    left: 20px;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #ffffff7c 0%, #fafbfc31 100%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(253, 251, 251, .788);
    border-left: 2px solid rgba(253, 251, 251, .788)
}
header .logo
{
    color: #000000;
    font-weight: 700;
    text-decoration: none;
    font-size: 2.5em;
}
header ul
{
    display: flex;
}
header ul li
{
    list-style: none;
    margin: 0 10px;
}
header ul li a
{
    text-decoration: none;
    font-weight: 500;
    color: #000000;
    padding: 8px 15px;
    border-radius: 25px;
}
header ul li a:hover
{
    background: linear-gradient(to right, #ffffff7c 0%, #fafbfc31 100%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .5);
    border-top: 2px solid rgba(253, 251, 251, .788);
    border-left: 2px solid rgba(253, 251, 251, .788)
}
.content
{
    background: linear-gradient(to right, #ffffff7c 0%, #fafbfc31 100%);
    margin-bottom: 50px;
    margin-left: -100px;
    max-width: 900px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(253, 251, 251, .788);
    border-left: 2px solid rgba(253, 251, 251, .788);
    padding: 40px;
    padding-left: 110px
}
.content h2
{
    font-size: 3em;
    color: #000000;
}
.content p
{
    font-size: 1.2em;
    color: #000000;
}
.content a
{
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(to right, #ffffff7c 0%, #fafbfc31 100%);
    border-top: 2px solid rgba(253, 251, 251, .788);
    border-left: 2px solid rgba(253, 251, 251, .788);
    color: #000;
    margin-top: 20px;
    border-radius: 20px;
    font-size: 1.2em;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .5)
}
.container .content a:hover {
    transform: translateY(0px);
    opacity: 5
}
.imgBx img
{
    max-width: 400px;
    margin-bottom: 220px;
    margin-right: 100px;
    margin-left: 110px;
    animation: animate 5s linear infinite;
}
@keyframes animate
{
    0%,100%
    {
        transform: translateY(40px);
    }
    50%
    {
        transform: translateY(70px);
    }
}
.sci
{
    position: absolute;
    right: -25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.sci li
{
    list-style: none;
}
.sci li a
{
    text-decoration: none;
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, #ffffff7c 0%, #fafbfc31 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    margin: 5px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    backdrop-filter: blur(10px)
}
.sci li a img
{
    transform: scale(0.6);
    transition: 0.5s;
}
.sci li:hover a img
{
    transform: scale(0.6) rotate(360deg);
}
.copyrightText
{
    position: absolute;
    bottom: 30px;
    left: 50px;
    color: #000000;
}

@media (max-width: 1200px)
{
    .container
    {
        position: relative;
        width: calc(100% - 20px);
    }
}

@media (max-width: 992px)
{
    section
    {
        padding: 50px 10px 10px;
    }
    .container
    {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
    .container .content
    {
        transform: translateX(0px);
        max-width: 100%;
        padding: 30px;
        margin-top: -40px;
        margin-left: 7px;
    }
    header
    {
        position: relative;
        flex-direction: column;
        width: 100%;
        top: -60px;
        padding: 20px;
        right: 0;
        left: 0;
    }
    header ul
    {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    header ul li
    {
        margin: 2px;
    }
    header ul li a
    {
        display: inline-block;
    }
    .imgBx
    {
        margin-bottom: -80px;
        padding-right: 30px;
    }
    .content a
    {
        font-size: 1em;
        padding: 10px 20px;
    }
    @keyframes animate
    {
        0%,100%
        {
            transform: translateY(-20px);
        }
        50%
        {
            transform: translateY(20px);
        }
    }
    .sci
    {
        position: relative;
        flex-direction: row;
        left: 0;
    }
    .sci li a
    {
        margin: 0 10px;
    }
    .copyrightText
    {
        position:relative;
        bottom: initial;
        left:inherit;
        width: 100%;
        color: #000000;
        text-align: center;
        margin-top: 20px;
    }
}
@media (max-width : 600px)
{
    .content h2
    {
        font-size: 1.5em;
        color: #000000;
    }
    .content p
    {
        font-size: 1em;
        color: #000000;
    }
    .imgBx img
    {
        max-width: 300px;
    }
}
@media  (max-width: 599px) and (min-width: 300px) 
{
    section
    {
        padding: 75px 300px 70px;
    }
    .container
    {
        flex-direction: column;
        height: auto;
        padding: 10px;
    }
    .container .content
    {
        transform: translateX(0px);
        max-width: 100%;
        padding: 15px;
        margin-top: -20px;
        margin-left: 3.5px;
    }
    header
    {
        position: relative;
        flex-direction: column;
        width: 100%;
        top: -60px;
        padding: 20px;
        right: 0;
        left: 0;
    }
    header ul
    {
        margin-top: 5px;
        flex-wrap: wrap;
        justify-content: center;
    }
    header ul li
    {
        margin: 1px;
    }
    header ul li a
    {
        display: inline-block;
    }
    .imgBx
    {
        margin-bottom: -10px;
        padding-right: 15px;
    }
    .imgBx img
    {
        max-width: 500px;
    }
    .content a
    {
        font-size: 1em;
        padding: 5px 10px;
    }
    @keyframes animate
    {
        0%,100%
        {
            transform: translateY(-10px);
        }
        50%
        {
            transform: translateY(10px);
        }
    }
    .sci
    {
        position: relative;
        flex-direction: row;
        left: 0;
    }
    .sci li a
    {
        margin: 0 5px;
    }
    .copyrightText
    {
        position:relative;
        bottom: initial;
        left:inherit;
        width: 100%;
        color: #000000;
        text-align: center;
        margin-top: 10px;
    }
}