
:root{
    /*========== Colors ==========*/
    
    /**TEXT COLOR**/
    --p-t-c: #ffffff;
    --s-t-c : #EC192F;
    
    /**TEXT SIZE**/
    --header-text-size : 2rem;
    --header-text-size-B : 3rem;

    --Pragraph-text-size : 1.3rem;

    
    /*========== Font Family ==========*/
    /**FONT FAMILY**/
    --p-f-f : 'Poppins', sans-serif;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

img{
    max-width: 100%;
}




/* ==== Pre Loder ==== */
.wrapper {
    position: fixed;
    top: 0;
    left: 0;
    transition: 0.5s;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;    
    background: black;
    z-index: 100;    
}

.wrapper-hide{
    animation: hidee 1s forwards;
}

@keyframes hidee{
    100%{
        opacity: 0;
        visibility: hidden;
    }
}
  
.circle {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: rotate 2.5s linear infinite;
}
.circle8 {
    position: absolute;
    border-radius: 50%;
  }
  
  .c81 {
    border: 5px solid #3a86ff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    animation: 2s ease rotate2 infinite;
  }
  
  .c82 {
    width: 80px;
    height: 80px;
    border: 5px solid #ff006e;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    animation: 2s 200ms ease rotate2 infinite;
  }
  
  .c83 {
    width: 60px;
    height: 60px;
    border: 5px solid #fb5607;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    animation: 2s 500ms ease rotate2 infinite;
  }
  
  .c84 {
    width: 40px;
    height: 40px;
    border: 5px solid #80ffdb;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    animation: 2s 1s ease rotate2 infinite;
  }
  
  .c85 {
    width: 20px;
    height: 20px;
    border: 5px solid #ffbe0b;
  }
  
  @keyframes rotate2 {
    0%,
    100% {
      transform: rotate(0deg);
    }
  
    50% {
      transform: rotate(360deg);
    }
  }

/* ==== Pre Loder End ==== */




/*========== Header Start ==========*/
header{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 15px 0;
}

.logo{
    width: 50px;
}

.navbar{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 20px;
}

a{
    text-decoration: none;
    color: #fff;
}

.social-icon{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d91919;
    transition: all 0.4s;
    cursor: pointer;
    
}

.social-icon:hover{
    background: #3a86ff;
}

/*========== Header End ==========*/






/*========== Main body Start ==========*/

/*====== first-section ======*/
.first-section-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url(../Images/background-a.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 750px;
    margin-top: -90px;
    justify-content: center;
}

.bold-heading-text{
    text-align: center;
    font-size: var(--header-text-size-B);
    font-family: var(--p-f-f);
    font-weight: 600;
    color: var(--p-t-c);
    padding: 20px 0;
}

.fade-animation{
    animation: colorshowhide 2s infinite;
}

@keyframes colorshowhide{
    0%{
        color: var(--p-t-c);
    }
    50%{
        color: var(--s-t-c);
    }
    100%{
        color: var(--p-t-c);
    }
}

.under-line{
    width: 300px;
    animation: showhide 2s infinite;
}

@keyframes showhide{
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

.normal-heading-text{
    text-align: center;
    font-size: var(--header-text-size);
    font-family: var(--p-f-f);
    font-weight: bold;
    color: var(--s-t-c);
    padding: 35px 0px 10px 0px;
}

.pragraph-text{
    text-align: justify;
    text-align-last: center;
    font-size: var(--Pragraph-text-size);
    font-family: var(--p-f-f);
    font-weight: 300;
    width: 60%;
    color: var(--p-t-c);
    line-height: 2.2;
}




/*====== video-section ======*/
.video-section-wrapper{
    display: flex;
    justify-content: center;
    margin-top: -116px;
    margin-bottom: 100px;
}

.video-bg{
    padding: 30px;
    background: white;
    border-radius: 15px;
}



/*====== second section ======*/

.second-section-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url(../Images/background-b.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.second-section-wrapper .normal-heading-text{
    text-align: center;
    color: var(--p-t-c);
    padding: 80px 0px 10px 0px;
    width: 60%;
}

.text-list{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
    margin: 40px 0;
}

.li{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.li-text {
    font-size: 1.2rem;
    font-family: var(--p-f-f);
    font-weight: 400;
    color: var(--p-t-c);
}

.li-icon {
    font-size: 20px;
    padding: 8px 0;
    color: var(--s-t-c);
    transition: all 0.3s;
}
.li:hover .li-icon{
    color: #32BA7C;
}

/*====== Footer section ======*/

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 5%;
    padding: 20px 0;
    background: #8f8f8f40;
    width: 100%;
}

.copyright-section, .copyright-section a{
    font-size: 0.8rem;
    font-family: var(--p-f-f);
    font-weight: 400;
    color: var(--p-t-c);
    text-decoration: none;
}
.copyright-section a:hover{
    text-decoration: underline;
}

.email-section, .email-section a{
    font-size: 0.8rem;
    font-family: var(--p-f-f);
    font-weight: 400;
    color: var(--p-t-c);
    text-decoration: none;
    letter-spacing: 1.4px;
}
.email-section a:hover{
    text-decoration: underline;
}

/*========== Main body End ==========*/





/*========== MEDIA QUERIES ==========*/

@media screen and (max-width: 880px){
    .video-1{
        width: 600px !important;
    }
    .first-section-wrapper{
        height: 690px;
    }
    .pragraph-text{
        font-size: 1rem;
    }
}

@media screen and (max-width: 770px){
    .first-section-wrapper{
        height: 720px;
    }
    .pragraph-text{
        width: 70%;
    }
    .second-section-wrapper .normal-heading-text{
        font-size: 1.5rem;
        width: 80%;
    }
    
}

@media screen and (max-width: 670px){
    .video-1{
        width: 500px !important;
    }
    .video-section-wrapper{
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 570px){
    .video-1{
        width: 400px !important;
    }
    .video-bg{
        padding: 20px;
    }
    .video-section-wrapper{
        margin-top: -60px;
    }

    .li-text {
        font-size: 0.8rem;
    }

    .bold-heading-text{
        font-size: 2.2rem;
    }

    .under-line {
        width: 210px;
    }
    .pragraph-text{
        width: 80%;
    }

    footer {
        flex-direction: column;
        align-items: center;
        gap:15px;
    }
    .copyright-section{
        text-align: center;
    }
    .video-section-wrapper{
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 470px){
    .video-1{
        width: 300px !important;
    }
    .video-bg{
        padding: 16px;
    }
    .text-list{
        padding: 0 10px;
    }
    .video-section-wrapper{
        margin-bottom: 50px;
    }
    .logo{
        width: 40px;
    }
    
}

@media screen and (max-width: 370px){
    .video-1{
        width: 250px !important;
    }
    .video-bg{
        padding: 16px;
    }
    .video-section-wrapper{
        margin-bottom: 50px;
    }
    .text-list{
        padding: 0 10px;
    }
    .second-section-wrapper .normal-heading-text {
        font-size: 1.2rem;
    }
    .bold-heading-text {
        font-size: 1.6rem;
    }
    .normal-heading-text {
        font-size: 1.5rem;        
    }
    
}