/*@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');*/

  @import url('https://fonts.googleapis.com/css2?family=Caudex:wght@400;700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    /*font-family: 'Comfortaa', cursive;*/
    
    font-family: 'Caudex', serif;
}

.navbar{
    max-height: 80px;

    overflow: hidden;

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

    /* background-color: #fff; */
    background-color: #ffffff00;

    width: 100%;

    border-bottom: 1px solid #fff;

    /* position: sticky; */
    position: absolute;
    top: 0;

    z-index: 10;

    /* border: 1px solid red; */
}

.navbar #nav-toggle-btn{
    display: none;
}

.make-white-relative{
    background-color: #fff;
    position: relative;
}

.navbar .logo-container{
    width: 30%;

    overflow: hidden;
    background-size: cover;

    position: relative;

    /* border: 1px solid blue; */
}

.navbar .logo-container #logo-images{
    width: 256px;
    height: 256px;

    position: relative;

}

.navbar .logo-container #logo-images img{
    width: 100%;
    height: 100%;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    object-fit: cover;

    /* border: 1px solid red; */
}

.navbar .logo-container #logo-images #round-logo{
    width: 35%;
    height: 35%;
}

/* Images slide show start */
.navbar .logo-container #logo-images img {
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.navbar .logo-container #logo-images img.active {
    opacity: 1;
}











.navbar .navigation{
    width: 40%;

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

    /* border: 1px solid red; */
}

.navbar .navigation a{
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #000;

    padding-bottom: 10px;

    transition: .1s border;
    transition: .5s transform;
}

.navbar .navigation a:hover, .navigation a.active{
    transform: scale(1.1);
    color: rgb(11, 79, 11);
    border-bottom: 3px solid rgb(11, 79, 11);
}

.navbar .quote{
    width: 30%;
    text-align: right;
    padding-right: 20px;
}

.navbar .quote a{
    text-decoration: none;
    padding: 10px;
    padding-left: 12px;
    padding-right: 12px;
    /* background-color: #fff; */
    color: rgb(11, 79, 11);

    /* border: 1px solid rgb(11, 79, 11); */

    background-color: rgb(11, 79, 11);
    color: #fff;

    border-radius: 25px;

    transition: .5s;
}

.navbar .quote a:hover{
    transform: scale(1.1);

    cursor: pointer;

    /* background-color: rgb(11, 79, 11); */
    /* color: #fff; */

    background-color: #fff;
    color: rgb(11, 79, 11);

    border: 1px solid rgb(11, 79, 11);

}

/* Quote btn */

#get-a-quote-box{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  
    width: 100%;
    height: 100%;
    
    background-color: rgba(0, 0, 0, 0.9);

  /* display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center; */

  padding: 5%;

  z-index: 9999;

  overflow: hidden;
  overflow-y: scroll;
}

#get-a-quote-box .close-icon-get-a-quote-box {
    position: absolute;
    top: 20px;
    right: 20px;
    
    color: rgb(164, 164, 164);
    font-size: 35px;
    cursor: pointer;
  }


#get-a-quote-box .quote-form{

    width: 100%;

    margin-top: 50px;
}

#get-a-quote-box .quote-form form{

    width: 100%;

    /* border: 1px solid red; */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#get-a-quote-box .quote-form form input{
    width: 100%;
    padding: 30px;
    border: none;
    color: #000;
    background-color: #F0F1F1;
    border-radius: 5px;

    margin-bottom: 10px;
}


#get-a-quote-box .quote-form form textarea{
    width: 100%;
    padding: 30px;
    border: none;
    color: #000;
    background-color: #F0F1F1;
    border-radius: 5px;
    resize: none;

    margin-bottom: 10px;
}

#get-a-quote-box .quote-form form button{
    width: 100%;
    padding: 30px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    color: #fff;
    background-color: #1B5930;
}

#get-a-quote-box .quote-form form button{
    cursor: pointer;
}

