



/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/


body, html {
	height: 100%;
  font-family: 'noto sans', serif;
}

/*---------------------------------------------*/
a {
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
}

/*---------------------------------------------*/

p {
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}



/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { 
  color: black;
  font-size: 2.4vmin;
}
input:-moz-placeholder {  
  color: black;
  font-size: 2.4vmin;
}
input::-moz-placeholder { 
  color: black;
  font-size: 2.4vmin;
}
input:-ms-input-placeholder { 
  color: black;
  font-size: 2.4vmin;
}

textarea::-webkit-input-placeholder { 
  color: black;
  font-size: 2.4vmin;
}
textarea:-moz-placeholder { 
  color: black;
  font-size: 2.4vmin;
}
textarea::-moz-placeholder { 
  color: black;
  font-size: 2.4vmin;
}
textarea:-ms-input-placeholder { 
  color: black;
  font-size: 2.4vmin;
}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}






/*//////////////////////////////////////////////////////////////////
[ Contact ]*/

.container-contact100 {
  width: 50%; 
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.contact100-map {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}



.show-wrap-contact100 {
  visibility: visible;
  opacity: 1;
}


/*==================================================================
[ Form ]*/

.contact100-form {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  justify-content: space-between;
}

.contact100-form-title {
  display: block;
  width: 100%;
  font-size: 8vmin;
  color: black;
  line-height: 1.2;
  text-align: left;
  padding-bottom: 44px;
  font-family: 'noto sans', serif;
}



/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 0.3vmin solid rgb(255, 160, 255, 0);
  padding-bottom: 1.6vmin;
  margin-bottom: 6vmin;
  font-family: 'noto sans', serif;
}

.rs1-wrap-input100 {
  width: calc((100% - 30px) / 2);
  font-family: 'noto sans', serif;
}

.label-input100 {
  font-size: 2.4vmin;
  color: #999999;
  line-height: 1.5;
  padding-left: 5px;
  font-family: 'noto sans', serif;
  color: white;
}

.input100 {
  display: block;
  width: 100%;
  font-size: 2.4vmin;
  color: white;
  font-family: 'noto sans', serif;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  font-style: italic;
}

.focus-input100 {
  position: absolute;
  font-family: 'noto sans', serif;
  display: block;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  pointer-events: none;
  color: #fff!important;
}


@keyframes contact {
        100%   {background-color: rgb(255, 160, 255);}

}


.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  font-family: 'noto sans', serif;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 5px;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;

   animation-name: contact;
            animation-duration: 32s;
            animation-delay: -14s;
            animation-iteration-count: 3;
            animation-iteration-count: infinite;
            animation-direction: alternate;
}


/*---------------------------------------------*/
input.input100 {
  height: 3vmin;
}


textarea.input100 {
  min-height: 8vmin;
  padding-top: 1vmin;
  padding-bottom: 1.5vmin;
}


.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}


/*------------------------------------------------------------------
[ Button ]*/
.container-contact100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0vmin;
}

.contact100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0px;
  height: 3vmin;
  font-size: 2.4vmin;
  color: black;
  line-height: 1.2;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact100-form-btn i {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.contact100-form-btn:hover i {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}


/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 992px) {
  .wrap-contact100 {
    padding: 82px 80px 33px 80px;
  }
}

@media (max-width: 768px) {
  .rs1-wrap-input100 {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .wrap-contact100 {
    padding: 82px 15px 33px 15px;
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 58%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 2px;
  pointer-events: none;

  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  top: 58%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}


/*==================================================================
[ Contact more ]*/

.contact100-more {
  font-size: 2.4px;
  color: black;
  line-height: 1.5;
}

.contact100-more-highlight {
  color: blue;
}

/*==================================================================
[ Button hide form ]*/



.contact100-btn-hide {
  color: white;
  font-size: 0.3vmin;

  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;


  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact100-btn-hide:hover {
  color: blue;
}











.label-input100 {
  color: black;
  padding-left: 0px;
}


