@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root{
    --primary-color: #70b3e1;
    --primary-color-darl: #090d28;
    --text-dark: #090d28;
    --text-light: #737373;
    --extra-light: #f3f4f6;
    --white: #ffffff;
    --max-width: 1200px;
    --primary-dark : #090d28;
    --primary-light : #4a90d0;
    --white : #fcfcfc;
    --font-normal : 1.2rem;
    --font_title : 2rem;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.lock{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    height: 110dvh;
    width: 100vw;
    z-index: 99;
    background: white;
    opacity: 1;
    transition: 1s 1s;
}
.lockclose{
    transform: translateY(-110vh);
}
.keys{
    display: grid;
    grid-template-rows: 50px 50px 50px 50px 50px;
    grid-template-columns: 50px 50px 50px;
    gap: 1rem;
}
.display{
    grid-column: 1/4;
    background-color: white;
    border: 2px solid #1c2564;
    border-radius: .5rem;
    color: #090d28;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    user-select: none;
    overflow: hidden;

}
.display_text{
    opacity: 0;
    animation: blinking 3s linear infinite;
    scale: 1;
}

@keyframes blinking{
    0%{
        opacity: 1;
    }
    75%{
        opacity: 1;
    }
    85%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}


.keys button{
    padding: 1rem;
    background-color: #090d28;
    color: white;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    font-size: 1rem;
}
.keys button:hover{
    background-color: #1c2564;
    transform: translateY(3px);
}
.section_container{
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}

.section_header{
    margin-bottom: 5px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

.section_description{
    color: var(--text-light);
    text-align: center;
}

.btn{
    padding: .75rem 1.5rem;
    outline: none;
    border: none;
    font-size: 1rem;
    white-space: nowrap;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 5rem;
    transition: 0.3s;
    border: 2px solid transparent;
    cursor: pointer;

}

.btn:hover{
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    color: #70b3e1;
}


img{
    display: flex;
    width: 100%;
}

a{
    text-decoration: none;
    transition: 0.3s;
}

ul{
    list-style: none;
}

html,

body{
    font-family: "Lato", sans-serif;
    scroll-behavior: smooth;
}


body{
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}

header{
    position: relative;
    top: 0;
    z-index: 5;
}

header nav{
    display: flex;
    align-items: center;
    padding: 0 10% 0 10%;
    height: 80px;
    justify-content: space-between;
    background: #f3f4f6;
    transition: 0.5s ease;
    z-index: 10;
}

header nav .logo{
    width: 150px;
    height: 50px;
    background: url(assets/logo.png) no-repeat;
    background-size: contain;
    margin-bottom: 20px;
}
.nav_links{
    position: fixed;
    top: 0;
    right: -110%;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-evenly;
    list-style: none;

    border-radius: 1rem;
    background-color: #f3f4f6;
    height: 100dvh;
    transition: .5s;
    z-index: 1;
}
.nav_links li{
    border-bottom: 1px solid var(--primary-color) ;
}
.nav_links.open{
    right: 0;
}
.down_list li{
    margin-left: 5rem;
    border: none;
}

.nav_btn{
        position: fixed;
        top: 5px;
        right: 5px;
        width: fit-content;
        height: 50px;
        width: 80px;
        border-radius: 1rem;
        border: none;
        background-color: var(--primary-light);
        z-index: 11;
        color: var(--extra-lights);
}
.down_list{
    width: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    list-style: none;
    justify-content: space-evenly;
    transition-delay: .5s;
    transition: .5s ease;
    opacity: 1;
    margin-left: 1rem;
}

.down_list li{
    margin-top: 1rem;
}
.down_list li a img:hover {
    animation: picto .5s;
}

@keyframes picto{
    0%{
        transform: translateX(0px) rotate(0deg);
    }
    50%{
        transform: translateX(30px) rotate(15deg);
    }
    100%{
         transform: translateX(0px) rotate(0deg);
    }
}

.nav_links li a{
    text-decoration: none;
    font-size: var(--font-normal);
    font-weight: 600;
    color: var(--primary-light);
}
.nav_links li a i{
    margin-left: 5px;
    color: var(--primary-dark);
}
header{
    height: fit-content !important;
    overflow: hidden;
}

header .background_video{
    display: flex;
    top: 0;
    z-index: -1;
    width: 100%;
}
.head_banner{
    width: 100%;
    max-height: 100vh;
}
.banner_img{
    width: 100%;
    height: 60vh;
    position: relative;
    z-index: -5;
    overflow: hidden;
}
.banner_img.poultry{
    background: url(assets/Poultry.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.banner_img.dough{
    background: url(assets/0e30f2931f2c2190d1f00113c6724d60.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.banner_img.fruit{
    background: url(assets/Fruits-chiller.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.banner_img.seafood{
    background: url(assets/fish_seafood.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}


.imgbtn{
    position: absolute;
    bottom: -1px;
    height: auto;
}
.wave{
    width: 100%;
}

.about_container img{
    border-radius: 1rem;
}
.about_content h2,.about_content2 h2{
    color: var(--primary-color);
    text-transform: uppercase;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.about_content p,.about_content2 p{
    margin-bottom: 2rem;
}

.section_carrier{
    width: 100%;
    height: 200px;
    background-color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.section_carrier h4{
    color: var(--extra-light);
}
.video_container_about iframe{
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 1rem;
}

.destination_container :is(.section_header, .section_description){
    text-align: left;
    margin-inline: unset;
}
.destination_container h2{
    color: var(--primary-color);
    margin-bottom: .5rem;
}
.destination_container p{
    font-weight: 600;
    color: var(--primary-color-darl);
}


.destination_grid{
    margin-top: 4rem;
    display: grid;
    gap: 2rem 1rem;
}

.destination_card{
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 5px;
}

.destination_card .img_container{
    border-radius: 1.2rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.img_container img{
    transition: 1s;
}

.destination_card_details{
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.destination_card_details h4{
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    text-align: left;
}



.destination_card:hover .img_container img{
    background-color: var(--primary-color-darl);
    transform: scale(1.2);
}

.slogram.fishseafood{
    background: url(assets/fish_seafood.jpg);
    padding-inline: 1rem;
    margin: auto;
    height: 500px;
    width: 98%;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 5rem;  
    background-attachment: fixed;
    background-position: right;

}
.slogram.dough{
    background: url(assets/0e30f2931f2c2190d1f00113c6724d60.jpg);
    padding-inline: 1rem;
    margin: auto;
    height: 500px;
    width: 98%;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 5rem;  
    background-attachment: fixed;
    background-position: right;

}
.slogram.poultry{
    background: url(assets/Poultry.jpg);
    padding-inline: 1rem;
    margin: auto;
    height: 500px;
    width: 98%;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 5rem;  
    background-attachment: fixed;
    background-position: right;

}
.slogram.home{
    background: url(assets/Mackerel.jpg);
        padding-inline: 1rem;
    margin: auto;
    height: 500px;
    width: 98%;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 5rem;  
    background-attachment: fixed;
    background-position: right;
}

.slogram .slogram_screen{
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    background: var(--primary-color);
    margin: auto;
    opacity: .8;
}
.slogram_content{
    z-index: 1;
}
.slogram h2{
    color: var(--white);
    font-style: italic;
    font-weight: 600;
}
.slogram pre{
    margin-top: 1rem;
    font-weight: 600;
    color: var(--white);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 2rem;
}

.journey_grid{
    margin-top: 2rem;
    display: grid;
    gap: 0 1rem;
}

.journey_card{
    position: relative;
    isolation: isolate;
    padding-top: 4rem;
    overflow: hidden;
}

.journey_container h2{
    text-align: left;
}

.journey_card_bg{
    padding: 2rem;
    background-color: var(--extra-light);
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 1rem;

}

.journey_card_bg span{
    display: inline-block;
    margin-bottom: 4rem;
    font-size: 1.75rem;
    color: var(--primary-color);
}

.journey_card_bg h4{
    font-size: 1.2 rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
}

.journey_card_content{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    background-color: var(--primary-color);
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
    transition: 0.3s;
}

.journey_card:hover .journey_card_content{
    top: 0;

}

.journey_card_content span{
    display: inline-block;
    margin-bottom: 1rem;
    padding: 7px 9px;
    font-size: 1rem;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 100%;
}

.journey_card_content h4{
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.journey_card_content p{
    color: var(--white);
}

.showcase_container{
    display: grid;
    gap: 2rem;
    overflow: hidden;
    gap: 5rem;
}

.showcase_image img{
    max-width: 400px;
    margin-inline: auto;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
}
.showcase_content{
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.showcase_content h3{
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.showcase_content p{
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.showcase_content .btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.banner_container{
    display: grid;
    gap: 2rem;
    min-height: 550px;

}

.banner_card{
    align-items: center;
    padding: 2rem 1rem;
    text-align: center;
    background-color: var(--extra-light);
    border-radius: 2rem;
    box-shadow: 0px 0px 20px rgba(0, 0, 0,  0.1);
    gap: 3rem;
    cursor: pointer;
    transition: 1s;
    height: 300px;

}


.banner_card img{
    max-width: 80px;
}

.keyfeature_content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.keyfeature_content h2{
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.banner_card p{
    margin-top: 1rem;
    text-align: left;
    margin-inline: .5rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 1rem;
    opacity: 1;
    transition: .5s;
    box-shadow: 0 0 10px rgba(0, 00, 0, 0.1);
    z-index: 100;
}


.discover_grid{
    margin-top: 4rem;
    display: grid;
    gap:2rem;
}

.discover_card{
    padding: 2rem 1rem;
    text-align: center;
    transition: 0.3s;
    border-radius: 1rem;
}

.discover_card span{
    display: inline-block;
    margin-bottom: 1rem;
    padding: 10px 15px;
    font-size: 1.5rem;
    border-radius: 100%;
    color: var(--primary-color);
    background-color: rgba(40, 135, 255, 0.1);
}
.discover_card.picto:hover:hover{
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.discover_container h2{
    margin-inline: auto;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color-darl);
}

.discover_container p{
    color: var(--text-dark);
    font-size: 1rem;
}
.client_container{
    background-color: #f3f4f6;
    border-radius: 1rem 1rem 0 0;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, .2);
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.swiper{
    margin-top: 4rem;
    width: 100%;

}

.swiper-slide{
    min-width: 375px;


}

.client_card{
    padding: 5px;
    background-color: var(--primary-color);
    border-radius: 1rem;
    transition: .3s;
    user-select: none;
}

.client_card:hover{
    background-color: var(--primary-color);
}

.client_content{
    padding: 1rem;
    background-color: var(--white);
    border-radius: calc(1rem - 5px);
}

.client_rating{
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.client_content p{
    color: var(--text-dark);

}

.client_details{
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client_details img{
    max-width: 50px;
    border-radius: 100%;
}

.client_details h4{
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: .3s;
}

.client_card:hover h4{
    color: var(--white);
}

.client_details h5{
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    transition: .3s;
}

.client_card:hover h5{
    color: var(--extra-light);
}

footer{
    background-color: var(--extra-light);
}

.footer_container{
    display: grid;
    gap: 4rem 2rem;
}
.footer_logo{
    width: fit-content;
}
.footer_col p{
    max-width: 300px;
    margin-block: 2rem;
    color: var(--text-dark);
}

.footer_socials{
    padding: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer_socials a{
    display: inline-block;
    padding: 7px 10px;
    font-size: 1.25rem;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 100%; 
}
.footer_socials a:hover{
    background-color: var(--primary-color-darl);
}

.footer_col h4{
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.footer_links{
    display: grid;
    gap: 1rem;
}

.footer_links a{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.footer_links a:hover{
    color: var(--primary-color);
}

.footer_links a span{
    font-size: 1.25rem;
}

.footer_col a{
    color: #090d28;
}

.footer_col form{
    display: grid;
    gap: 1rem;
}

.footer_col input{
    padding: .75rem;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--white);
    border: 1px solid var(--text-light);
    border-radius: 5px;
}

.footer_col input::placeholder{
    color: var(--text-light);
}

.footer_col .btn{
    border-radius: 5px;
}

.footer_bar{
    background-color: var(--white);
    padding: 1rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary-color-darl);
    text-align: center;

}


@media (width < 540px){
    
body 
    h1{
    font-size: 3rem !important;
    }
    h2{
    font-size: 1.5rem !important;
    }
    .home{
    height: 70vh;
    }
    .nav_links{
    padding: 0;
    margin: 0;
    }
    header{
    height: 60vh;
    }
    }
 .down_list li a{
    height: 30px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: left;
    gap: 10px;
    }
.down_list li a img{
    height: 20px;
    max-width: 50px;
    }
@media (width > 540px) {
    .nav_btn{
    top: 15px;
    right: 15px;
    width: fit-content;
    height: 50px;
    width: 80px;
    border-radius: 1rem;
    border: none;
    background-color: var(--primary-light);
    z-index: 5;
    color: var(--extra-lights);
    }
    .nav_links{
    padding: 10px !important; 
    }

    .down_list li a{
    height: 30px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: left;
    }

    .about_container{
        grid-template-columns: repeat(2, 1fr);
    }
    .about_container .about_content2{
        grid-column-start: 1;
        grid-row: 1;
    }
    .about_container .about_image2{
        grid-column-start: 2;
    }
    .destination_grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .journey_grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase_container{
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .banner_container{
        grid-template-columns: repeat(2, 1fr);
    }

    .discover_grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .footer_container{
        grid-template-columns: repeat(2, 1fr);
    }

    .footer_col:last-child{
        grid-area: 2/1/3/2;
    }
    }
@media (width < 768px){
        .discover_card.blank{
            display: none;
        }
}

@media (width > 768px){
li a{
    font-size: 1rem !important;
    }
li a h4{
    font-size: 1rem;
}
nav{
    position: absolute;
    width: 100% !important;
    height: 120px !important;
    margin: 0;
    display: flex;
    padding: 30px !important;
    justify-content: space-between !important;
    background: none !important;
    }

.nav_links{
    position: relative;
    width: 600px;
    right: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style: none;
    background: #4a90d099;
    padding: 1rem;
    border-radius: 1rem;
    }
nav:hover{
    background-color: var(--white) !important;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    }
nav:hover .nav_links{
    background: var(--white);
    }
    .nav_links li{
    border-bottom: none ;
    }

/* .down_industry:hover ul{
    display: flex;
}
.down_products:hover ul{
    display: flex;
} */
.down_list{
    position: absolute;
    flex-direction: row;
    left: calc(-100vw + 600px + 13px)  ;
    width: 100vw;
    height: 30vh;
    display: none;
    list-style: none;
    justify-content: space-evenly;
    background: #f3f4f6bb;
    backdrop-filter: blur(20px);
    margin-top: 3rem;
    border-top: 1px solid var(--primary-light);
    transition-delay: .5s;
    transition: .5s ease;
    opacity: 1;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}
.down_list li{
    width: 20%;
    height: 25vh;
    text-align: center;
}
.down_list li a{
    height: 25vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
    .down_list li a img{
    height: 70px;
    max-width: 150px;
    }
    .down_list.products li a img{
    width: 100%;
    height: auto;
    }
.nav_links li{
    margin-left: 0;
}
.nav_btn{
    display: none;
}


.down_list li a{
    font-size: 2rem !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;

}
.down_list li a h4{
    position: relative;
    text-wrap: nowrap;
}
.down_list li a h4::after{
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 50%;
    height: 2px;
    background: red;
    border-radius: 1rem;
        transition: 1s ease;
}
.down_list li a:hover h4::after{
    width: 10%;
    background: var(--primary-color-darl);
}
.down_list li a:hover h4::before{
    background: var(--primary-color-darl);
}
.thermometer{
    position: absolute;
    bottom: -7px;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 6px;
    border-radius: 1rem;
}
.thermometer::after{
    content: "";
    position: absolute;
    right: -3px;
    bottom: -3px;
    background: var(--primary-color);
    width: 12px;
    height: 12px;
    border-radius: 5px;
}
.thermometer::before{
    content: "";
    position: absolute;
    right: -3px;
    bottom: -3px;
    background: red;
    width: 8px;
    height: 8px;
    transform: translate(-2px, -2px);
    border-radius: 5px;
    z-index: 5;
    transition: 1s ease;
}
.down_list li a:hover .thermometer::before{
    background: var(--primary-color-darl);
}

header nav:hover ul li a{
    color: var(--primary-color);
}

.nav_links li a{
    text-decoration: none;
    font-size: var(--font-normal);
    font-weight: 600;
    color: var(--white);
}

    .about_container{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        grid-gap: 1rem;
    }

    .destination_grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .journey_grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .showcase_container{
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
    }

    .showcase_content{
        grid-column: 2/4;
    }

    .banner_container{
        grid-template-columns: repeat(4, 1fr);
    }

    .discover_grid{
        grid-template-columns: repeat(3, 1fr);
    }
    .footer_container{
        grid-template-columns: 2fr 2fr 2fr;
    }

    .footer_col:last-child{
        grid-area: unset;
    }
}

@media (width > 1200px){
    header nav{
    display: flex;
    padding: 1rem;
    }
    .banner_img{
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: -5;
    overflow: hidden;
    background: url(assets/Poultry.jpg) no-repeat;
    background-size: cover;
    }
}

