@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"); /* import font */
@import url('https://fonts.googleapis.com/css2?family=Tilt+Warp&display=swap');
:root{
    --white: #f9f9f9;
    --black: #36383F;
    --gray: #85888C;
} /* variables*/

/* Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: var(--white);

}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
.header{
    position: fixed;
    background-color: white;
    box-shadow: 1px 1px 5px 0px var(--gray);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
}
/* Logo */
.logo{
    display: inline-block;
    color: black;
    font-size: 60px;
    margin-left: 10px;
    width: 200px;
}
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: white;
    overflow: hidden;

}
.menu a{
    display: block;
    padding: 10px;
    margin: 20px;
    color: black;
}
    
.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}
.hamb{
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}/* Style label tag */

.hamb-line {
    background-color: black;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background-color: black;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
} 
.side-menu:checked ~ nav{
    max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}
@media (min-width: 768px) {
    .nav{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
    }
    .menu li{
        float: left;
    }
  

    .hamb{
        display: none;
    }
}

.footerlogo{
    width: 200px;
    margin: auto;
    display: block;
    align-items: center;

}
footer{
    padding-top: 10px;
    margin-top: 400px;
    align-items: center;
    text-align: center;
    background-color: white;
}
footer ul{
    
    list-style: none;
    margin-top: 20px;
    display: flex;
    text-align: center;
    justify-content: center;
}
footer ul li{
    list-style: none;
    margin: 10px;
}
.footertext{
    margin-top: 10px;
    padding: 10px;
    background-color: rgb(3, 3, 166);
    color: white;
    text-align: center;
}
.powerfultools{
    color: white;
    height: 10vh;
    width: 100%;
    background-image: linear-gradient(to right, rgb(2, 2, 68),rgb(88, 88, 255),rgb(2, 2, 68)); 
}
body {background: #eee;}
.swing {
    animation: swing ease-in-out 1s infinite alternate;
    transform-origin: center -20px;
    float:left;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}
.swing img {
    border: 5px solid #f8f8f8;
    display: block;
}
.swing:after{
    content: '';
    position: absolute;  
    width: 20px; height: 20px;  
    border: 1px solid #999;
    top: -10px; left: 50%;
    z-index: 0;
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

.swing:before{
    content: '';
    position: absolute;
    width: 5px; height: 5px;
    top: -14px;left: 54%;
    z-index: 5;
    border-radius: 50% 50%;
    background: #000;
}
 
@keyframes swing {
    0% { transform: rotate(3deg); }
    100% { transform: rotate(-3deg); }
}
.frames{
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
}
.overlay{
    background-color: orange;
    height: 1000vh;
    width: 100%;
    position: absolute;
    z-index: 200;
    animation-name: loader;
    animation-delay: 0.5s;
    animation-duration: 1.2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}



@keyframes loader {
    0%{
        height: 100vh;
    }
    100%{
        height: 0vh;
    }
}

.main-block{
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100vh;
    background-image: url("https://media.tenor.com/i0nzuUl-6wQAAAAC/background.gif");

    z-index: -100;
    height: 100vh;
    width: 100%;
    background-color: blue;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.video-section{
    margin-top: 10vh;
    padding: 100px;
    background-image: linear-gradient(to right,rgb(1, 1, 106),rgb(5, 5, 246),rgb(1, 1, 106));
}
.video-card{
    display: flex;
    margin-top: 100px;
    margin-bottom: 10px;
    justify-content: space-between;
}
.video-card-heading{
    color: yellow;
}
.video-card-desc{
    color: white;
}
.video-review-card{
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    border-color: transparent;
    border-style: solid;
    width: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.profile-pic{
    margin: 20px;
    border-radius: 100%;
    border-color: transparent;
    border-style: solid;
}
.video video{
    height: 600px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 60px;
    width: 900px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.video-content{
    margin-left: 10px;
    margin-right: 100px;
    margin-bottom: 10px;
}
.yellow-text{
    color: yellow;
    
}

.reponse{
    display: none;
}

.hero-section{
    background-color: white;
    display: flex;
}
.hero-left{
    height: 100vh;
    background-color: rgb(1, 1, 106);
    width: 30%;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.hero-right{
    margin-top: 15vh;
    transform: translateX(-140px);
    height: fit-content;
    font-weight: 800;
    width: 60%;
    display: flex;  
}
.hero-right2{
    height: 100vh;
    width: 10%;
    background-color: rgb(1, 1, 106);
    clip-path: polygon(25% 0%, 70% 0, 50% 100%, 0% 100%);
}
.blue-text{
    color: rgb(4, 4, 151);
}
.hero-heading{
    font-size: 3rem;
    font-weight: bold;
}
.hero-image-div{
    border-style: solid;
    border-color: white;
    border-width: 15px;
    border-radius: 100%;
    padding: 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.hero-image{
    width: 400px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 100%;
}
.btn{
    background-color: rgb(3, 3, 209);
    color: white;
    padding: 2px;
    margin-left: 5px;margin-right: 5px;
    border-radius: 10px;
    font-weight: 900;
}
.btn:hover{
    background-color: rgb(11, 11, 251);
}
@media only screen and (max-width: 1200px) {
    .video-section{
        padding: 20px;
        background-image: linear-gradient(to right,rgb(53, 53, 249),rgb(11, 45, 238),rgb(75, 75, 251));
    }
   .video-content {
       display: none;
    }
    .video video{
        width: 100%;
        height: fit-content;
        margin-left: 0px;
    }
    .reponse{
        display: block;
    }
  }