@import url('../font-files/inter.css');

:root {
    font-family: 'Inter' ,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji !important;
}
  
@supports (font-variation-settings: normal) {
    :root {
        font-family: 'Inter var',ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji !important;
    }
}

/* main navbar */

@media (min-width: 1280px) and (max-width: 1335px) {
    #mainNav {
        font-size: 15px;
    }
}

/* mobile view navbar */

.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: hidden;
    transition: 0.5s;
    line-height: 5rem;
    overflow: scroll;
}

.overlay-content {
    position: relative;
    top: 9%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay a {
    text-decoration: none;
    font-size: 26px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}

.overlay .closebtn {
    position: absolute;
    top: 6px;
    right: 25px;
    font-size: 60px;
}

@media screen and (max-height: 450px) {
    .overlay {
        overflow-y: auto;
    }
    .overlay a {
        font-size: 20px
    }
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

/* mobile view navbar*/


/* Enquiry button */

.enquiry-button {
    animation: taadaa 1.5s infinite;
    transition: all 0.5s;
}

@keyframes taadaa {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
    0% {
        transform: scale(0.95);
    }
    70% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.95);
    }
}

/* Enquiry button */

/* Enquiry Form */

@media (min-width:767px)
{
    .form
    {
        box-shadow: 0 8px 20px rgb(0 0 0 / 0%), 0 0px 8px rgb(0 0 0 / 18%);
    }
}

/* Enquiry Form */
  
@media (min-width: 1280px) and (max-width: 1380px)
{
      .header .container
      {
          max-width: 1150px !important;
      }
}

@media (min-width: 1536px) and (max-width: 1680px)
{
      .header .container
      {
          max-width: 1350px !important;
      }
}
  