
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
color: #0E1F51;
font-family: 'Raleway', sans-serif;
}
a{
    text-decoration: none;
    color: black;
}
li{
    list-style: none;
}
.navcontainer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 80px;
}

.logocontainer{
    width: 80px;
    height: 50px;
}
.logocontainer img{
    width: 100%;
    height: 100%;
}
.bar{
    display: none;
}
.itemscontainer{

}
.itemscontainer ul{
    display: flex;
    text-transform: capitalize;
}
.itemscontainer ul li{
    padding: 10px;
    border-radius: 10px;
}
.itemscontainer ul li:hover{
    background-color: #FF3E54;
}
/* ===========nav */
@media(max-width: 810px){
    .navcontainer{
        padding: 10px;
    }
}
@media(max-width: 668px){
.itemscontainer{
 /* display: none; */
}
.itemscontainer ul{
    padding-top: 20px;
display: block;
position: absolute;
top: 0px;
left: -100%;
background-color: #FF3E54;
width: 150px;
height: 380px;
z-index: 2;
transition: left 0.6s ease-out;
}
.itemscontainer ul li {
    padding: 5px 20px;
    font-weight: 500;
}
.bar{
    display: block;
}
}
/* ==================== */
.herocontainer{
padding: 50px;
}
.heroholder{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.textcontainer{
width: 250px;
position: relative;
}
.eclipes1{
    position: absolute;
    width: 112px;
    height: 109px;
    top: -45px;
    left: -35px;
    border-radius: 50%;
    background: #FF3E54;
    opacity: 0.1;
}
.textcontainer p{
color: #FF3E54;
font-weight: bold;
text-transform: capitalize;
margin-bottom: 10px;
}
.textcontainer h2{
text-transform: uppercase;
margin-bottom: 10px;
}
.textcontainer .viewbtn{
background-color: #FF3E54;
text-align: center;
border-radius: 10px;
padding: 10px;
width: 50%;
text-transform: capitalize;
}
.textcontainer .viewbtn a{
    color: white;
}
.heroimg{
width: 400px;
height: 400px;
}
.heroimg img{
width: 100%;
height: 100%;
}

@media(max-width: 758px){
    .herocontainer{
        padding-top: 10px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 40px;
    }
    .heroholder{
       flex-direction: column-reverse;
    }

    .heroimg{
        width: 90%;
        height: 350px;
   }
.textcontainer{
margin-top: 20px;
width: 80%;
position: relative;
}
}

@media(max-width: 400px){
    .heroimg {
        width: 90%;
        height: 280px;
    }
    .textcontainer{
        width: 80%;
        position: relative;
        }
        .eclipes1 {
            left: -25px;
        }
}
/* ===========about section============= */
.aboutsection{
  background-color: #F7F7F7; 
}
.aboutholder{
  display: flex;
  flex-wrap: wrap;
  padding: 40px 30px 40px 10px; 
}
.aboutimg{
border-radius: 10px;
width: 50%;
height: 398px;
margin-right: 20px;
}
.abouttext{
width: 45%;    
}
.abouttext .title{
    color: #FF3E54;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.abouttext h2{
text-transform: capitalize;
margin-bottom: 20px;
}
.abouttext p{

}
.abouttext .viewbtn{
    margin-top: 50px;
    background-color: #FF3E54;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
    width: 150px;
    text-transform: capitalize;
    cursor: pointer;
}
.abouttext .viewbtn a{
   color: white;
}
/* ===================abtmedia */
@media(max-width: 857px){
    .aboutimg{
        flex: 0 0 auto;
        width: 100%;
    }
    .abouttext{
        margin-top: 40px;
        flex: 0 0 auto;
        width: 100%; 
    }
    .abouttext .viewbtn a {
        font-weight: bold;
        text-transform: uppercase;
    }
    .abouttext .title {
        font-size: 20px;
    }
    .abouttext p {
        font-size: 18px;
        line-height: 28px;
    }
    .abouttext .viewbtn {
        margin-top: 30px;
    }
    .aboutholder {
        padding: 40px 10px;
    }
}

/* =========serviceeeeeeeeeeeeeeee========= */
.servicecontainer{
position: relative;
height: 500px;
padding-top: 20px;
margin: 10px 10px;
}
.serviceheader{
    text-align: center;
    margin-bottom: 20px;
}
.serviceheader h2{
color: #FF3E54;
text-transform: capitalize;
}
.serviceheader h1{

}
.serviceholder{
    position: relative;
}
.slidderimg{
width: 98%;
margin: 0 auto;
height: 350px;
border-radius: 10px;
}
.slidderimg img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.slidderimg video{
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 10px; 
}

.navbtn{
z-index: 10;
}
.prev{
 position: absolute;
top: 50%;
left: 10px;
width: 60px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    border: 1px solid white;
    background-color: #FF3E54;
    /* border-radius: 50%; */
    color: white;
    text-transform: capitalize;
    font-weight: bold;
}
.next{
 position: absolute;
top: 50%;
right: 7px;
width: 60px;
height: 40px;
text-align: center;
line-height: 40px;
cursor: pointer;
border: 1px solid white;
background-color: #FF3E54;
/* border-radius: 50%; */
color: white;
text-transform: capitalize;
font-weight: bold;
}

@media(min-width: 1000px){
    .next, .prev {
        top: 55%;
    }
    .slidderimg{
        width: 98%;
        margin: 0 auto;
        height: 390px;
        border-radius: 10px;
        }
}
/* ===============service end======= */


.teamcontainer{
    background-color: #F7F7F7; 
    padding: 40px 60px;
}
.teamheader{
text-align: center;
margin-bottom: 40px;
}
.teamheader h2{
    color: #FF3E54;
    text-transform: capitalize;
}
.teamheader h1{

}
.teamimgcontainer{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 30px;
    background-color: #f1f1f1;
}
.objectimg{
width: 50%;
height: 320px;
}
.objectimg img{
    width: 100%;
    height: 100%;
}
.objecttext{
    /* text-align: center; */
    width: 50%;
}
.objecttext h1{
    margin-top: 20px;
margin-bottom: 5px;
}
.objecttext p{
    text-transform: capitalize;
    color: #FF3E54;
    margin-bottom: 20px;
}
.objecttext ul{

}
.objecttext ul li{
margin-bottom: 15px;
list-style-type: square;
list-style-position: inside;
}
.more{
    background-color: #FF3E54;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
    width: 150px;
    text-transform: capitalize;
    cursor: pointer;
    margin-bottom: 10px;
}
.more a{
    color: white;
}
.teamcon{
    text-align: center;
    margin-bottom: 10px;
}
.teamimg{
width: 300px;
height: 300px;
border-radius: 10px;
}
.teamimg img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* ===============team-=========== */
@media(max-width: 950px){
    .teamheader {
        margin-bottom: 20px;
    }
    .objectimg {
        margin-top: 10px;
    }
    .objectimg img{
        border-radius: 5px;
    }
    .teamcontainer {
        background-color: #F7F7F7;
        padding-top: 15px;
        padding-right: 10px;
        padding-left: 10px;
    }
    .teamimgcontainer {
        flex-direction: column-reverse;
        padding: 0px 20px;
    }
    .objecttext {
        width: 100%;
        flex: 0 0 auto;
    }
    .objectimg {
        width: 100%;
        height: 350px;
    }
    .more{
        margin-bottom: 20px;
        text-transform: uppercase;
        font-weight: bold;
    }
    .objecttext ul li {
        font-size: 18px;
    }
}

/* =============team end============ */
.gallerycontainer{

}
.galleryheader{
    padding-top: 20px;
    text-align: center;
    color: #FF3E54;
    text-transform: capitalize;
}
.galleryflex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 10px;
}
.galleryimage{
width: 100%;
height: 300px;
margin-bottom: 10px;
/* margin-right: 20px; */
}
.galleryimage img{
    width: 100%;
    height: 100%;
}
@media(min-width: 576px){
    /* .galleryflex{
        justify-content: space-between;
    } */
    .galleryimage{
   flex: 0 0 auto;
   width: 49%;
   /* margin-right: 5px; */
    }
}
@media(min-width: 1200px){
 .galleryimage{
    flex: 0 0 auto;
    width: 24%;
    }
}

