@charset "utf-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
	box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    background-color:#CDD7D9;
    color:black;
    width: 100%;
    min-height: 100vh;
    font-family: "acumin-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
}

nav div {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
	flex-wrap: wrap;}



nav {
	position: absolute; 
	z-index: 10;
    background-color:#2A4D59;
    height: 50px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;  
	border-radius: 50px;
    padding: 40px 20px;
    margin: 30px; 
}

nav h4 img {
    height: 30px;
    padding-top: 5px;}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
	justify-content:flex-end;
	margin-left: auto;}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    font-family: "acumin-pro", sans-serif;
    display: block;
    padding: 10px;}


nav ul li a:hover {
    background-color:#DFE783;
    border-radius: 50px;
    color: black;}

.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1px);
}



div section {
	 column-count: 3;
     width: 1000px;
     margin: 0 auto;
     column-gap: 10px;
     text-align: justify;
     background:#D9D6D6;
     }


.about-top {
    display: flex;
    align-items: stretch;
    background-color: #2A4D59;
    border-radius: 0;    
    overflow: hidden;    
}




.about-right h6 {
    font-size: 25px;
    margin-bottom: 25px;
    line-height: 1.2;
}


.about-list {
    font-size: 20px;
    line-height: 1.6;
}

.about-list li {
    margin-bottom: 12px;
}
.about-right {
    width: 50%;
    padding: 50px 60px 50px 80px; 
    /* top | right | bottom | left */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-img {
    width: 50%;
    object-fit: cover;
    border-radius: 0;   
    display: block;
	box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}

article {
    width: 70%;
    margin: 40px auto;
    font-family: "acumin-pro", sans-serif;
    color: black;
	background-color:#F3F3F7;
	border-radius: 20px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}


article ul.about-list {
    margin-bottom: 20px;
    padding-left: 25px;
    list-style: disc;    
}

article ul.about-list li {
    margin-bottom: 8px;
    font-size: 1rem;
    text-align: left;
}


article h5 {
    font-size: 25px;
    margin: 20px 0 15px 0;
	padding-left: 50px;
	
}


article p {
    column-count: 2;
    column-gap: 80px;
    column-rule: 5px solid #2A4D59;
    text-align: justify;
    margin-top: 10px;
    line-height: 1.5;
	padding: 50px;
	font-size: 17px;
}



main {
    color: black;
    height: auto;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;}

main div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-top: 20px;
    flex-wrap: wrap;}

main div img {
    width: 100%;
    max-width: 500px;
    height: auto;
	border-radius: 20px;
    margin: 10px 20px 10px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);}

main div p {
    font-size: 1.1rem;
    max-width: 450px;
    margin: 10px;
    text-align: justify;
    padding-top: 20px;
    margin-top: 0px;
    background-color:#fbfdfd;
	padding:30px;
	border-radius: 20px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);}

.button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px;
  color: white;
  background-color: #2A4D59;
  text-align: center;
  cursor: pointer;
  width: 40%;
  border-radius:20px;
  font-size: 0.9rem;
}

.button:hover {
  background-color:#6677AC;
	color:black;
}


.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
    justify-items: center;
	margin-top:80px;
	padding: 30px; 

}
.image-grid img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}


.site-footer {
  background-color: #2A4D59;
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: "acumin-pro", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f4f4f4;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #cccccc;
  text-decoration: none;
  line-height: 1.6;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaaaaa;
}
.footer-bottom img {
	width: 200px;
	margin-top: 15px;
	margin-bottom: 15px; 
}


@media screen and (max-width: 1000px) {

    nav {
        height: auto;
        padding: 20px;
    }

    nav div {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }

    nav ul {
        justify-content: center;
        margin-left: 0;
        flex-wrap: wrap;
        gap: 0px;
    }

    article {
        width: 85%;
        margin: 30px auto;
    }

    article p {
        column-count: 2;
        column-gap: 40px;
        column-rule: 3px solid #2A4D59;
        padding: 40px;
    }

    article h5 {
        padding-left: 40px;
        font-size: 1.7rem;
    }

    /* ABOUT SECTION */
    .about-top {
        padding: 0;
        gap: 20px;
    }

    .about-img {
        width: 50%;
        height: auto;
    }

    .about-right {
        width: 50%;
        padding: 40px;
    }

    .about-right h6 {
        margin-top: 0;
        font-size: 1.4rem;
    }

    .about-list {
        font-size: 1rem;
    }
}

@media screen and (max-width: 600px) {

    nav {
        width: 90%;
        height: auto;
        padding: 15px;
    }

    nav div {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    nav h4 img {
        height: 25px;
    }

    nav ul {
        gap: 10px;
        font-size: 12px;
    }

    article {
        width: 90%;
        margin: 20px auto;
    }

    article p {
        column-count: 1;
        column-gap: 0;
        column-rule: none;
        padding: 25px;
        line-height: 1.7;
        text-align: left;
    }

    article h5 {
        padding-left: 25px;
        font-size: 1.5rem;
    }

    /* ABOUT SECTION */
    .about-top {
        flex-direction: column;
    }

    .about-img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

    .about-right {
        width: 100%;
        padding: 30px;
    }

    .about-right h6 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .about-list {
        font-size: 1rem;
        padding-left: 20px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 400px) {

    nav {
        width: 80%;
        height: auto;
        padding: 0px;
    }

    nav div {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        align-items: center;
        margin: 10px 0;
    }

    nav h4 img {
        height: 25px;
    }

    nav ul {
        gap: 10px;
        font-size: 12px;
        align-items: center;
    }

    .button {
        width: 80%;
    }

    article p {
        padding: 20px;
        font-size: 0.95rem;
    }

    article h5 {
        font-size: 1.3rem;
        padding-left: 20px;
    }

    /* ABOUT SECTION */
    .about-img {
        height: 200px;
    }

    .about-right {
        padding: 20px;
    }

    .about-right h6 {
        font-size: 1.2rem;
    }

    .about-list {
        font-size: 0.95rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}


	
	

	