* {
    box-sizing: border-box;
    padding: 0rem;
    margin: 0rem;
}

li {
    list-style: none;
}

.menu ul li {
    padding: 0.4rem;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.top-section {
    height: 100vh;
    position: relative;
    background-image:  linear-gradient(rgba(70, 130, 180, .9), rgba(178, 34, 34, .9)), url('../image/slides/slide2.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.menu-section {
    position: absolute;
    top: 0rem;
    display: flex;
    justify-content:space-between;
    width: 100%;
    z-index: 5;
}

.menu ul {
    display: flex;
    gap: 1.3rem;
}

.menu {
    padding: 0.2rem 0.8rem;
}

.logo {
    padding: 0.2rem;
}

.logo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #ed7f02;
    position: absolute;
    z-index: 5;
}

.top-left-section {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.top-left-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.top-left-section ul li:nth-child(1) {
    font-size: 4.0rem;
    font-weight: bold;
}

.top-left-section ul li:nth-of-type(2) {
    font-size: 1.9rem;
    text-align: right;
    color: rgb(237, 237, 237);
}

.fancy {
    position: absolute;
    background-color: rgb(3, 3, 157);
    height: 13rem;
    width: 13rem;
    top: 20%;
    left: 50%;
    transform: translate(-50%, 146%);
    rotate: 45deg;
    z-index: 3;
}

.next-level {
    background-color:#df3607;
    color: #fff;
    padding: 0.5rem;
    border-radius: 5px;
    border-bottom: 10px solid #0e1c9a;
}

.cargo {
    background-color: #0e1c9a;
    color: #fff;
}

.services {
    display: flex;
    flex-direction: column;
}

.service-title ul {
    padding: 0rem;
    margin: 0rem;
}

.service-title ul li:nth-child(1) {
    color: #df3607;
    font-size: 3rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 0.5rem 1.4rem;
    text-align: center;
}

.service-title ul li:nth-child(2) {
    color: #2150dc;
    font-size: 2rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 0.5rem 1.4rem;
    text-align: center;
    font-weight: bolder;
}

.service-details {
    display: flex;
    flex-direction: row;
    gap: 0.4rem;
    padding: 5rem;
}

.service-details > div {
    flex: 1 1 auto;
    border: 1px solid #edecec;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.first-service > div:nth-child(1){
    background-image: url('../image/slides/aircargo.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
}

.second-service > div:nth-child(1){
    background-image: url('../image/slides/ocean.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
}

.third-service > div:nth-child(1){
    background-image: url('../image/slides/slide1.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
}

.first-service > div:nth-child(2), .second-service > div:nth-child(2), .third-service > div:nth-child(2) {
    background-color: rgb(247, 246, 246);

}

