@import url(fonts.css);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
}
html {
    width: 100%;
    scroll-behavior: smooth;
}
h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}
.wrapper {
    width: 100%;
    overflow: hidden;
    min-height: 100vh;
}
.container {
    width: 90%;
    margin: 0px auto;
}   
section {
    margin: 60px 0px;
    padding: 30px 0px;
    overflow: hidden;
    position: relative;
}
nav {
    position: fixed;
    z-index: 100;
    /* background: rgba(130,2,1,.6);
    backdrop-filter: blur(20px); */
    -webkit-backdrop-filter: blur(20px);
    min-width: 100%;
}
#active::after {
    width: 100%;
}
nav *{
    color: white;
    list-style: none;
}
.nav_container {
    min-height: 12vh;
    display: flex;
    width: 90%;
    justify-content: space-between;
    align-items: center;
}
.logo {
    height: 50%;
    max-height: 55px;
    cursor: pointer;
    font-weight: 600;
}
.navigation {
    display: flex;align-items: center;
}
.gamburger {
    display: none; align-items: end;justify-content: center;flex-direction: column;
    cursor: pointer;
}
.gamburger_line {
    width: 30px;
    height: 3px;
    transition: 300ms;
    margin: 2.5px 0px;
    background: white;
    opacity: .8;
}
.gamburger_line_2 {
    width: 25px;
}
.gamburger_line_3 {
    width: 15px;
}
.gamburger:hover .gamburger_line {
    width: 30px !important;
}
.navigation li {
    margin:0px 15px;
}
.navigation li a{
    font-size: 17px;
    font-weight: 400;
    display: block;
    position: relative;
}
.navigation_button::after ,#mail::after{
    content: '';
    height: 1.5px;
    bottom: -3px;
    background: white;
    width: 0%;
    position: absolute;
    left: 0;
    transition: cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
    
}
.search{
    display: flex;align-items: center;justify-content: center;
}
.search input{
    padding: 10px 5px;
}
.navigation_button:hover::after, #mail:hover::after {
    width: 100%;
}
#mail {
    display: inline-block;
    position: relative;
}
#mail::after {background: #820201 !important;}
.gamburger_menu_container {
    width: 100%;
    overflow: hidden;
    z-index: 99;
    transition: cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 0px;
    background: rgba(130,2,1,.99);
    position: fixed;
    top: 10vh;
    left: 0;
}
.gamburger_navigation li {
    border-bottom: 1px solid rgba(255,255,255,.6);
}
.gamburger_navigation li a{
    display: flex;
    align-items: center;justify-content: center;
    color: white;
    font-size: 20px;
    text-align: center;
    padding: 15px 20px;
}
.languages_a {
    display: flex;
}
/* ----------- MAIN PAGE CSS START ----------- */
.header {
    width: 100%;
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin: 0px;
    position: relative;
    display: flex;align-items: center;
}
.header_image{
    min-width: 100%;
    min-height: 100%;
    z-index: -1 !important;
    position: absolute;
    top: 0;left: 50%;
    transform: translateX(-50%);
}
.header h1 {
    font-size: 40px;
    z-index: 2;
}
.header p {
    max-width: 700px;
    opacity: .9;
    z-index: 2;
}
.header * {
    color: white;
}
.header_text h1, .header_text p {
    margin: 10px 0px;
}
.header_container {
    z-index: 2;
}
.learn_more {
    margin-top: 15px;
    padding: 10px 20px;
    background: #820201;
    display: inline-block;
    color: white;
    border: 1px solid #820201;
    transition: 300ms;
    z-index: 2;
}
.learn_more:hover {
    background: transparent;
    border: 1px solid #820201;
    color: #820201;
}
.header_image img {
    width: 600px;
    margin-right: 40px;
}
.scrolldown {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);   
    animation-name: scrolldown;
    transition: cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}
