:root{
  --green-default: #39F5B1; 
  --blue-default: #1D70B7;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

::selection{
  background-color: var(--green-default);
  color: var(--blue-default);
}

.white-color{
  color: white;
}

.green-color{
  color: var(--green-default) !important;
}

.blue-color{
  color: var(--blue-default) !important;    
}

.green-bg{
  background-color: var(--green-default);
}

.blue-bg{
  background-color: var(--blue-default) !important;
}

body{
  background-color: #DDEAF4;
}

.cover{
  width: 100%;
  height: 600px;
  background-image: url('../img/notebook-hands.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.content-cover{
  width: 100%;
  height: 600px;
  /* background: red; */
  display: flex;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-end;
}

.content-cover h1{
  font-weight: bold;
  font-size: 48px;
  color: #F2F0ED;
}

.line{
  width: 60px;
  height: 5px;
  border-radius: 10px;
  background: var(--green-default);
}

.tt{
  margin-left: 150px;
  margin-bottom: 70px;
}

.contact{
  width: 100%;
  padding: 70px 0px;
  /* height: 1000px; */
  /* background-color: red; */
  display: flex;
  justify-content: center;
}

.flex-in-contact{
  /* height: 1000px; */
  display: flex;
  justify-content: center;
  /* background: green; */
}

.svg{
  width: 50%;
  height: 100%;
  /* background-color: orangered; */
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.imagesvg{
  width: 500px;
  height: 600px;

  background-image: url('../img/hand-phone.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.form{
  width: 50%;
  height: 100%;
  /* background: blue; */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
}

.form-content{
  width: 500px;
  height: 800px;
  /* background: yellowgreen; */
}

.form-content h6{
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  
  letter-spacing: 0.12em;

  color: #868E96;
}

.form-content h3{
  font-style: normal;
font-weight: bold;
font-size: 46px;
line-height: 130%;

/* or 60px */
letter-spacing: -0.04em;

/* g1 */
color: #343A40;
}

.form-group{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-content: flex-start;
  align-items: flex-start;
  padding: 20px 0px 0px;
}

.form-group label{
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #343A40;
  padding-bottom: 5px;
}

.no-form-control{
  width: 100%;
  padding: 20px 13px;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  border-radius: 8px;
}

.no-form-control:focus{
  border: 1px solid var(--green-default);
}

textarea.no-form-control{
  min-height: 200px;
  resize: none;
}

.btn-send{
  width: 100%;
  height: 50px;
  background: var(--blue-default);
  border: none;
  border-radius: 5px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: white;
  margin-top: 15px;
  cursor: pointer;
  transition: .5s;
}

.btn-send:hover{
  background:  rgb(6, 81, 146);
}

.btn-send:active{
  transform: scale(.998);
}

form{
  width: 100%;
}

.text-send-error {
  width: 100%; text-align:center;color:red;font-weight:bold;padding-top: 10px;
  display: none;
}