:root{
    --blue: #4154ff;
    --red: #ff414b;
}
.row{
    .social{
        position:fixed;
        right: 0;
        bottom: 10%;
        width: 150px;
        height: 150px;
        /* border: 1px solid red; */
        >figure{
            width: 100%;
            height: 90%;
            >img{
                width: 100%;
                height: 100%;
                border-radius: 97px 159px 104px 165px;
            }
        }
        >a{
            width: 28px;
            height: 28px;
            margin: 8px;
            >img{
                width: 28px;
                height: 28px;
                border-radius: 50%;
       
            
            }
        }
    }
    header{
        width: 100%;
        height: 100px;
       
        .row{
            &:first-child{
                height: 18px;
                background-color: rgba(0, 0, 0, 0.798);
                justify-content: center;
                >span{
                    color: white;
                    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
                }
            }
            &:last-child{
                height: 82px;
                background-color: rgb(0, 0, 0);
                
                figure{
                    width: 20%;
                    >img{
                        width: 90%;
                        height: 100%;
                        margin-left: 27px;
                    }
                }
                nav{
                    width: 60%;
                    
                    >ul{
                        width: 100%;
                        
                        display: flex;
                        justify-content: flex-end;
                        position: relative;
                        >li{
                            display: flex;
                            align-items: center;
                            margin: 0 20px;
                            
                            &:hover{
                                >ul{
                                    height: 230px;
                                }
                            }
                          
                            >a{
                                font-size: 20px;
                                font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
                                color: rgba(240, 248, 255, 0.738);
                                transition: .5s;
                                &:hover{
                                    color: aliceblue;
                                    transform: scale(1.2);
                                }
                            }
                           
                        }
                        >.megamenu{
                          >ul{
                            width: 100%;
                            height: 0;
                            overflow: hidden;
                            flex-wrap: wrap;
                            background-color: #000000f1;
                            position: absolute;
                            top: 80px;left: 0;
                            transition: 1s;
                           
                           >li{
                            /* background-color: rgb(184, 115, 115); */
                            display: flex;
                            justify-content: space-between;
                            flex-wrap: wrap;
                            height: 100%;
                            width: 100%;
                            >ul{
                                width: 33%;
                                padding: 5px;
                                border-right: 1px solid rgba(255, 255, 255, 0.415);

                                >li{
                                    width: 100%;
                                    height: 25%;
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                    /* margin-right: 10px; */
                                    &:hover{
                                        background-color: #ffffff35;
                                        >a{
                                            color: white;
                                            transform:scale(1.2);
                                        }
                                    }
                                    >a{
                                        color: rgba(255, 255, 255, 0.636);
                                        line-height: 30px;
                                        font-size: 20px;
                                       width: 80%;
                                       transition: .5s;
                                      
                                        
                                    }
                                }
                                
                                
                                
                            }
                           }
                          }
                        }
                    }
                }
                div{
                    width: 20%;
                    /* border: 1px solid red; */
                    display: flex;
                    justify-content:space-evenly;
                    align-items: center;
                    >input{
                        width: 150px;
                        height: 45px;
                        font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;    
                        background-color: var(--blue);
                        color: aliceblue;
                        border: none;
                        border-radius: 20px;
                        transition: .5s;
                        &:hover{
                            background-color: rgba(255, 99, 71, 0.595);
                            box-shadow: 0 0 15px rgba(253, 253, 253, 0.786);
                        }
                    }
                    >span{
                        color: aliceblue;
                        font-size: 27px;
                        cursor: pointer;
                    }
                }
            }
        }
       
    }
    section{  
       width: 100%;
       height: 90vh;
        background-image: url(../img/bgimg.jpg);
        background-size: cover;
        display: flex;
        align-items: center;
        >.row{
            >div{
                width: 80%;
                min-height: 100px;
                /* border: 1px solid wheat; */
                margin-left: 76px;

                >*{
                    /* border:1px solid red; */
                    /* color: aliceblue; */
                    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
                    padding: 25px;
                }
                >h3{
                    color: var(--red);
                    font-size: 20px;
                    /* transition: .5s;
                    &:hover{
                        transform: scale(1.1);
                    } */
                }
                >h1{
                    color: hsl(0, 0%, 97%);
                    font-size: 70px;
                    text-shadow:  0 0 10px #ff414b,
                    0 0 15px #ff414b;
                }
                >p{
                    color: rgba(240, 248, 255, 0.804);
                    font-size: 18px;

                }
                >input{
                    border-radius: 50px;
                    /* height: 50px; */
                    border: none;
                    color: aliceblue;
                    font-size: 18px;
                    transition: .5s;
                    
                    
                    &:nth-of-type(1){
                       background-color: var(--blue);
                       width: 270px;
                       margin-right:30px;
                       &:hover{
                        background-color: #ff414b9c;
                        box-shadow: 0 0 15px rgba(255, 255, 255, 0.691);
                        scale: 1.1;
                       }
                    }
                    &:nth-of-type(2){
                       background-color: var(--red);
                       width: 200px;
                       &:hover{
                        background-color: #4154ffa1;
                        box-shadow: 0 0 15px rgba(255, 255, 255, 0.691);
                        scale: 1.1;
                       }
                    }
                }
            }
        }
    }
    article{
        background-image: linear-gradient(140deg, #4154ff ,#ff414b);
        width: 100%;
        min-height: 200px;
        /* border: 1px solid rgb(73, 172, 49); */
        .row{
            &:nth-child(1){
                /* border: 1px solid rgb(54, 121, 183); */
                justify-content: space-evenly;
                
                >figure{
                    width: 355px;
                    height: 400px;
                    /* border: 1px solid black; */
                    margin-top: -70px;
                    border-radius: 0 90px;
                    box-shadow: 0 0 10px rgba(0, 0, 0, 0.71);
                    transition: .5s;
                    cursor: pointer;
                    &:hover{
                        box-shadow: 0 0 15px rgba(228, 228, 228, 0.617);
                        scale: 1.05;
                    }
                    >*{
                        width: 100%;

                    }
                    >img{
                        height: 80%;
                        object-fit: cover;
                        border-radius: 0 90px 0 0;

                    }
                    >figcaption{
                        margin-top: -5px;
                        height: 20%;
                        background-color: rgba(12, 12, 12, 0.885);
                        border-radius: 0 0 0 90px;
                        display: flex;
                        align-items: center;
                        flex-wrap: wrap;
                        >strong{
                            /* border:1px solid #ff414b; */
                            width: 100%;
                            display: flex;
                            justify-content: center;
                            &:nth-of-type(1){
                                font-size: 28px;
                                color: aliceblue;
                            }
                            &:nth-of-type(2){
                                font-size: 20px;
                                color: rgb(214, 208, 6);
                            }

                        }
                       
                        

                    }
                }
            }
            &:nth-child(2){
                /* border: 1px solid rgb(185, 11, 11); */
                width: 100%;
                height: 570px;
                justify-content: center;
                align-items: center;
                font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
                >p{
                    width: 60%;
                    min-height: 30%;
                    /* background-color: black; */
                    color: white;
                    font-size: 35px;
                    line-height: 65px;
                    text-align: center;
                    
                }
                >span{
                    width: 100%;
                    height: 50px;
                    /* border: 1px solid red; */
                    margin-top: -20%; 
                    cursor: pointer;
                         
                    >img{
                        width: 60px;
                        height: 60px;
                        object-fit: cover;
                        border-radius: 50%;
                        color: white;
                        box-shadow: 0 0 10px black;
                        /* border: 1px solid black; */
                        margin: 10px;
                        transition: .5s;
                        &:hover{
                            scale: 1.09;
                        }

                    }
                }
            }
        }
    }
    .sport{
        width: 100%;
        min-height: 200px;
        /* background-color: aqua; */
        >.row{
            >figure{
                /* border: 1px solid red; */
                width: 50%;
                >img{
                    width: 96%;
                    height: 650px;
                    object-fit: cover;
                    border-radius:0 50px 0 50px;
                    box-shadow: 0 0 10px black;
                    margin-top: -80px;
                }
            }
            >.para{
                width: 50%;
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                align-content: center;
                >*{
                    /* border: 1px solid rgb(32, 27, 27); */
                    width: 90%;
                    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
                    margin: 18px 18px 13px 45px;
                }
                >h3{
                    font-size: 35px;
                    color: var(--blue);
                }
                >h2{
                    font-size: 60px;
                    text-shadow:  0 0 10px #4154ff,
                    0 0 15px cyan;
                }
                >p{
                    font-size: 22px;
                    color: rgba(0, 0, 0, 0.514);
                }
                >input{
                    width: 250px;
                    height: 45px;
                    font-size: 20px;
                    color: aliceblue;
                    background-color: var(--red);
                    border: none;
                    border-radius: 50px;
                    box-shadow:0 0 10px black;
                    margin-left: 60px;
                    transition: .5s;
                    &:hover{
                        background-color: #ff414beb;
                        box-shadow: 0 0 15px rgba(64, 62, 62, 0.691);
                        scale: 1.1;
                       }

                }
            }
        }
    }
    .crossfit{
        background-image: url(../img/banner14@2x\ \(1\).jpg);
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 70vh;
        margin-top: 80px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        >.row{
            justify-content: center;
            >.rb{
                width: 60%;
                height: 100%;
                /* background-color: black; */
                *{
                    /* border: 1px solid red; */
                    color: white;
                    /* width: 100%; */
                    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
                    margin: 30px;
                    
                }
                >h4{
                    color: yellow;
                    font-size: 30px;
                    margin-left: 270px;

                }
                >h3{
                    font-size: 50px;
                    margin-left: 100px;
                }
                >span{
                    font-size: 25px;
                    margin-left: 300px;
                    cursor: pointer;

                }
            }
            
        }

    }
    footer{
        width: 100%;
        height: 95vh;
        background-color: #181818eb;
        >.row{
            &:nth-of-type(1){
                width: 100%;
                height: 90%;
                border-bottom: 2px solid rgba(92, 92, 92, 0.291);
                display: flex;
                justify-content: space-evenly;
                align-items: center;
                >div{
                    width: 400px;
                    height: 370px;
                    /* border: 1px solid white; */
                    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
                    color: aliceblue;
                    border-right: 1px solid rgba(255, 255, 255, 0.17);
                    text-align: center;
                    &:nth-of-type(1){
                        *{
                            margin: 10px;
                        }
                        >p{
                            font-size: 18px;
                            color: rgba(240, 248, 255, 0.478);
                            line-height: 30px;
                        }

                    }
                    &:nth-of-type(2){
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-wrap: wrap;
                        line-height: 40px;
                        >h4{
                            width: 100%;
                            font-size: 20px;

                        }
                        >a{
                            /* border: 1px solid red; */
                            width: 100%;
                            color: rgba(255, 255, 255, 0.573);
                            &:hover{
                                color: var(--blue);
                            }
                        }

                    }
                    &:nth-of-type(3){

                    
                        >*{width: 100%;
                            margin: 18px;
                        /* border: 1px solid red; */
                    }
                        >h5{
                            font-size: 20px;
                        }
                        >address{
                            color: rgba(255, 255, 255, 0.606);
                        }
                        >p{
                            line-height: 30px;
                            color: rgba(255, 255, 255, 0.606);
                        }

                    }

                }
            }
            &:nth-of-type(2){
                display: flex;
                justify-content: center;
                >strong{
                    color: rgba(255, 255, 255, 0.485);
                    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
                    margin-top: 20px;
                }
            }
        }
    }

}