@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

* {
    padding: 0;
    margin: 0;
}

body {
    direction: rtl;
    font-family: "Cairo", sans-serif;
}

header {
    background-image: url(../img/header.jpg);
    background-size: cover;
    background-position: center center;
    position: relative;
}

header .brand {
    margin: 100px auto 60px;
    display: inline-block;
    padding-bottom: 35px;
    border-bottom: 5px solid #464b52;
}

header .heading-page h1 {
    font-size: 60px;
    font-weight: bold;
    line-height: 75px;
    color: white;
}

header .heading-page p {
    font-size: 18px;
    line-height: 25px;
    color: #acacac;
    width: 40%;
    margin-right: auto;
    margin-left: auto;
}
header .count-down{
    width: 60%;
    margin: 90px auto;
}

header .counter {
    display: inline-block;
    margin: 0 15px;
}

header .count-amount {
    font-size: 60px;
    display: block;
    color: #ffce00;
    font-weight: bold;
}

header .count-period {
    font-size: 30px;
    display: block;
    font-weight: bold;
    color: #fff;
}

header .send-notification p {
    font-size: 18px;
    color: #fff;
}

header .input-group {
    width: 30%;
    margin: auto;
    transform: translateY(30%);
} 

header .send-notification .input-group button {
    padding: 13px 33px;
    background-color: #ffce00;
    border-radius: 0;
}

header .send-notification .input-group input {
    border: 2px solid #e6e6e6;
    border-radius: 0;
    color: #e6e6e6;
    font-size: 18px;
    text-align: right;
}

.invalid-feedback {
    margin-bottom: -30px;
}

.features {
    padding: 100px 0;
}

.features h2 {
    font-size: 45px;
    color: #555;
    margin-bottom: 50px;
}

section.features .row .d-flex {
    border: 4px solid #fafafa;
    padding: 40px 10px;
    margin-bottom: 20px;
    max-height: 190px;
}

section.features .row .d-flex h4 {
    font-size: 24px;
    color: #555;
}

section.features .row .d-flex p {
    font-size: 15px;
    line-height: 25px;
    color: #a1a1a1;
}

section.features .row .col-md-6:nth-child(even) {
    direction: ltr;
}

footer {
    background-image: url(../img/footer-bg.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
}

footer .footer-notification {
    background-color: rgb(255 266 0 / 70%);
    padding: 70px 0;

}

footer .footer-notification  h3 {
    font-size: 30px;
    margin-bottom: 30px;
    color: #464b52;
}

footer .input-group {
    width: 30%;
    margin: auto;
}

footer .input-group input{
    border-radius: 0;
    font-size: 18px;
    color: #c7c7c7;
    border-color: #fff;
    text-align: right;
}

footer .input-group button {
    border-radius: 0;
    border: none;
    background-color: #393939;
    padding: 13px 33px;
}

footer .social-media {
    background-color: rgb(57 57 57 /90%);
    padding: 100px 0 30px;
}

footer .social-media  h3 {
    font-size: 30px;
    margin-bottom: 30px;
    color: white;
}

footer .social-media ul li a {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 24px;
    background-color: rgb(255 255 255 / 14%);
    color: #fff;
    display: block;
    transition: .5s;
}

footer .social-media ul li a:hover {
    background-color: #ffce00;
    color: rgb(57 57 57 / 90%);
}

footer .social-media hr {
    width: 25%;
    margin: 50px auto 30px;
}

footer .social-media a.email {
    color: #b4b4b4;
    text-decoration: none;
}

footer .social-media a.email i {
    color: #ffce00;
    margin-left: 5px;
}

@media (max-width : 992px) {
    header .heading-page p {
        width: 70%;
    }
    .input-group{
        width: 50% !important;
    }
    section.features .row .d-flex {
        padding: 15px 10px;
    }
    section.features .row .d-flex h4 {
        font-size: 20px;
    }
    header .count-down {
        width: 80%;
    }
}

@media (max-width: 567px) {
    header .heading-page h1 {
        font-size: 45px;
    }
    header .heading-page p {
        width: 90%;
    }
    .input-group{
        width: 80% !important;
    }
}