.contactcontainer{
    background-color: #0E1F51;
    padding: 20px 40px;
}
.contactheader{
    text-align: center;
}
.contactheader h2{
    color: #FF3E54;
    text-transform: capitalize;
}
.contactheader h1{
    color: white;
    text-transform: capitalize;
}
.contactform{
display: flex;
}
.form{
    background-color: white;
    border-radius: 10px;
    padding: 15px;
}
.div input, .div textarea{
    border-radius: 10px;
    background-color: #F7F7F7; 
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    margin-bottom: 5px;
    resize: none;
}
.btnsubmit{

}
.btnsubmit button{
    background-color: #FF3E54;
    border: none;
    color: white;
    text-transform: capitalize;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}
.contactflex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 0px;
}
.contactholder{
    margin-bottom: 15px;
    /* color: #FF3E54; */
    margin-right: 10px;
    color: #a8dab4;
}
.contact1{

}
.contact1 h4{
    text-transform: capitalize;
    margin-bottom: 5px;
}
.contact1 p{
    color: white;
}
.followflex{
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
}
.followimg{
background-color: #817992;
/* padding: 5px; */
padding-top: 5px;
padding-right: 5px;
padding-left: 5px;
border-radius: 5px;
margin-right: 5px;
}
.followimg img{
width: 20px;
height: 20px;
}
.contactform2{
    background-color: white;
    border-radius: 10px;
    padding: 15px;
}
.callflex{
    display: flex;
    /* justify-content: space-around; */
    width: 90%;
    margin-bottom: 20px;
}

