.home-page > .container {
    padding: 0;
    display: grid;
    height: auto;
    width: 100%;
    min-height: 600px;
    grid-template-rows: repeat(6, min-content) 1fr;
    grid-template-columns: 100%;
    box-sizing: border-box;
    gap: 20px;
}

.home-page section {
    position: relative;
    display: flex;
}

.home-page section:nth-child(1) > .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.home-page section:nth-child(1) > .bg-image > img {
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.home-page section:nth-child(1) .bg-layer {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(46,88,166);
    opacity: .4;
}

.home-page section:nth-child(1) > .over-image {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    color: white;
}

.home-page section:nth-child(1) > .over-image > * {
    flex: 932 1 0;
    min-height: 800px;
}

.home-page section:nth-child(1) > .over-image > .left {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 93px;
}

.home-page section:nth-child(1) > .over-image > .left span {
    display: block;
    font-size: 25px;
    width: 533px;
}

.home-page section:nth-child(1) > .over-image > .left span:nth-child(1) {
    font-size: 97px;
    font-weight: bold;
    width: 696px;
}

.home-page section:nth-child(1) > .over-image > .right {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 100px 0;
}

.home-page section:nth-child(1) > .over-image > .right > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-page section:nth-child(1) > .over-image > .right > ul > li:nth-child(1) {
    margin-bottom: 30px;
}

.home-page section:nth-child(2) {
    margin: auto;
    gap: 50px;
}

.home-page section:nth-child(2) > .left {
    display: flex;
    align-items: center;
    color: rgb(46,88,166);
    font-size: 17px;
    width: 591px;
}

.home-page section:nth-child(2) > .right > .contacts-container {
    width: 581px;
    height: 360px;
    background-color: rgb(46, 88, 166);
    display: grid;
    grid-template-rows: min-content 1fr;
    grid-template-columns: 100%;
    padding: 60px;
}

.home-page section:nth-child(2) > .right > .contacts-container * {
    color: white;
}

.home-page section:nth-child(2) > .right > .contacts-container > .phone-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.home-page section:nth-child(2) > .right > .contacts-container h1 {
    font-size: 37px;
}

.home-page section:nth-child(2) > .right > .contacts-container > .phone-container > h5 {
    font-size: 48px;
}

.home-page section:nth-child(3) {
    margin-left: 150px;
    margin-right: 150px;
    gap: 40px;
}

.home-page section:nth-child(3) > .stats-container {
    flex: 1;
    border-bottom: rgb(46,88,166) solid 6px;
}

.home-page section:nth-child(3) > .stats-container > div:nth-child(1) > p {
    font-size: 97px;
}

.home-page section:nth-child(3) > .stats-container > div:nth-child(2) > p {
    font-size: 20px;
}

.home-page section:nth-child(3) > .stats-container p {
    color: rgb(46,88,166);
}

.home-page section:nth-child(5) > .advs-container {
    background-color: rgb(171, 190, 225);
    width: 100%;
    color: rgb(46,88,166);
}

.home-page section:nth-child(5) > .advs-container > .upper {
    margin: 47px 0 47px 96px;
    font-size: 48px;
    font-weight: bold;
}

.home-page section:nth-child(5) > .advs-container > .bottom {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 60px;
}

.home-page section:nth-child(5) > .advs-container > .bottom > div {
    width: 321px;
}

.home-page section:nth-child(5) > .advs-container > .bottom h3 {
    color: rgb(46,88,166);
    font-size: 20px;
}

.home-page section:nth-child(5) > .advs-container > .bottom svg {
    width: 81px;
    height: 79px;
    fill: rgb(46,88,166);
}

.home-page section:nth-child(6) > .form-container {
    width: 100%;
    background-color: rgb(171,190,225);
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-page section:nth-child(6) > .form-container > form {
    width: 619px;
    display: grid;
}

.home-page section:nth-child(6) > .form-container > form > .form-row {
    display: flex;
    gap: 10px;
}

.home-page section:nth-child(6) > .form-container > form > .form-row > input {
    flex: 1;
}

.home-page section:nth-child(6) > .form-container > form textarea {
    width: 100%;
    height: 135px;
    resize: none;
}

.home-page section:nth-child(6) > .form-container > form input, .home-page section:nth-child(6) > .form-container > form textarea {
    margin-bottom: 14px;
    color: rgb(46,88,166);
    border: none;
}

.home-page section:nth-child(6) > .form-container > form input::placeholder, .home-page section:nth-child(6) > .form-container > form textarea::placeholder {
    color: rgb(46,88,166);
    font-weight: normal;
}

.home-page section:nth-child(6) > .form-container > form button {
    background-color: rgb(31, 59, 111);
    color: white;
    border: none;
    height: 45px;
}

.home-page section:nth-child(6) > .form-container > form button:hover {
    background-color: black;
}