@import url('https://fonts.googleapis.com/css?family=Athiti&display=swap');
@import url('https://fonts.googleapis.com/css?family=Work+Sans:900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Acme&family=Koh+Santepheap:wght@100;300;400;700;900&display=swap');


/* @mixin flexBox($direction, $justify, $align) {
  display: flex;
  flex-direction: $direction;
  justify-content: $justify;
  align-items: $align;
} */
.acme-regular {
    font-family: "Acme", sans-serif!important;
    font-weight: 400;
    font-style: normal;
  }
  .koh-santepheap {
    font-family: "Koh Santepheap", serif;
    font-weight: 400;
    font-style: normal;
  }

body{
  /* @include flexBox(row, center, center); */
  /* margin-top: 100px; */
  font-weight: 600;
  background: #ffffff;
  box-sizing: border-box;
}
.media{
    /* width: 400px; */
    height: auto;
    margin: 130px 50px ;
    display: flex;
    flex-direction: column;
    gap: 20px;

}
.bg-numm {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color:lightblue;
}
.bg-numm i{
    font-size: 37px;
    padding: 12px 10px;
    color: blue;
}
.bg-numm .asn p{
   font-size: 20px;
}
/* .media-shadow{
    width: 350px;
    height: auto;
    background-color: antiquewhite;
} */
.containerr{
    width: 1200px;
    height: auto;
    margin: 50px auto;
}
.contact-form{
  /* @include flexBox(row, center, center); */
  width: max-content;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
}

.contact-form__brand{
  /* @include flexBox(row, flex-start, flex-start); */
  background: lightblue;
  width: 550px;
  height: 607px;
  color: black;
  display: flex;
 justify-content: flex-start;
 align-items: flex-start;

}
/* .contact-form__brand i{
    font-size: 250px;
    padding: 180px 15px 0 100px;
  } */

.contact-form__contact{
  background:black;
  /* color: $secondary; */
  padding: 15px 70px 15px 15px;
  position: relative;
  
}
.contact-form__contact::before{
    content: "";
    display: block;
    width: 150px;
    height: 100%;
    background: black;
    position: absolute;
    left: -150px;
    top: 0;
  }
  .contact-form__contact::after{
    content: "";
    display : block;
    position: absolute;
    height : 0;
    width : 0;
    top: -3%;
    left: -150px;
    border-top : 607px solid lightblue;
    border-right : 100px solid transparent;
  }
h3.contact-form__title{
  font-weight: 900;
  color: #83B4FF;
  text-transform: uppercase;
  font-size: 50px;
  padding-bottom: 10px;
  margin: 0 15px 15px 10px;
  border-bottom: 1px solid lavenderblush;
  font-family: "Koh Santepheap", serif!important;

}

form.contact-form__form{
  /* @include flexBox(column, center, flex-start); */
  position: relative;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

}
form.contact-form__form textarea{
    align-self: center;
    margin: 15px;
    height: 150px;
    border-radius: 5px;
  }
.contact-form__form--line{
  /* @include flexBox(row, flex-start, center); */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  
}
.contact-form__form--line input{
    margin: 2px 15px 15px 15px;
    border-radius: 5px;
    border: none;
    padding: 8px;
    background: white;
    font-weight: 100;
  }
.input{
  /* @include flexBox(column, center, flex-start); */
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #83B4FF;
}

.input--textarea{
  /* @include flexBox(column, center, flex-start); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #83B4FF;

}
.input--textarea textarea{
    width: 510px;
    padding:5px;
    resize: none;
    font-family: 'Athiti', sans-serif;
    font-size: 1em;
  }
.input--button{
  /* @include flexBox(column, flex-end, flex-end); */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
  .submit-btn{
    padding: 3px 45px;
    margin: 5px 15px 0px 15px;
    border: none;
    background: blue;
    color: #ffffff;
    font-size: 25px;
    text-transform: uppercase;
    transition: opacity .5s;
    border-radius: 15px;

  }
  .submit-btn:hover{
    opacity: .8;
    cursor: pointer;
  }





.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin: 28px 0 0 15px;
  cursor: pointer;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: white;
  transition: opacity .5s;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: rosybrown;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


