@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat&family=Poppins&display=swap');
body {
    margin:0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: 'Lato', sans-serif;
    background-color:#EEF2FF !important;
}

.header-links .links a{
    color: inherit;
    text-decoration: none;
}

.header-links .links a:hover{
    color: inherit;
    text-decoration: none;
}

.background {
    background-color:#EEF2FF;
}

.heading-content {
    background-color:#EEF2FF;
}

.heading-content h5 {
    font-size: 2em;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    color: #3EC1D3;
}

.heading-content h4 {
    font-size: 2em;
    font-weight: bolder;
    font-family: 'Montserrat', sans-serif;
    color: #3282B8;
}

.heading-content p {
    font-size: 1em;
    text-transform: uppercase;
    font-weight: lighter;
    font-family: 'Montserrat', sans-serif;
    color: #769FCD;
    word-spacing: 5px;
    letter-spacing: 2px;
}

.wrapper {
    position: relative;
    overflow: hidden;
  }
  
  .wrapper:after {
    content: '';
    display: block;
    padding-top: 100%;
  }
  
  .wrapper img {
    width: auto;
    height: 100%;
    max-width: none;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .carousel .carousel-indicators li {
      background-color: gray;
    }
  .carousel .carousel-indicators li.active {
    background-color: orange;
 }

 .top-content .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23121212' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.top-content .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23121212' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}


.modal video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 250px;
    border-radius: 5px;
    border: 3px solid #fff;
    object-fit: cover;
}

.modal .modal-content {
    border: none;
}


/*----------Media Query-----------*/

@media (max-width: 1024px) {
    .modal video{
        width: 100%;
      }
}

@media (max-width: 768px) {
    .modal video{
        width: 100%;
      }
}

@media screen and (max-width: 767px) {
    /*----------tablets---------*/

    .modal video{
        width: 90%;
      }


    .heading-content h5 {
        font-size: 3em;
    }
    
    .heading-content h1 {
        font-size: 3em;
    }
    
    .heading-content p {
        font-size: 0.9em;
    }


}

@media screen and (max-width: 479px) {
    /*----------smartphones---------*/

    .heading-content h5 {
        font-size: 2em;
    }
    
    .heading-content h1 {
        font-size: 2em;
    }
    
    .heading-content p {
        font-size: 0.7em;
    }

    #contact .post-heading h3 {
       font-size: 2em;
    }

}

