html {
    scroll-behavior: smooth;
}

body {
    background:  rgb(17, 17, 17);
    margin: 0;
    padding: 0;
} 

/* loader */
.loader-bg {
    top: 0;
    position: fixed;
    z-index: 3000;
    background: rgb(22, 22, 22);
    width: 100%;
    height: 100%;
    opacity: 1;
    display: unset;
    transition-duration: 1s;
}

.loader {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.loader::before, .loader::after {
    content: '';
    border: 1em solid orange;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: loader 2s linear infinite;
    opacity: 0;
}

.loader::before {
    animation-delay: .5s;
}

@keyframes loader {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
/* close loader */

@font-face {
    font-family: Gillroy;
    src: url(font/VISION+FONT/VISION-FONT/VISION/Vision.otf);
}

.whatsapp {
    padding-left: 20px;
    padding-right: 20px;
    position: fixed;
    bottom: 0;
    Right: 5%;
    background-color: #04bf45;
    text-align: center;
    padding-top: 7px;
    z-index: 5;
    border-radius: 15px 15px 0 0;
}

.whatsapp h5 {
    color: white;
    font-weight: 400;
    font-size: 16px;
}

/* m-navbar */
.m-navbar {
    display: none;
    position: fixed;
    overflow: hidden;
    top: 0;
    width: 100%;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.767) !important;
    padding-top: 20px;
    padding-bottom: 20px;
}

.m-navbar .navbar-toggler {
    color: white;
}

.m-navbar .navbar-brand {
    font-size: 24px;
}

.m-navbar .navbar-brand img {
    margin-right: 10px;
}

/* d-navbar */
.d-navbar nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 10px 100px;
    box-sizing: border-box;
    transition: .5s;
    z-index: 1000;
    background: black;
    /* background: linear-gradient( rgba(255, 255, 255, 0.8),rgba(255, 255, 255, 0.7)  ); */
}

.d-navbar nav.black {
    background: rgba(0, 0, 0, .8);
    height: 80px;
    padding: 10px 50px;   
}

.d-navbar nav.black .logo h2 {
    line-height: 60px;
    color: white;
}

.d-navbar nav.black ul li a {
    line-height: 60px;
    color: white;
}

.d-navbar nav.black .dropdown-menu a {
    color: black;
    background-color: white;
}

.d-navbar nav .logo {
    float: left;
}

.d-navbar nav .logo h2 {
    font-size: 24px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    transition: .5s;
    line-height: 70px;
    color: white;
    text-transform: uppercase;
} 

.d-navbar nav .logo img {
    height: 40px;
    margin-top: 10px;
    margin-right: 20px;
}

.d-navbar nav ul {
    float: right;
    margin: 0;
    padding: 0;
    display: flex;
}

.d-navbar nav ul li {
    list-style: none;
}

.d-navbar nav ul li a {
    line-height: 80px;
    color: white;
    padding: 5px 20px;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: .5s;
    font-weight: 600;
    font-size: 14px !important;
}

.d-navbar nav ul li a.active,
.d-navbar nav ul li a:hover {
    color: #fff;
    background: orange;
}

.d-navbar nav .dropdown-menu {
    background-color: white !important;
}

.d-navbar nav .dropdown-menu a:hover {
    background-color: orange !important;
    color: white;
}

.d-navbar nav .dropdown-menu a{
    line-height: 50px;
    color: black;
    font-weight: 600;
    background-color: white !important;
}

/* title */
.title {
    padding-top: 150px;
    padding-bottom: 60px;
    margin-top: 30px;
    color: white;
    text-align: center;
}

.title p {
    margin-top: 20px;
    width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* form */
.form {
    background-color: rgb(243, 243, 243);
    padding-top: 60px;
    padding-bottom: 60px;
}

.form input[type=submit] {
    border: none;
    width: 170px;
    border-radius: 0;
    height: 40px;
    background-color: orange;
    color: white;
    transition: .4s;
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    margin-top: 40px;
}

.form a {
    text-decoration: none;
}

.form button:hover {
    background-color: rgb(224, 146, 1);
    transform: scale(1.1);
}

.form button:active {
    background-color: rgb(255, 195, 85);
}

/* footer */
footer {
    background-color: rgb(31, 31, 31) !important;
    padding-top: 50px;
    padding-bottom: 50px;
}

footer .segment-one {
    color: white;
    padding-right: 20px;
    padding-left: 20px;
}

footer .segment-one img {
    margin-top: -20px;
}

footer .segment-one a {
    text-decoration: none;
    color: white;
    margin-top: 10px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
}

footer .segment-one p {
    margin-top: 10px;
}

footer .segment-two {
    color: white;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 20px;
}

footer .segment-two p {
    font-size: 12px;
    
}

footer .segment-two h4 {
    margin-top: 0px;
}

footer .segment-two h4:before {
    content: '|';
    color: #c65039;
    padding-right: 10px;
} 

footer .segment-three {
    color: white;
    padding-top: 20px;
}

footer .segment-three h4:before {
    content: '|';
    color: #c65039;
    padding-right: 10px;
}

footer .segment-three .embed-responsive-100x400px{
    padding-bottom: 100px;
}

/* ---------------------------------------------------------------- large device */
@media (min-width: 992px) and (max-width: 1199.98px) { 
    /* mpty */
}

/* ---------------------------------------------------------------- medium device */
@media (min-width: 768px) and (max-width: 991.98px) { 
    .d-navbar {
        display: none;
    }

    .m-navbar {
        display: unset;
        padding-left: 30px;
        padding-right: 30px;
    }

    .title .content{
        margin-top: 100px;
    }
}

/* ---------------------------------------------------------------- small device */
@media (max-width: 767.98px) { 
    .d-navbar {
        display: none;
    }

    .m-navbar {
        display: unset;
        padding: 0;
    }

    .title {
        margin-top: -100px;
        margin-bottom: 0;
        height: 100vh;
        margin: 0;
        background: linear-gradient( rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.8) ), url('images/profile.jpg');
        background-position: top;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .title p {
        width: auto;
    }
}