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

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

li {
    list-style: none;
}

/* Header */
header {
    background-image:url("pk2.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height:70vh;
}

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

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    background-color: white;
    position: fixed;
    top: 38px;
    width: 100%;
    z-index: 99;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link:hover {
    color: black;
}

.brand {
    display:flex;
    justify-content: center;
    align-items: center;
    padding:10px;
}

.brand img {
    height:90px;
    width:90px;
    border-radius: 50%;
    display:flex;
    justify-content: center;
    align-items: center;
    
}
@media(max-width:350px) {
    .brand img {
        height:80px;
        width:80px;
    }
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: black;
}

/* For screens smaller than 400px */
@media (max-width: 400px) {
    .topnav {
        text-align: center;
        color: white;
        font-weight: bolder;
        font-size: 0.5rem;
        background-color: white;
    }
    .navbar {
        top:40px;
    }
}

@media (max-width: 320px) {
    .navbar {
        top: 60px;
    }   
}

@media (max-width:350px) {
    .navbar {
        top:60px;
    }
}

/* Hero Content */
.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 35%;
    gap:30px;
    left: 10%;
    right: 10%;
    padding: 20px;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bolder;
    text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
    .navbar {
        padding: 0 15px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        flex-direction: column;
        background-color: #ca7733;
        width: 100%;
        text-align: center;
        position: fixed;
        left: -100%;
        top: 120px;
        transition: 0.3s;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 10px 0;
    }

    .nav-link {
        color: white;
    }
   
}

.mainbody {
    margin-top: 30px;
    font-size: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:20px;
    margin-bottom: 30px;
}

.mainwords {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:30px;
}

@media(max-width:950px) {
    .mainwords {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap:30px;
    }

	.aim {
		display: flex;
		flex-direction: column;
	}

}

@media(max-width:1200px) and (min-width:950px) {
    .locate {
        max-width:450px;
    }
}

.location {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap:50px;
}

.locate {
    border:1px solid #472101;
    padding:20px 25px;
    width:500px;
}

@media(max-width:550px) {
    .locate {
        width:300px;
    }
}

@media(max-width:350px) {
    .locate {
        width:290px;   
    }
    .mainpicture img {
        max-width:100% !important; 
    }
}

@media(max-width:300px) {
    .locate {
        width:200px;   
    }
    .mainpicture img {
        max-width:100% !important;  
    }
}

@media(max-width:250px) {
    .locate {
        width:150px;   
    }
    .mainpicture img {
        max-width:100% !important; 
    }
}

.locate i {
    border:1px solid #472101;
    padding: 10px;
    color:white;
    background-color: #472101;
}

.locate h4 {
    font-style: italic;
}

#mailed {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#mailwords a {
    text-align: center;
    margin: auto;
}

.mainpicture img{
    max-width:500px;
    max-height:500px;
    border:6px solid #472101;
}

@media(max-width:450px) {
    .mainpicture img {
        max-width:300px; 
    }
}

@media(min-width:769px) {
	.item1 {
		text-align: left;
	}
}


.writetous {
	margin-top: 10vh;
}

.writetous p {
	max-width:65rem;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:30px;
	margin: auto;
    font-size: 20px;
}

/*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;
    }
}

.maindiv {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
	gap:40px;
	padding: 30px;
    margin-left: 50px;
}

@media(max-width:950px) {
    .maindiv {
        display:grid;
        grid-template-columns: repeat(1, 1fr);
        margin: auto;
        justify-content: center;
    }
    .mailsummary {
        text-align: center;
    }
}

.maindiv .maindivright {
	background-color: #ca7733;
	border-radius: 10px;
	padding: 40px;
	color:#fff;
    display: grid !important;
}

.maindiv .list {
	height:auto;
} 

.maindiv .maindivright .form {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap:10px;
	border-bottom: 2px solid #472101;
	padding-bottom: 20px;
}

.maindiv .form .group:nth-child(-n+5) {
	grid-column-start: 1;
	grid-column-end: 3;
}
 
.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 h1 {
	margin-bottom: 20px;
}

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

.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: white;
    color:#472101
}

.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;
}

.mailsummary {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.mailsummary h4 {
    font-size: 1.5rem;
    display: flex;
    padding:30px;
}

#mail {
    display: flex;
}


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

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

/*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;
}