*{
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
}

.ubuntu-light {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.ubuntu-regular {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ubuntu-medium {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.ubuntu-bold {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.ubuntu-light-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.ubuntu-regular-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.ubuntu-medium-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.ubuntu-bold-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: italic;
}


.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(assets/01.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    animation: slide 35s cubic-bezier(0,0,0,0.97) infinite;

}
@keyframes slide{
    0%{
        background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(assets/01.jpg); 
    }
    15%{
        background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(assets/02.jpg);
    }
    30%{
        background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(assets/03.jpg);
    }
    45%{
        background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(assets/04.jpg);
    }
    60%{
        background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(assets/05.jpg);
    }
    75%{
        background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(assets/06.jpg);
    }
    100%{
        background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(assets/07.jpg);
    }
    
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img{
    width: 150px;
}

.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.text-box h1{
    font-size: 62px;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: white;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}

nav .fa{
    display: none;
}

@media(max-width:786px){
   .text-box h1{
       font-size: 25px;
   }
   .nav-links ul li{
       display: block;
   }
   .nav-links{
       position: fixed;
       background: #f44336;
       height: 100vh;
       width: 200px;
       top: 0;
       right: -200px;
       text-align: left;
       z-index: 2;
       transition: 1s;
   }
   nav .fa{
       display: block;
       color: #fff;
       margin: 15px;
       font-size: 20px;
       cursor: pointer;
   }
   .nav-links ul{
       padding: 25px;
   } 
   nav img{
    width: 100px;
}
}
@media(max-width:425px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 15px;
        font-size: 20px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 25px;
    } 
    nav img{
     width: 65px;
    }
 }

/*---------Information--------*/

    .information{
        width: 80%;
        margin: auto;
        text-align: center;
        padding-top: 100px;
    }

    h1{
        font-size: 36px;
        font-weight: 600;
    }

    p{
        color: #777;
        font-size: 14px;
        font-weight: 300;
        line-height: 22px;
        padding: 10px;
    }

    .row-info{
        margin-top: 5%;
        display: flex;
        justify-content: space-between;
    }

    .information-col{
        flex-basis: 31%;
        background: #fff3f3;
        border-radius: 10px;
        margin-bottom: 5%;
        padding: 20px 12px;
        box-sizing: border-box;
        transition: 0.5s;
    }

    h3{
        text-align: center;
        font-weight: 600;
        margin: 10px 0;
    }

    .information-col:hover{
        box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    }

    @media(max-width: 770px){
        .row-info{
            flex-direction: column;
        }
        h1{
            font-size: 32px;
            font-weight: 600;
        }
        
    p{
        color: #777;
        font-size: 16px;
        font-weight: 300;
        line-height: 22px;
        padding: 10px;
    }
    
    h3{
        text-align: center;
        font-weight: 600;
        margin: 10px 0;
        font-size: 18px;
    }
    }@media(max-width: 430px){
        .row-info{
            flex-direction: column;
        }
        h1{
            font-size: 29px;
            font-weight: 600;
        }
        
    p{
        color: #777;
        font-size: 12px;
        font-weight: 300;
        line-height: 22px;
        padding: 10px;
    }
    
    h3{
        text-align: center;
        font-weight: 600;
        margin: 10px 0;
        font-size: 10px;
    }
    }

    /*--Our Customers--*/
    .customers-text{
        text-align: center;
        margin-bottom: 50px;
    }

    body{
        align-items: center;
        justify-content: center;
    }
    @keyframes scroll{
        0%{
            transform: translateX(0);
        }
        100%{
            transform: translateX(calc(-250px * 7));
        }
    }
    .slider{
        height: 100;
        margin: auto;
        overflow: hidden;
        position: relative;
        width: auto;
    }

    .slider .slide-track{
        animation: scroll 40s linear infinite;
        display: flex;
        width: calc(250px * 14);
    }

    .slider .slide{
        height: 100px;
        width: 250px;
    }
/*--Services--*/
.services h1{
    text-align: center;
    padding: 25px;
    margin-top: 25px;
}
.col-sm-6{
    text-align: center;
}
.card-body i{
    color: #f44336;
    font-size: 48px;
    margin-bottom: 15px;
}
.card-title{
    color: #222;
    font-size: 28px;
    margin-bottom: 55px;
}
.card-body{
    font-size: 58px;
}
#row{
    width: 100%;
}
@media(max-width:768px){
    
.services h1{
    text-align: center;
    margin-top: 25px;
    padding: 25px;
}
.col-sm-6{
    text-align: center;
}
.card-body i{
    color: #f44336;
    font-size: 38px;
    margin-bottom: 15px;
}
.card-title{
    color: #222;
    font-size: 22px;
}
.card-body{
    font-size: 58px;
}
.row-serv{
    width: 100%;
    margin-left: 50%;
    text-align: center;
}
}
/*-----call to action---*/
.cta{
    margin: 100px auto;
    width: 80%;
    background-image:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(assets/all\ page.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta h1{
    color: rgb(255, 255, 255);
    margin-bottom: 40px;
    padding: 0;
}

@media(max-width: 700px){
    .cta h1{
        font-size: 20px;
    }
}

/*--Footer--*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

.icons .fa{
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
/*--About US Page--*/

.sub-header{
    height: 50vh;
    width: 100%;
    background-image:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(assets/all\ page.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.sub-header h1{
    margin-top: -25px;
}

.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col img{
    width: 100%;
}

.about-col h1{
    padding-top: 0;
}

.about-col p{
    padding: 15px 0 25px;
}

.red-btn{
    border: 1px solid #f44336;
    background: transparent;
    color: #f44336;
}

.red-btn:hover{
    color: #fff;
}

/*--Blog Content--*/
.blog-content{
    width: 80%;
    margin: auto;
    padding: 60px 0;
}

.center{
    flex-basis: 100%;
}

.center img{
    width: 100%;
}

.center h2{
    color: #222;
    font-weight: 600;
    margin: 30px 0;
}

@media(max-width: 790px){
    .sub-header h1{
        font-size: 24px;
    }
}


.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;
}

.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa{
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}

.contact-col p{
    padding: 0%;
    color: #555;
}

.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.contact-col h3{
    text-align: left;
}

/*-- Career -----*/
form{
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 2vm 4vm;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
}

.career-col{
    width: 100%;
    height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30vh;
    padding-bottom: 25vh;
}

.career-box h3{
    color: #222;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 45px;    
}

form input{
    border: 0;
    margin: 15px 0;
    padding: 20px;
    outline: none;
    background: f5f5f5;
    font-size: 16px;
}

.sumbit-btn{
    padding: 15px;
    background: #f44336;
    color: #fff;
    font-size: 18px;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;
    border-radius: 50px;
}
@media(max-width:786px){
    form{
        background: #fff;
        display: flex;
        flex-direction: column;
        padding: 2vm 4vm;
        width: 80%;
        max-width: 800px;
        border-radius: 10px;
    }
    
    .career-col{
        width: 100%;
        height: 25vh;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 38vh;
        padding-bottom: 35vh;
    }   
    
    .career-box h3{
        color: #222;
        font-weight: 600;
        margin-bottom: 20px;
        text-align: center;
        margin-top: 45px;
        font-size: 20px;    
    }
    
    form input{
        border: 0;
        margin: 15px 0;
        padding: 20px;
        outline: none;
        background: f5f5f5;
        font-size: 12px;
    }
    
    .sumbit-btn{
        padding: 15px;
        background: #f44336;
        color: #fff;
        font-size: 12px;
        border: 0;
        outline: none;
        cursor: pointer;
        width: 120px;
        margin: 20px auto 0;
        border-radius: 50px;
    }
}

/*--Pop-Up--*/

.popup{
    width: 400px;
    background: #f44336;
    border-radius: 6px;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0.1);
    text-align: center;
    padding: 0 30px 30px;
    color: rgb(255, 255, 255);
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;
}
.open-popup{
    visibility: visible;
    top: 95%;
    transform: translate(-50%,-50%) scale(1);
}

.popup img{
    width: 150px ;
    margin-top: -50px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.popup p{
    color: #fff;
}

.popup h2{
    font-size: 38px;
    font-weight: 600;
    margin: 30px 0 10px;
}

.popup button{
    width: 100%;
    margin-top: 50px;
    padding: 10px 0;
    background: #6fd649;
    color: #fff;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0,0,0,0.2);
}

@media(max-width:786px){
    .popup{
        width: 400px;
        background: #f44336;
        border-radius: 6px;
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translate(-50%,-50%) scale(0.1);
        text-align: center;
        padding: 0 30px 30px;
        color: rgb(255, 255, 255);
        visibility: hidden;
        transition: transform 0.4s, top 0.4s;
    }
    .open-popup{
        visibility: visible;
        top: 95%;
        transform: translate(-50%,-50%) scale(1);
    }
    
    .popup img{
        width: 150px ;
        margin-top: -50px;
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    .popup p{
        color: #fff;
    }
    
    .popup h2{
        font-size: 30px;
        font-weight: 600;
        margin: 30px 0 10px;
    }
    
    .popup button{
        width: 100%;
        margin-top: 50px;
        padding: 10px 0;
        background: #6fd649;
        color: #fff;
        border: 0;
        outline: none;
        font-size: 14px;
        border-radius: 4px;
        cursor: pointer;
        box-shadow: 0 5px 5px rgba(0,0,0,0.2);
    }
}
/*--Gallery--*/
.gallery{
    width: 100%;
    height: 110vh;
    overflow: hidden;
}
.gallery .carousel{
    width: 320px;
    margin: 100px auto 0;
    overflow: visible;
}

.gallery h3{
    color: #222;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 45px;
    font-size: 38px;
}

@media(max-width:430px){
    .gallery{
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }
    .gallery .carousel{
        width: 200px;
        margin: 25px auto 0;
        overflow: visible;
    }
    
    .gallery h3{
        color: #222;
        font-weight: 600;
        margin-bottom: 20px;
        text-align: center;
        margin-top: 45px;
        font-size: 28px;
    }
}


/*--Invest Form--*/
.container{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.useful-links{
    position: absolute;
    top: 5%;
    right: 5%;

}
.useful-links a{
    display: block;
    color: #fff;
    text-decoration: none;
}

.container form{
    width: 90%;
    max-width: 500px;
    padding: 50px 30px 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}
.fa-paper-plane{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    font-size: 26px;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: #f44336;
}

.input-group{
    width: 100%;
    display: flex;
    align-items: center;
    margin: 10px 0;
    position: relative;
}
.input-group label{
    flex-basis: 28%;
}
.input-group input, .input-group textarea{
    flex-basis: 68%;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 10px 0;
    border-bottom: 1px solid #999;
    color: #333;
    font-size: 16px;
}
::placeholder{
    font-size: 14px;
}

form button{
    background: #f44336;
    color: #fff;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 10px 40px;
    outline: 0;
    cursor: pointer;
    display: block;
    margin: 30px auto 10px;
}

.input-group span{
    position: absolute;
    bottom: 20px;
    right: 17px;
    font-size: 13px;
    color: red;
}

#sumbit-error{
    color: red;
}

.input-group span i{
    color: seagreen;
}

.invest-h3{
    font-size: 28px;
    margin-top: 75px;
}

@media(max-width:768px){
    .container{
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .useful-links{
        position: absolute;
        top: 5%;
        right: 5%;
    
    }
    .useful-links a{
        display: block;
        color: #fff;
        text-decoration: none;
    }
    
    .container form{
        width: 90%;
        max-width: 500px;
        padding: 50px 30px 20px;
        background: #fff;
        border-radius: 4px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        position: relative;
    }
    .fa-paper-plane{
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%,-50%);
        background: #fff;
        font-size: 20px;
        padding: 20px;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        color: #f44336;
    }
    
    .input-group{
        width: 100%;
        display: flex;
        align-items: center;
        margin: 10px 0;
        position: relative;
    }
    .input-group label{
        flex-basis: 28%;
    }
    .input-group input, .input-group textarea{
        flex-basis: 68%;
        background: transparent;
        border: 0;
        outline: 0;
        padding: 10px 0;
        border-bottom: 1px solid #999;
        color: #333;
        font-size: 12px;
    }
    ::placeholder{
        font-size: 12px;
    }
    
    form button{
        background: #f44336;
        color: #fff;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.7);
        padding: 10px 40px;
        outline: 0;
        cursor: pointer;
        display: block;
        margin: 30px auto 10px;
    }
    
    .input-group span{
        position: absolute;
        bottom: 20px;
        right: 12px;
        font-size: 10px;
        color: red;
    }
    
    #sumbit-error{
        color: red;
    }
    
    .input-group span i{
        color: seagreen;
    }
    
    .invest-h3{
        font-size: 20px;
        margin-top: 75px;
    }
}

@media(max-width:430px){
    .container{
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .useful-links{
        position: absolute;
        top: 5%;
        right: 5%;
    
    }
    .useful-links a{
        display: block;
        color: #fff;
        text-decoration: none;
    }
    
    .container form{
        width: 80%;
        max-width: 500px;
        padding: 40px 20px 10px;
        background: #fff;
        border-radius: 5px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        position: relative;
    }
    .fa-paper-plane{
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%,-50%);
        background: #fff;
        font-size: 17px;
        padding: 20px;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        color: #f44336;
    }
    
    .input-group{
        width: 100%;
        display: flex;
        align-items: center;
        margin: 10px 0;
        position: relative;
    }
    .input-group label{
        flex-basis: 28%;
    }

    .label-text{
        font-size: 12px;
    }

    .input-group input, .input-group textarea{
        flex-basis: 68%;
        background: transparent;
        border: 0;
        outline: 0;
        padding: 10px 0;
        border-bottom: 1px solid #999;
        color: #333;
        font-size: 8px;
    }
    ::placeholder{
        font-size: 8px;
    }
    
    form button{
        background: #f44336;
        color: #fff;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.7);
        padding: 10px 40px;
        outline: 0;
        cursor: pointer;
        display: block;
        margin: 30px auto 10px;
    }
    
    .input-group span{
        position: absolute;
        bottom: 20px;
        right: 12px;
        font-size: 8px;
        color: red;
    }
    
    #sumbit-error{
        color: red;
    }

    .sumbit-error{
        font-size: 8px;
    }
    
    .input-group span i{
        color: seagreen;
    }
    
    .invest-h3{
        font-size: 20px;
        margin-top: 75px;
    }
 .swiper-container {
        width: 80%;
        height: 400px;
        margin: 50px auto;
        border: 2px solid #ccc;
        border-radius: 25px;
        overflow: hidden;
        position: relative;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #000;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
        background-color: rgba(0, 0, 0, 0.6);
        color: #fff;
        border-radius: 0 0 25px 25px;
    }

    .text-box {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 10px;
        padding: 10px;
        text-align: center;
    }
.swiper-button-prev,
.swiper-button-next {
    display: none;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background: none;
    border-radius: 50%;
}

    .swiper-button-prev {
        left: 10px;
    }

    .swiper-button-next {
        right: 10px;
    }

    .swiper-button-prev img, .swiper-button-next img {
        width: 20px;
        height: 20px;
    }

    .swiper-pagination {
        position: absolute;
        bottom: 10px;
        width: 100%;
        text-align: center;
    }

    .swiper-pagination-bullet {
        display: inline-block;
        width: 8px;
        height: 8px;
        background-color: #fff;
        border-radius: 50%;
        margin: 0 5px;
        cursor: pointer;
    }

    .swiper-pagination-bullet-active {
        background-color: #ff0000;
    }


}
