


/* home */
.section-intro{
    background-size: cover;
    border-radius: 5px;
    width: 100%;
    aspect-ratio: 16/9;
    background-image: linear-gradient(to bottom , rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url("Resources/1.jpeg");

    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}


.section-text{
    color: #fff;
    font-family: var(--ff-primary);
    opacity: 0;

    margin-bottom: -50%;
    font-size: .5rem;
    animation: showtext 1s ease-in-out 2s forwards,hideslide 400ms ease-in-out forwards 7s;
}
.contact-btn,
.ask-btn{
    opacity: 0;
    margin-right: -100px;
}
.contact-btn{
    animation: showbuttons 1s ease-in-out forwards 2.9s,
               hideslide 400ms ease-in-out forwards 7s;
}
.ask-btn{
    animation: showbuttons 1s ease-in-out forwards 3s,
               hideslide 400ms ease-in-out forwards 7s;
}
.loadingBar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: #c1c1c1;
    animation: loadingAnimation 7s linear infinite;
}



/* call to action */
.cta{
    margin: 1.5rem auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta-btn{
      border: none;
}
.aside-text{
    color: #00ffaa;
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    text-shadow: var(--bs);
    margin-top: -10px;
}

/* animations */
@keyframes showtext{

    0%{
        margin-bottom: -50%;
        font-size: .5rem;
        opacity: 0;
    }
    50%{
        margin-bottom: 5%;
        font-size: 2.3rem;
        opacity: .75;
    }
    100%{
        margin-bottom: 0%;
        font-size: 2rem;
        opacity: 1;
    }
}

@keyframes showbuttons{
    0%{
        opacity: 0;
        margin-right: -100px;
    }
    50%{
        margin-right: 20px;
        opacity: .75;
    }
    100%{
        margin-right: 0;
        opacity: 1;
    }
}

@keyframes hideslide{
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(0.2);
        opacity: 0;
        display: none;
        pointer-events: none;
    }
}


@keyframes changebackground{
    20%{
        background: #0A154E;
    }
    40%{
        background: #0A154E;
    }
    80%{
        background: #0A154E;
    }
    100%{
        background-image: linear-gradient(to bottom , rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Resources/6.png');
    }
}

@keyframes loadingAnimation {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }



/* 
about */
.about{
    color: #e9e9e9;
    background-color: #3446A1;
   text-align: center;
   padding: 1em ;
}
.about-title{
    font-family: var(--ff-secondary);
}
.about-text{
    font-family: var(--ff-primary);
    font-size: .9rem;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 1px;
}
.about-title-Desktop{
    display: none;
}


/* corporate-strategy */
.cs-section{
    display: flex;
    align-items: end;
}
.cs-section1{
    background: rgba(0, 0, 0,.5);
    background-image: url(Resources/9.png);
    background-blend-mode: multiply;
    aspect-ratio: 1/1;
    background-size: cover;
    object-fit: cover;
}
.cs-section2{
    background: rgba(0, 0, 0,.5);
    background-image: url(Resources/10.png);
    background-blend-mode: multiply;
    aspect-ratio: 1/1;
    background-size: cover;
    object-fit: cover;
}
.cs-section3{
    background: rgba(0, 0, 0,.5);
    background-image: url(Resources/11.png);
    background-blend-mode: multiply;
    aspect-ratio: 1/1;
    background-size: cover;
    object-fit: cover;
}

.cs-img__text{
    text-align: center;
    font-family: var(--ff-primary);
    text-shadow: var(--bs);
    padding: 1.5em;
    bottom: 0;
}
.cs-img__title{
    font-family: var(--ff-secondary);
    color: #cfcfcf;
    font-size: 1.75rem;
    margin: 0;
}
.cs-img__text p{
    letter-spacing: 2px;
    color: var(--cl-white);
}



/* products and services */

.products{
    text-align: center;
    margin: 5em 0;
}
.products-title{
    font-family: var(--ff-secondary);
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--cl-green);
    margin-bottom: 2em;
}
.product-links{
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
}
.product-nav{
    width: 100%;
    text-align: left;
}
.product-item{
    margin-top: 20px;
}
.product-link{
    color: var(--cl-green);
    font-family:var(--ff-primary) ;
    font-size: 1.2rem;
}
.call-to-action{
    display: flex;
    margin-top: 50px;
}
.cta-section{
    width: 100%;
}
.cta-link{
    color: var(--cl-green);
    font-family: var(--ff-primary);
}

.products-splitter{
    display: none;
}


/* Testimonials */
.testimonials{
    text-align: center;
    margin-top: 50px;
    background: #3446a21a;
    padding: .5em;
}
.testimonial-title{
    font-family: var(--ff-primary);
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #171616;
}

.client-name{
    color: var(--cl-green);
    font-family: var(--ff-primary);
}
.client-text{
    font-family: var(--ff-primary);
    letter-spacing: 1px;
}

