@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Arimo:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --red: #ED1C24;
    --blue-light: #ADC6E7;
    --blue-dark: #2E3092;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arimo", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #3a3a3a;
}

.hero a{
    color: #ccc;
}

p{
        color: #5a5a5a;
}

section {
    padding: 40px;
    z-index: 0;
}

h3.title {
    font-size: 30px;
    color: rgb(228, 228, 228);
}

h1.title {
    font-size: 50px;
    color: var(--blue-light);
    margin-top: 20px;
}

.btn{
    background-color: var(--blue-dark);
}

.btn:hover{
    background-color: var(--blue-light);
}

.btn:active{
    background-color: var(--blue-dark);
}

.section-title{
    color: var(--blue-dark);
}

.d-flex{
    display: flex;
    align-items: center;
    gap: 10px;
}

/*----------Header-----------*/
header {
    width: 100%;
    position: fixed;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    height: 85px;
    background-color: #fff;
    z-index: 100;
}

header .logo img {
    width: 75px;
}

header .ul-links ul {
    display: flex;
    gap: 20px;
    align-items: center;
}

header .ul-links ul li {
    list-style: none;
}

header .ul-links ul li a {
    text-decoration: none;
    font-size: 18px;
    color: var(--blue-dark);
}

header .ul-links ul li a i{
        color: var(--blue-dark);
}

header .ul-links ul li a:hover, header .ul-links ul li a:hover i{
    color: var(--blue-light);
}

/*----------Header-----------*/

/*----------Hero-----------*/
.hero {
    background: linear-gradient(to right, rgba(82, 5, 5, 0.7) 10%, rgba(0, 0, 0, 0.7) 90%), url('img/home-1.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding-top: 200px;
    display: flex;
}

.hero-content-left {
    width: 80%;
    text-align: center;
    margin: 0 auto;
}

.hero p {
    color: #fff;
    margin-top: 20px;
    line-height: 28px;
    font-weight: 100;
    font-size: large;
}

.hero .learn-more{
    margin-top: 60px;
}

.hero .learn-more a{
    background-color: var(--blue-dark);
    color: #fff;
    text-decoration: none;
    padding: 20px 60px;
    border-radius: 50px;
}

@media (max-width:960px) {
    section{
        padding: 40px 10px;
    }

    .hero-content-left{
        width: 100%;
    }

    h1.title{
        font-size: 25px;
    }

    h3.title{
        font-size: 20px;
    }

    .hero p{
        font-size: medium;
    }

    .hero{
        padding-top: 150px;
    }

    .ul-links{
        display: none;
    }

    .ul-links.active{
        display: block;
        position: absolute;
        left: 0;
        top: 80px;
        padding: 20px;
        background-color: #fff;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
        width: 100%;
    }

    .ul-links.active ul{
        display: grid;
        gap: 20px;
    }

    .toggle{
        display: block;
        cursor: pointer;
        padding: 5px;
    }

    .toggle .bar{
        display: block;
        width: 30px;
        height: 2px;
        background-color: #ccc;
        margin-bottom: 5px;
    }

    header{
        padding: 20px 10px;
    }
}

/*----------Hero-----------*/

/*----------Services-----------*/
.services{
        background-color: #e1dfff;
}
.services-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.services-container .service{
    width: 100%;
    box-shadow: 0 10px 8px 0 rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    text-align: center;
    border-top: 1px #ccc solid;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all ease 1s;
    background-color: #fff;
}

.services-container .service:hover{
        box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.9);
}

.services-container .service .tag{
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 5px;
    background-color: var(--blue-light);
    color: #fff;
    font-size: 15px;
}

.services-container .service .picture{
    width: 100%;
    height: 300px;
    position: relative;
}

.services-container .service .picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-container .service .bottom-service{
    padding: 20px 20px;
}

.services-container .service .bottom-service h3{
    margin-bottom: 20px;
}

.services-container .service .bottom-service button{
    margin-top: 2px;
    padding: 15px 28px;
    color: #fff;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.services-container .service .rating{
    width: 100%;
    height: 50px;
}

.services-container .service .rating img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service .view-more{
    position: absolute;
    bottom: 0px;
    left: 0px;
    color: #fff;
    padding: 0px 0px;
    text-decoration: none;
    left: 5px;
    bottom: 5px;
}

.service .view-more i{
    font-size: 25px;
    color: white;
}

.service .view-more i:hover{
    color: var(--blue-light);
}

