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

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
}

/*---------------------------------------------*/
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;
	color: #57b846;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

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

ul, li {
	margin: 0px;
	list-style-type: none;
}


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

textarea {
  outline: none;
  border: none;
}

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

input::-webkit-input-placeholder { color: #999999; }
input:-moz-placeholder { color: #999999; }
input::-moz-placeholder { color: #999999; }
input:-ms-input-placeholder { color: #999999; }

textarea::-webkit-input-placeholder { color: #999999; }
textarea:-moz-placeholder { color: #999999; }
textarea::-moz-placeholder { color: #999999; }
textarea:-ms-input-placeholder { color: #999999; }

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

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}



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

.contact1 {
  width: 100%;
  min-height: 100%;
  /*min-height: 97.2%;*/
  /*padding: 15px;*/

  /*background: #009bff;*/
/*  background: -webkit-linear-gradient(left, #0072ff, #00c6ff);
  background: -o-linear-gradient(left, #0072ff, #00c6ff);
  background: -moz-linear-gradient(left, #0072ff, #00c6ff);
  background: linear-gradient(left, #0072ff, #00c6ff);*/

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.container-contact1 {
  width: 1163px;
  /*background: #fff;*/
  /*border-radius: 10px;*/
  overflow: hidden;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;

  padding: 40px 30px 0px 0px;
}

/*------------------------------------------------------------------
[  ]*/
.contact1-pic {
  width: 400px;
  text-align: right;
  margin-left: 200px;
  margin-top: auto;
}

.contact1-pic img {
  /*max-width: 133%;*/
  width: 500px;

  /*! float: right; */
}


/*------------------------------------------------------------------
[  ]*/
.contact1-form {
  /*max-width: 380px;*/
  padding: 36px;
}

.contact1-form-title {
  display: block;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;;
  font-size: 24px;
  color: #000;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 44px;
  font-weight: bold;
}

input.input1 {
  height: 50px;
  border-radius: 5px;
  padding: 0 30px;
  font-size: 18px;
}
input.input1 + .shadow-input1 {
  border-radius: 5px;
}

textarea.input1 {
  min-height: 93px;
  border-radius: 5px;
  padding: 12px 30px;
}
textarea.input1 + .shadow-input1 {
  border-radius: 5px;
}

/*---------------------------------------------*/
.wrap-input1 {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 20px;
}

.input1 {
  display: block;
  width: 100%;
  /*background: #e6e6e6;*/
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #666666;
}
.hide-on-desk{
  display: none;
}
.shadow-input1 {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: rgba(87,184,70, 0.5);
}

.input1:focus + .shadow-input1 {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 80px 30px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 80px 30px;
    opacity: 0;
  }
}

/*---------------------------------------------*/
.container-contact1-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contact1-form-btn {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  background: #57b846;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #FFFFFF91;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;

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

.contact1-form-btn i {
  margin-left: 7px;

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

.contact1-form-btn:hover {
  background: #333333;
}

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

.bg{
  background: url(../images/chirurgia.jpg) -200px 0 no-repeat fixed, linear-gradient(180deg,#d1d0d6,#bab9bf);
  background-size: cover;
  min-height:100%;
  background-position: right;
}


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

@media (max-width: 1200px) {
  
  .contact1-pic img {
    /*max-width: 133%;*/
    width: 100%;
  
  }
  .contact1-form {
    width: 44%;
  }
}
@media (min-width: 993px) and (max-width: 1128px) {
  .contact1-pic{
    width:300px;
    /*padding-left: 30px;*/
  }
  .container-contact1 {
    padding-left: 30px;
  }
}
@media (max-width: 992px) {
  .container-contact1 {
    padding: 0px!important;
  }
  .hide-on-mobile{
    display: none;
  }
  .bg{
    min-height:unset;
    background: none;
  }  
  .contact1-pic {
    width: 100%;
    background-color: #FFFFFF91;
    opacity: 0.9;
    /*display: none;*/
  }
  .contact1-form {
    width: 100%;
  }
  .contact1 {
    padding: 0px;
    
    
  }
  .hide-on-desk{
    display: block;
  }
  .contact1-pic {
    margin-left: 0px!important;
  }
  
}

@media (max-width: 768px) {
  .container-contact1 {
    padding: 90px 80px 88px 80px;
  }

  
  
  

  .contact1-form {
    width: 100%;
  }
  
}

@media (max-width: 576px) {
  .container-contact1 {
    padding: 90px 15px 88px 15px;
  }
  
  
}

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



.opacity-80 {
    opacity: 0.8;
}
.opacity-90 {
    opacity: 0.9;
}
:-moz-placeholder, ::placeholder {
    color: #999999;
    opacity: 1;
    font-size: 18px;
}

.logo {
    text-align: center;
    /*padding-top: 10px;*/
    width: 100%;
    max-height: 100%;    
    position: absolute;
    top: 18px;  
}

.wpcf7-privacy {
    line-height: 0px !important;
    letter-spacing: -0.4px !important;
    font-size: 11px !important;
    color: white;
}

.alert {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 5px;
    padding-bottom: 3px;
}
.alert-success {
    color: #089471;
}
.alert-success {
    color: #089471;
}
.alert-danger {
    color: red;
}

.btn_close {
    padding-top: 7px;
}