:root {
    --red: #DC281F;
}

html {
    scroll-behavior: smooth;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Afacad';
}

h1{
    font-size: 60px;
    font-weight: lighter;
}

h2{
    font-size: 26px;
    font-weight: lighter;
}

p{
    font-size: 20px;
}

.dud{
    color: #fff;
    opacity: 0.3;
}


.background{
    width: 100vw;
}

header{
    z-index: 2;
    position: sticky;
    top: 0px;
    /* height: 115px; */
    color: black;
    display: grid;
    grid-template-columns: 30% 70%;
    padding: 15px 200px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(3px);
    /* filter:brightness(.8); */
    box-shadow: 0px 2px 15px black;
}

header .logo img{
    width: 150px;
}

header .navbar{
    padding: 35px;
    font-size: 26px;
    font-weight: bold;
    text-align: end;
}

header .navbar ul{
    list-style: none;
    display: flex;
    justify-content: space-around;
}

header .navbar ul li a{
    text-decoration: none;
    color: black;
}

header .navbar ul li a:hover{
    font-style: italic;
    font-weight: 100;
}

header .navbar ul li a.active{
    color: var(--red);
    font-style: italic;
    font-weight: 100;
}

header .menu-icon {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 40%;
    z-index: 2;
}
  
header .bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: var(--red);
    margin: 6px 0;
    transition: 0.4s;
}

header .change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

header .change .bar2 {opacity: 0;}

header .change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

header .mobile-navbar{
    /* display: none; */
    width: 0vw;
    height: 100vh;
    background: black;
    position: absolute;
    top: 0vh;
    right: 0vw;
    transition: left 0.6s;
}

header .mobile-navbar ul{
    display: none;
    list-style: none;
    color: white;
    text-align: center;
    margin: 20% 0;
    font-size: 40px;
    line-height: 80px;
    font-weight: bold
}

header .mobile-navbar ul li a{
    text-decoration: none;
    color: white;
}

header .mobile-navbar ul li a:hover{
    font-weight: 100;
    font-style: italic;
    color: var(--red);
}

header .mobile-navbar ul li.active{
    font-weight: 100;
    font-style: italic;
    color: var(--red);
}




section{
    width: 100vw;
}

section.cover{
    position: relative;
    top: -139px;
    z-index: -1;
}

section.cover img{
   width: 100vw;
   height: 101vh;
   filter: brightness(.8);
}

#about{
    margin-top: -150px;
}

#about h1{
    /* background-color: #000000; */
    color: black;
    padding: 50px 100px 0px;
    text-align: center;
}

#about{
    background-color: #eee;
    /* height: 65vh; */
    padding: 0px 200px;
}

#about .about-container{
    display: flex;
    justify-content: space-around;
}

#about .about-container .about-sub-container{
    width: 100%;
    /* height: 400px; */
    padding: 20px 40px;
    margin: 0px 0px 50px;
    line-height: 1.5em;
    text-align: center;
}

#about .about-container .about-sub-container a{
    /* position: relative;
    left: 50%;
    transform: translate(-50%, 50%); */
    text-decoration: none;
    color: black;
    background: #eee;
    padding: 4px 15px;
    border: 1px solid black;
    font-size: 18px;
    border-radius: 15px;
}

#about .about-container .about-sub-container a:hover{
    background-color: black;
    color: white;
}

/* #about .about-container .about-sub-container button{
    position: relative;
    left: 50%;
    transform: translate(-50%, 50%);
    text-decoration: none;
    color: black;
    background: #eee;
    padding: 4px 15px;
    border: 1px solid black;
    font-size: 18px;
    border-radius: 15px;
} */

#about .about-container .about-sub-container button:hover{
    background-color: black;
    color: white;
}

#about .about-container .about-sub-container h2{
    text-align: center;
}

#about .about-container .about-sub-container p{
    text-align: center;
    font-size: 18px;
}

#about .about-container .about-sub-container .icon-container{
    background-color: white;
    border-radius: 50%;
    margin: auto;
    margin-top: 50px;
    width: 80px;
    height: 80px;
}

