/* @import url('https://fonts.googleapis.com/css2?family=Cabin&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@700&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Cabin:wght@700&display=swap'); */

@tailwind base;
@tailwind components;
@tailwind utilities;

html,
body {
    scroll-behavior: smooth;
}

input[type="checkbox"] {
    display: none;
}

nav #burger:checked~ul {
    width: fit-content;
    transition: all 0.3s ease;
    background-color: white;
    padding-left: 2em;
    padding-right: 2em;
    overflow-y: auto;
}

ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 5px;
    background-color: rgb(88, 87, 87);
    transition: width 0.5s;
}

ul li a:hover::before {
    width: 100%;
}

.rgb {
    background-color: rgba(0, 0, 0, 0.05);
}

.break {
    word-wrap: break-word;
    break-after: always;
    word-break: keep-all;
}

.zindex {
    z-index: 99;
}

.preloader {
    background: white url(../dist/img/Logo.png) no-repeat center center;
    background-size: 40%;
    height: 100vh;
    width: 100%;
    transition: all 0.3s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: none;
}

.side-shadow {
    box-shadow: 10px 10px 0px black;
}

.exhibition {
    background-image: linear-gradient(rgba(217, 217, 217, 0.649), rgba(0, 0, 0, 0.5)), url(../dist/img/new-exhibition-cargo.png);
}

.warehousing {
    background-image: linear-gradient(rgba(217, 217, 217, 0.649), rgba(0, 0, 0, 0.5)), url(../dist/img/warehousing.png);
}

.services {
    background-image: linear-gradient(rgba(217, 217, 217, 0.649), rgba(0, 0, 0, 0.5)), url(../dist/img/quote.png);
}

.airfreight {
    background-image: linear-gradient(rgba(217, 217, 217, 0.649), rgba(0, 0, 0, 0.5)), url(../dist/img/airfreight.png);
}

.inland {
    background-image: linear-gradient(rgba(217, 217, 217, 0.649), rgba(0, 0, 0, 0.5)), url(../dist/img/new-inland.png);
}

.sea {
    background-image: linear-gradient(rgba(217, 217, 217, 0.649), rgba(0, 0, 0, 0.5)), url(../dist/img/sea.png);
}

.project {
    background-image: linear-gradient(rgba(217, 217, 217, 0.649), rgba(0, 0, 0, 0.5)), url(../dist/img/project-cargo.png);
}

/* .typing{
    overflow: hidden;
    border-right: 0.15em solid crimson;
    white-space: nowrap;
    letter-spacing: 2px;
    animation: typing 4s steps(30, end), infinite, blink 0.75s step-end infinite;
}
@keyframes typing{
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink{
    from,to{
        border-color:  transparent;
    }
    50%{
        border-color: crimson;
    }
} */
.typed-cursor{
    display: none;
}