body {
    background-color: #fff;
    text-align: center;
    font-family: "Poppins", sans-serif;
    background-image: url("/img/bg-sale.png");
    background-position: right;
    background-repeat: repeat-y;
    color: #4e4e4e;
    background-size: cover;  
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.logo {
    transition: transform 0.1s linear;
}

.logo:hover {
    transform: scale(1.1);
}

h1 {
    margin-top: 50px;
    font-size: 65px;
    color: #333;
}
h3 span{
    background-color: #28a745;
    color: white;
    padding: 10px 18px;
    font-size: 26px;
    margin-left: 16px;
    border-radius: 5px;
}
p {
    margin-top: 20px;
    font-size: 17px;
}

.contact {
    margin-top: 30px;
    font-size: 18px;
}


.center-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 86vh;
    padding:10px 10px 70px 10px;
}

a {
    color: #828e9f;
    text-decoration: none;
    font-weight: bold;
}

.contact {
    color: white;
    margin-top: 30px;
    border:0px;
    font-size: 18px;
    font-weight: 600;
    background-color: #828e9f;
    border-radius: 10px;
    cursor:pointer;
    padding: 14px 22px;
    transition: opacity 0.1s linear, transform 0.1s linear;
}

.contact:hover {
    opacity: 0.8;
    transform: scale(0.93);
}

.languagepicker a {
    font-weight: 500;font-size: 15px;
}
.languagepicker {
	backdrop-filter: blur(5px);
    background-color: rgba(255,255,255,0.8);
	display: inline-block;
	padding: 0;
	height: 40px;
	overflow: hidden;
    text-align: left;
	transition: all .3s ease;
	vertical-align: top;
    position: fixed;
    bottom:0px;
    left: 50%;
    margin-left: -74px;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.languagepicker:hover {
	/* don't forget the 1px border */
	height: 81px;
}

.languagepicker img {
    border-radius: 50%;
    margin-bottom: -4px;
    margin-left: -8px;
    margin-right: 10px;
}
.languagepicker a{
	color: #000;
	text-decoration: none;
}

.languagepicker li {
	display: block;
	background: transparent;
	padding: 0px 20px;
	line-height: 40px;
}

.languagepicker li:hover{
	background-color: #d3d8de;
}

.languagepicker:hover .selected {
	background: #e73b63;
    color:white;
}


.roundborders {
	border-radius: 5px;
}

.large:hover {
	/* 
	don't forget the 1px border!
	The first language is 40px heigh, 
	the others are 41px
	*/
	height: 245px;
}

.sign{
    background:#e73b63;color:white;font-weight: bold;font-size: 32px;padding:10px 28px;border-radius: 5px;
}




































#formSent{
  text-align:center;margin:0px 0px 20px 0px;
}
.form { max-width:420px; margin:0px auto; margin-bottom:50px; }

.feedback-input {
  color:#333;
  border-radius: 5px;
  font-family: inherit;
  font-size: 16px;
  line-height: 22px;
  background-color: transparent;
  border:2px solid #ccc;
  transition: border 0.3s;
  padding: 10px 12px;
  background-color: #fff;
  margin-bottom: 15px;
  width:100%;
  box-sizing: border-box;
  outline:0;
}

.feedback-input:focus { border:2px solid #e73b63; }

textarea {
  height: 110px;
  line-height: 150%;
  resize:vertical;
}

.form-button{
  font-size: 15px;
  padding: 14px 18px 12px;
  transition: background-color 0.3s;
  font-weight: bold;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
}
.submit {
  background-color: #e73b63;
  color: white;
  float:left;
}
.cancel{
  float:right;
}
.submit:hover { background-color:#c53657; }
.cancel:hover { background-color:#fff; }
.none{
  display: none;
}
.alert-field{
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px 14px;
    border-radius: 5px;
    margin-bottom: 14px;
    font-size: 15px;
    text-align: left;
    margin-top:-10px;
}
.form-buttons{
  margin:10px 0px 15px;
}
.form-head{
  text-align:left;padding:30px 30px 30px 30px;background:#eee;
}
.form-marg{
  padding:40px 30px 40px 30px;
}
.form-marg2{
  margin:10px 0px 30px 0px;
}



















  #modal-container .modal-background .modal {
    background: #fff;
    padding: 0px;
    max-width: 400px;
    display: inline-block;
    border-radius: 3px;
    font-weight: 300;
    position: relative;
  }
  #modal-container {
    position: absolute;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    z-index: 1;
  }

  .modal-active #modal-container {
    transform: scale(1);
  }

  .modal-active #modal-container .modal-background {
    background: rgba(0, 0, 0, 0);
    animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  }

  .modal-active #modal-container .modal-background .modal {
    opacity: 0;
    animation: scaleUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  }

  .modal-active .center-screen {
    animation: scaleBack 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  }


  #modal-container .modal-background {
    display: table-cell;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    vertical-align: middle;
  }
  
  #modal-container .modal-background .modal h2 {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 15px;
    margin-top: 0px;
  }
  #modal-container .modal-background .modal p {
    font-size: 16px;
    margin: 16px 0px 0px 0px;
  }

 
  @keyframes fadeIn {
    0% {
      background: rgba(0, 0, 0, 0);
    }
    100% {
      background: rgba(0, 0, 0, 0.7);
    }
  }
  @keyframes fadeOut {
    0% {
      background: rgba(0, 0, 0, 0.7);
    }
    100% {
      background: rgba(0, 0, 0, 0);
    }
  }
  @keyframes scaleUp {
    0% {
      transform: scale(0.8) translateY(1000px);
      opacity: 0;
    }
    100% {
      transform: scale(1) translateY(0px);
      opacity: 1;
    }
  }
  @keyframes scaleDown {
    0% {
      transform: scale(1) translateY(0px);
      opacity: 1;
    }
    100% {
      transform: scale(0.8) translateY(1000px);
      opacity: 0;
    }
  }
  @keyframes scaleBack {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0.85);
    }
  }
  @keyframes scaleForward {
    0% {
      transform: scale(0.85);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes quickScaleDown {
    0% {
      transform: scale(1);
    }
    99.9% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }


@media screen and (max-width: 800px) {
    .sign{
        padding:10px 28px;font-size: 26px;
    }
    h1{
        font-size: 36px;
    }

    h3 span{
        padding: 8px;
        font-size: 18px;
        margin-left: 8px;
        border-radius: 5px;
    }
 }