
*{
    margin: 0;
    padding: 0;
}
.header{
    top: 0;
    width: 100%;
    height: 50px;
    background-color: black;
    text-align: center;
}


/**Image2*/
.row1 {
display: -ms-flexbox; /* IE10 */
display: flex;
-ms-flex-wrap: wrap; /* IE10 */
flex-wrap: wrap;
padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column1 {
-ms-flex: 25%; /* IE10 */
flex: 25%;
max-width: 25%;
padding: 0 4px;
}

.column1 img {
margin-top: 8px;
vertical-align: middle;
width: 100%;
}

/* Create four equal columns that sits next to each other */
.column1 {
-ms-flex: 25%; /* IE10 */
flex: 25%;
max-width: 50%;
padding: 0 4px;
}



/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
.column1 {
-ms-flex: 50%;
flex: 50%;
max-width: 100%;
}
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column1 {
-ms-flex: 100%;
flex: 100%;
max-width: 100%;
}
}


/* Add styles to the form container */
.frm{
  text-align: center;
}

/* Full-width input fields */
input[type=text], input[type=password], input[type=number] {
  width: 50%;
  height: 60px;
  font-size: 25px;
  margin: 5px 0 22px 0;
  border: 5px solid;
  border-color: #FC575E;
  background: #000000cc;
  color: white;
}

/*Placeholder fonts*/
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  font-weight: bold;
  font-size: 15px;
  padding-left: 10px;
  opacity: 1; /* Firefox */
}

/*Hide Input Number Arrows*/

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


.column1 select{
  width: 51%;
  height: 70px;
  font-size: 15px;
  padding-left: 10px;
  font-weight: bold;
  margin: 5px 0 22px 0;
  border: 5px solid;
  border-color: #FC575E;
  background: #000000cc;
  color: white;
}

@media screen and (max-width: 450px) {
  .column1 select{
    width: 53%;
  }
  }

input[type=text]:focus, input[type=password]:focus {
  background-color: #000000cc;
  outline: none;
  color: white;
}

/* Set a style for the submit button */
.btn {
  background-image: linear-gradient(to right, #f32b32 0%, #1bc0f7 100%);
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 50%;
  opacity: initial;
  font-weight: bold;
  font-size: 25px;
  opacity: 1;
  box-shadow: 0 0 20px rgb(17, 1, 1);
}

.btn font{
  text-transform: uppercase;
    padding: 10px;
      -webkit-text-stroke: white;font-weight: bold;
     
      text-shadow: 2px 2px 10px black;
      transition: all 0.5s ease-in-out;
      text-align: center;font-size: 42px;
      letter-spacing: 0.1em;
      animation: flicker 1.5s ease-in-out infinite alternate;
}

@media screen and (max-width: 450px) {
  .btn font{
    font-size: 25px;
  }
  }

.btn:hover {
  opacity: 1;
}

/*button animation*/

.text-shadow {
	text-transform: uppercase;
  padding: 10px;
	-webkit-text-stroke: #F96302;
	-webkit-text-stroke-width: 1px;
	text-shadow: 2px 2px 10px #F96302;
	transition: all 0.5s ease-in-out;
	text-align: center;
	letter-spacing: 0.2em;
	animation: flicker 0.5s ease-in-out infinite alternate;
/*
	&:hover {
		color: red;
	}*/
}

.tags small {
	@media (max-width: 768px) {
		font-size: 0.5em;
	}
}

@keyframes flicker {
	0% {
		opacity: 0.5;
		text-shadow: 2px 2px 10px #F96302;
	}
	100% {
		opacity: 1;
		text-shadow: 2px 2px 20px #F96302;
	}
}

.content{
  margin-top: 20px;
  padding: 10px;
  font-size: 20px;
}

/*Date*/

input[type="date"]::before { 
	content: attr(placeholder);
  padding-left: 10px;
	width: 100%;
}

/* hide our custom/fake placeholder text when in focus to show the default
 * 'mm/dd/yyyy' value and when valid to show the users' date of birth value.
 */
input[type="date"]:focus::before,
input[type="date"]:valid::before { display: none }

input[type="date"]::-webkit-calendar-picker-indicator {
  background-color:white;
  opacity: 1;
  display: block;
  width: 30px;
  height: 30px;
}



/* Container for flexboxes */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  color: white;
}

/* Create four equal columns */
.column {
  flex: 20%;
  text-align: center;
  font-size: 20px;
  padding: 20px;
}

.column p{
  padding: 10px;
  font-size: 15px;
  font-weight: normal;
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
  .column {
    flex: 50%;
  }
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .row {
    flex-direction: column;
  }
}

/*Top Left Text*/

.free {
    position: absolute;
    left:-20px;
    top: 68px;
    width: 200px;
    text-transform: uppercase;
    color: red;
    font-size: 20px;
    font-weight: bold;
    z-index: 10;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); 
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -sand-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

div.line{
  width: 400px;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  border-top: 5px solid red;
  position: absolute;
  top: 250px;
  left: -150px;
  box-sizing: border-box;
}
div.line2{
  width: 450px;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  border-top: 5px solid red;
  position: absolute;
  top: 250px;
  left: 0px;
  box-sizing: border-box;
}


/*google translate Dropdown */
 
#google_translate_element select{
  background:black;
  color:white;
  border: 1px solid white;
  border-radius:3px;
  padding:6px 8px
  }
  
  /*google translate link | logo */
    .goog-logo-link{
    display:none!important;
    }
  .goog-te-gadget{
  color:transparent!important;
  }
  
  /* google translate banner-frame */
  /*
  .goog-te-banner-frame{
  display:none !important;
  }*/
  
  #goog-gt-tt, .goog-te-balloon-frame{display: none !important;}
 .goog-text-highlight { background: none !important; box-shadow: none !important;}
  