* {box-sizing: border-box}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

h1{
    margin: 0;
}

.title{
    font-size: 40px;
}

.button_white{
    background-color: #fff;
    outline: 0;
    padding: 8px 12px;
    color: #000;
    border: 1px solid transparent;
    transition: all .4s;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.5s;
    height: fit-content;
  }
  
  .button_white:hover{
    background-color: #000;
    color: #fff;
  }
  
  button{
    border-radius: 18px;
    cursor: pointer;
    width: fit-content;
  }
  
  .button_red{
    background-color: rgb(195, 80, 86);
    outline: 0;
    padding: 8px 12px;
    color: #fff;
    border: 1px solid transparent;
    transition: all .4s;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.5s;
  }
  
  .button_red:hover{
    background-color: #000;
    color: #fff;
  }
  
  .col_5 {
    width: 41.66667%; /* 5/12 = 0.4166667 */
  }
  
  .col_7 {
    width: 58.33333%; /* 7/12 = 0.5833333 */
  }

  .col_6 {
    width: 50%; 
  }
  
  .flex_row{
    flex-direction: row;
  }
  
  .flex{
    display: flex;
  }

  .flex_wrap{
    flex-wrap: wrap;
  }
  
  .container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
  }
  
  @media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
  }
  
  @media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
  }
  
  @media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
  }
  
  @media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
  }
  
  @media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
  }

.text_center{
    text-align: center;
}
  
.margin_section_top{
    margin-top: 4rem;
}

.margin_section_bottom{
    margin-bottom: 4rem;
}

@media (max-width: 767px){
    .col_5,
    .col_7,
    .col_6{
        width: 100%;
    }
}

/* ABOUT US SECTION */
.about_us img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
    max-height: 600px;
}
.about_us .right{
    padding-left: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
@media (max-width: 767px){
    .about_us .right{
        padding-left: 0px;
    }
    .about_us img{
      max-height: 300px;
  }
}
/* END OF ABOUT US SECTION */

/* Contact */
.contact_form{
  margin-top: 6rem;
  margin-bottom: 4rem;
}

.contact_form .form{
  width: 100%;
  padding: 2rem;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
}
/* End of contact */
.form-group{
  margin-bottom: 1rem;
}

.default-input{
  width: 100%;
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  outline: 0px;
  border-radius: 0px;
  border: 1px solid #d4d4d4;
}

.default-textarea{
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  outline: 0px;
  border-radius: 0px;
  border: 1px solid #d4d4d4;
  padding-top: 10px;
}


.button_black{
  background-color: #000;
  width: 100%;
  padding: 10px 15px 10px 15px;
  color: #fff;
  border: 0;
  outline: 0;
  font-size: 16px;
  cursor: pointer;
  transition: 0.5s all;
  position: relative;
  overflow: hidden;
}

.button_black span{
  z-index: 1;
  position: relative;
}

.button_black::before {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #4FC06F;
  transition: width 0.5s ease;
  z-index: 0;
}

.button_black:hover{
  color: #fff;
}

.button_black:hover::before {
  width: 100%;
}

.loading-state {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 5px solid #ddd;
  border-top-color: #000;
  animation: loading 1s linear infinite;
}
@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 100%;
  max-width: 40%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

  