#home_page {
    #about {
        border-bottom: 1px solid $lightGray;
        padding-block: 50px;

        .row {
            align-items: center;

            .image {
                img {
                    max-width: 100%;
                    width: 600px
                }
            }

            .text {
                .heading {
                    font-weight: bolder;
                    margin-bottom: 1em
                }

                .second-line {
                    font-weight: bolder;
                    margin-bottom: 2em
                }

                .button {
                    background-color: $blue;
                    box-shadow: 1px 1px 3px 0px $yellow;
                    border: none;
                    border-radius: 2em;
                    color: $white;
                    padding: 10px 50px;

                    &:hover {
                        background-color: $darkGray
                    }
                }
            }
        }
    }

    #about2 {
        border-bottom: 1px solid $lightGray;
        padding-block: 50px;
        background: $white;
        background: linear-gradient(90deg, $blue 6%, $white 65%);

        .row {
            align-items: center;
            justify-content: center;

            .video {
                .video-js {
                    border: 1.25em solid $black;
                    border-radius: 3em
                }
            }

            .text {
                .logo {
                    align-items: center;
                    display: flex;

                    img {
                        width: 60px
                    }

                    h2 {
                        color: $blue;
                        display: inline;
                        font-size: 2em;
                        font-weight: bolder;
                        margin-inline-start: .5em
                    }
                }

                .tree {
                    display: flex;

                    img {
                        height: 170px;
                        margin-inline-start: 29px
                    }

                    ul {
                        padding-inline-start: 1em;
                        padding-top: 10px;

                        li {
                            font-size: 1.2em;
                            font-weight: 700;
                            padding-block: 7px
                        }
                    }
                }
            }
        }
    }

    #features {
        padding-bottom: 50px;

        .owl-stage {
            display: flex
        }

        .owl-dots {
            width: 100%;

            .owl-dot {
                span {
                    background-color: $lightGray;
                    height: 4px;
                    margin: 5px;
                    width: 32px;

                    &:hover {
                        background-color: $gray
                    }
                }

                &.active {
                    span {
                        background-color: $gray
                    }
                }
            }
        }

        .feature {
            height: 100%;
            text-align: center;

            .card {
                border-radius: 1em;
                height: 100%;

                .card-title {
                    color: $blue;
                }

                img {
                    border-radius: 1em 1em 0 0;
                    height: 200px;
                }
            }
        }
    }

    #subscriptions {
        .package {
            background-color: $gray;
            color: $white;
            text-align: center;
            padding: 2em;
            height: 100%;

            .details {
                border-bottom: 1px solid $veryDarkGray;

                .price {
                    .amount {
                        direction: ltr;
                        font-size: 3.75em;
                        font-weight: 600;
                        line-height: 1em;
                    }
                }

                .register {
                    display: block;
                    margin-top: 2em;
                    margin-bottom: 1em;

                    .btn {
                        background-color: $red;
                        color: $white;
                        width: 100%;
                        border-radius: 2em;
                        padding-block: 0.75em;
                    }
                }
            }

            .main-features {
                list-style: none;
                padding: 0;

                li {
                    line-height: 3em;
                    font-weight: bold;
                }
            }

            .features-title {
                margin-top: 1em;
                font-weight: 600;
            }

            .features {
                list-style: '- ' inside;
                padding: 0;
                margin-top: 1em;
                margin-bottom: 0;

                li {
                    line-height: 3em;
                    font-size: .85em;
                }
            }
        }
    }

    #contact {
        padding-top: 50px;

        .form-container {
            box-shadow: 0 1rem 3rem rgba(58, 62, 66, .175);
            margin-bottom: 1em;
            padding: 2em;

            form {
                button {
                    background-color: $blue;
                    border: none;
                    border-radius: 2em;
                    color: $white;
                    padding: 10px 50px
                }
            }

            .links {
                border-top: 1px solid $lightGray;
                display: flex;
                justify-content: center;
                list-style: none;
                margin-bottom: 0;
                margin-top: 1.5em;
                padding: 2em 0 0;

                li {
                    border-radius: 10px;

                    a {
                        i {
                            background-color: $blue;
                            border-radius: .75em;
                            color: $white;
                            font-size: 25px;
                            padding: .25em
                        }

                        img {
                            width: 37px;
                        }
                    }

                    &:not(:first-of-type) {
                        a {

                            i,
                            img {
                                margin-inline-start: .5em
                            }
                        }
                    }
                }
            }
        }
    }

    .map {
        height: 350px;
        margin-top: 2.5em;

        iframe {
            height: 100%;
            width: 100%
        }
    }

    @media (max-width:991.98px) {
        #about {
            padding-block: 25px;

            .row {
                .image {
                    margin-bottom: 2em;
                    text-align: center;

                    img {
                        max-width: 100%;
                        width: 90%
                    }
                }

            }
        }

        #about2 {
            padding-block: 25px;

            .row {
                .video {
                    display: flex;
                    justify-content: center
                }

                .text {
                    margin-top: 2em;
                    order: 2;

                    .tree {
                        ul {
                            li {
                                font-size: 1em;
                                padding-block: 9px
                            }
                        }
                    }
                }

                .logo {
                    h2 {
                        font-size: 2em
                    }
                }
            }
        }

        #features,
        #partners {
            padding-block: 25px
        }

        #contact {
            .form-container {
                margin-bottom: 0
            }
        }

        .map {
            height: 250px;
            margin-top: 0
        }

        .main-title {
            margin-bottom: 2em
        }
    }
}