.wrapper {
    position: relative;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    background-color: var(--white-color);
    z-index: 100;
}

.bg-dark {
    display: none;
}

.navbar--container {
    max-width: 1170px;
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    margin: 0 auto;
}

.navbar--logo {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.navbar--logo h2 {
    font-size: 24px;
    line-height: 20px;
    color: var(--main-color);
    font-weight: var(--weight-bold);
}

.navbar--right {
    display: flex;
    gap: 40px;
}

.navbar--right ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar--right ul li a {
    font-size: 20px;
    font-weight: var(--weight-normal);
    line-height: 21.5px;
    cursor: pointer;
}

.navbar--right ul li:first-child a {
    color: var(--main-color);
    font-size: 22px;
    font-weight: var(--weight-bold);
    line-height: 23.65px;
}

.navbar--menu {
    display: none;
}

/* Body */
.body {
    /* width: 100%; */
    max-width: 1170px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin: 104px auto 202px;
}

/* Banner */
.banner {
    margin: 60px 100px 0;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 40px;
}

.banner--logo {
    width: 146px;
    height: 146px;
    object-fit: contain;
}

.banner--content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.banner--content h1 {
    font-size: 50px;
    font-weight: var(--weight-bold);
    color: var(--main-color);
    line-height: 54px;
}

.banner--content h4 {
    font-size: 30px;
    font-weight: 400;
    line-height: 32px;
}

.banner--actions {
    width: 313px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.banner--actions .banner--actions__social {
    display: flex;
    align-items: center;
    gap: 24px;
}

.banner--actions .banner--actions__social p {
    font-size: 20px;
    font-weight: var(--weight-normal);
    line-height: 21.5px;
}

.banner--actions .banner--actions__social .actions--social__icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Services */
.services {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 0 16px;
}

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

.services--container .services--content {
    margin-right: 60px;
}

.services--container:nth-child(2n) .services--content {
    margin-left: 53px;
    margin-right: 0;
}

.services--content h3 {
    font-size: 36px;
    font-weight: 600;
    line-height: 53px;
    color: var(--main-color);
    margin-bottom: 20px;
}

.services--content p {
    font-size: 28px;
    font-weight: var(--weight-normal);
    line-height: 41px;
}

.services--img {
    position: relative;
}

.services--img .img-abs {
    position: absolute;
}

.services--img .google {
    top: -39px;
    left: 0;
}

.services--img .outlook {
    top: 84px;
    right: -63px;
}

.services--img .office {
    bottom: 156px;
    left: -40px;
}

.services--img .yahoo {
    bottom: 0;
    right: -3px;
}

.services--img .inbox {
    top: 72px;
    left: -12px;
}

.services--img .message {
    top: 100px;
    left: 4px;
}

.services--img .cancel {
    top: 134px;
    left: -8px;
}

.services--img .setting {
    top: 170px;
    right: -24px;
}

/* Features */
.features {
    display: flex;
    flex-direction: column;
    margin: auto;
    text-align: center;
}

.features--title {
    font-size: 32px;
    line-height: 34px;
    font-weight: var(--weight-bold);
    margin-bottom: 40px;
}

.features--cards {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.features--cards .features--cards__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    gap: 24px;
    border-radius: 20px;
}

.features--cards__item .cards--item__number {
    width: 72px;
    height: 72px;
    border-radius: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features--cards__item .cards--item__description {
    font-size: 30px;
    line-height: 32px;
    font-weight: 400;
}

.card-red {
    background-color: var(--red-light);
}

.card-red .cards--item__number {
    background-color: var(--red);
}

.card-yellow {
    background-color: var(--yellow-light);
}

.card-yellow .cards--item__number {
    background-color: var(--yellow);
}

.card-sprint {
    background-color: var(--sprint-green-light);
}

.card-sprint .cards--item__number {
    background-color: var(--sprint-green);
}

.card-blue {
    background-color: var(--blue-light);
}

.card-blue .cards--item__number {
    background-color: var(--blue);
}

.card-green {
    background-color: var(--green-light);
}

.card-green .cards--item__number {
    background-color: var(--green);
}

.card-purple {
    background-color: var(--purple-light);
}

.card-purple .cards--item__number {
    background-color: var(--purple);
}

/* Feedback */
.feedback--title {
    font-size: 32px;
    line-height: 34px;
    font-weight: var(--weight-bold);
    margin-bottom: 40px;
    text-align: center;
}

.feedback--cards {
    display: flex;
    gap: 100px;
}

.feedback--cards__item {
    width: 535px;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-radius: 20px;
    background-color: #f2f5ff;
    padding: 32px;
}

.card-mb {
    display: none;
}

.feedback--cards__item .item--header {
    display: flex;
    gap: 33px;
}

.feedback--cards__item .item--header img {
    border: 1px solid #6986ef;
    border-radius: 50%;
}

.feedback--cards__item .item--header .item--name p {
    font-size: 32px;
    font-weight: var(--weight-bold);
    line-height: 34px;
    color: var(--main-color);
    margin-bottom: 4px;
}

.feedback--cards__item .item--header .item--name span {
    font-size: 20px;
    font-weight: 400;
    color: #828282;
}

.feedback--cards__item .item--content {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

/* Footer */
.footer {
    max-width: 1170px;
    margin: auto;
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.image-bg {
    background-color: #282828;
    width: 100%;
    height: 575px;
    position: absolute;
    bottom: -20px;
    z-index: -1;
}

.footer--tilte {
    font-size: 32px;
    line-height: 34px;
    color: var(--white-color);
    font-weight: var(--weight-bold);
}

.footer--contact {
    display: flex;
    align-items: flex-start;
    margin-top: 48px;
}

.contact--form .contact--form__title {
    font-size: 20px;
    font-weight: var(--weight-normal);
    color: var(--white-color);
    line-height: 22px;
    margin-bottom: 24px;
}

.contact--form .contact--form__message {
    font-size: 20px;
    font-weight: var(--weight-normal);
    color: var(--white-color);
    line-height: 22px;
    margin-bottom: 24px;
    margin-top: 20px;
}
.contact--form .contact--form__error {
    font-size: 20px;
    font-weight: var(--weight-normal);
    color: rgb(202, 3, 3);
    line-height: 22px;
    margin-bottom: 24px;
    margin-top: 20px;
}

.contact--form .contact--form__input,
.contact--form__text {
    width: 535px;
    background-color: #4d4d4d;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
    color: #737272;
}

.contact--form .contact--form__input:focus,
.contact--form__text:focus {
    color: var(--white-color);
}

.contact--form .contact--form__input {
    margin-bottom: 20px;
    padding: 20px;
}

.contact--form .contact--form__text {
    height: 160px;
    resize: none;
    padding: 20px;
}

.contact--form .contact--form__btn {
    margin-top: 40px;
    padding: 16px 58px;
    color: var(--white-color);
    font-size: 24px;
    font-weight: var(--weight-normal);
    line-height: 26px;
}
