@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arimo", "Nunito Sans", sans-serif;
}
:root {
    /* SCSS HEX */
--blue: #0000CC;
--black: #1F1F1F;
--orange-web: #d6a242;
--alice-blue: #6FA8AE;
--celadon: #b3efb2;
--btn-hover: #ce8601;
}
.wrapper {
    width: 95%;
    margin: 0 auto;
}
p {
    font-size: 16px;
    line-height: 150%;
    font-family: "Nunito Sans", sans-serif;
}
h1, h2, h3, h4,h5,h6 {
    line-height: 120%;
    font-family: "Arimo", sans-serif;
}
nav {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
   
}
.hero {
    padding: 120px 0;
    width: 100%;
    height: 90vh;
}
.hero-content  {
    text-align: center;
}
.hero-content h1, p,  a {
   margin: 24px 0;
}
.hero-content h1 {
    line-height: 120%;
}
.hero-content p {
    line-height: 150%;
    font-size: 16px;
    
}
.hero-content a {
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 16px;
    background-color: var(--orange-web);
    text-decoration: none;
    color: black;
    margin-top: 48px;
    transition: .4s;

}
.hero-content a:hover {
    background-color: var(--btn-hover);
}

.our-services-section {
    width: 100%;
    background-color: var(--blue);
    padding: 56px 0;
    text-align: center;
    color: white;
}
.our-services-section__cards {
    width: 100%;
    padding: 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
   
}
.our-services-section__cards__card {
    width: 350px;
    padding: 24px 8px;
    border-radius: 16px;
    background-color: #00008F;
   
}
.our-services-section__cards__card svg {
   margin-bottom: 24px;

}

.testimonials-section {
    width: 100%;
    background-color: var(--black);
    padding: 56px 0;
    text-align: center;
    color: white;

}
.testimonials-section__cards {
    width: 100%;
    padding: 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
   
}
.testimonials-section__cards__card {
    width: 100%;
    padding: 24px;
    border-radius: 16px;
    background-color: #333333;
    
    
   
}

.call-to-action-section {
    width: 100%;
    padding: 56px 0;
    text-align: center;
}
.call-to-action-section h2, a {
    margin: 24px 0;
    color: black;
}
.call-to-action-section a {
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 16px;
    background-color: var(--orange-web);
    text-decoration: none;
    color: black;
    margin-top: 48px;
    transition: .4s;

}
.call-to-action-section a:hover {
    background-color: var(--btn-hover);
}

footer {
    width: 100%;
    padding: 24px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1818B1;
}
footer p {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
}
.testimonials-section__cards__card__info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    text-align: center;
}
.testimonials-section__cards__card__info img {
   width: 72px;
   height: 72px;
   border-radius: 50%;
}
.testimonials-section__cards__card__info h4{
    margin-bottom: 8px;
    font-size: 16px;
    
}
.testimonials-section__cards__card__info span {
    font-size: 14px;
}