/* contact-us */
.contact-title__desktopView{
    display: none;
}
.contacts{
    /* text-align: center; */
    background: var(--cl-blue);
    padding: .5em;
}
.contact-title{
    font-family: var(--ff-secondary);
    color: #cfcfcf;
    font-size: 1.75rem;
}
.contact-text{
    font-family: var(--ff-primary);
    letter-spacing: 1px;
    color: #f1e8e8;
    font-size: .9rem;
    font-weight: 100;
    text-align: left;
    margin-right: 20px;
}
.Google-map{
    width: 100%;
    height: 200px;
    border-radius: 10px;
    box-shadow: var(--bs);
    margin-bottom: 30px;
}
/* Form */
.form{
    margin: 3em 0;
}
.form-input{
    display: block;
    margin-bottom: 1em;
    background: #d7d7d7;
    border: none;
    border-radius: 2px;
    width: 90%;
    padding: .3em;
    font-family: var(--ff-primary);
}
.form label{
    font-family: var(--ff-primary);
    color: #e7e7e7;
}
.form-cbtn{
    width: 90%;
    text-align: center;
}
.form-btn{
    color: var(--cl-blue);
    background: #e7e7e7;
    border: none;
    border-radius: 5px;
    padding: .4em .8em;
    font-weight: 600;
    box-shadow: var(--bs);
    cursor: pointer;
}


/* footer */

.f-footer{
    font-size: 1.5rem;
    margin: 1.5em;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.footer-link{
    color: #c1c1c1;
    font-family: var(--ff-primary);
    text-decoration: none;
}
.footer-text{
    text-align: center;
    color: #c1c1c1;
    font-family: var(--ff-primary);
    font-weight: 100;
}



/* media Query */


@media(min-width:768px){

    /* .nav-secondary{
        display: flex;
        background-color: var(--cl-green);
        padding: .5em 1em;
        gap: 40px;
        justify-content: space-around;
    } */
    .section-intro{
        max-width: 85%;
        margin: 0 auto;
        aspect-ratio: 16/7;
        box-shadow: var(--bs);
    }
    
    .cta-btn{
        font-size: 1.2rem;
        font-weight: 500;
    }
    .intro-link,
    .ask-btn,
    .contact-btn{
        font-size: 1rem;
        font-weight: 400;
    }

    /* about */
    .about{
        padding: 4em 0 15em 0;
    }
    .about-title-Mobile{
        display: none;
    }
    .about-title-Desktop{
        display: block;
        text-align: left;
        font-size: 3.5em;
        line-height: .9em;
    }
    .flex-about{
        display: flex;
        gap: 50px;
        flex-direction: row-reverse;
        align-items: center;
    }
    .about-img{
        width: 100%;
    }
    .about-text-div{
        width: 100%;
    }
    .about-text{
        text-align: left;
    }

    /* Coperate-strategy */
    .flex-cs{
        display: flex;
        gap: 20px;

    }
    .cs-section{
        border-radius: 5px;
        box-shadow: var(bs);
        margin-top: -10em;
    }
    .cs-img__text{
        font-size: .8rem;
    }
    .cs-img__title{
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    /* products */
    .products-title{
        font-size: 2.3em;
        font-weight: 600;
    }
    .flex-products{
        display: flex;
        justify-content: space-between;
    }
    .products-splitter{
        display: block;
        transform: rotate(180deg);
        width: .5px;
        opacity: .7;
        background: rgb(36, 36, 36);
    }
    .product-links{
        display: block;
    }
    .product-link{
        font-size: 1.5em;
        text-decoration: none;
    }
    .product-link:hover{
        text-decoration: underline;
        transform: scale(2);
    }

    /* call-to-action */
    .call-to-action{
        margin-top: 6em;
    }


    /*testimonials*/
    .testimonials{
        padding:2em 5em ;
    }
    .testimonial-title{
        font-family: var(--ff-secondary);
        font-weight: 600;
        color: #484747;
        margin-bottom: 2em;
    }

    .flex-testimonials{

        display: flex;
        gap: 40px;
    }
    .client-name{
        margin: 0;
    }
    .client-text{
        margin: 0 auto;
        width: 80%;
    }

   
    /*footer*/
    .contact-title__desktopView{
        display: block;
    }
    .contacts{
        padding: 3em 0;
    }
    .contact-title{
        text-align: left;
        margin-left: 30px;
    }
    .flex-footer{
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
    .flex-map hr{
        display: none;
    }
    .P-S__footer{
        background: var(--cl-white);
    }

    .flex-contact{
        display: flex;
        flex-direction: column-reverse;
    }
   
    .contact-title__mobileView{
        display: none;
    }
    .contact-text{
        font-size: 1rem;
        font-weight: 200;
        width: 90%;
    }
    .form{
        margin: 0;
        width: 100%;
    }

    .map-img{
        padding-top: 1.5em;
    }

   .footer-text{
        margin-top: 2em;
        margin-left: 100px;
        font-size: .9em;
   }

}
