.custom-container {
    overflow: hidden;
}

nav {
    background-color: #fff;
    padding: 15px 18px;
}

nav .title-container {
    display: none;
}

nav img {
    height: 50px;
}

.content {
    background-color: #fff;
    height: 92vh;
    background-position: center;
    background-size: cover;
    color: #A3A1A0;
    text-align: center;
}

.content .row {
    background-color: rgba(0, 0, 0, 0);
    height: 100%;
}

.content .content-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding-left: 30px;
}

.pc-icon {
    display: block;
}

.mobile-icon {
    display: none;
}

.content .content-container .h3 {
    font-size: 24px;
}

.content .content-container .main-content p {
    font-size: 20px;
}

.content .content-container .sub-content p {
    font-size: 20px;
}

.btn-custom {
    background-color: rgb(222, 93, 131);
    color: #fff;
    width: 60%;
    margin-top: 20px;
}

.btn-custom:hover {
    color: #fff;
}

.icon-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-content img {
    height: 150px;
}

@media screen and (min-width: 768px) {
    .btn-custom {
        display: none;
    }
}

@media screen and (max-width: 700px) {
    .btn-custom {
        display: block;
        margin-left: 20%;
    }
    nav {
        /* background-color: rgb(222, 93, 131); */
    }
    nav .title-container {
        display: none;
    }
    nav img {
        display: none;
    }
    nav .title-container {
        display: block;
        text-align: center;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }
    nav .title {
        display: flex;
        text-align: center;
        justify-content: center;
        margin-bottom: 0;
    }
    nav p {
        margin-bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
    }
    nav .title-container i {
        text-align: left;
        width: 5%;
    }
    nav .title-container p {
        width: 95%;
        text-align: center;
    }
    .content .content-container {
        background-image: none;
        background-color: #fff !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .main-content {
        color: #A3A1A0;
    }
    .main-content h3 {
        color: #252525;
        margin-top: 10px;
    }
    .sub-content {
        color: #A3A1A0;
    }
    .pc-icon {
        display: none;
    }
    .mobile-icon {
        display: block;
        height: auto !important;
        width: 20%;
        margin-top: 25%;
    }
    .row {
        background-color: #fff !important;
    }
    .icon-content {
        background-color: #fff;
        padding: 15px;
    }
    .icon-content img {
        max-width: 65px;
    }
    .content .content-container {
        justify-content: flex-start;
    }
}

