html {
    scroll-behavior: smooth;
}

body {
    background:  rgb(17, 17, 17);
    margin: 0;
    padding: 0;
    animation: transitionIn 1s;
} 

/* loader */
.loader-bg {
    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 img{
    margin-top: -5px;
}

.d-navbar nav.black .logo h2 {
    line-height: 60px;
    color: white;
    font-size: 20px;
}

.d-navbar nav.black ul li a {
    line-height: 60px;
    color: white;
}

.d-navbar nav.black .dropdown-menu a {
    line-height: 35px;
    color: black;
    background-color: white;
}

.d-navbar nav .logo {
    float: left;
    margin-top: 10px;
}

.d-navbar nav .logo h2 {
    margin-top: -10px !important;
    font-size: 20px;
    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: 0px;
    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: 35px;
    color: black;
    font-weight: 600;
    background-color: white !important;
}

/* ----------------------------- carousel */
.carousel {
    height: 800px;
    width: 100%;
    margin-top: 0px;
}

.carousel-inner .d-block {
    width: auto;
    height: 800px;
    object-fit: cover;
}

.carousel-inner .carousel-item > img {
    -webkit-animation: thing 30s;
    -o-animation: thing 30s;
    animation: thing 30s;
    transition: 1s;
}

@keyframes thing {
    from{
        transform: scale(1,1);
    }

    to {
        transform: scale(1.5, 1.5);
    }
}

/* -------------------------------- section-2 */

.section-2 {
    padding-bottom: 100px;
}

.section-2 .content {
    padding-right: 100px;
    margin-top: 120px;
    color: white;
}

.section-2 .content h2 {
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 40px;
    font-family: 'Barlow', sans-serif;
    font-stretch: expanded;
}

.section-2 .content p {
    text-align: justify;
    font-size: 14px;
}

.section-2 .content .btn {
    margin-top: 20px;
    border-radius: 0px;
    background: none;
    width: 100px;
    border: none;
    color: white;
    font-weight: 500;
    border-left: 3px solid orange;
    transition: .4s;
}

.section-2 .content .btn:hover {
    width: 170px;
    background-color: orange;
}

.section-2 .play {
    margin-top: 150px;
}

.section-2 .video-fluid {
    height: auto;
    border: none;
}

/* section ------------------------- 3 */
.section-3 {
    padding-top: 50px;
    padding-bottom: 100px;
    display:table;
    width:100%;
    background: linear-gradient( rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8) ), url('images/1.jpg');
    background-position:center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height:350px;
}

.section-3 .card {
    border-radius: 0px;
    background-color:  rgb(231, 231, 231);
    border: none;
    transition: .4s;
}

.section-3 .card h5 {
    color: black;
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    font-weight: 900;
}

.section-3 .card:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.section-3 .card p {
    margin-top: 20px;
    font-size: 14px;
    text-align: justify;
}

.section-3 h3 {
    color: white;
    font-family: 'Barlow', sans-serif;
    text-align: center;
    border-bottom: 3px solid orange;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
}

.section-3 .services {
    margin-bottom: 50px;
}

.section-3 .card #more1, #more2, #more3 {
    display: none;
}

.section-3 .card .btn {
    margin-top: 10px;
    background: none;
    width: 120px;
    border: none;
    color: Black;
    font-weight: 500;
    border-left: 3px solid orange;
    transition: .4s;
}

.section-3 .card .btn:hover {
    width: 170px;
    background-color: orange;
    color: white;
}

/* section 5 */

.section-5 {
    padding-top: 100px;
    padding-bottom: 50px;
    background-color: rgb(231, 231, 231);
}

.section-5 .content {
    margin-top: 10px;
    padding-left: 30px;
}

.section-5 .content h5 {
    letter-spacing: 3px;
    color: black;
    font-size: 16px;
    font-weight: 700;
}

.section-5 .content h2 {
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 40px;
    font-family: 'Barlow', sans-serif;
    font-stretch: expanded;
}

