body p , a, h4{
  font-family: 'Rubik', sans-serif;
}
a{
    text-decoration: none;
}
a:hover{
  color: white;
}
ul, li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.top-nav{
       background-color: #5e5d5d;
    padding: 6px 0px;
}
.top-nav .right-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.contact-info {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.contact-info li {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #ff8e59;
}
.contact-info li span {
    color: #fff;
    margin-right: 8px;
    position: relative;
    top: 2px;
}
.contact-info li a {
    color: #fff;
}

.social-icon-one {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.social-icon-one li a {
    position: relative;
    color: var(--dark-color);
    background: #fff;
    height: 22px;
    line-height: 23px;
    width: 22px;
        margin: 0px 6px;
    text-align: center;
    font-size: 13px;
    display: inline-block;
    border-radius: 50%;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.social-icon-one li a:hover {
    position: relative;
    color: #fff;
    background: var(--dark-color);
    height: 22px;
    line-height: 23px;
    width: 22px;
        margin: 0px 6px;
    text-align: center;
    font-size: 13px;
    display: inline-block;
    border-radius: 50%;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}
em{
    color: #a74425;

}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
nav{
  z-index: 99;
     width: 100%;
        background: white;
     box-shadow:0px 1px 1px #a74425;
}
nav h1{
           padding-left: 90px;
    margin-top: -50px;
    font-size: 25px;
    font-family: 'Prata';
    color: #a74425;
    letter-spacing: 2px;
    text-shadow: 1px 1px 1px rgb(4 7 7);
    font-weight: 600;
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
     padding: 10px 30px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: #a74425;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: #424141;
    color: white;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #5e5d5d;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: 100%;
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -15px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 5px;
  color: #d9d9d9;
  font-size: 15px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}
@media only screen and (max-width: 768px) {

nav h1{
           padding-left: 90px;
       margin-top: -60px;
    font-size: 22px;
    font-family: 'Prata';
    color: #a74425;
    letter-spacing: 2px;
    text-shadow: 1px 1px 1px rgb(4 7 7);
    font-weight: 600;
}
}
@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
        background-color: black;
  }
 .wrapper .nav-links {
        position: absolute;
    height: 200px;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 5px 10px;
    line-height: 40px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgb(0 0 0 / 18%);
    transition: all 0.3s ease;
}
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  z-index: 10;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 5px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 16px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}

.footer-call
{
      padding-left: 25px;
    margin-top: -24px;
  }

  .footer-mail
{
      padding-left: 25px;
    margin-top: -24px;
}
.add-footer{
      padding-left: 25px;
    margin-top: -24px;
}

#myBtn {
  display: none;
  position: fixed;
 bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 13px;
    border: none;
    outline: none;
    background-color: #a74425;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}


.icon-bar {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}

.icon-bar a:hover {
  background-color: #000;
}


.call {
  background: #bb0000;
  color: white;
}

.whatsapp {
  background: green;
  color: white;
}
.about-content-block h1 {
    margin-bottom: 25px;
    font-size: 28px;
    font-family: 'Prata', serif;
    line-height: 50px;
}

.about-content-block .name{
    margin-bottom: 25px;
    font-size: 34px;
   color: #a74425;
    font-weight: 600;
    font-family: 'Prata', serif;
    line-height: 50px;
}
.btn-style-two {
        position: relative;
    line-height: 20px;
    background:#5e5d5d;
    color: #fff;
    font-size: 18px;
    border-radius: 0px;
    padding: 15px 15px;
    text-transform: capitalize;
    overflow: hidden;
}
.btn-style-two:hover {
        position: relative;
    line-height: 20px;
    background: #000;
    color: #fff;
    font-size: 18px;
    border-radius: 0px;
    padding: 15px 15px;
    text-transform: capitalize;
    overflow: hidden;
}
.style-btn {
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.footer{
  background: #5e5d5d;
    color: #dddddd;
    padding: 40px 0px;
}
.footer p, a{
  color: #dddddd;
}
.footer-copy p{
  color: #dddddd;
  
  }
.footer-copy{
    background: #5e5d5d;
    color: #dddddd;
    padding: 20px 0px;
        border-top: 1px solid #504e4e;
}
.footer h4{
  color: white;
    margin-bottom: 30px;
    font-size: 30px;
}
.Follow {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.Follow li a {
  position: relative;
    color: #872202;
    background: #fff;
    height: 30px;
    line-height: 30px;
    width: 30px;
    margin: 0px 6px;
    text-align: center;
    font-size: 16px;
    display: inline-block;
    border-radius: 50%;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}
.Follow li a:hover {
  position: relative;
    color:  #fff;
    background:#872202;
    height: 30px;
    line-height: 30px;
    width: 30px;
    margin: 0px 6px;
    text-align: center;
    font-size: 16px;
    display: inline-block;
    border-radius: 50%;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.footer ul li{
  line-height: 35px;
}

.carousel-inner img {
    height: 500px;
}
@media only screen and (max-width: 768px) {
.carousel-inner img {
    height: 250px;
}
}
.services
{
 
    padding: 40px 0px;
}
.services h2{
  color: #872202;
text-align: center;
    font-family: 'Prata', serif;
        margin-bottom: 30px;

}
.services .card{
       background: #5e5d5d;
    color: white;
    border: 0;
}
.services .card:hover{
          background: #856754;
   color: white;
    border: 0;
}
.services .card-body{
  height: 150px;
}
.services .card-title{
    font-size: 23px;
}
.services img{
              height: 288px;
}
.services .btn-primary-style{
  border-radius: 30px;
    width: 50%;
    height: 50%;
        background-color: #000;
    border: 1px solid #000;
    margin: 10px 0px;
        color: white;
}
.services .btn-primary-style:hover{
  border-radius: 30px;
    width: 50%;
    height: 50%;
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    margin: 10px 0px;
}
@media only screen and (max-width: 768px) {
.services .btn-primary-style{
  border-radius: 30px;
    width: 100%;
    height: 50%;
    background-color: white;
    border: 1px solid white;
    margin: 10px 0px;
}
}
.get-in-touch h2{
  font-family: prata;
}
.get-in-touch h4{
      color: #872202;
}
.get-in-touch .get-icon i{
  background: #5e5d5d;
    border-radius: 50%;
    color: white;
    padding: 25px;
    font-size: 20px;
    border: 1px solid #5e5d5d;
}

.get-in-touch .get-icon i:hover{
  background: #fff;
    border-radius: 50%;
    color: #832102;
    padding: 25px;
    font-size: 20px;
    border: 1px solid #832102;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  background: #f1f1f1f1;
}

/* Slides */
.mySlides {
  display: none;
  padding: 40px;
  text-align: center;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #888;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  color: white;
}


/* Add an italic font style to all quotes */
/* q {font-style: italic;} */

/* Add a blue color to the author */
.author {color: cornflowerblue;}

.Testmonials h2{
  font-family: prata;
}
.contact-banner img{
  width: 100%;
  height: 100%;
}
.about-banner img {
    width: 100%;
    height: 100%;
}
.service-banner {
      background-color: grey;
    padding: 40px 0px;
}
.services-banner ul{
      padding: 10px 16px;
    list-style: none;
    background-color: #eee;
}
@media only screen and (max-width: 768px)
{
.about-banner img {
    width: 100%;
    height: 100%;
}

.contact-banner img {
    width: 100%;
    height: 100%;
}
}

@media only screen and (max-width: 768px)
{
.school-uniform img {
    width: 100%;
    height: 70%;
}
}

.Contact{
  margin: 100px 0px;
}
.about h2{
  font-family: prata;
}
.school-uniform img{
  width: 100%;
   height: 240px;
       border: 1px solid grey;
}

.contact-details {
        background-color: #5e5d5d;
    padding: 20px;
    color: white;
        line-height: 30px;

}

.con-p{
      padding-left: 22px;
    margin-top: -30px;
}
.con-e{
      padding-left: 22px;
    margin-top: -30px;
}
.contact-btn{
      background: #5e5d5d;
    border: 1px solid #5e5d5d;
    border-radius: 0;
}
.form-data input, textarea{
      border-radius: 0;
    margin: 7px 0px;
}
.service-banner h1{
  font-size: 26px;
}
.service-banner ul {
  padding: 10px 16px;
  list-style: none;
      color: white;
}
.service-banner ul li {
  display: inline;
  font-size: 15px;
}
.service-banner ul li+li:before {
  padding: 8px;
  color: #fff;
  content: "/\00a0";
}
.service-banner ul li a {
  color: #fff;
  text-decoration: none;
}
.service-banner ul li a:hover {
  color: #000;
  text-decoration: underline;
}
.contact{
      margin: 80px 0px;
}

.UNIFORMS h1{
      font-family: 'Prata';
    font-weight: 600;
    font-size: 30px;
    color: #992b18;
}