
.contact-container {
    position: relative;
    margin: 20px auto;
    margin-bottom: 3rem;
    display: flex;
    border-radius: 8px;
    max-width: 1400px;
    width: 100%;
    overflow: hidden;
}

.contact-left {
    margin-top: 1rem;
    padding: 2rem;
    position: absolute;
    left: 1rem;
    width: 40%;
    height: 500px;
    background: url('../images/img/contact.png') no-repeat center center/cover;
    /*background-color: #FE7A36;*/
    color: white;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.contact-left h3 {
    margin-bottom: 1rem;
    font-size: 20px;
    font-weight: bold;
}

.info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.info i {
    font-size: 20px;
    margin-right: 15px;
}

.info p {
    margin: 0;
    font-size: 13px;
}

.social-icons {
    display: flex;
    margin-top: 1rem;
}

.social-icons a {
    color: white;
    margin-right: 20px;
    font-size: 24px;
    text-decoration: none;
}

.bi-facebook:hover {
    border-radius: 50%;
    color: rgb(0, 55, 255);
}

.bi-instagram:hover {
    border-radius: 50%;
    color: rgb(255, 0, 132);
}

.info:hover {
    border-radius: 50%;
    color: rgb(179, 255, 0);
}

/*
.bi-geo-alt:hover{
    border-radius: 50%;
    color:  rgb(102, 255, 0);
}

.bi-telephone:hover{
    border-radius: 50%;
    color:  rgb(102, 255, 0);
}
*/
.social-icons a:hover {
    opacity: 0.8;
}

.contact-right {
    margin-left: 40%;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    flex: 1;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    width: 60%;
}

.contact-right h3 {
    margin-bottom: 1rem;
    font-size: 24px;
}

.contact-form {
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group #message {
    height: 100px;
}

.form-control {
    border-radius: 10px;
    height: 50px;
    box-shadow: none;
    border-color: #ced4da;
}

.form-control:focus {
    border-color: #ff6b00;
}

.form-group label {
    margin-bottom: 0.3rem;
    display: block;
    font-size: 16px;
}

.btn {
    background-color: #ff6b00;
    border-color: #ff6b00;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    font-size: 16px;
}

.btn:hover {
    background-color: #9100e5;
    border-color: #e55a00;
}

@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-left {
        position: relative;
        width: 100%;
        border-radius: 8px 8px 0 0;
    }

    .contact-right {
        margin-left: 0;
        width: 100%;
        border-radius: 0 0 8px 8px;
    }
}

@media (max-width: 768px) {

    .contact-left,
    .contact-right {
        width: 100%;
        padding: 1.5rem;
        left: 0;
    }

    .form-group.row .col {
        flex: 1 0 100%;
    }
}

@media (max-width: 480px) {

    .contact-left,
    .contact-right {
        padding: 1rem;
    }

    .form-group.row .col {
        flex: 1 0 100%;
    }
}


.navbar-nav .nav-link:hover {
    color: rgba(220, 53, 69) !important;
}

.nav-item .active {
    color: rgba(220, 53, 69) !important;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.hover-bg-change:hover {
    background-color: rgba(220, 53, 69) !important;
    color: white !important;
    transition: 0.5s ease-in-out;
}

.hover-bg-change:hover .fa {
    color: white !important;
    transition: 0.5s ease-in-out;
}

.hero-section {
    background: url('images/img/login-bg.jpeg') no-repeat center center/cover;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 5px;

}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.2rem;
    font-weight: bold;
}

.inline {
    display: inline;
}

.i {
    margin-top: 2rem;
    align-items: center;
    font-size: 60px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 50%;
}

.h1 {
    margin-top: 4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem
}