#about .about-container .about-sub-container .icon-container i{
    color: var(--red);
    font-size: 40px;
    padding: 20px 17px;
}

section .mission{
    background-color: #eee;
    margin: 100px 220px 100px;
    padding: 50px;
    line-height: 2em;
}

section .mission p i{
    color: var(--red);
}

section .mission a{
    border: 1px solid black;
    font-size: 18px;
    border-radius: 15px;
    text-decoration: none;
    color: black;
    padding: 4px 15px;
}

section .mission a:hover{
    background-color: black;
    color: white;
}

/* Services 
=================================== */

section.services-container{
    padding: 50px 220px 100px;
    background: var(--red);
    text-align: center;
    color: black;
}

section.services-container h1{
    color: white;
}

section.services-container .services{
    display: flex;
    justify-content: space-around;
}

section.services-container .services div{
    width: 450px;
    background: white;
    padding: 0px 0px 40px;
    line-height: 1.6em;
}

section.services-container .services div h2{
    font-size: 32px;
    margin: 20px 0px 10px;
}

section.services-container .services div p{
    padding: 20px;
}


section.services-container .services div img{
    width: 100%;
}


/*section.services-container .services button{*/
/*    position: relative;*/
/*    background: white;*/
/*    padding: 4px 15px;*/
/*    border: 1px solid black;*/
/*    font-size: 18px;*/
/*    border-radius: 15px;*/
/*    color: black;*/
/*}*/

/*section.services-container .services button:hover{*/
/*    background-color: black;*/
/*    color: white;*/
/*}*/

section.services-container .services a{
    border: 1px solid black;
    font-size: 18px;
    border-radius: 15px;
    text-decoration: none;
    color: black;
    padding: 4px 15px;
}

section.services-container .services a:hover{
    background-color: black;
    color: white;
}

/* ======================================= */

section.clients-container{
    display: flex;
    padding: 100px 220px;
}

section.clients-container .client-sub-container{
    width: 100%;
}

section.clients-container div:nth-child(1) img{
    width: 100%;
    box-shadow: 10px 10px 10px #999;
}

section.clients-container div:nth-child(2){
    padding: 20px 20px;
}

/* ======================================= */

.container{
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 0;
    /* background: rgba(255, 255, 0, 0.6); */
    text-align: center;
    top: 10vh;
    padding: 60vh 10vw 20vh;
    /* color: var(--red); */
    color: white;
    /* filter: brightness(2); */
}

/* .container h2{
    font-size: 80px;
} */

.container p{
    /* font-size: 30px; */
    font-weight: bold;
    color: white;
}

