/* Contact us */

.contactus {
    background-image: url(../Images/logistics/contacthome.avif);
    background-position: center;
    background-size: cover;
    display: flex;
    text-align: center;
    align-items: center;
    min-height: 441px;
    overflow: hidden;
    position: relative;
}

.contactus::before {
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, 50%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
}

.contactcontent h1 {
    position: relative;
    font-family: 'LeagueGothic-Regular';
    font-size: 50px;
    line-height: 51px;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.contactcontent ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.contactcontent a {
    position: relative;
    font-family: 'Lato-Regular';
    font-size: 20px;
    font-weight: bold;
    line-height: 21px;
    color: #ffffff;
    text-decoration: none;
}

.contactcontent a:hover {
    color: #6569cd;
}

.contactcontent a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #6569cd;
    transition: 0.3s ease;
}

.contactcontent a:hover::after {
    width: 100%;
}

.contactcontent li {
    position: relative;
    font-family: 'Lato-Regular';
    font-size: 20px;
    line-height: 21px;
    color: #ffffff;
    text-decoration: none;
}

/* home */

.contacthome {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    background-color: #f2f2f2;
}

.contact-top {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-bg {
    position: relative;
}

.contacthome-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-76%, -65%);
    width: 730px;
    height: 480px;
}

.contacthome-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px 30px 30px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contactform h2 {
    font-family: 'LeagueGothic-Regular';
    font-size: 50px;
    line-height: 51px;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-align: center;
}

.contactform {
    position: absolute;
    z-index: 2;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 30px;
    width: 65%;
    top: 50%;
    left: 50%;
    transform: translate(-20%, -18%);
    max-width: 700px;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
}


.inputbox {
    margin-bottom: 20px;
}

.inputbox input,
.inputbox textarea {
    width: 100%;
    font-family: 'Lato-Regular';
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    line-height: 32px;
    color: #000;
}

.inputbox input::placeholder,
.inputbox textarea::placeholder {
    color: #ccc;
}

.inputbox input:focus,
.inputbox textarea:focus {
    outline: none;
}

.inputbox textarea {
    resize: vertical;
    min-height: 100px;
}

.contactform a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    line-height: 32px;
    display: inline-block;
    font-family: 'Lato-Regular';
    width: 100%;
    padding: 12px;
    background-color: #251e44;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
}

/* .contact-bottom  */

.contactlocation {
    padding: 60px 0;
    overflow: hidden;
    width: 100%;
    background-color: #f2f2f2;
}


.contact-bottom ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.contact-bottom ul li {
    width: calc(33.33% - 15px);
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.contact-bottom ul li a {
    text-decoration: none;
    font-family: 'Lato-Regular';
}


.contact-bottom .item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-bottom .contact-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 15px;
}

.contact-bottom .contact-location a,
.contact-bottom .contact-list a {
    color: #251e44;
    text-decoration: none;
    font-family: 'Lato-Regular';
    font-size: 18px;
    line-height: 20px;
    text-align: center;
}

.contact-bottom .item i {
    font-size: 28px;
    line-height: 34px;
    color: #251e44;
}

.contact-bottom h3 {
    margin-bottom: 0px;
    color: #251e44;
    font-family: 'Lato-Semibold';
    font-size: 28px;
    line-height: 34px;
}

.contact-bottom .contact-list p {
    color: #251e44;
    text-decoration: none;
    font-family: 'Lato-Regular';
    font-size: 18px;
    line-height: 20px;
    text-align: center;
}

.contact-bottom .contact-location address {
    color: #251e44;
    text-decoration: none;
    font-family: 'Lato-Regular';
    font-size: 18px;
    line-height: 32px;
    text-align: center;
}



/* responsive */
@media only screen and (max-width: 991px) {


    .contacthome {
        padding: 50px 0;
    }

    .contact-top {
        flex-wrap: wrap;
    }

    .contact-bg {
        display: none;
    }

    .contacthome-img {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
    }

    .contacthome-img img {
        border-radius: 100px 0 0 0;
    }

    .contactform {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0 0 100px 0;
    }

    .contactform h2 {
        font-size: 40px;
        line-height: 45px;
    }


    .contactform a {
        margin: 0 0 20px;
    }

    /* .contact-bottom  */


    .contactlocation {
        padding: 50px 0;
    }

    .contact-bottom ul {
        justify-content: center;
    }

    .contact-bottom ul li {
        width: calc(50% - 15px);
    }
}


@media only screen and (max-width: 767px) {
    .contactus {
        min-height: 350px;
    }

    .contactcontent h1 {
        font-size: 40px;
        line-height: 45px;
        margin-bottom: 5px;
    }

    .contactcontent a,
    .contactcontent li {
        font-size: 16px;
        line-height: 18px;
    }

    /* home */

    .contacthome {
        padding: 40px 0;
    }

    .contact-top {
        flex-wrap: wrap;
    }

    .contact-bg {
        display: none;
    }

    .contacthome-img {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
    }

    .contacthome-img img {
        border-radius: 100px 0 0 0;
    }

    .contactform {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0 0 100px 0;
    }

    .contactform h2 {
        font-size: 30px;
        line-height: 30px;
    }

    .btn-submit {
        font-size: 16px;
        padding: 5px;
        margin: 0px 0 15px;
    }

    .inputbox {
        margin-bottom: 10px;
    }

    .inputbox input,
    .inputbox textarea {
        padding: 5px 10px;
        font-size: 14px;
        line-height: 30px;
    }

    .inputbox textarea {
        min-height: 80px;
    }

    /* contactlocation */
    .contactlocation {
        padding: 40px 0;
    }

    .contact-bottom ul {
        flex-direction: column;
        gap: 20px;
    }

    .contact-bottom ul li {
        width: 100%;
    }

    .contact-bottom ul li a .item {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .contact-bottom h3 {
        font-size: 20px;
    }

    .contact-bottom .contact-list {
        row-gap: 10px;
    }

    .contact-bottom .contact-list a,
    .contact-bottom .contact-list p,
    .contact-bottom .contact-location address {
        font-size: 14px;
        line-height: 24px;
    }

    .map iframe {
        height: 350px;
    }
}