.callimgcon{
background-color: #440909; 
padding: 10px;
border-radius: 10px;
margin-right: 10px;
}
.callimg{
width: 20px;
height: 20px;

}
.callimg img{
width: 100%;
height: 100%;
}
.calltext{

}
.calltext h6{
    color: #FF3E54;
    text-transform: capitalize;
    font-weight: bold;
}
.calltext p{
margin-top: 5px;
}
.followheader{
    text-align: center;
    padding: 20px 0px;
    font-weight: bold;
    text-transform: capitalize;
}
.underline{
    width: 100%;
    border-top: 1px solid black;
}
.copyright{
    text-align: center;
    /* color: #FF3E54; */
    color: #a8dab4;
}


.IQ1KEb {
    margin-bottom: 48px;
}
.QMbmRe {
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 56%;
    width: 100%;
}

/* ================About us======================= */
.titlebck{
    width: 100%;
    height: 120px;
    background-color: #0E1F51;
    color: white;
    text-align: center;
    text-transform: capitalize;
}
.aboutusheaders{
padding-top: 60px;
}
.aboutusheaders h2{

}
.abouttitles{
text-align: left;
margin-left: 20px;
}
.abouttitles p{

}
.vismiscontainer{
    display: flex;
    flex-wrap: wrap;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;

}
.visionscontainer{
    box-shadow: rgba(3, 0, 24, 0.15) 0px 6px 20px 0px;
    background-color: rgb(255, 255, 255);
    margin-top: -13px;
    padding: 30px 30px 80px;
    border-radius: 4px;
    margin-right: 10px;
    transition: all 0.5s ease 0s;
}
.missionscontainer{
    box-shadow: rgba(3, 0, 24, 0.15) 0px 6px 20px 0px;
    background-color: rgb(255, 255, 255);
    margin-top: -13px;
    padding: 30px 30px 80px;
    border-radius: 4px;
    margin-left: 10px;
    transition: all 0.5s ease 0s;
}
.missionscontainer ul li{
    margin-bottom: 20px;
    list-style-type: square;
    list-style-position: inside;
}
.visionscontainer ul li{
    margin-bottom: 20px;
    list-style-type: square;
    list-style-position: inside;
}
@media (min-width: 750px){
.visionscontainer{
    max-width: 48%;
    flex: 0 0 48%;
}
.missionscontainer{
    max-width: 48%;
    flex: 0 0 48%;
}
}

@media (max-width: 750px){
.visionscontainer{
    margin-top: 30px;
   width: 100%;
   margin-right: 0px;
}
.missionscontainer{
   width: 100%;
   margin-left: 0px;
   margin-top: 20px;
}
.abouttitles{
    text-align: center;
    margin-left: 0px;
    }
}
.briefhistory{
    padding-right: 15px;
    padding-left: 15px;
}
.briefhistory h2{
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
}
.briefhistory p{
    line-height: 28px;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    font-size: 18px;
    font-weight: 500;
    color: #6f6f6f;
}
.briefhistoryflex{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.briefcontent{
    width: 45%;
}
.briefhistoryimg{
    border-radius: 10px;
    width: 50%;
    height: 650px;
    margin-left: 20px;
}
.briefhistoryimg img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
@media(max-width: 1000px){
    .briefcontent{
        width: 100%;
    }
    .briefhistoryimg{
        border-radius: 10px;
        width: 100%;
        height: 350px;
        margin-left: 0px;
    }
}

/* =======================contact================= */
.contactmain{
background-image: url(images/23.jpeg);
background-attachment: fixed;
background-size: cover;
height: 100vh;

}
.contactwrapper{
    padding: 20px;
}
.comcontainer{
   border: 1px solid #040000;
   background-color: #F77685;
    border-radius: 8px;
    color: #fff;
    padding: 20px;
    margin-bottom: 20px;
}
.companyname{
    
}
.companyname h2{
text-transform: capitalize;
margin-bottom: 10px;
}
.companyname p{
    opacity: 0.8;
    font-size: 18px;
    font-weight: bold;
}
.openhour{

}
