/*
    Added box-sizing: border-box to all elements
    Original CSS Reset is below
*/

*,
*:before,
*:after {
  box-sizing: border-box;
}


/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
nav{display: flex;
  flex-direction: column;
background-color: #cce6f4;
color: #271033;
justify-self: right;
width:100%;
z-index: 20;
height: fit-content;
position:sticky;
    top: 0;
}

body, html {
  height: 100%;
  display: flexbox;
  font-family: "Caprasimo", sans-serif;
  background-color: #f1f1f1;
  color: #222;
  margin: 0;
}

.parent {
display: grid;
grid-template-columns: repeat(2, 0.5fr) 2fr 1fr;
grid-template-rows: 0.6fr 0.4fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
box-shadow: #271033 15px 15px, rgba(240, 46, 170, 0.2) 15px 15px;
border: #271033;
border-style: solid;

}
  .parent a{
    text-decoration: none;
    color: #271033;

  }

.div1 { grid-area: 1 / 1 / 2 / 3; 
background-color: #cce6f4;
}
.div2 { grid-area: 1 / 3 / 2 / 4; 
background-color: #cce6f4;
}
.div3 { grid-area: 1 / 4 / 2 / 5; 
background-color: #cce6f4;}
.div4 { grid-area: 2 / 1 / 3 / 2;
background-color: #cce6f4; 
border: #271033;
border-style: solid;}
.div5 { grid-area: 2 / 2 / 3 / 3; 
background-color: #cce6f4;
border: #271033;
border-style: solid;}
.div6 { grid-area: 2 / 3 / 3 / 5; }
.div4:hover {background-color:#ef6f6c ;
cursor: pointer;
transition: 0.3s;}
.div5:hover {background-color:#ef6f6c ;
cursor: pointer;
transition: 0.3s;}

.div3 input[type=text] {
  padding: 6px;
  margin-top: 8px;
  font-size: 17px;
  border: none;
  border-radius: 10px;
}
.div3 button {
  position: absolute;
  top: 10px;
  right: 140px;
  padding-top: 5px;
  padding-bottom: 3px;
  border: none;
  background-color: #426a5a;
  color: white;
  border-radius: 0px 10px 10px 0;
  cursor: pointer;}


  
.div3 button:hover{
    box-shadow: #271033 5px 5px, rgba(240, 46, 170, 0.2) 5px 5px;
    
}
.parent a.active {
  background-color: #2196F3;
  color: white;
}
footer{
  background-color: #e9df00;
  color: white;
  height: 25%;
  padding: 12px;

}
footer h2,ul,li{
  float:right;
  text-wrap: wrap;
  list-style: none;
}
.fout {
display: grid;
grid-template-columns: 1fr 3fr 1.2fr;
grid-template-rows: repeat(2, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
}

.copy { grid-area: 1 / 1 / 3 / 2; }
.contact { grid-area: 1 / 3 / 3 / 4; }
.erm { grid-area: 1 / 2 / 3 / 3; }
.hidden-form {
  display: none; 
  background-color: #cce6f4;
  
  
}

.hover-container:hover .hidden-form {
  display: block; /* Show the form on hover */
  /* Or use:
  opacity: 1;
  visibility: visible;
  */
}
.hover-text {
  cursor: pointer;
  text-decoration:none;
  padding-left: 25px;
}

.img img{
  height:100%;
  width:100%;
background-repeat:repeat-y;
}
.img{
  background-color: #fdf701;
}
.img a{
  text-decoration: none;
  color: #271033;
}
.img button:hover{
  box-shadow: #271033 10px 10px, rgba(240, 46, 170, 0.2) 10px 10px;
  background-color: #271033;
  color: #cce6f4;
   
}
.yes{display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(4, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
position: absolute;
  margin:100px 50px;
  z-index: 1;
  background-color: #cce6f4;
  border: #271033;
  border-style: solid;
  border-radius: 5px;}


.front{ grid-area: 1 / 1 / 5 / 2; }
.yap { grid-area: 1 / 2 / 3 / 3; 
padding:5px;
height: fit-content;}
.local { grid-area: 3 / 2 / 5 / 3; 
iframe{
  height: 95%;
}}
.front img{
  object-fit:fill;}