* {
    margin: 0;
    padding: 0;
}

body {
    background: #0F2027;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #2C5364, #203A43, #0F2027);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2C5364, #203A43, #0F2027); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
    /* background-image: url(pexels-pixabay-531880.jpg); */
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}
.parent{
    overflow-x: hidden;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7vw;
    height: 80px;
    /* border: 2px solid #fff; */
}

.links {
    display: flex;
    gap: 60px;
    color: #fff;
    font-weight: 70.logo 0;
    text-transform: capitalize;
}

.logo {
    color: #ffd7d7d3;

}

.logo span:nth-child(4) {
    color: rgba(255, 0, 0, 0.612);
    transition: all 0.5s ease;
    font-weight: 880;
}

.logo span:nth-child(4):hover {
    color: red;

}

.logo span:nth-child(3):hover {
    color: rgba(255, 164, 235, 0.925);
}

span:nth-child(2):hover {
    color: rgba(201, 255, 167, 0.916);
}

.logo span:nth-child(1):hover {

    color: rgb(124, 192, 255);
    
   
}

.logo span:nth-child(1) {
    
    transition: all 0.5s ease;
}

.logo span:nth-child(2) {
    transition: all 0.5s ease;
}

.logo span:nth-child(3) {
    transition: all 0.5s ease;
}

.logo span:hover {
    filter: blur(10px) brightness(8px);
}

.logo span {
    font-weight: 550;
    cursor: pointer;
}

.links p:nth-child(1){
    color: rgba(253, 50, 50, 0.858);
    
}
.links p{
    border-bottom: 2px solid rgba(245, 222, 179, 0);
    padding: 0.3vw 0.7vw;
    transition: all 0.5s linear;
    position: relative;
    
}
.links p:hover{
    border-bottom: 2px solid rgba(255, 132, 132, 0.541);
}
.main{
    height: calc(100vh - 90px);
    /* border: 2px solid rgb(255, 255, 255); */
    display: flex;
}
.left{
    /* border: 1px solid gold; */
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.right{
    padding-top: 10vh;
    /* border: 1px solid gold; */
    width: 50%;
    height: 100%;
    color: #fff;
    text-transform: capitalize;

}
.left img{
    width: 66%;
    height: 100%;
    right: 0;
}
.right h1{
    letter-spacing: 5px;
    word-spacing: 10px;
    font-size:4vw;
    
}
.right h2{
    letter-spacing: 1px;
    word-spacing: 3.4px;
    font-size: 4vw;
}
.right p{
    margin-top: 8vh;
    width: 80%;
    font-size: 0.9vw;
    margin-bottom: 7vh;
}
.right i{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 0.1rem solid #b74b4b;
    font-size: 2rem;
    border-radius: 50%;
    margin: 2rem 1rem 2rem 1rem;
    transition: 0.3s ease;
    color: #fff;

}
.right i:hover{
    color: black;
    transform: scale(1.2) translateY(-5px);
    background-color: #b74b4b;
    box-shadow: 0 0 25px #b74b4b;
}
.right button{
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    border-radius: 4rem;
    border: 2px solid #4bb7b7;
    outline: none;
    font-size: 1.2rem ;
    color: #4bb7b5;
    letter-spacing: 0.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.5s ease;
}
.right button:hover{
    /* transform: scale3d(1.03);
    background-color: #b74b4b;
    color: black;
    box-shadow: 0 0 25px #b74b4b; */
    color: black;
    transform: scale(1.1) translateY(-5px);
    background-color: #4ba7b7;
    box-shadow: 0 0 25px #4bb7b7;
}
.right h1 span{
    color: #b74b4b;
}
.right h2 span:hover{
    color: #db4848;
}
.right h2 span{
    transition: all 0.5s ease;
}
@media (max-width:870px) {
    .left img{
        width: 90%;
    }
    .right p{
        font-size: 1.2vw;
    }
}
@media (max-width:870px){
    .main{
        flex-direction: column;
    }
    .left img{
        width: 60%;
        height: 100%;
       background:center;
    }
    .left{
        width: 100%;
    }
    .right{
        width: 100%;
        text-align: center;
        position: relative;
    }
    .right p{
        text-align: center;
        width: 50%;
        position: absolute;
        left: 25%;
        font-size: 1.4vw;
    }
    .right h1{
        font-size: 6.9vw;
    }
    .right i{
        margin-top: 24vh;
    }
}

@media (max-width:670px){
    .links i{
        display: block;
    }
    .left img{
        width: 50%;
    }
    .nav .links{
        display: none;
    }

    .right h1{
        font-size: 8.3vw;
    }
    .right h2{
        font-size: 6vw;
    }
    .right p{
     font-size: 2vw;   
    }
    .right i{
        margin-top: 35%;
    }
    .links i{
        display: block;
    }
    
}

@media (max-width:376px){
    .right p{
        width: 60%;
        left: 21%;
    }
    .right i{
        margin-top: 70%;
        width: 2.9rem;
        height: 2.9rem;
        box-sizing: border-box;
        margin-left: 4px;
    }
    .right p{
        font-size: 3.2vw;
    }
    .right h1{
        font-size: 10vw;
    }

}


.links i{
    display: none;
}
.links i{
    overflow: hidden;
    width: 50px;
}
.links i{
    font-size: 1.7vw;
    font-weight: 800;
    display: none;
}

::selection{
    background-color: #b74b4b;
}


