body{
    scroll-behavior: smooth;
    font-family: "Albert Sans", sans-serif;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #001819;
  border-radius: 0;
}

body::-webkit-scrollbar-thumb {
  background-color: #79b900;
  border-radius: 0;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #79b900;
  cursor: pointer;
}

body, button {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container-max-width{
    max-width: 1920px;
    margin: auto;
}

.banner {
  width: 100%;
  height: 600px;
  background-image: url(../images/breadcrumb-bg.jpg);
  background-size: cover;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 0;
}

.banner-text{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.banner-text h1{
    color: #fff;
    font-size: 46px;
    margin-bottom: 18px;
}

.banner-text1{
    display: flex;
    align-items: center;
    gap: 7px;
}

.banner-text i{
    color: #79b900;
}

.banner-text a{
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.banner-text a:hover{
    color: #79b900;
}

.banner-text1-i i{
    color: #fff;
}

.banner-text p{
    font-size: 16px;
    color: #868681;
}

.contact{
    width: 70%;
    margin: auto;
    padding: 80px 0;
}

.contact-up{
    width: 100%;
    padding: 30px;
    background-color: #79b900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    margin-bottom: 80px;
}

.contact-up-box {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.contact-up-box button {
    width: 70px;
    height: 70px;
    background-color: #fff;
    color: #79b900;
    font-size: 25px;
    border: none;
    border-radius: 50%;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    
}

.contact-up-box button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: #001819;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
        animation: pulse 3s infinite ease-out;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: -1; 
}


.contact-up-box:hover button::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    cursor: pointer;
}


.contact-up-box h2{
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
}

.contact-up-box p{
    color: #fff;
    text-align: center;
}

.box1{
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.contact-down{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.contact-down-right-text{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.contact-down-left{
    width: 50%;
}

.contact-down-left iframe{
    width: 100%;
}

.contact-down-right-text h3{
    font-size: 14px;
    color: #79b900;
    font-weight: 400;
}

.contact-down-right h1{
    color: #001819;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 18px;
}

.inputs{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.inputs input{
    padding: 12px 20px;
    width: 48%;
    border: 1px solid  rgb(222, 228, 218);
    outline: none;
    font-family: "Albert Sans", sans-serif;
    border-radius: 5px;
}

.inputs input::placeholder, textarea::placeholder{
    color: rgb(172, 173, 170);
    font-family: "Albert Sans", sans-serif;
}

.input:focus{
    outline: none;
    
}

textarea{
    border-radius: 5px;
    padding: 12px 20px;
    border: 1px solid  rgb(222, 228, 218);
    outline: none;
    width: 100%;
    font-family: "Albert Sans", sans-serif;
    height: 100px;
}

.input-check{
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0;
}

.input-check p{
    color: #868681;
    font-size: 14px;
}

.contact-down-right button{
    padding: 16px 40px;
    color: #fff;
    border: none;
    border-radius: 20px;
    background-color: #79b900;
    font-family: "Albert Sans", sans-serif;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.contact-down-right button:hover{
    background-color: #001819;
    color: #79b900;
}

@media screen and (max-width:768px) {

    .banner{
        height: 350px;
    }
    
    .contact{
        width: 90%;
        margin: auto;
    }

    .contact-up{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-up-box{
        width: 100%;
        padding: 20px 0;
    }
    

    .box1{
        border-bottom: 1px solid white;
        border-top: 1px solid white;
        border-right:none ;
        border-left:none;
    }

    .contact-down{
        display: flex;
        flex-direction: column;
    }

    .contact-down-left, .contact-down-right{
        width: 100%;
    }

    .contact-down-left iframe{
        width: 100%;
    }

}