

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Montserrat", Sans-serif;
}


/* comman */

html {
    scroll-behavior: smooth;
    margin: 0!important;
    font-size: 62.5%;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/*comman-area*/

/* ol,
ul {
    margin: 0;
    padding: 0;
} */

img {
    display: block;
}

a {
    text-decoration: none;
    transition: all 0.5s ease;
}

a:focus,
a:hover,
a:active {
    text-decoration: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    margin: 0;
}



figure {
    margin: 0!important;
}

img {
    max-width: 100%;
    height: auto;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.container,
.container-fluid {
    padding: 0 15px;
}



.modal {
    display: none; 
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    overflow: scroll;
}
.modal-wrapper {
    background-color: #87AE73;
    margin: 50px auto;
    padding: 40px;
    width: 80%;
    max-width: 600px;
    position: relative;
    border-radius: 0;
}
.modal-wrapper h3{
    color: #fff;
    margin: 0 0 30px 0;
}
.close {
    color: #fff;
    font-size: 40px;
    font-weight: normal;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.form-row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    gap: 15px 0;
}
.form-col {
    width: 100%;
    padding: 0 10px;
}
.col-half{
    width: 50%;
}
.form-three{
    width: 33.33%;
}
.form-col p{
    margin: 0;
}
.form-control{
    width: 100%;
    height: 43px;
    background-color: #fff!important;
    color: #111;
    border-radius: 0;
    border: none;
    outline: none;
    font-size: 16px;
    padding-left: 15px;
}
textarea.form-control{
    height: 70px;
    padding-top: 10px;
}
.form-group label{
    display: block;
    color: #fff;
    font-size: 18px;
    margin: 0 0 5px 0;
}
.submit-btn{
    background-color: #fff!important;
    color: #87AE73!important;
    border: none;
}
.white-text{
    color: #fff;
    font-size: 18px;
    margin: 0 0 20px 0;
    display: table;
}
.white-text svg{
    fill:#fff;
    margin: 0 5px 0 0 ;
}

.error-section{
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: #efefef;
}
.error-text{
    text-align: center;
}
.error-text h1{
    color: #000;
    margin: 30px 0 20px 0;
}
.error-text img{
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    display: table;
}