@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1A2D41;
    color: #fff;
    margin: 0;
    padding: 0;
}

a {
    color: white;
}

a::hover {
    text-decoration: underline;
}

.mt_c {
    margin-top: 50px;
}

h2     {color: #406389;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 500;
}

#hero {
    background: url('img/hero.jpg') no-repeat center bottom;
    background-size: cover;
    padding: 50px 0 0 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hidden {
    display: none;
}

#hero-logo {
    width: 85%;
    max-width: 1200px;
    margin-bottom: 20px;
    /* You might want to add some space below the logo */
}

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

#person {
    width: 463px;
    margin-right: 20px;
    margin-top: -101px;
    /* Add some space between the image and the text */
}

#hero-text {
    max-width: 500px;
    /* Adjust as needed */
    margin-bottom: 241px;
}

.quote {
    font-size: 32px;
    margin-bottom: 10px;
    /* Add some space between the quote and the author */
}

.author {
    font-size: 20px;
}




#logo-carousel {
    display: none;
    padding: 15px 0;
    overflow: visible;
    position: relative;
}

#logo-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(img/gradientoverlogos.svg) repeat-y;
    pointer-events: none;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}
.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
    gap: 50px;
}
.slider .slide {
  height: 100px;
  width: 250px;
}

.slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}







#biography {
    padding: 50px 0;
    color: #fff;
}

.inner_container {
    max-width: 1110px;
    margin: 0 auto;
    text-align: left;
}

#biography h2 {
    color: #406389;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 500;
}

.bio-content {
    column-count: 2;
    column-gap: 45px;
    column-fill: balance;
    -moz-column-fill: balance;
    -webkit-column-fill: balance;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}
.bio-content-buttons {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    padding-top:40px;
}
.bio-content-buttons a{
    padding: 16px 8px;
    border: 1px solid #406389;
    border-radius:4px;
    background: #406389;
    margin:8px 4px 0px 0px;
    text-decoration: none;
    color: #fff;
}


.bio-content p {
    font-size: 14px;
    line-height: 26px;
	margin: 0;
}


/*services*/

#services {
    padding: 50px 0;
    color: #fff;
}

.inner_container {
    max-width: 1110px;
    margin: 0 auto;
    text-align: left;
}

#services h2 {
    color: #406389;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 500;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

.services-content .column p {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    /* Semi-bold font weight */
    border-bottom: 1px solid #406389;
    /* Add a line separator under each service */
    margin-bottom: 10px;
    /* Add some space below each service */
    padding-bottom: 10px;
    /* Add some space above the line separator */
}





.inner_container {
    max-width: 1110px;
    margin: 0 auto;
}

footer {
    background-color: #1A2D41;
    color: #fff;
    padding: 20px 0;
    margin-top: 100px;
}

.inner_container.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer-logo {
    max-width: 300px;
    /* Adjust this to change the size of the logo */
}

#footer-links {
    font-size: 14px;
}

#footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    /* Add 10px of left and right margin to the links */
}

#footer-links a:hover {
    text-decoration: underline;
}



/* For tablets */
@media screen and (max-width: 900px) {
    
        .inner_container {
        max-width: 90%;
        gap: 20px;
    }

    #hero {

        min-height: auto;
    }

    #hero-logo,
    #person {
        width: 90%;
        /* Full width on smaller screens */
    }

    #hero-content {
        flex-direction: column-reverse;
        /* Stack the elements vertically */
    }

    .bio-content,
    .services-content {
        grid-template-columns: 1fr;
        /* Only one column on smaller screens */
    }
}

/* For mobile phones */
@media screen and (max-width: 600px) {
    body {
        font-size: 16px;
        /* Larger text for easier reading on small screens */
    }
    
    
    
    
    
#hero-logo {
        width: 90%;
        margin-bottom: 20px;
        /* You might want to add some space below the logo */
    }

    .inner_container {
        max-width: 90%;
        gap: 20px;
    }


    .inner_container.footer-container {
        flex-direction: column;
    }

    #hero {

        min-height: auto;
    }

    #person {
        margin-top: auto;
    }

    #hero-text {
        margin-bottom: auto;
    }

    .quote {
        font-size: 24px;
        /* Adjust as necessary */
    }

    .author {
        font-size: 18px;
        /* Adjust as necessary */
    }

    .services-content .column p {
        font-size: 16px;
        /* Adjust as necessary */
    }

    .bio-content {
        column-count: 1;
    }
    .services-content {
        gap: 0;
    }

}