/* The animation code */
@keyframes text-color {
    from {color: transparent;}
    to {color: #ccc;}
  }
  
  /* The element to apply the animation to */
  /* div {
    width: 100px;
    height: 100px;
    background-color: red;
    animation-name: example;
    animation-duration: 4s;
  } */

.container .cover-para-2{
    animation-name: text-color;
    animation-duration: 4s;
    /* animation-delay: 2s; */
    color: #ccc;
}

/* Footer ========================================================================
================================================================================== */

footer{
    color: white;
    background: #000000;
    width: 100wv;
    display: grid;
    grid-template-columns: 35% 10% 30%;
    justify-content: space-around;
    /* text-align: center; */
    padding: 100px 150px;

}

footer div{
    margin: 30px 0px;
}

footer div p{
    cursor: pointer;
    line-height: 1.6em;
    font-size: 16px;
}

.operation-line{
    /* font-family: "Hurricane", cursive; */
    font-family: "Corinthia", cursive;
    font-size: 28px;
    line-height: 1em;
}

footer div a{
    text-decoration: none;
    display: block;
    color: White;
    line-height: 1.5em;
}

footer div a:hover{
    color: var(--red);
    transition: ease .5s;
}

footer div img{
    height: 100px;
}

.cp-social{
    background: #eee;
    color: black;
    display: flex;
    justify-content: space-around;
    padding: 5px;
}

.social-icons {
    display: flex;
    margin-top: 30px;
}

.social-icons a{
    margin: 0px 40px 0px 0px;
    text-decoration: none;
    font-size: 28px;
    color: inherit;
}

.social-icons a:nth-child(1):hover{
    color: #1877F2;
}

.social-icons a:nth-child(2):hover{
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-icons a:nth-child(3):hover{
    /* color: #FE2C55; */
    background: linear-gradient(290deg, rgba(255,0,80,1) 0%, rgba(255,0,80,1) 35%, rgba(255,255,255,1) 50%, rgba(0,242,234,1) 65%, rgba(0,242,234,1) 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.copyright p{
    font-size: 16px;
}

/* Pages About ==========================================
====================================================== */

section.page-cover{
    position: relative;
    top: -139px;
    width: 100vw;
    height: 600px;
}

section.page-cover img{
    width: 100vw;
    height: 600px;
}

section.page-cover .cover-layer{
    width: 100vw;
    height: 600px;
    position: relative;
    top: -605px;
    background-color: black;
    /* z-index: 2; */
    opacity: 0.6;
    text-align: center;
}

section.page-cover .cover-layer h1{
    padding-top: 300px;
    color: white;
}

section.page-cover .cover-layer h2{
    font-style: italic;
    font-weight: lighter;
    color: white;
    /* font-size: 26px; */
}

section.content{
    position: relative;
    top: -139px;
    padding: 100px 220px 0px;
}

.content i{
    color: var(--red);
}

.sub-section{
    display: flex;
    justify-content: space-between;
    padding: 100px 220px;
    background: #ccc;
}

.sub-section div{
    width: 45%;
    padding: 20px ;
    background: white;
    box-shadow: 10px 10px 10px #999;
}


/* Pages Services =======================================
====================================================== */

.temp-controlled{
    display: flex;
    background: #eee;
    padding: 100px 220px;
}

.temp-controlled div{
    width: 100%;
}

.temp-controlled div img{
    box-shadow: 10px 10px 10px #aaa;
    width: 100%;
}

.temp-controlled div:nth-child(2){
    padding: 40px;
}

.dry-freight{
    display: flex;
    padding: 100px 220px;
}

.dry-freight div{
    width: 100%;
}

.dry-freight div img{
    box-shadow: -10px 10px 10px #aaa;
    width: 100%;
}

.dry-freight div:nth-child(1){
    padding: 40px;
}


/* Pages Career =======================================
====================================================== */

.download-application-form{
    display: flex;
    justify-content: space-between;
    background: black;
    color: white;
    padding: 60px 220px;
}

.download-application-form p{
    font-size: 60px;
}

.download-application-form a{
    text-decoration: none;
    font-size: 20px;
    background: white;
    color: black;
    padding: 8px 20px;
    margin-top: 20px;
    height: 46px;
    border-radius: 23px;
}

.download-application-form a:hover{
    background: var(--red);
    color: white;
}

.training-program{
    display: flex;
    background: #eee;
    padding: 100px 220px;
}

.training-program div{
    width: 100%;
}

.training-program div img{
    box-shadow: 10px 10px 10px #aaa;
    width: 100%;
}

.training-program div:nth-child(2){
    padding: 40px;
}

/* Contact ==================================
============================================ */

section.contact{
    padding: 0px 220px;
    display: flex;
    justify-content: space-between;
}

.address-container span{
    color: var(--red);
    font-size: 30px;
    font-weight: bold;
}

.address-container p a{
    text-decoration: none;
    color: black;
}

.address-container p{
    font-size: 20px;
    line-height: 1.8em;
}

section.contact div{
    width: 100%;
}

.form-container{
    padding: 0px 0px;
}

form {
    max-width: 100%;
}

form .field label {
    display: block;
    font-size: 18px;
    margin: 8px 0px 2px;

}

form .field input,textarea{
    width: 100%;
    padding: 8px;
    font-size: 18px;
}

form button{
    background: black;
    color: white;
    padding: 8px 18px;
    font-size: 18px;
    border: none;
    margin: 10px 0px;
}

form button:hover{
    background: var(--red);
}

section iframe{
    width: 100%;
    padding: 50px 220px;
    height: 60vh;
}


