* {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;

}

a:visited {
    text-decoration: none;
}

body {
    background: #cdffd8;
}
main {
    background: #9de7ab;
    border-radius: 14px;
    width: 90%;
    padding: 20px;
    margin: 20px auto;
}
/* header */
header {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.logoDiv {
    display: flex;
    align-items: center;
    justify-content: space-around;
    /* padding: 10px; */
}

.logoDiv img {
    width: 200px;
}
.companyName{
    font-size: 4rem;
    font-weight: 600;
    /* text-transform: uppercase; */
    color: rgb(39 62 116);
    
}

/* navigation */
.navigationDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    margin: 30px;
}

.navItems {
    display: grid;
    grid-template-columns: repeat(7, auto);
    gap: 20px;
    justify-content: center;
    list-style: none;
    padding: 10px;
    background: #82e023;
    border: none;
    border-radius: 20px;
    width: 100%;
}

.navItem {
    margin: 10px;

}

.navItem a {
    position: relative;
    font-size: large;
    font-weight: bolder;
    color: rgb(39 62 116);
    text-decoration: none;
    margin-left: 10px;
}
.activeNavItem a{
    color: white;
}

.navItem a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: rgb(255, 255, 255);
    border-radius: 5px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .5s;
}

.navItem a:hover::after {
    transform-origin: left;
    transform: scaleX(1);

}

/* slideshow */
.slidesDiv {
    display: flex;
    justify-content: center;
    margin: 40px;
}

.slide {
    border-radius: 14px;
    height: 500px;
    width: 90%;
    position: relative;
    overflow: hidden;
}

.slideImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideImg.active {
    opacity: 1;
    z-index: 1;
}

/* hero */
.heroDiv {
    width: 80%;
    height: 500px;
    margin: 40px auto;
    display: flex;
    flex-direction: row;
    /* background: #d9d9d9; */
    background: white;
    border-radius: 14px;
    padding: 20px;
}

.leftHeroDiv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 150%;
}

.leftHeroDiv h1 {
    font-size: 2.5rem;
    color: #33691E;
    margin-bottom: 20px;
}

.leftHeroDiv p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 20px;
}

.rightHeroDiv {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
}

.rightHeroDiv img {
    /* width: 100%; */
    height: 80%;
}

/* extra */
.additionalDiv {
    margin: 40px auto;
    height: 400px;
    width: 70%;
    display: flex;
    flex-direction: row;
    /* background: #aaff9f; */
    background: white;
    border-radius: 14px;
}

.leftAddDiv {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.leftAddDiv img {
    /* width: 100%; */
    height: 100%;
}

.rightAddDiv {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.rightAddDiv h1 {
    font-weight: bold;
    margin: 20px;
}

.rightAddDiv h2 {
    margin: 5px;
}



/* footer */
.top-footer {
    background-color: #222;
    display: flex;
    justify-content: space-between;
}

.footer-container {
    display: flex;
    padding: 30px 0;
    padding-left: 100px;
}

.footer-container-items {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #999;
    cursor: pointer;

}

.footer-container-head-text a:hover{
    color: chocolate;
}

.footer-container-heads {
    margin-right: 100px;

}

.footer-container-head-text {
    font-size: 20px;
    font-weight: 600;
    color: #999;
    margin-bottom: 15px;
}
.footer-container-head-text a{
    cursor: pointer;
    text-decoration: none;
    color: white;
}

.footer-container-items {
    font-size: 15px;
}

.links-containers {
    padding-right: 100px;
    padding-top: 30px;
    /* width: 30%; */

}

.social-link-image {
    width: 30px;
    margin-right: 20px;
}

.social-link-image-linkdin {
    width: 30px;
    border-radius: 50%;
    background-color: white;
    margin-right: 20px;
}

.bottom-footer {
    color: #999;
    background-color: #222;
    border-top: 1px solid white;
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
}

.querry a {
    color: chocolate;
}