* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: RMConnect;
    src: url("../Fonts/RMConnect.otf");
  }
  
/* ABCDEFGHIJKLMNO PQRSTUVWXYZ
#&0123456789 ÀÂÃÄÅÆÇÈÉÊËÌÍÎÏ ÑÒÓÔÕÖØÙÛÜÝŒŠŸẞ*/
/* fonts
font-family: 'Arimo', sans-serif;
font-family: 'Crimson Text', serif;
font-family: 'Fjalla One', sans-serif;
font-family: 'Karla', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Quicksand', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Source Sans Pro', sans-serif; */

/* 
font-family: 'Almarai', sans-serif;
font-family: 'Asap', sans-serif;
font-family: 'BenchNine', sans-serif;
font-family: 'Oswald', sans-serif;
font-family: 'Sarabun', sans-serif;
font-family: 'Yantramanav', sans-serif; 
font-family: 'Open Sans Condensed', sans-serif;

font-family: 'Barlow Condensed', sans-serif;
font-family: 'Barlow Semi Condensed', sans-serif;
font-family: 'Harmattan', sans-serif;
font-family: 'Mukta Malar', sans-serif;
font-family: 'Signika', sans-serif;
font-family: 'Tenali Ramakrishna', sans-serif;
*/


/* company name*/
.companyName {
    margin: 22px 0 0 20px;
    position: absolute;
    z-index: 12;
}

.companyName2 {
    font-family: RMConnect;
    font-size: 30px;
    color: white;
}

/* menu css */
#menu {
    width: 35px;
    height: 30px;
    margin: 30px 20px 20px 1250px; /* 30px 20px*/
    cursor: pointer;
    

}

.bar {
    height: 5px;
    width: 100%;
    background-color: white;
    display: block;
    border-radius: 5px;
    transition: 0.3s ease;

}

#bar1 {
    transform: translateY(-4px);
}
#bar3 {
    transform: translateY(4px);
}

.navbar-li-Name {
    font-family: RMConnect !important;
    font-size: 23px !important;
    color: white !important;
}

#navbar-li {  
    text-align: center;
    font-size: 15px;
    padding: 30px 0 20px 71px; /* orginal code : 45px 87.5px */
    margin: 0 0 0 1000px; /* remove to return to orginal place */
    color: white;
    /*border-top: 1px solid grey;*/
   /* border-bottom: 1px solid grey; */
    font-family: 'Quicksand', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

#navbar-li:hover {
    /*color: grey;*/
    cursor: pointer;
    /*border-bottom: 1px solid white;*/
    /*border-top: 1px solid white;*/
    color: lightgray;
   
}

.nav li {
    list-style: none;
    
}
.nav {
    position: fixed; /*added to fix navbar */
    padding: 0; /* added for video */
    /*margin: 0 20px;  added for video */
    /*background-color: black;*/
    display: none;
    transition: 0.8s ease;
    text-align: center;

}
.menu-bg, #menu-bar {
    top: 0;
    right: 0; /* use left to return to original*/
    position: absolute;
}
.menu-bg {
    z-index: 10; /* to go over the arrow*/
    width: 0;
    height: 0;
    background: black;
    transition: 0.3s ease;
    margin: 0;
    position: fixed;/*added to fix navbar */
}

#menu-bar {
    z-index: 11; /*to display over the black background and arrow*/
    position: fixed;
}

.change-bg {
    width: 250px;
    height: 100vh;
    transform: translate (-60%, -30%);
}

.change .bar {
    background-color: white;
}

.change #bar1 {
    transform: translateY(4px) rotateZ(-45deg);
}

.change #bar3 {
    transform: translateY(-6px) rotateZ(45deg);
}

.change #bar2 {
opacity: 0;
}

.change {
    display: block;
}

/* Media screen for menu bar */

