/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost';
}

header {
    padding:30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:20px;
    align-items: center;
}

/* Top Navigation */
.topnav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    background-color: #ca7733;
    color: white;
    top:0px;
    font-weight: bolder;
    position: fixed;
    width: 100%;
    z-index: 100;
}

.topnav h4 {
    font-size: 0.9rem;
}

a {
    text-decoration: none;
    color: black;
}

li {
    list-style: none;
}

header h1,
header h2,
header h3  {
   text-align: center;
}

header h1 {
    margin-top: 40px;
}

header h2 {
    font-size: 30px;
}

.specs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:10px;
    text-align: center;
    font-size: 20px;
}

/*Inquiry Form*/
.maindiv {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    align-items: center;
	gap:30px;
	padding: 30px;
    /*margin-left: 50px;*/
    max-width: 100%;
}

@media(max-width:950px) {
    .maindiv {
        display:grid;
        grid-template-columns: repeat(1, 1fr);
        margin-left: 0;
    }
    .mailsummary {
        text-align: center;
    }
    .contactinfo {
        display: flex;
        flex-direction:column;
        justify-content: center;
        align-items: center;
    }
    #contactlinks {
        flex-direction: column;
    }
    #advisors .links {
        flex-direction: column;
    } 
}

@media(max-width:768px) {
    .maindiv .form .group:nth-child(-n+16) {
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

.maindiv .maindivright {
	background-color: #ca7733;
	border-radius: 10px;
	padding: 40px;
	color:#472101;
}

.maindiv .list {
	height:auto;
} 

.maindiv .maindivright .form {
	display: grid !important;
	grid-template-columns: repeat(2,1fr) !important;
	gap:10px !important;
	border-bottom: 2px solid #472101 !important;
	padding-bottom: 20px !important;
    color:white;
}
 
.maindiv .form input,
.maindiv .form select,
.maindiv .form textarea {
	width:100%;
	padding:10px 10px;
	box-sizing:border-box;
	border-radius: 10px;
	margin-top: 0px;
	border:none;
	background-color: #fff;
	color:black;
}

.maindivright h3 {
	margin-bottom: 20px;
}

.maindiv .row div:nth-child(2) {
	font-weight: bold;
	font-size: large;
	
}

 h2 {
    text-align: center;
}

.buttonsend {
	width:100%;
	height:40px;
	border:none;
	border-radius: 10px;
	margin-top: 20px;
	font-weight:bold;
	background-color: #472101;
    color:white;
}

.buttonsend:hover {
    background-color: #fff;
    color:#472101;
    cursor:pointer;
}

.maindiv .form textarea{
	background-color: #fff;
	color:black;
    display: grid;
    /*grid-template-columns: repeat(2,1fr);
    grid-column-start: 1;
	grid-column-end: 3;*/
    padding:10px;
    margin:10px 0;
    font-size: 18px;
}

.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding:30px;
    font-size: 20px;
}

.images {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:20px;
    margin-bottom: 40px;
}

.images h1 {
    padding:30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.item img{
    width:270px;
    height:190px;
}

.image-pics {
    display:grid;
    grid-template-columns: repeat(4,1fr);
    grid-auto-flow: row;
    gap:20px;
    justify-content: center;
}

@media(max-width:1200px) {
    .image-pics {
        display:grid;
        grid-template-columns: repeat(3,1fr);
        grid-auto-flow: row;
        gap:20px;
        justify-content: center;
    }
}

@media(max-width:1000px) {
    .image-pics {
        display:grid;
        grid-template-columns: repeat(2,1fr);
        grid-auto-flow: row;
        gap:20px;
        justify-content: center;
    }
}

@media(max-width:700px) {
    .image-pics {
        display:grid;
        grid-template-columns: repeat(1,1fr);
        grid-auto-flow: row;
        gap:20px;
        justify-content: center;
    }

    .item img {
        width:100%;
        max-width: 100% !important;
        height:auto !important;
        padding:20px;
    }
}

.item img {
    transition: all .2s ease-in-out;
}

.item img:hover {
	transform:scale(1.1);
}

/*WhatsApp*/
.whatsapp-icon {
    position: fixed;
    right:20px;
    bottom: 120px;
    z-index:1000;
}

.whatsapp-icon img {
    width:60px;
    height:60px;
}

@media(max-width:600px) {
    .whatsapp-icon img {
        width:50px;
        height: 50px;
    }
}

@media(max-width:300px) {
    .whatsapp-icon img {
        width:30px;
        height: 30px;
    }
}

/*Cookie Banner*/
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ca7733;
    color: #fff;
    padding: 15px;
    text-align: center;
    display: none;
    z-index: 1000;
    font-size: 20px;
}

/*Footer*/
footer {
    background-color: #ca7733;
    color:white;
    text-align: center;
    padding:20px;
}

footer p {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 40px;
}