@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 {
    --blue-1: #0a2e5a;
    --blue-2: #27A9E2;
    --white: #fff;
    --light-grey: #c0c0c0;
    --dark-gray-color: #979797;
    --red-1: #965b65;
    --green-1: #72a7ca;
    --dark-blue-1: #0d0d1b;
    --dark-blue-2: #121224;
}

* {
    padding: 0;
    margin: 0;
    color: rgb(73, 73, 73);
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    font-family: "Arimo", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.pre-loader {
    background: #000 url("../img/pre-loader/pre-loader.gif") no-repeat center center;
    background-size: 20%;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    z-index: 150;
}


/*------All------*/
section {
    padding: 40px 40px;
}

.title {
    font-size: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.pg {
    line-height: 25px;
}

.btn:hover {
    background-color: var(--blue-2);
}

.btn:active {
    background-color: var(--blue-1);
}

/*------All------*/

/*------Header------*/
.header {
    width: 100%;
    padding: 20px 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(45deg, var(--blue-1) 40%, var(--blue-1) 100%);
    box-shadow: 0 0 20px var(--green-1);
    position: fixed;
    z-index: 100;
}

.header .logo img {
    width: 150px;
}

.header .nav-links ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header .nav-links ul li {
    list-style: none;
}

.header .nav-links ul li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 300;
    font-size: 18px;
}

.header .nav-links ul li a i {
    color: var(--white);
}

@media (max-width:1000px) {
    .nav-links {
        display: none;
    }

    .nav-links.active{
        width: 100%;
        display: block;
        background-color: var(--blue-1);
        padding: 20px;
        position: absolute;
        top: 80px;
        left: 0;
        border-top: 1px solid #ccc;
    }

    .nav-links.active ul{
        display: block;
    }

    .nav-links.active ul li{
        margin-bottom: 20px;
    }

    .toggle {
        display: block;
        padding: 5px;
        cursor: pointer;
    }

    .toggle .bar {
        display: block;
        width: 30px;
        height: 2px;
        margin-bottom: 5px;
        background-color: var(--light-grey);
    }

}

@media (max-width:960px) {
    section {
        padding: 10px;
        padding-top: 80px;
    }

    .header {
        padding: 20px 10px;
    }
}

/*------Header------*/

/*------Hero------*/
.hero-section {
    padding: 0;
    padding-top: 150px;
    padding-bottom: 0px;
}

.hero-content {
    width: 100%;
    position: relative;
}

.slider {
    width: 100%;
    height: 500px;
}

.item {
    width: 100%;
    display: none;
}

.item.active {
    display: flex;
}

.item-left {
    padding: 40px;
    width: 100%;
    padding-top: 0;
}

.top-item-left {
    background-color: var(--blue-1);
    color: var(--white);
    padding: 15px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-item-left h3 {
    color: var(--white);
    font-size: 20px;
}

.item-right {
    width: 100%;
    padding-right: 40px;
    height: 400px;
}

.item-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-item-left {
    padding-top: 30px;
    height: 100%;
}

.bottom-item-left p {
    transform: translateY(50px);
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 800;
}

.bottom-item-left p i {
    color: var(--red-1);
}

.bottom-item-left h6 {
    font-size: 17px;
    font-weight: 300;
    line-height: 25px;
    transform: translateY(50px);
}

.call-to-action {
    margin-top: 40px;
    transform: translateY(50px);
    opacity: 0;
}

.call-to-action a {
    background-color: var(--blue-1);
    padding: 10px 18px;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

@keyframes view_top {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes view_img {
    from {
        scale: 0.5;
    }

    to {
        scale: 1;
    }
}

@keyframes view_content {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/*Animation*/
.item.active .top-item-left {
    animation: view_top 3s ease forwards;
}

.item.active img {
    animation: view_img 1s ease forwards;
}

.item.active .bottom-item-left h6,
.item.active .bottom-item-left .call-to-action,
.item.active .bottom-item-left p {
    animation: view_content 1s ease forwards;
}

.item.active .bottom-item-left p {
    animation-delay: 0.0s;
}

.item.active .bottom-item-left h6 {
    animation-delay: 0.2s;
}

.item.active .bottom-item-left .call-to-action {
    animation-delay: 0.4s;
}

/*Animation*/

.nav-left-right {
    position: absolute;
    bottom: 120px;
    left: 40px;
    display: flex;
    gap: 10px;
}

.nav-left-right button {
    padding: 5px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background-color: var(--blue-1);
    color: var(--white);
    font-weight: 800;
}

.socials-hero {
    padding: 20px 10px;
    background-color: var(--blue-2);
    width: fit-content;
    position: absolute;
    right: 0;
    top: 150px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

.socials-hero a {
    text-decoration: none;
}

.socials-hero a i {
    color: var(--white);
}

@media (max-width:960px) {
    .slider {
        height: fit-content;
        margin-bottom: 40px;
    }

    .item.active {
        flex-wrap: wrap;
        gap: 40px;
    }

    .item-right {
        padding-right: 0;
    }

    .hero-section {
        padding: 10px;
        padding-top: 140px;
    }

    .item-left {
        padding: 0;
    }

    .socials-hero {
        display: none;
    }
}


/*------Hero------*/

/*------After Hero------*/
.afeter-hero {
    background-color: var(--dark-blue-1);
    color: var(--light-grey);
}

.afeter-hero p,
.afeter-hero p strong,
.afeter-hero h1,
.afeter-hero h2,
.afeter-hero h3,
.afeter-hero h4,
.afeter-hero h5,
.afeter-hero h6 {
    color: var(--light-grey);
}

.after-hero-container {
    margin-top: 40px;
}

.key-sectors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: hidden;
    padding: 20px 5px;
}

.key-sector {
    width: 100%;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
    transition: all ease 0.5s;
    padding: 40px;
    background-color: var(--dark-blue-2);
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
}

.key-sector:hover {
    scale: 1.03;
}

.key-sectors .key-sector .key-icon {
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 40px;
}

.key-sectors .key-sector .key-icon i {
    font-size: 80px;
    color: var(--blue-2);
}

.key-sectors .key-sector p {
    margin-top: 20px;
}

@media (max-width:1300px) {
    .key-sectors {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:960px) {
    .key-sectors {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*------After Hero------*/

/*------About------*/
.about-us {
    overflow: hidden;
    background-color: var(--white);
}

.about-us-cont {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: hidden;
    margin-top: 30px;
    padding: 20px 5px;
}

.about-us .about-us-cont .about {
    width: 100%;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    position: relative;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.3);
}

.about.core {
    border: 1px solid #ecebeb;
}

.about-us .about-us-cont .about .tag {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 3px 10px;
    background-color: var(--blue-2);
    color: var(--white);
    font-size: 12px;
}

.about-us .about-us-cont .about:hover {
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.9);
}

.about-us .about-us-cont .about .icon {
    width: fit-content;
    background-color: var(--blue-1);
    margin: 0 auto;
    margin-bottom: 30px;
    border-radius: 50px;
}

.about-us .about-us-cont .about .icon i {
    color: var(--white);
    font-size: 30px;
    background-color: var(--blue-2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transform: translate(-5px, -5px);
    border-radius: 50px;
}

.about-us .about-us-cont .about h1 {
    font-size: 25px;
    margin-bottom: 15px;
}

@media (max-width:1300px) {
    .about-us-cont {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:960px) {
    .about-us-cont {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*------About------*/

/*------SP------*/
.pillars-section {
    background-color: var(--dark-blue-1);
}

.pillars-section h1{
    color: var(--light-grey);
}

.about-us .about-us-cont .about.sp {
    width: 100%;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    position: relative;
    background-color: var(--dark-blue-2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.3);
}

.about-us .about-us-cont .about.sp .tag {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 3px 10px;
    background-color: var(--blue-2);
    color: var(--white);
    font-size: 12px;
}

.about-us .about-us-cont .about.sp h1, .about-us .about-us-cont .about.sp p{
    color: var(--light-grey);
}

/*------SP------*/

/*------Team------*/
.our-team-container {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.team-member {
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 20px;
    margin-top: 100px;
    border-radius: 10px;
    text-align: center;
    padding-top: 60px;
}

.team-member h1{
font-size: 25px;
color: var(--blue-2);
}

.team-member .picture {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
    border: 5px solid var(--white);
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.3);
}

.team-member .links a i{
    font-size: 20px;
}

.team-member .picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:1300px) {
    .our-team-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:960px) {
    .our-team-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .team-member{
        margin-top: 50px;
    }
}

/*------Team------*/

/*------Footer------*/
.footer {
    background-color: var(--dark-blue-2);
    overflow: hidden;
}

.footer p,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer i {
    color: var(--light-grey);
}

.footer .footer-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.footer .footer-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer .socials-footer {
    margin-top: 20px;
}

.footer ul li {
    list-style: none;
    margin-bottom: 10px;
    color: var(--light-grey);
}

.footer ul li a {
    text-decoration: none;
    color: var(--light-grey);
}

.footer ul li p{
    margin-bottom: 5px;
}

.footer ul li a i {
    margin-right: 10px;
}

.bottom-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width:1300px) {
    .footer .footer-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer {
        padding: 40px;
    }
}

@media (max-width:960px) {
    .footer {
        padding: 40px;
    }

    .footer .footer-items {
        grid-template-columns: repeat(1, 1fr);
    }

    .bottom-footer {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
        gap: 10px;
    }
}

/*------Footer------*/

.animate-item-on-scroll {
    transform: translateY(200px);
    transition: all ease 1s;
}

.animate-item-on-scroll.show {
    transform: translateY(0);
}