@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    text-wrap: pretty;
    scroll-behavior: smooth;

    font-family: "Inter", sans-serif;

}

.container {
    max-width: 1400px !important;
}

#contact {
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: "";
    position: absolute;

    left: 0;
    width: 100%;
    bottom: 0;
    height: 100%;
    background-image: url(../images/cont-bg.png);
    background-size: contain;
    display: flex;
    background-repeat: no-repeat;
    pointer-events: none;

}

.header-fixed nav{
    padding: 30px 0 ;
    transition: 0.3s ease;
}
.quote_icon{margin-bottom:22px;}

@media (max-width: 1536px) {
  #contact::before {
    width: 700px;
    height: 480px;
  }
}


@media (max-width:1100px) {

    #contact::before {

        height: 350px;
        bottom: 0;
        top: unset;

    }
}

@media (max-width:850px) {
    #contact::before {

        height: 250px;
        bottom: 0;
        top: unset;

    }
}




.custom-arrow svg path {
    transition: fill 0.3s ease;
}

.custom-arrow:hover svg path {
    fill: #FFB870;
}



@media (max-width:579px) {
   .header-fixed nav {
    padding: 10px 0;
}
}