@keyframes scrolldown {
    0% {
        bottom:10px
    }50%{
        bottom: 20px;
    }100%{
        bottom: 10px;
    }
}
.scrolldown img {
    width: 50px;
}
.grid_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    justify-content: center;
    align-items: start;
    gap: 1rem;
    margin-top: 1rem;
}
.row {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(130,2,1,.6);
    min-height: 330px;
    display: flex;flex-direction: column;align-items: center;justify-content: center;
    padding: 40px;
    transition: cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
    cursor: pointer;
}
.row:hover {
    transform: translateY(-7px);
    box-shadow: 0px 20px 20px rgba(130,2,1,.2);
    border: 1px solid rgba(130,2,1,.0);
}
.row h3 {
    font-size: 25px;
    margin: 20px 0px 10px 0px;
}
.row p {
    text-align: center;
    margin-bottom: 10px;
}
.row img {
    width: 100px;
}
.grid_container2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, auto));
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}
.grid_container3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
    margin-top: 30px;
}
.row2 {
    min-height: 300px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.row2 h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,.5);
    padding: 15px;
    color: white;
    transition: 300ms;

}
.row2:hover h4{
    background: #820201;
}
.partners_section img {
    max-height: 300px;
}
.contact_container {
    display: flex;align-items: start;justify-content: center;
    flex-wrap: wrap;
}
.contact_container h3 {
    margin: 10px 0px;
}
form {
    width: 100%;
    margin: 10px 80px 10px 0;
    max-width: 450px;
}
input, textarea{
    width: 100%;
    outline: none;
    border: 1px solid rgba(0,0,0,.5);
    background: transparent;
    padding: 10px 10px;
    transition: 300ms;
    margin: 5px 0px 20px 0px;
    resize: none;
}
input:focus {
    border: 1px solid #820201;
    border-top-right-radius: 15px;
}
#message {
    min-height: 100px;
}
label {
    margin-bottom: 30px;
}
button {
    padding: 10px 30px;
    background: #820201;
    outline: none;
    border: none;
    color: white;
    transition: 300ms;
    cursor: pointer;
    font-size: 15px;
}
button:hover {
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
}
footer {
    padding: 25px 0px;
    background: #820201;
}
footer .logo {
    margin: 10px 0px;
}
footer * {
    color: white;
}
footer h3 {
    font-size: 16px;
    opacity: .8;
    font-weight: 400;
}
.footer_container {
    display: flex;align-items: center;justify-content: space-between;flex-wrap: wrap;
}
.second_footer {
    background: #6c0000;
    padding: 10px 0px;
}
.second_footer img {
    margin-right: 5px;
}
.second_footer * {
    font-family: 'Mabry', sans-serif;
}
.second_footer h3 {
    font-weight: 600 !important;
}
.second_container {
    display: flex;
}
/* ----------- MAIN PAGE CSS END ----------- */



/* ----------- SERVICES PAGE CSS START----------- */
.export_section {
    height: 100vh;
}
.import_section {
    height: 100vh;
}
.partner_section {
    height: 100vh;
}
.partner_section .container {
    justify-content: center;
}
.big_button {
    padding: 10px 20px;
    background: #820201;
    font-size: 30px;
    margin-bottom: 15px;
    display: inline-block;
}

/* ----------- SERVICES PAGE CSS END----------- */
/* ----------- PODUCT PAGE CSS START ---------*/

.products_container {
    display: flex;align-items: start;justify-content: center;flex-wrap: wrap;
}
.products_container .img {
    background-position: center center;
    background-size: cover;
    width: 100%;
    max-width: 550px;
    border-radius: 5px;
    min-height: 400px;
    margin: 0px 40px 20px 0px;
    box-shadow: 0px 20px 20px rgba(0,0,0,.1);
}
.products_container .content {
    max-width: 500px;
}




/* ----------- PODUCT PAGE CSS END ---------*/

@media(max-width:1016px){
    form {
        margin: 10px 80px 40px 0;
    }
}
@media(max-width:930px){
    form {
        margin: 10px 0px 40px 0;
        justify-content: start;
    }
}
@media(max-width:850px) {
    .navigation {
        display: none;
    }
    .gamburger {
        display: flex;
    }
    .nav_container {
        min-height: 10vh;
    }
    nav {
        margin-bottom: 10vh;
    }
    .logo {
        height: 40px;
        margin-top: 5px;
    }
    .container {
        width: 95%;
    }
}
@media(max-width:605px){
    h2 {
        margin-bottom: 30px;
        font-size: 35px;
    }
    .row2 {
        min-height: 270px;
    }
    section {
        margin: 30px 0px;
    }
    .products_container .img { 
        margin: 0px 0px 40px 0px;
        min-height: 300px;
    }
    .products_section {
        margin-top: 10vh;
    }
    .adding_margin {
        margin-top: 10vh;
    }
}