@import "./globals.css";

.main {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.home {
    width: 100%;
    height: 660px;
    display: flex;
    align-items: center;
    background-image: url(../images/home-bg.png);
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.home .home-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
    position: relative;
}

.home .home-content h1 {
    max-width: 500px;
    color: white;
    font-size: 36px;
    font-weight: 700;
    line-height: 54px;
}

.home .home-content p {
    max-width: 500px;
    color: #ffffffbf;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.slide-image {
    width: 700px;
    height: 125%;
    position: absolute;
    right: 0;
    border-top-left-radius: 100%;
    border-bottom-left-radius: 100%;
    overflow: hidden;
    transition: transform 0.8s ease-in-out;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-toggle {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.slide-toggle input {
    appearance: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #999;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.slide-toggle input:checked {
    background-color: #fff;
    transform: scale(1.5);
}

@media screen and (max-width: 950px) {
    .slide-image {
        width: 100%;
        height: 100%;
        border-radius: 0;
        filter: brightness(40%);
        -webkit-filter: brightness(40%);
        -moz-filter: brightness(40%);
    }

    .home .home-content {
        align-items: center;
        text-align: center;
    }

    .home .home-content h1 {
        font-size: 46px;
    }

    .home .home-content p {
        font-size: 21px;
    }
}

@media screen and (max-width: 650px) {
    .header-navbar {
        display: none;
    }

    .header .container {
        justify-content: center;
    }
}

.partners {
    padding: 60px 0;
}

.partners-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.partners-content .partners-item {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    background-color: white;
    border-radius: 15px;
}

.partners-content .partners-item .item-header {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

@media screen and (max-width: 600px) {
    .partners-content .partners-item .item-header {
        flex-direction: column;
    }
}


.partners-content .partners-item .item-header .header-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.partners-content .partners-item .item-header .header-content p {
    font-size: 14px;
}

.partners-content .partners-item .item-header h2 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.partners-content .partners-item .item-header img {
    max-width: 120px;
    border-radius: 10px;
}

.partners-content .partners-item .item-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.partners-content .partners-item .item-body p {
    color: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.partners-content .partners-item .item-body p span {
    font-weight: 600;
}

.partners-content .partners-item .item-body ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.partners-content .partners-item .item-body ul span {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
}

.partners-content .partners-item .item-body ul li {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.75);
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: start;
    gap: 5px;
}

.partners-content .partners-item .item-body ul li::before {
    content: "";
    color: #000;
    width: 20px;
    height: 20px;
    background-image: url(../images/icons/check.svg);
    background-size: cover;
    flex: 0 0 auto;
    margin-top: 3px;
}

.partners-content .partners-item:nth-child(2) {
    background-color: #2b0141;
}

.partners-content .partners-item:nth-child(2) .item-body ul span,
.partners-content .partners-item:nth-child(2) .item-body ul li::before,
.partners-content .partners-item:nth-child(2) .item-header h2 {
    color: white;
}

.partners-content .partners-item:nth-child(2) .item-body p,
.partners-content .partners-item:nth-child(2) .item-body ul li {
    color: rgba(255, 255, 255, 0.75);
}

@media screen and (max-width: 950px) {
    .partners-content {
        grid-template-columns: repeat(1, 1fr);
    }

}


.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-items: center;
}

.services-list .services-item {
    max-width: 650px;
    width: 100%;
    border-radius: 12px;
    border: 2px solid #2A2A2A;
    background: #1A1A1A;
    padding: 32px;
    display: flex;
    gap: 30px;

}

.services-list .services-item .item-header {
    display: flex;
    gap: 25px;
}

.services-list .services-item .item-header .header-image {
    height: 100%;
}

.services-list .services-item .item-header .header-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-list .services-item .item-header .header-content h2 {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
}

.services-list .services-item .item-header .header-content .header-description {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-list .services-item .item-header .header-content .header-description p {
    color: #B0B0B0;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.9px;
}

.services-list .services-item .item-header .header-content .header-description .description-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.services-list .services-item .item-header .header-content .header-description .description-group h6 {
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
}

.services-list .services-item:nth-child(1) .item-header .header-content .header-description .description-group h6 {
    font-size: 12px;
}

.services-list .services-item:nth-child(1) .item-header .header-content .header-description p {
    font-size: 12px;
}

.services-list .services-item .item-divider {
    width: 100%;
    height: 2px;
    background-color: #2A2A2A;
}

.services-list .services-item .item-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.services-list .services-item .item-body h3 {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
}

.services-list .services-item .item-body p {
    color: #B0B0B0;
    font-size: 14px;
    font-weight: 500;
}

@media screen and (max-width: 1150px) {
    .services-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .services-list .services-item {
        height: max-content;
    }
}

@media screen and (max-width: 650px) {
    .services-list .services-item .item-header .header-image {
        display: none;
    }
}






.contact-content {
    display: flex;
    gap: 30px;
}

.contact-content .contact-info {
    max-width: 490px;
    padding: 40px;
    height: 600px;
    border-radius: 10px;
    border: 2px solid #2A2A2A;
    background: #1A1A1A;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.contact-content .contact-info .info-header {
    max-width: 375px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-content .contact-info .info-header h2 {
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
}

.contact-content .contact-info .info-header p {
    color: #C9C9C9;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.contact-content .contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-content .contact-info ul li {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.contact-content .form-contact {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-self: center;
}

.contact-content .form-contact .form-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-content .form-contact .form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-content .form-contact .form-group label {
    color: #FFF;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}

.contact-content .form-contact .form-group input {
    color: white;
    background-color: transparent;
    border: none;
    padding: 0.5rem;
    padding-left: 0.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #B0B0B0;
}

.contact-content .form-contact .form-group input:focus {
    outline: none;
}

.contact-content .form-contact .form-group input::placeholder {
    color: #B0B0B0;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}

.contact-content .form-contact .form-group textarea {
    color: white;
    background-color: transparent;
    border: none;
    padding: 0.5rem;
    padding-left: 0.25rem;
    padding-bottom: 0;
    border-bottom: 1px solid #B0B0B0;
    resize: none;
}

.contact-content .form-contact .form-group textarea:focus {
    outline: none;
}

.contact-content .form-contact .form-group textarea::placeholder {
    color: #B0B0B0;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}

.contact-content .form-contact .form-group p {
    color: #B0B0B0;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
}

.contact-content .form-contact .main-button {
    padding: 8px 24px;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    line-height: 32px;
    border: none;
    max-width: max-content;
    cursor: pointer;
    align-self: end;
}

@media screen and (max-width: 850px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-content .contact-info {
        max-width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 450px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-content .contact-info {
        max-width: 100%;
        height: auto;
    }

    .contact-content .form-contact .form-column {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact-content .form-contact .main-button {
        width: 100%;
        max-width: 100%;
    }
}