{% load static %}
@import 'bootstrap.min.css';
@import 'fontawesome.min.css';
@import 'reset.css';
@font-face {
    font-family: 'roboto';
    font-weight: bold;
    src: url("/static/nobel/fonts/Roboto-Bold.ttf") format('ttf');
}

@font-face {
    font-family: 'roboto';
    font-weight: normal;
    src: url("/static/nobel/fonts/Roboto-Regular.ttf") format('ttf');
}

body {
    font-family: 'roboto' !important;
}

.image-parent {
    display: block;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.image-parent:after {
    content: "";
    display: block;
}

.image-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.image-inner img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-features {
    width: 100%;
}

.about-main-image .image-parent:after {
    padding-top: 50%;
}

@media(max-width: 575px) {
    .about-main-image .image-parent:after {
        padding-top: 70%;
    }
}

.about-features-description {
    font-size: 16px;
    margin-top: 10px;
    line-height: 25px;
}

.about-us-text p {
    font-size: 18px;
    line-height: 30px;
    margin: 20px 0 30px 0;
    padding: 15px;
    text-align: justify;
}

.about-us-text h2 {
    font-size: 35px;
    text-align: center;
    font-weight: bold;
    margin-top: 40px;
}

.about-features .icon {
    background-color: white;
    width: 100px;
    height: 100px;
    box-shadow: 0px 0 4px 9px #eceaea5e;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

@media(max-width: 575px) {
    .about-features .icon {
        width: 70px;
        height: 70px;
    }
}

.about-features .icon i {
    font-size: 50px;
    color: #3e7e79;
}

@media(max-width: 575px) {
    .about-features .icon i {
        font-size: 30px;
    }
}

.about-features h3 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
}

.about-desc {
    font-family: 'noah';
}


/* showrooms */

.showrooms-header {
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #626262;
}

@media(max-width: 575px) {
    .showrooms-header {
        height: 80px;
    }
}

.showrooms-header h2 {
    font-size: 50px;
    margin-bottom: 0;
}

.showrooms-location {
    background: #282828;
}

.image-location .image-parent:after {
    padding-top: 60%;
}

.showrooms-item-address {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width: 991px) {
    .showrooms-item-address {
        height: 65px;
    }
}

@media(max-width: 575px) {
    .showrooms-item-address {
        height: 55px;
    }
}

.showrooms-item-address i {
    font-size: 40px;
    color: #3b7c78;
}

.showrooms-address-text {
    font-size: 25px;
    line-height: 25px;
}

@media(max-width: 1199px) {
    .showrooms-address-text {
        font-size: 23px;
        line-height: 18px;
    }
    .showrooms-header h2 {
        font-size: 40px;
    }
}

@media(max-width: 991px) {
    .showrooms-address-text {
        font-size: 20px;
    }
    .showrooms-header {
        height: 120px;
    }
    .showrooms-header h2 {
        font-size: 35px;
    }
}

@media(max-width:767px) {
    .showrooms-header {
        height: 100px;
    }
    .showrooms-header h2 {
        font-size: 30px;
    }
}

@media(max-width: 575px) {
    .showrooms-address-text {
        font-size: 15px;
    }
}

@media(max-width:480px) {
    .showrooms-header {
        height: 90px;
    }
    .showrooms-header h2 {
        font-size: 25px;
    }
}


/* contact */

.contact-header {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form input {
    outline: none;
    height: 40px;
}

.contact-form textarea {
    resize: none;
}

.contact-form .form-control {
    box-shadow: none !important;
}

.contact-form .form-control:focus {
    border-color: #008476 !important;
}

.contact-form button {
    line-height: 30px;
    padding: 5px 15px;
    background-color: #008476;
    border: 2px solid #008476;
    border-radius: 1px;
    cursor: pointer;
    display: block;
    width: max-content;
    color: #fff !important;
    transition: 0.4s;
}

.contact-form button:hover {
    border: 2px solid #008476;
    background: #fff;
    color: #008476 !important;
}

.contact-item {
    width: 100%;
    margin: 20px 0;
    text-align: center;
    line-height: 40px;
}

.contact-item .text a:hover {
    transition: 0.4s;
    color: #008476 !important;
}

.contact-item .icon i {
    font-size: 30px;
    vertical-align: middle;
    color: #008476;
}

.contact-item .text {
    font-size: 16px;
}


/* email-nav */

.mail-header nav {
    background: #111111;
}

.mail-header .navbar-toggler {
    padding: 0;
    width: 40px;
    height: 40px;
}

.email-navbar-nav .nav-item .icon i {
    color: #008476;
}

.email-navbar-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

@media(max-width: 991px) {
    .email-navbar-nav .nav-item .icon {
        margin-right: 10px;
    }
}


/* mail-logo */

@media (max-width:1199px) {
    .mail-header nav {
        font-size: 13px;
    }
}

.mail-ads {
    background: #333131;
    height: 125px;
    width: 100%;
}

.mail-ads-logo {
    width: 45%;
}

.mail-ads-logo img {
    width: 150px;
}

@media (max-width:575px) {
    .mail-ads-logo img {
        width: 120px;
    }
}

.mail-ads-icon {
    width: 45%;
}

.mail-ads-icon i {
    color: #fff;
    font-size: 65px;
    margin-bottom: 8px;
}

@media (max-width:575px) {
    .mail-ads-icon i {
        font-size: 70px;
    }
}

.mail-ads-icon p {
    font-size: 13px;
    font-weight: 500;
}


/* mail-information */

.mail-info {
    border-left: 1px solid #ccc;
}

.mail-information .mail-info-image img {
    width: 300px;
}

.mail-info i {
    font-size: 26px;
    vertical-align: middle;
}

.mail-info .mail-item p {
    font-size: 13px;
}