@media screen and (max-width: 425px) {
    /* to make the black fill screen */
    .change-bg {
        width: 100%;
        height: 670px;
        transform: translate (-60%, -30%);
    }


    #navbar-li {  
        display: flex;
        justify-content: center;
        font-size: 15px;
        padding: 30px 0 20px 0; /* orginal code : 45px 87.5px */
        margin-left: 984px;/* remove to return to orginal place */
        color: white;
        /*border-top: 1px solid grey;*/
       /* border-bottom: 1px solid grey; */
        font-family: 'Quicksand', sans-serif;
    }

    .menu-bg {
        z-index: 13; /* to go over web*/
    }
    #menu-bar {
        z-index: 14; /*to display over the black menu background*/
        position: fixed;
    }

}

@media screen and (max-width: 375px) {
    #navbar-li {  
        display: flex;
        justify-content: center;
        margin-left: 1008px;/* remove to return to orginal place */

    }
}


@media screen and (max-width: 320px) {
    #navbar-li {  
        display: flex;
        justify-content: center;
        margin-left: 1038px;/* remove to return to orginal place */

    }
}

/* image slider css */

.galleryContainer {
    width: 100%;
    height: 600px;
    max-width: 100%;
    user-select: none;
   /* box-shadow: 0px 0px 3px 3px #00000078;*/
    padding: 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.galleryContainer .slideShowContainer {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: lightgrey;
    position: relative;
}

.galleryContainer .slideShowContainer .imageHolder {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    
}

.galleryContainer .slideShowContainer .imageHolder img {
    width: 100%;
    height: 100%;

}

.galleryContainer .slideShowContainer .imageHolder .captionText {
    display: none;
    position: absolute;
    z-index: 9999;
}


/* arrow section */
.galleryContainer .slideShowContainer .leftarrow {
    width: 50px;
    background: #00000036;
    position: absolute;
    left: 0;
    z-index: 9;
    transition: background 0.5s;
    height: 72px;
    top: 50%;
    transform: translateY(-50%);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.galleryContainer .slideShowContainer .rightarrow {
    width: 50px;
    background: #00000036;
    position: absolute;
    left: 0;
    z-index: 9;
    transition: background 0.5s;
    height: 72px;
    top: 50%;
    transform: translateY(-50%);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    left: auto;
    right: 0;

}


.galleryContainer .slideShowContainer .leftarrow:hover, .galleryContainer .slideShowContainer .rightarrow:hover  {
background: #000000a8;
cursor: pointer;
}

.galleryContainer .slideShowContainer .arrow {
    display: inline-block;
    border: 3px solid white;
    width: 10px;
    height: 10px;
    border-left: none;
    border-bottom: none;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.galleryContainer .slideShowContainer .arrow.arrowLeft {
    transform: rotateZ(-135deg);
}

.galleryContainer .slideShowContainer .arrow.arrowRight {
    transform: rotateZ(45deg);
}
/* caption CSS */

.galleryContainer .slideShowContainer>.captionHolder {
    position: absolute;
    bottom: 275px; /* was 0 */
    z-index: 1;
    color: white;
    font-family: sans-serif;
    font-size: 20px;
    text-align: center;
    width: 100%;
    background: #00000047;
    height: 50px;
    line-height: 50px;
    overflow: hidden; */
}
.galleryContainer .slideShowContainer>.captionHolder>.captionText {
    margin: 0;
    font-family: 'Open Sans Condensed', sans-serif;
    
}


/* play button */

.galleryContainer .slideShowContainer #playPauseBtn {
    width: 32px;
    height: 32px;
    position: absolute;
    z-index: 5;
    margin: 535px 5px 5px 1200px;
    cursor: pointer;
    background-image: url('../Images/PlayPause2@4x.png');
    background-repeat: no-repeat;
    background-size: cover;
}

/* dots css */
.galleryContainer #dotsContainer {
    width: 100%;
    height: 10%;
    text-align: center;
   /* padding-top: 10px; */
   bottom: 0;
    box-sizing: border-box;
    position: absolute;
    z-index: 1;

}

.galleryContainer #dotsContainer .dots{
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-left: 10px;
    background-color: transparent;
    border: 1px solid white;
    cursor: pointer;
    transition: background-color 0.5s;
}

.galleryContainer #dotsContainer .dots:hover,.galleryContainer #dotsContainer .dots.active{
    background-color: white;

}