.section-5 .content p {
    text-align: justify;
}

.section-5 .content .btn {
    margin-top: 20px;
    border-radius: 20px;
    width: 150px;
}

/* section-4 */
/* .section-4 {
    margin-top: 0px;
    padding-bottom: 50px;
    padding-right: 50px;
    background-color: rgb(231, 231, 231);
}

.section-4 img {
    height: 70px;
    transition: .4s;
}

.section-4 img:hover {
    transform: scale(1.1);
}

.section-4 ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
} */

/* 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) { 

    /* section-2 */
    .section-2 .play {
        margin-top: 100px;
        padding-left: 50px;
        padding-right: 50px;
    }

    .section-2 .content {
        padding-left: 50px;
        padding-right: 50px;
        margin-top: 50px;
        color: white;
        margin-bottom: 50px;
        padding-right: 0;
    }

    .section-2 .content h2 {
        font-size: 26px;
        font-weight: 500;
    }

    /* section-5 */
    .section-5 .content h2 {
        margin-top: 20px;
    }

}

@media (min-width: 768px) and (max-width: 991.98px) { 


    .m-navbar {
        display: unset;
    }

    .d-navbar nav {
        display: none;
    }

    .section-2 .content {
        padding-right: 0;
        margin-top: 0;
    }

    .section-2 .content h2 {
        font-family: 'Barlow',sans-serif !important;
        font-size: 45px;
        margin-bottom: 40px;
    }

    .section-2 .content p {
        margin-bottom: 40px;
        font-weight: 100;
    }

    .section-3 .services {
        margin-bottom: 0;
    }

    .section-3 .card {
        margin-top: 50px;
    }

    .section-5 .content {
        padding-left: 0;
        margin-top: 50px;
    } 

    .section-5 .content h2 {
        margin-top: 20px;
    }

 }

 @media (max-width: 767.98px) { 

    .whatsapp {
        position: fixed;
        bottom: 0;
        Right: 0%;
        border-radius: 15px 0 0 0;
    }
    
    .whatsapp h5 {
        color: white;
        font-weight: 300;
        font-size: 14px;
    }

    .m-navbar {
        display: unset;
        padding-top: 0;
        padding-bottom: 0;
    }

    .m-navbar a.navbar-brand {
        font-size: 20px;
        font-weight: 100 !important;
        font-family:'Barlow',sans-serif !important;
    }

    .m-navbar .navbar-brand img {
        width: 30px !important;
        margin-top: 1px;
    }

    .d-navbar {
        display: none;
    }

    /* -------------------------------------------- section 2 */
    .section-2 .play {
        margin-top: 70px;
    }

    .section-2 .content {
        margin-top: 0;
        padding: 0;
    }

    .section-2 .content h2 {
        font-size: 26px;
        margin-top: 30px;
    }

    .section-2 .content p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
    }

    .section-2 .content .btn {
        font-size: 14px;
        border: none;
        padding-left: 20px;
        padding-right: 20px;
        background-color: orange;
        width: auto;
        border-radius: 5px;
    }

    /* ----------------------------------------- section 3 */
    .section-3 .services {
        margin-bottom: 0px;
        font-size: 26px;
    }

    .section-3 .card{
        margin-top: 40px;
    }

    .section-3 .card h5 {
        text-align: center;
    }

    .section-3 .card p {
        font-size: 12px;
    }

    .section-3 .card .btn {
        display: block;
        color: white;
        font-size: 14px;
        border: none;
        padding-left: 20px;
        padding-right: 20px;
        background-color: orange;
        width: auto;
        border-radius: 5px;
    }

    /* ---------------------------------------- section 5 */
    .section-5 .content {
        padding: 0;
    }

    .section-5 .content h5 {
        margin-top: 40px;
        font-size: 14px;
    }

    .section-5 .content h2 {
        margin-top: 0;
        font-size: 24px;
    }

    .section-5 .content p {
        font-size: 12px;
    }
 }