@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #212121;
}

.wrapper {
    background-position: center;
    background-size: cover;
    height: 100vh;
    background-color: #f6f6f6;
}

header,
main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

header {
    padding: 10px 20px;
    background-color: #1F316F;
}

.img-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.img-icon img {
    width: 200px;
    background: transparent;
    vertical-align: middle;
    padding: 2px 3px;
}

.img-icon p {
    font-size: 1rem;
    font-weight: 800;
    font-family: "EB Garamond", serif;
    color: #EEEEEE;
}

.img-icon p::before {
    content: "\201C";
    margin-right: 5px;
}

.img-icon p::after {
    content: "\201D";
    margin-left: 5px;
}

.right_header h4 {
    font-size: 20px;
    font-weight: 600;
    color: #f6f6f6;
}

.right_header p {
    font-size: 14px;
    font-weight: 400;
    color: #f6f6f6;
}

.form {
    width: 40%;
    padding: 20px;
    border: 1px solid rgba(31, 30, 30, 0.4);
    border-radius: 7px;
    margin: 20px 0;
}

.form .user {
    margin: 20px 0;
}

.form label {
    font-size: 1rem;
    font-weight: 600;
    margin: 5px 0;
}

.form .input-drop {
    width: 100%;
    height: 35px;
    margin: 10px 0;
    position: relative;
}

.input-drop input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    border-radius: 10px;
    padding: 20px 30px 20px 20px;
    background-color: transparent;
    border: 1px solid rgba(2, 2, 2, 0.2);
}

select {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 10px;
    padding: 10px 20px;
    background-color: transparent;
    color: #212121;
    border: 1px solid rgba(2, 2, 2, 0.2);
    margin-top: 10px;
}

select option {
    background-color: transparent;
    color: #000;
}

.input-drop input::placeholder {
    color: #212121;
}

.input-drop i {
    position: absolute;
    right: 10px;
    top: 58%;
    transform: translateY(-50%);
}

.input-drop .bxs-lock-alt {
    cursor: pointer;
}

.remember-pass {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
}

.remember-pass label {
    font-size: 14px;
}

.remember-pass label input {
    accent-color: #1F316F;
    margin-right: 5px;
}

.remember-pass a {
    text-decoration: none;
    font-size: 13px;
    color: #212121;
}

.remember-pass a:hover {
    text-decoration: 1px solid underline rgba(33, 33, 33, 0.2);
}

.btn {
    width: 100%;
    height: 35px;
    background: #1F316F;
    outline: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    color: #EEEEEE;
    margin-top: 10px;
}

.btn:hover {
    color: rgba(238, 238, 238, 0.8);
    border: 1px solid rgba(238, 238, 238, 0.2);
}

.lbltrems {
    font-size: 12px;
    line-height: 20px;
    color: #212121;
    margin: 26px 0 5px 0;
}

.img-slider {
    width: 59%;
    margin: 20px 0;
}

.carousel {
    max-width: 80%;
}

.carousel img{
    height: 450px;
}

footer {
    /* color: #0d71ea; */
    padding: 20px 0;
    background-color: #1F316F;
}

footer.row {
    margin: 0px;
}

footer.row .col-md-4 {
    padding-left: 30px;
}

.logo_footer {
    width: 150px;
    margin: 10px 0;
}

.mail_footer,
.phn_footer {
    margin: 10px 0;
    display: flex;
    justify-content: baseline;
    align-items: center;
}

.mail_footer .bx,
.phn_footer .bx {
    font-size: 24px;
    color: #EEEEEE;
}

.mail_footer span,
.phn_footer span {
    font-size: 16px;
    font-size: 400;
    margin: 0 10px;
    color: #EEEEEE;
}

.social_media a {
    text-decoration: none;
    margin: 0 5px;
}

.social_media a .bx {
    font-size: 24px;
    color: #EEEEEE;
}

.middle_footer h5,
.right_footer h5 {
    font-size: 20px;
    font-weight: 700;
    color: #EEEEEE;
}

.middle_footer nav ul,
.right_footer nav ul {
    padding: 0 5px;
    margin: 0;
}

.middle_footer nav ul li,
.right_footer nav ul li {
    list-style-type: none;
    padding: 4px 0;
}

.middle_footer nav ul li a,
.right_footer nav ul li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    color: rgb(238, 238, 238, 0.8);
    text-align: justify;
}