* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Helvetica, Arial, sans-serif;
    background-color: #fff;
    color: white;
  }
  .navbar {
    background-color: #000;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    width: 100%;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
    padding: 0 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .navbar a {
    text-decoration: none;
    color: #fff;
  }
  .navbar a.navbar-brand {
    float: left;
    height: inherit;
    line-height: inherit;
    padding: 0 15px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
  }
  .navbar a.navbar-brand span {
    font-size: 28px;
    font-weight: 700;
  }
  .navbar ul {
    float: right;
    list-style: none;
    height: inherit;
    line-height: inherit;
    padding: 0 50px;
  }
  .navbar ul li {
    display: inline-block;
  }
  .navbar ul li a {
    display: block;
    text-align: center;
    min-width: 120px;
    padding: 0 30px;
  }
  .navbar ul li a:hover {
    background-color: rgba(255,255,255,0.15);
  }
  .navbar .navbar-toggler {
    display: none;
  }

  .intro {
    width: 100%;
    height: 70vh;
    /* background: url("https://source.unsplash.com/GYQBryEWh0Y/") no-repeat center center; */
    background-size: cover;
    background: linear-gradient(to right, #3a0272 0%, #320d3e 100%);
  
    
    text-align: center;
    position: relative;
  }
  
  .center-div{
      width: 100%;
      height: auto;
      position: absolute;
      /* padding-top: 10%; */
      top: 50%;
      left: 50%;
      color: white;
      font-size: 2rem;
      transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
     -webkit-transform: translate(-50%, -50%);
     
  }
  
  .slogan{
      font-size: 1.5rem;
      line-height: 1.6;
      font-weight: 400;
      color:#ffd300;
  
  }

  

  
  
  
  .container {
    position: relative;
    height: 100vh;
    color: #fff;
    
  }
  .container h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vh;
  }
  
  #css { background-color: #002561; }
  #javascript { background-color: #333; }
  
  @media (max-width: 991px) {
    .navbar ul {
      padding: 0 10px;
    }
    .navbar ul li a {
      min-width: 100px;
      padding: 0 20px;
    }
  }
  
  @media (max-width: 767px) {
    .navbar {
      padding: 0;
    }
    .navbar ul {
      width: 100%;
      padding: 0;
      background-color: rgba(0,0,0,0.9);
      /* height: auto; */
      height: 100vh;
      max-height: 0;
      overflow: hidden;
      transition: all ease-in-out 0.3s;
    }
    .navbar ul.open {
      max-height: 100vh;
    }
    .navbar ul li {
      width: 100%;
      /* border-bottom: 1px solid rgba(255,255,255,0.3); */
    }
    .navbar ul li a {
      padding: 0;
    }
    .navbar .navbar-toggler {
      display: block;
      position: absolute;
      height: 40px;
      top: 20px;
      right: 20px;
      background-color: transparent;
      color: #fff;
      border: 3px solid #fff;
      /* border: none; */
      /* border-radius: 4px; */
      outline: none;
      padding: 0 5px;
      cursor: pointer;
    }
    .navbar .navbar-toggler span,
    .navbar .navbar-toggler span::before,
    .navbar .navbar-toggler span::after {
      display: block;
      content: '';
      background-color: #fff;
      height: 3px;
      width: 28px;
      border-radius: 4px;
      transition: all ease-in-out 0.3s;
    }
    .navbar .navbar-toggler span::before {
      transform: translateY(-8px);
    }
    .navbar .navbar-toggler span::after {
      transform: translateY(5px);
    }
    
    .navbar .navbar-toggler.open-navbar-toggler span {
      /* transform: rotate(90deg); */
      background-color: transparent;
      /* transform: scale(0.85) rotate(270deg); */
    }
    .navbar .navbar-toggler.open-navbar-toggler span::before {
      transform: translateY(0px) rotate(45deg);
      /* transform: translateY(0px) scale(0.75) rotate(45deg); */
    }
    .navbar .navbar-toggler.open-navbar-toggler span::after {
      transform: translateY(-3px) rotate(-45deg);
      /* transform: translateY(-3px) scale(0.75) rotate(-45deg); */
    }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  /* ...........................gallery starts...................... */
  .gallery{
    color: white;
    font-family: 'Varela', sans-serif;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 2px;
    background-color:#564f6f ;
    padding-bottom: 8%;
  }
  

  h1 {
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    padding-top: 3%;
    padding-bottom: 3%;
    
}

.label-listing {
    font-weight: bold;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px;
    text-align: center;
    text-transform: uppercase;
    color: white;
    font-size: 12px;
}

   





  img.hover-shadow {
    transition: all 0.3s; }
  
  .carousel-row {
    padding-top: 4%;
    max-width: 80%;
    margin: 0 auto;
    /* margin-top: 5px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; }
    .carousel-row--img {
      width: 30%;
      margin-bottom: 10px; }
      .carousel-row--img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor: pointer;
        transition: 0.4s; }
        .carousel-row--img img:hover {
          box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 12px 20px 0 rgba(0, 0, 0, 0.19); }
  
  .column-box {
    white-space: nowrap;
    background-color: transparent;
    width: 100%;
    background: black;
    overflow: hidden; }
    .column-box .column {
      width: 20%;
      display: inline-block;
      transition: all 1s;
  }
      .column-box .column img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor: pointer; }
  
  /* The Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding: 50px 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: black; }
    .modal.no-select {
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    .modal-content {
      margin: auto;
      width: 50%;
      overflow: hidden;
  }
      @media only screen and (max-width: 37.5em) {
        .modal-content {
          width: 90%;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); } }
  
  @keyframes anime {
    0% {
      opacity: 0;
      transform: scale(0.9); }
    100% {
      opacity: 1;
      transform: scale(1); } }
  
  .my-slides {
    display: none;
    height: 60vh;
    transition: all 2s;
    overflow: hidden;
    animation: anime 0.8s ease-in; 
    position: relative;
  }
    @media only screen and (max-width: 56.25em) {
      .my-slides {
        height: 70vh; } }
    @media only screen and (max-width: 37.5em) {
      .my-slides {
        height: 30vh; } }
    .my-slides img {
      object-fit: cover;
      width: 100%;
      height: 100%; }
    .my-slides--number {
      color: #f2f2f2;
      font-size: 12px;
      padding: 8px 12px;
      position: absolute;
      top: 0; }
  
  .demo {
    opacity: 0.5;
    transition: all 0.4s; }
    .demo.active, .demo:hover {
      opacity: 1; }
  
  /* Caption text */
  .caption-container {
    text-align: center;
    background-color: black;
    padding: 6px 16px;
    color: white; }
  
  /* The Close Button */
  .close {
    color: white;
    position: absolute;
    /* top: 10px; */
    padding-top: 5%;
    padding-right: 5%;
    right: 25px;
    font-size: 50px;
    font-weight: bold; }
    .close:hover, .close:focus {
      color: #999;
      text-decoration: none;
      cursor: pointer; }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: fixed;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 50px;
    transition: 0.6s ease;
    transform: translateY(-50%); }
    @media only screen and (max-width: 37.5em) {
      .prev,
      .next {
        position: fixed;
        top: 95%;
        padding: 10px;
        padding-bottom: 20%;
        font-size: 40px;
        transform: translateY(-50%); } }
    .prev:active,
    .next:active {
      font-size: 30px; }
  
  /* Position the "next button" to the right */
  .next {
    right: 0; }
  
  .prev {
    left: 0; }
    @media only screen and (max-width: 37.5em) {
      .prev {  left: 80%; } } 
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(255, 255, 255, 0.1); }
    @media only screen and (max-width: 37.5em) {
      .prev:hover,
      .next:hover {
        background-color: transparent; } }
  
  /* **************************footer starts*************************** */
  .content1{
    position: relative;
    margin: 1px auto;
    text-align: center;
    padding: 0 20px;
  }
  .content1 .text{
    font-size: 2.5rem;
    font-weight: 600;
    color: #202020;
  }
  .content1 .p{
    font-size: 2.1875rem;
    font-weight: 600;
    /* color: #202020; */
    color: white;
  }
  footer{
    /* position: fixed; */
    bottom: 0px;
    width: 100%;
    background: #111;
  }
  .main-content{
    display: flex;
  }
  .main-content .box{
    flex-basis: 50%;
    padding: 10px 20px;
  }
  .box h2{
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
  }
  .box .content{
    margin: 20px 0 0 0;
    position: relative;
  }
  .box .content:before{
    position: absolute;
    content: '';
    top: -10px;
    height: 2px;
    width: 100%;
    background: #1a1a1a;
  }
  .box .content:after{
    position: absolute;
    content: '';
    height: 2px;
    width: 15%;
    background: #320d3e;
    top: -10px;
  }
  .left .content p{
    text-align: justify;
  }
  .left .content .social{
    margin: 20px 0 0 0;
  }
  .left .content .social a{
    padding: 0 2px;
  }
  .left .content .social a span{
    height: 40px;
    width: 40px;
    background: white;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
  }
  .left .content .social a span:hover{
    background: #7851a9;
  }
  .center .content .fas{
    font-size: 1.4375rem;
    background: #1a1a1a;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
  }
  .center .content .fas:hover{
    background: #320d3e;
  }
  .center .content .text{
    font-size: 1.0625rem;
    font-weight: 500;
    padding-left: 10px;
  }
  .center .content .phone{
    margin: 15px 0;
  }
  .right form .text{
    font-size: 1.0625rem;
    margin-bottom: 2px;
    color: #656565;
  }
  .right form .msg{
    margin-top: 10px;
  }
  .right form input, .right form .msgForm{
    width: 100%;
    font-size: 1.0625rem;
    background: #151515;
    padding-left: 10px;
    border: 1px solid #222222;
  }
  .right form input:focus,
  .right form .msgForm:focus{
    outline-color: #3498db;
  }
  .right form input{
    height: 35px;
  }
  .right form .btn{
    margin-top: 10px;
  
  }
  .right form .btn button{
    height: 40px;
    width: 100%;
    border: none;
    outline: none;
    background: #7851a9;
    font-size: 1.0625rem;
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
  }
  .right form .btn button:hover{
    background: rgb(124, 119, 119);
  }
  .bottom center{
    padding-right: 20%;
    padding-top: 5%;
    font-size: 0.9375rem;
    background: #151515;
  }
  .bottom center span{
    color: #656565;
  }
  .bottom center a{
    color: #f12020;
    text-decoration: none;
  }
  .bottom center a:hover{
    text-decoration: underline;
  }
  @media screen and (max-width: 900px) {
    footer{
      position: relative;
      bottom: 0px;
    }
    .main-content{
      flex-wrap: wrap;
      flex-direction: column;
    }
    .main-content .box{
      margin: 5px 0;
    }
  }
  


  /* ***************watsapp starts***************** */
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');

body {
  
  font-family: 'Varela', sans-serif;

}
/* ***************watsapp ends***************** */