﻿@font-face {
    font-family: DIN-Next-LT-Arabic-Medium;
    src: url('../fonts/DIN-Next-LT-Arabic-Medium.ttf');
}
@font-face {
    font-family: DIN-Next-LT-Arabic-Light;
    src: url('../fonts/din-next-lt-arabic-light.ttf');
}
@font-face {
    font-family: DIN-Next-LT-Arabic-Regular;
    src: url('../fonts/DIN-Next-LT-Arabic-Regular.ttf');
}
@font-face {
    font-family: SuisseIntl-Medium;
    src: url('../fonts/SuisseIntl-Medium.otf');
}
body {
    padding-top: 50px;
    padding-bottom: 20px;
    font-family: SuisseIntl-Medium;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 90vh;
    padding: 0px 0 40px 0;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

    .hero .hero-bg img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero .hero-bg::before {
        content: "";
        background: color-mix(in srgb, #ffffff, transparent 15%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .hero .container {
        position: relative;
        z-index: 3;
    }
    .hero .div-form {
        padding-top: 18%
    }

    .hero h1 {
        margin: 0;
        font-size: 25px;
        font-weight: 500;
        line-height: 56px;
        font-family: SuisseIntl-Medium;
        color: #797979;
        padding-bottom: 20px;
    }

        .hero h1 span {
            color: #388da8;
        }

    .hero p {
        color: #797979 !important;
        margin: 0px 0 0px 0;
        font-size: 20px;
        font-weight: 400;
        margin-top: 20px
    }
    .hero input {
        max-width: 500px !important;
        font-family: SuisseIntl-Medium
    }

    @media (min-width: 768px) {
        .hero .hero-img {
        max-width: 600px;
    }
  
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 50px;
    transition: 0.5s;
    box-shadow: 0 8px 28px color-mix(in srgb, var(--accent-color), transparent 80%);
}

    .hero .btn-get-started:hover {
        color: var(--contrast-color);
        background: color-mix(in srgb, var(--accent-color), transparent 15%);
        box-shadow: 0 8px 28px color-mix(in srgb, var(--accent-color), transparent 55%);
    }
     
@media (max-width: 640px) {
    

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }
    .hero .div-form {
        padding-top: 0%
    }
}