*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    font-family: 'Poppins', sans-serif;
}

/* Icons */
main{
    padding: 100px;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
  ;
  color: #F2F2F2;
}
.iconSize{
    padding:15px;
    border-radius: 15px;
}

.blue{
    background: #2d9bdbdb;
}
.blue-text{
    color:#2D9CDB ;
    text-transform: capitalize;
}
.green{
    background: #27AE60;
}
.red{
    background: #EB5757;
}

/* Navbar Start */
/*
    nav>h1{
        display:flex; 
        position: absolute;
        padding:2rem;
    }
    nav>ul{
    display: flex;
    flex-direction: row;
    flex-flow: row;
    justify-content:flex-end;
    align-items: center;
    }

    nav ul li{
        list-style: none;
        padding: 2rem;
        
    }
    nav span{
        display: flex;
        position: absolute;
        right: 50px;
        top: 35px;
        visibility: hidden;
    }
    .black{
        color: #000000;
        
    }
    .noUnderline {
        text-decoration-line: none;
    }
    .grayFonts {
        color: #333333;
    } 
*/
/* Navbar Ends */

/*  */
nav{
    display: flex;
    justify-content: space-around;
    align-items:center;
    min-height:8vh;
    background-color:#5d4954 ;
    font-family: fantasy;
    z-index: 2;
}
.logo{
    color: aliceblue;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 20px;
}
.nav-links{
    display: flex;
    justify-content: space-around;
    width: 30% ;
}
.nav-links li{
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: aliceblue;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 14px;
    
}
.burger {
    display: none;
    cursor: pointer;
}
.burger div {
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color:aliceblue;
    transition: all 0.3s ease;
}

@media screen and (max-width:1024px) {
    .nav-links{
        width: 60%;
    }
}

@media screen and (max-width:768px) {
    body{
        overflow-x: hidden;
    }
    .nav-links{
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: #5d4954;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;

    }
    .nav-links li{
        opacity: 0;
        padding: 50px;
    }
    .burger{
        display: block;
    }
}

.nav-active{
    transform: translateX(0%);
}

@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    opacity: 0;

}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}

/*  */



/* Main Starts */
.heroImage{
    width: 94%;
    border-radius: 18px;
    /* margin: 20px; */
}

.threeImages{
    display: flex;
}
.firstImage img {
height: 320px;
width: 320px;
position: relative;
top: 25%;
}
.border-rd-25{
    border-radius: 25px;
    

}
.twoImages div{
    padding: 25px 25px 0px;

}
.threeImages .twoImages{
    display: flex;
    flex-direction: column;
}
.smallProfileIcon{
    width: 50px;
    height:50px ;
    border-radius: 5px;
    position: absolute;
}
.smallProfileDetails{
    width: 300px;
    position: relative;
    left: 60px;
}
/* Main Ends */


/* mini CARDS */

.mini_card_Data{
    
}

/* mini Cards end */

/* Footer Starts */
footer{
    color: #F2F2F2;
    background: #100E1D;
}
footer section {
    display: flex;
    flex-wrap: wrap;
    /* padding: 50px; */
}
footer li{
    list-style: none;
    
}
footer li a {
    color: #ffffff;
}
footer div{
    padding: 50px 1% 50px 16%; ;
}
#email{
    overflow: auto ;
    outline: none;
    font-size: 18px;
    resize: none;
    width: 350px;
    height: 57px;
    border: none;
    padding: 20px;
position:inherit;
    border-radius:10px;
    background: #F2F2F2 ;
}
#submit{
  
    color: white;
    border: none;
    position: relative;
    width: 94px;
    right: 105px;
    padding: 13px 20px;
    font-size: 18px;    
    background: #2D9CDB;
    border-radius: 12px;
    cursor: pointer;
    /* font-size: 1.2rem; */
    margin-top: 10px;
}
.madeBy{
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center ;
    padding-bottom: 25px;
}
/* Footer Ends */