.galleryContainer #dotsContainer .dots:first-child {
    margin-left: 0;
}
/*anim slide*/
.galleryContainer .moveLeftCurrentSlide {
    animation-name: moveLeftCurrent;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

.galleryContainer .moveLeftNextSlide {
    animation-name: moveLeftNext;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@keyframes moveLeftCurrent {
    from {
        margin-left: 0;
        opacity: 1;
    }
    to {
        margin-left: -100%;
        opacity: 1;
    }
    
}

@keyframes moveLeftNext {
    from {
        margin-left: 100%;
        opacity: 1;
    }
    to {
        margin-left: 0;
        opacity: 1;
    }
    
}

.galleryContainer .moveRightCurrentSlide {
    animation-name: moveRightCurrent;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@keyframes moveRightCurrent {
    from {
        margin-left: 0;
        opacity: 1;
    }
    to {
        margin-left: 100%;
        opacity: 1;
    }
    
}

.galleryContainer .moveRightNextSlide {
    animation-name: moveRightNext;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@keyframes moveRightNext {
    from {
        margin-left: -100%;
        opacity: 1;
    }
    to {
        margin-left: 0;
        opacity: 1;
    }
    
}

.slideTextFromBottom {
    animation-name: slideTextFromBottom;
    animation-duration: .7s;
    animation-timing-function: ease-out;
}

@keyframes slideTextFromBottom {
    from {
        opacity: 0; 
        margin-top: 100px;
    }
    to {
        opacity: 1; 
        margin-top: 0
    }
}

.slideTextFromTop {
    animation-name: slideTextFromTop;
    animation-duration: .7s;
    animation-timing-function: ease-out;
}

@keyframes slideTextFromTop {
    from {
        opacity: 0; 
        margin-top: -100px;
    }
    to {
        opacity: 1; 
        margin-top: 0
    }
}
/*SECTIONS*/

/* subtitles */
.Subtitles {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 2.5em;
    
}
.missionTitle {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 0 0;
}
.subsidiaryTitle {
    padding: 20px 0 0 5%; 
}

.aboutTitle {
    padding: 20px 5% 0 0;
}

.connectTitle {
    padding: 20px 0 0 5%; 
}

/*mission section*/
.mission-statement {
    width: 100%;
    height: 100%;
    background-color: rgb(237, 236, 236);
    /*  rgb(105, 110, 116)*/
   /* outline: 8px solid white;
        outline-offset: -30px;*/
}

.missionStatment {
    color: rgb(26, 26, 26);
   font-family: 'Source Sans Pro', sans-serif;
    line-height: 40px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0vw 5vw 0vw 9vw;
    padding: 6vw 0 8vw 0;
    font-size: 1.6em;
    font-weight: bold;

}

/*media query for mission statement */
@media screen and (max-width: 510px) {
    .missionStatment {
        font-size: 1.4em;
    }
}

/* partners */

.subsidiary {
    width: 100%;
    height: 500px;
    background: rgb(237, 236, 236);
    /*rgb(237, 236, 236)*/
}

.subsidiaryContainer {
    width: 90%;
    height: 65%;
     margin-left: 5%;
     margin-top: 5%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    background: rgb(237, 236, 236);
    box-shadow: 9px 9px 16px rgba(170, 175, 182, 0.6), -9px -9px 16px    rgba(255,255,255, 0.5);
    
}

.flexbox-items {
    margin-left: 25px;
    /*margin: 120px 20px;*/
}

/* when adding more, you can increase to 100% for each W/H */
.logo {
    width: 50%;
    height: 30%;
}
/*media query for partners */

@media screen and (max-width: 900px) {
    .subsidiary {
        width: 100%;
        height: 500px;
        background: rgb(237, 236, 236);
        /*rgb(237, 236, 236)*/
    }

    .subsidiaryContainer {
        width: 90%;
        height: 65%;
         margin-left: 5%;
         margin-top: 5%;
        display: flex;
        justify-content: center;
        flex-direction: row;
        align-items: center;
        background: rgb(237, 236, 236);
        box-shadow: 9px 9px 16px rgba(170, 175, 182, 0.6), -9px -9px 16px    rgba(255,255,255, 0.5);
        
    }
  


}

/* projects */

.projects {
    width: 100%;
    height: 500px;
    background-color: lightblue;
}


/* about */
.about {
    width: 100%;
    height: 500px;
    background-color: rgb(237, 236, 236);
}

.about-container {
    width: 90%;
    margin-left: 5%;
    margin-top: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.companyLogo {
    border-radius: 25%;
    padding: 25px;
    background: rgb(237, 236, 236);
    box-shadow: 9px 9px 16px rgba(170, 175, 182, 0.6), -9px -9px 16px    rgba(255,255,255, 0.5);
   /* outline: 10px solid red;
    outline-offset: 25px;
    outline-style: auto;
    box-shadow: 3px 3px 3px 3px black; */
    
}

.about-flexbox-item { 
    margin: 10px 5% 0 4%;
}

.about-Text {
   /*margin: 0 10% 0 0;*/
   font-size: 1.4em;
   font-family: 'Source Sans Pro', sans-serif;
   font-weight: bold;
   text-align: center;

}

@media screen and (max-width: 900px) {
    .about {
        width: 100%;
        height: 100%;
        background-color: rgb(237, 236, 236);
    }

    .about-container {
        width: 90%;
        margin-left: 5%;
        margin-top: 2%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .about-flexbox-item { 
        margin: 10px 5% 12% 4%;
    }

    .about-Text {
       /* margin: 10% 10% 0 0;*/
        font-size: 1.4em;
        font-family: 'Source Sans Pro', sans-serif;
        font-weight: bold;
        text-align: center;
    }

    .companyLogo {
        margin-top: 30px;
       
        border-radius: 25%;
        padding: 25px;
        background: rgb(237, 236, 236);
        box-shadow: 9px 9px 16px rgba(170, 175, 182, 0.6), -9px -9px 16px    rgba(255,255,255, 0.5);
       /* outline: 10px solid red;
        outline-offset: 25px;
        outline-style: auto;
        box-shadow: 3px 3px 3px 3px black; */
        
    }
}

@media screen and (max-width: 500px) {
    .companyLogo {
        max-width: 80%;
        max-height: 80%;
        margin-left: 3%
    }

}

@media screen and (max-width: 375px) {
    .companyLogo {
        margin-left: 3%;
    }
}

@media screen and (max-width: 320px) {
    .companyLogo {
        margin-left: 1%;
    }
}


/* connect */
.connect {
    width: 100%;
    height: 640px;
    background: rgb(237, 236, 236);
}

.Info-title {
    font-size: 1.4em;
   font-family: 'Source Sans Pro', sans-serif;
   font-weight: bold;
   text-align: center;
   padding-top: 25px;
}

.email {
    font-size: 1.4em;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: bold;
    text-align: center;
}

.Follow-title {
    font-size: 1.4em;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: bold;
    text-align: center;
}

/* contact form */

form {
    width: 50%;
    margin-left: 24%;
    margin-top: 50px;
}

input {
    width: 100%;
    padding: 10px 0 10px 5px;
    margin: 5px 0 5px 0;
}

textarea {
    resize: none;
    width: 100%;
    max-height: 500px;
    margin: 5px 0 5px 0;
    padding: 10px 0 10px 5px;
    
}

input, textarea {
    outline: none;
    border: 1px solid #DDDD;
    
}

input:focus, textarea:focus {
    box-shadow: 0 0 4px rgba(61, 192, 240, 0.5);
    border: 1px solid rgb(61, 192, 240);
}

::placeholder {
    color: rgba(67, 65, 65, 0.899);
    opacity: 0.5;

}
/* micorspft edge */
:-ms-input-placeholder {
    color: rgba(67, 65, 65, 0.899);

}
/*internet explorer */
::-ms-input-placeholder {
    color: rgba(67, 65, 65, 0.899);
    opacity: 0.3;

}

button {
    width: 101.5%;
    padding: 5px 0 5px 0;
    margin: 5px 0 0 0;
    border: 2px solid black;
    background-color: black;
    color: white;
}

button:hover {
    color: rgb(61, 192, 240);
}
