* {
    box-sizing: border-box;
}

.call {
    position: fixed;
    bottom: 30px;
    right: 10px;
    font-size: 1.5em;
    font-weight: 600;
    text-decoration: none;
    background-color: #1A1464;
    color: #ffffff;
    border-radius: 5px;
    font-family: "Lexend";
    padding: 10px 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: ease-in-out .2s, transform .2s;
}

.call:hover {
    transform: scale(1.03);
    background-color: #FE1630;
    color: #ffffff;
}

.icon {
    animation: balancear 0.5s infinite;
    display: inline-block;
    font-size: 1.2em;
    transition: animation-duration 1s ease;
}

@keyframes balancear {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-15deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.icon:hover {
    animation-duration: 1s;
}

header {
    padding: 10px 50px;
    text-align: center;
}

header img {
    width: 180px;
}

h1 {
    font-family: "Poppins", sans-serif;
    font-size: 2.5em;
    font-weight: 900;
    color: #1A1464;
    text-align: center;
}

.content img {
    width: 100%;
    height: 95rem;
    border-radius: 5px;
    box-shadow: 0 0 10px 1px #0000002d;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.social-media a {
    color: #ffffff;
    font-size: 2em;
    border-radius: 3px;
    background-color: #1A1464;
    padding: 6px 15px;
    transition: ease-in-out .2s;
}

.social-media a:hover {
    background-color: #FE1630;
    transform: scale(1.05);
    border-radius: 50%;
}

.content {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.content a {
    text-decoration: none;
    background-color: #1A1464;
    color: #ffffff;
    justify-content: center;
    font-family: "Lexend";
    padding: 15px 60px;
    border-radius: 5px;
    width: 50%;
    display: flex;
    gap: 10px;
    font-weight: 700;
    align-items: center;
    font-size: 1.6em;
    transition: ease-in-out .3s, transform .3s;
}

.content a i {
    font-size: 1.3em;
}

.content a:hover {
    background-color: #FE1630;
    transform: scale(1.05);
}


.contact {
    font-family: "Poppins";
}

.contact-form-container {
    background-color: #ffffff;
    border-radius: 15px;
}

.contact-form .input-group {
    margin-bottom: 20px;
    position: relative;
}

.contact-form .input-group label {
    color: #333;
    margin-bottom: 5px;
    display: block;
    text-align: left;
    font-weight: 400;
    font-size: 14px;
}

::placeholder {
    font-weight: 400 !important;
}

.contact-form .input-group input,
.contact-form .input-group textarea,
.contact-form .input-group select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background-color: #f4f4f4;
    border-radius: 10px;
    color: #555;
    font-size: 16px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.contact-form .input-group input:focus,
.contact-form .input-group textarea:focus,
.contact-form .input-group select:focus {
    transform: scale(1.01);
    outline: auto #1A1464;
}

.contact-form .input-group textarea {
    resize: none;
    height: 150px;
}

.contact-form .input-group select {
    cursor: pointer;
}

.contact-form .checkbox-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

.contact-form .checkbox-label input {
    margin-right: 10px;
    cursor: pointer;
}

.submit-btn {
    background-color: #1A1464;
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #FE1630;
    transform: translateY(-2px);
}

.selec-course {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.check {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.lbl {
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 975px) {
    .contact-form-container {
        width: 100%;
        padding: 20px;
    }

    h1 {
        display: none;
    }

    h2 {
        font-size: 22px;
    }

    main {
        margin-top: 20px;
    }

    .content img {
        width: 100%;
        height: auto !important;
    }

    .submit-btn {
        font-size: 14px;
    }

    .logo {
        width: 200px;
    }

    .content a {
        width: 100%;
        font-size: 1.2em;
    }

    .contact {
        padding: 80px 0 20px 0 !important;
    }

    form {
        padding: 20px 0 !important;
    }

    .selec-course {
        display: grid;
        grid-template-columns: auto !important;
    }

    .call {
        bottom: 10px !important;
        font-size: 1em !important;
    }
}