@media only screen and (min-width: 600px) {
    .wrapper {
        width: 80%;
        margin: 0 auto;
    }
    p {
        font-size: 16px;
        line-height: 150%;
        font-family: "Nunito Sans", sans-serif;
    }
    h1, h2, h3, h4,h5,h6 {
        line-height: 120%;
        font-family: "Arimo", sans-serif;
    }
    nav {
        width: 100%;
        height: 10vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
       
    }
    .hero {
        padding: 120px 0;
        width: 100%;
        height: 90vh;
    }
    .hero-content  {
        text-align: center;
    }
    .hero-content h1, p,  a {
       margin: 24px 0;
    }
    .hero-content h1 {
        line-height: 120%;
    }
    .hero-content p {
        line-height: 150%;
        font-size: 16px;
        
    }
    .hero-content a {
        padding: 16px 32px;
        border-radius: 16px;
        font-size: 16px;
        background-color: var(--orange-web);
        text-decoration: none;
        color: black;
        margin-top: 48px;
        transition: .4s;
    
    }
    .hero-content a:hover {
        background-color: var(--btn-hover);
    }
    
    .our-services-section {
        width: 100%;
        background-color: var(--blue);
        padding: 56px 0;
        text-align: center;
        color: white;
    }
    .our-services-section__cards {
        width: 100%;
        padding: 48px 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 48px;
       
    }
    .our-services-section__cards__card {
        width: 350px;
        padding: 48px;
        border-radius: 16px;
        background-color: #00008F;
       
    }
    .our-services-section__cards__card svg {
       margin-bottom: 24px;
    
    }
    
    .testimonials-section {
        width: 100%;
        background-color: var(--black);
        padding: 56px 0;
        text-align: center;
        color: white;
    
    }
    .testimonials-section__cards {
        width: 100%;
        padding: 48px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 48px;
       
    }
    .testimonials-section__cards__card {
        width: 80%;
        padding: 48px;
        border-radius: 16px;
        background-color: #333333;
        
        
       
    }
    
  

   
   


}

    .our-services-section__cards__card {
        width: 80%;
        padding: 48px;
        border-radius: 16px;
        background-color: #00008F;
       
    }
    .our-services-section__cards__card svg {
       margin-bottom: 24px;
    
    }
    
    .testimonials-section {
        width: 100%;
        background-color: var(--black);
        padding: 56px 0;
        text-align: center;
        color: white;
    
    }
    .testimonials-section__cards {
        width: 100%;
        padding: 48px 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content:center;
        align-items: center;
        gap: 48px;
       
    }
    .testimonials-section__cards__card {
        width: 80%;
        padding: 48px;
        border-radius: 16px;
        background-color: #333333;
        
        
       
    }
    
  
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .wrapper {
        width: 80%;
        margin: 0 auto;
    }
    p {
        font-size: 16px;
        line-height: 150%;
        font-family: "Nunito Sans", sans-serif;
    }
    h1, h2, h3, h4,h5,h6 {
        line-height: 120%;
        font-family: "Arimo", sans-serif;
    }
    nav {
        width: 100%;
        height: 10vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
       
    }
    .hero {
        padding: 120px 0;
        width: 100%;
        height: 90vh;
    }
    .hero-content  {
        text-align: center;
    }
    .hero-content h1, p,  a {
       margin: 24px 0;
    }
    .hero-content h1 {
        line-height: 120%;
    }
    .hero-content p {
        line-height: 150%;
        font-size: 16px;
        
    }
    .hero-content a {
        padding: 16px 32px;
        border-radius: 16px;
        font-size: 16px;
        background-color: var(--orange-web);
        text-decoration: none;
        color: black;
        margin-top: 48px;
        transition: .4s;
    
    }
    .hero-content a:hover {
        background-color: var(--btn-hover);
    }
    
    .our-services-section {
        width: 100%;
        background-color: var(--blue);
        padding: 56px 0;
        text-align: center;
        color: white;
    }
    .our-services-section__cards {
        width: 100%;
        padding: 48px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        
       
    }
    .our-services-section__cards__card {
        width: 350px;
        padding: 24px;
        border-radius: 16px;
        background-color: #00008F;
       
    }
    .our-services-section__cards__card svg {
       margin-bottom: 24px;
    
    }
    
    .testimonials-section {
        width: 100%;
        background-color: var(--black);
        padding: 56px 0;
        text-align: center;
        color: white;
    
    }
    .testimonials-section__cards {
        width: 100%;
        padding: 48px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        
       
    }
    .testimonials-section__cards__card {
        width: 350px;
        padding: 24px;
        border-radius: 16px;
        background-color: #333333;
        
        
       
    }
    
    .call-to-action-section {
        width: 100%;
        padding: 56px 0;
        text-align: center;
    }
    .call-to-action-section h2, a {
        margin: 24px 0;
        color: black;
    }
    .call-to-action-section a {
        padding: 16px 32px;
        border-radius: 16px;
        font-size: 16px;
        background-color: var(--orange-web);
        text-decoration: none;
        color: black;
        margin-top: 48px;
        transition: .4s;
    
    }
    .call-to-action-section a:hover {
        background-color: var(--btn-hover);
    }
    
    footer {
        width: 100%;
        padding: 24px 0;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #1818B1;
    }
    footer p {
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        color: #FFFFFF;
    }
    .testimonials-section__cards__card__info{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 24px;
        text-align: center;
    }
    .testimonials-section__cards__card__info img {
       width: 72px;
       height: 72px;
       border-radius: 50%;
    }
    .testimonials-section__cards__card__info h4{
        margin-bottom: 8px;
        font-size: 16px;
        
    }
    .testimonials-section__cards__card__info span {
        font-size: 14px;
    }
    
} 