@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* background: #000; */
    font-family: Georgia, 'Times New Roman', Times, serif;
}

section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(rgb(54, 33, 33), rgb(70, 78, 72), rgb(226, 126, 126));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff2562;
    clip-path: circle(50% at 93% 49%);
    animation: fade 0.5s ease-in forwards;
    animation-delay: 1s;
    opacity: 0;
}

section .content {
    position: relative;
    padding: 100px 50px 100px 150px;
    box-sizing: border-box;
    animation: left-in 0.5s ease-in forwards;
    animation-delay: 0.2s;
    opacity: 1;
    /* border-left: 2px solid #fff; */
}

.content h2 {
    color: #fff;
    font: 3rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.content p {
    padding-top: 20px;
    color: #fff;
    font: 1.5rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.content a {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    background-color: rgba(0, 255, 255, 0.712);
    text-decoration: none;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.imgBox {
    position: relative;
    padding-right: 300px;
    animation: fade 0.5s ease-in forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

.imgBox img {
    max-width: 500px;
}

.social {
    position: absolute;
    bottom: 75px;
    left: 159px;
    display: flex;
    animation: left-in 0.5s ease-in forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.social li {
    list-style: none;
}

.social li a {
    text-decoration: none;
    color: #fff;
    margin-right: 30px;
    font-size: 2em;
    padding: 2px;
    
}

.social li a:hover {
    font-size: 2.1em;
    color: rgb(35, 78, 207);
}

.nav {
    position: absolute;
    top: 51px;
    left: 150px;
    display: flex;
    border-left: 4px solid red;
    padding-left: 22px;
    animation: left-in 0.5s ease-in forwards;
    animation-delay: 0s;
    opacity: 0;
}

.nav li {
    list-style: none;
}

.nav li a {
    text-decoration: none;
    color: #fff;
    margin-right: 30px;
    font-size: 1em;
    padding: 2px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav li a.active {
    color: rgb(206, 75, 75);
}

.nav li a:hover {
    /* font-size: 1.2em; */
    color: rgb(206, 75, 75);
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes left-in {
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@media (max-width:881px) {
    .menuicon {
        position: fixed;
        top: 40px;
        width: 30px;
        height: 30px;
        right: 76px;
        background: url(/img/menu.png);
        filter: invert(1);
        background-size: 30px;
        background-repeat: no-repeat;
        z-index: 1000;
        cursor: pointer;
    }
    .menuicon.active {
        position: fixed;
        top: 40px;
        width: 41px;
        height: 33px;
        right: 76px;
        ;
        background: url(/img/close.png);
        filter: invert(1);
        background-size: 30px;
        background-repeat: no-repeat;
        z-index: 1000;
        cursor: pointer;
    }
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .95);
        z-index: 11;
        border: none;
        padding: 50px;
        flex-direction: column;
    }
    .nav.active {
        left: 0;
    }
    .nav li {
        margin: 5px 0;
    }
    section {
        flex-direction: column-reverse;
        justify-content: center;
        /* align-items: center; */
    }
    section::before {
        clip-path: circle(50% at 76% 13%);
    }
    section .content {
        padding: 50px;
        margin-bottom: 30px;
        
    }
    section .content h2{
        font-size: 1.5em;

    }
    section .content p{
        font-size: 1.2em;

    }
    section .content a{
        font-size: 0.9em;
        padding: 15px 30px;

    }
    section .imgBox{
      max-width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding-right: 0;
      margin-top: 20px;
    }
    section .imgBox img{
      max-width: 200px;

    }
    .social{
    left: 50px;
    bottom: 20px;
    
 
}
}