@media (max-width:1300px) {
    .services-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:960px) {
    .services-container{
        grid-template-columns: repeat(1, 1fr);
    }
}

/*----------Services-----------*/

/*----------About-----------*/
.about-us{
    padding-top: 90px;
}

.about-us p{
    line-height: 23px;
}

.about-us-cont{
    display: flex;
    gap: 40px;
}

.about-us .left-content, .about-us .right-content{
    width: 100%;
}

.about-us .left-content{
    padding: 15px;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.4);
    border-top: 1px solid #ccc;
    overflow: hidden;
}

.about-us .left-content:hover{
    transition: all ease 1s;
    scale: 1.05
}

.about-us .left-content img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-items {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.about-items .about h2{
    margin-bottom: 20px;
}

.about-items .about p{
    line-height: 23px;
}

.about .icon i{
    font-size: 45px;
    margin-bottom: 5px;
    color: var(--blue-light);
}

.about h2{
    color: var(--blue-light);
}

.about-us .our-team{
    margin-top: 120px;
}

.our-team{
    display: flex;
    background-color: white;
    gap: 30px;
}

.our-team .left-description{
    width: 100%;
}

.our-team .team-members{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.our-team .team-members .member{
    width: 100%;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.our-team .team-members .member .picture{
    width: 80px;
    height: 80px;
    border-radius: 80px;
    overflow: hidden;
    border: 3px solid#ffffff;
    margin-bottom: 10px;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
}

.our-team .team-members .member .picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us .our-team h1, .about-us .our-team h2{
    color: var(--blue-light);
}

@media (max-width:960px) {
    .about-us-cont{
        flex-wrap: wrap;
    }

    .about-us .our-team{
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .our-team .team-members{
        grid-template-columns: repeat(1, 1fr);
    }
}
/*----------About-----------*/

/*----------Contact-----------*/
.contact-us{
    background-color: #e1dfff;
}

.contact-us h3.title{
    color: var(--blue-dark);
}

.contact-items{
    width: 100%;
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.contacts{
    display: grid;
    gap: 10px;
}

.contacts .contact{
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
}

.contacts .contact .icon i{
    font-size: 40px;
    color: var(--blue-light);
}

.contacts .contact .text{
    display: grid;
    gap: 10px;
}

.contacts .contact p{
    font-size: 15px;
}

.contacts .contact p a{
    text-decoration: none;
}

.contact-items .contacts{
    width: 100%;
}

.contact-items .contact-form{
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.contact-items .contact-form h1{
    color: #525252;
    text-align: center;
    font-size: 23px;
    margin-bottom: 20px;
}

iframe{
    margin-top: 40px;
    border-radius: 10px;
}

.contact-items .contact-form .input-cont{
    width: 100%;
    border: 1px solid #ccc;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}

.contact-items .contact-form .input-cont input, .contact-items .contact-form .input-cont textarea{
    border: none;
    outline: none;
    padding: 10px;
    font-size: 18px;
    width: 100%;
    background-color: transparent;
}

.contact-items .contact-form .input-cont textarea{
    height: 200px;
}

.contact-items .contact-form .input-cont:focus-within{
    border: 2px solid #ccc;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.contact-items .contact-form button{
    padding: 10px 40px;
    background-color: var(--blue-dark);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.contact-items .contact-form button:hover{
    background-color: var(--blue-light);
}

.contact-items .contact-form button:active{
    background-color: var(--blue-dark);
}

@media (max-width:960px) {
    .contact-items{
        flex-wrap: wrap;
    }
}

/*----------Contact-----------*/

/*----------Footer-----------*/
.footer{
    background-color: var(--blue-dark);
}

.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6, .footer p, .footer a, .footer i, .footer li{
    color: var(--blue-light);
} 

.footer li{
    list-style: none;
    margin-bottom: 10px;
}

.footer p{
    line-height: 23px;
}

.footer h3{
    margin-bottom: 20px;
}

.footer a{
    text-decoration: none;
}

.footer .footer-items{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer .links{
    margin-top: 20px;
}

.footer .links i{
    color: var(--blue-light);
}

.footer hr{
    margin: 20px 0;
    background-color: var(--blue-light);
}

.bottom-footer{
    display: flex;
    justify-content: space-between;
}

@media (max-width:1200px) {
    .footer .footer-items{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:960px) {
    .footer .footer-items{
        grid-template-columns: repeat(1, 1fr);
    }

    .bottom-footer{
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}
/*----------Footer-----------*/