*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-family: 'Raleway', sans-serif;
    scroll-behavior: smooth;
    text-decoration: none;
    list-style: None;
}
/* --bg-color: #09205E*/
/* --bg-color: #162755*/
/* --main-color: #17DBAE; */
/* Second: #241c34 */
:root{
    --bg-color: #201f35;
    --second-bg-color: #1d1c30;
    --text-color: #fff;
    --second-color: #ccc;
    /* --main-color: #ff4d05; */
    --main-color: #ff4c43;
    --big-font: 5rem;
    --h2-font: 3rem;
    --p-font: 1.1rem;

}

body{
    background: var(--bg-color);
    color: var(--text-color);
}
header{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 22px 15%;
    border-bottom: 1px solid transparent ;
    transition: all .50s ease;
}
.logo{
    color: var(--text-color);
    font-family: "Raleway";
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 1px;
}
span{
    color: var(--main-color);
}
.navlist{
    display: flex;
}
.navlist a{
    font-family: 'Raleway' ;
    color: var(--second-color);
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    margin: 0 25px;
    transition: all .45s ease;
}
.navlist a:hover{
    color: var(--main-color);
}
.navlist a.active{
    color: var(--main-color);
}
/* will be hidden but when flexed under shrinking width will pop up */
#menu-icon{
    font-family: 'poppins' ;
    color: var(--text-color);
    font-size: 35px;
    z-index: 10001;
    cursor: pointer;
    margin-left: 25px;
    display: none;
}
section{
    padding: 160px 15% 120px;
}
.home{
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url(../assets/img/rocketPic.jpeg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.slide{
    margin-bottom: 20px;
}
.IntroTwo{
    display: inline-block;
    height: 32px;
    font-size: 20px;
    font-weight: 500;
}

.home-text h1{
    font-family: "Raleway";
    font-size: var(--big-font);
    font-weight: 700;
    color: var(--text-color);
    list-style: 1.1;
    margin: 0 0 8px;
}
.home-text h3{
    font-family: "Raleway";
    color: var(--text-color);
    margin: 0 0 35px;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.1;
}
.home-text p{
    color: var(--second-color);
    font-size: var(--p-font);
    line-height: 1.8;
    margin-bottom: 40px;
}
.button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
}
.btn1{
    display: inline-block;
    padding: 12px 28px;
    background: var(--main-color);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all .45s ease;
}
.btn1:hover{
    transform: scale(0.9);
}
/* begin of Scroll button*/
container{
    display: inline-flex;
    align-items: center;
}
.scroll-down {
    height: 50px;
    width: 30px;
    border: 2px solid black;
    position: absolute;
    left: 50%;
    bottom: 20px;
    border-radius: 50px;
    cursor: pointer;
  }
  .scroll-down::before,
  .scroll-down::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    height: 10px;
    width: 10px;
    transform: translate(-50%, -100%) rotate(45deg);
    border: 2px solid black;
    border-top: transparent;
    border-left: transparent;
    animation: scroll-down 1s ease-in-out infinite;
  }
  .scroll-down::before {
    top: 30%;
    animation-delay: 0.3s;
    /* animation: scroll-down 1s ease-in-out infinite; */
  }
  
  @keyframes scroll-down {
    0% {
      /* top:20%; */
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    60% {
      opacity: 1;
    }
    100% {
      top: 90%;
      opacity: 0;
    }
  }
  /* end of scroll button */

header.sticky{
    background: var(--bg-color);
    border-bottom: 1px solid #ffffff1a;
    padding: 12px 15% ;
}
.about{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 1.5rem;
}
.about-img img{
    max-width: 530px;
    height: auto;
    width: 100%;
    border-radius: 8px;
}
.about-text h2{
    font-family: "Raleway";
    font-size: var(--h2-font);
    line-height: 1;
}
.about-text h4{
    font-family: "Raleway";
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.7;
    margin: 15px 0 30px;  
}
.about-text p{
    font-family: "Raleway";
    color: var(--second-color);
    font-size: var(--p-font);
    line-height: 1.8;
    margin-bottom: 4rem;
}

.experience{
    background: var(--second-bg-color)
}
.main-text{
    text-align: center;
    margin-top: 5rem;
}
.main-text-2{
    text-align: center;
    margin-top: 5rem;
}
.main-text p{
    color: var(--second-color);
    font-size: 15;
    margin-bottom: 15;
}
.main-text h2{
    font-size: var(--h2-font);
    line-height: 1;
}
.experience-content{
    display: grid;
    grid-template-rows: auto;
    align-items: center;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.box{
    background: var(--bg-color);
    padding: 35px 55px;
    /* borderrad was 8px */
    border-radius: 8px; 
    transition: all .45s ease;
}
/* s or e icons */
.box h3{
    font-family: "Raleway";
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}
.box p{
    font-family: "Raleway";
    color: var(--second-color);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}
.read{
    display: inline-block;
    padding:8px 18px;
    background: var(--main-color);
    color:var(--second-color);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all .45s ease;
}
.read:hover{
    letter-spacing: 1px;
    background: #e6443c;
    color: var(--text-color);
}
.box:hover{
    transform: translateY(-8px);
    cursor: pointer;
}


.contact-icons i{
    height:45px;
    width: 45px;
    color: var(--text-color);
    background: var(--bg-color);
    font-size: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 15px;
    transition: all .50s ease;
}


/* Modal content */
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: var(--second-bg-color);
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
  .close {
    color: var(--main-color);
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
  }
/* modal content ends */