﻿a {
    text-decoration: none !important;
}

.body-of-site {
    width: 100%;
}

.dots-of-site {
    overflow: hidden;
    display: block;
    color: lightgray;
    font-size: 20px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.main-of-site {
    width: 100%;
    margin: 50px auto 0 auto;
}

/*.img-of-slide {
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    z-index: -100;
    height: 200px;
}

    .img-of-slide > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
*/
.slide-of-site {
    /*position: relative;
    top: 0;
    right: 0px;*/
    width: 100%;
    background-image: url("../img/hoonam.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*background-attachment: fixed;*/
}

.text-of-slide {
    height: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #0000008f;
    align-items: center;
    justify-content: center;
}

    .text-of-slide > h1 {
        color: white;
        font-size: 17px;
        text-align: center;
        margin-bottom: 20px;
    }

.icons-of-slide {
    display: flex;
    justify-content: center;
}

.icon-of-slide {
    margin: 3%
}

    .icon-of-slide > label {
        width: 50px;
        display: flex;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        position: relative;
        animation-name: lable;
        animation-duration: 4s;
        animation-fill-mode: forwards;
        border-width: 2px;
        border-style: solid;
    }

@keyframes lable {
    0% {
        border-color: #00000091;
    }

    100% {
        border-color: white;
    }
}

.icon-of-slide > label > img {
    object-fit: cover;
    position: relative;
    animation-name: img;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    max-width: 50%;
    max-height: 50%;
}

@keyframes img {
    0% {
        max-width: 0%;
        max-height: 0%;
    }

    100% {
        max-width: 40%;
        max-height: 40%;
    }
}

.icon-of-slide > span {
    display: block;
    text-align: center;
    color: white;
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto 0 auto;
}

.content-of-site > label {
    display: block;
    max-width: 1200px;
    height: 15px;
    background-image: linear-gradient( #8c8c8c2e, white);
    margin: 30px auto;
    border-radius: 0 0 100px 100px;
}

.content-of-site {
    background-color: white;
    width: 100%;
    padding-bottom: 50px;
}

@media only screen and (min-width: 375px) {
    .img-of-slide {
        height: 230px;
    }

    .text-of-slide {
        height: 230px;
    }

        .text-of-slide > h1 {
            font-size: 19px;
        }
}

@media only screen and (min-width: 500px) {
    .img-of-slide {
        height: 300px;
    }

    .icon-of-slide > label {
        width: 80px;
        height: 80px;
    }

    .text-of-slide {
        height: 300px;
    }

        .text-of-slide > h1 {
            font-size: 25px;
        }
}

@media only screen and (min-width: 650px) {
    .img-of-slide {
        height: 350px;
    }

    .icon-of-slide > span {
        font-size: 17px;
    }

    .text-of-slide {
        height: 350px;
    }

        .text-of-slide > h1 {
            font-size: 30px;
        }
}

@media only screen and (min-width: 800px) {
    .img-of-slide {
        height: 400px;
    }

    .text-of-slide {
        height: 400px;
    }

        .text-of-slide > h1 {
            font-size: 35px;
        }
}

@media only screen and (min-width: 992px) {
    .img-of-slide {
        height: 450px;
    }

    .main-of-site {
        margin: 70px auto 0 auto;
    }

    .icon-of-slide > label {
        width: 100px;
        height: 100px;
        border: 3px solid white;
    }

    .icon-of-slide > span {
        font-size: 20px;
    }

    .text-of-slide {
        height: 450px;
    }

        .text-of-slide > h1 {
            font-size: 40px;
        }
}

@media only screen and (min-width: 1300px) {
    .img-of-slide {
        height: 500px;
    }

    .icon-of-slide > label {
        width: 120px;
        height: 120px;
        border: 4px solid white;
    }

    .icon-of-slide > span {
        font-size: 22px
    }

    .text-of-slide {
        height: 500px;
    }

        .text-of-slide > h1 {
            font-size: 50px;
        }
}

/**************** about ****************/

.about-of-site {
    padding-top: 75px;
}


    .about-of-site > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }


.img-of-about {
    display: none;
    justify-content: start;
    align-items: center;
    direction: ltr;
}

    .img-of-about > img {
        width: 80%;
    }

.text-of-about {
    width: 100%;
}

.title-of-about {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-right: 10px;
}

    .title-of-about > span {
        height: 30px;
        width: 30px;
        border: 1.5px solid #FF165D;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }

        .title-of-about > span > img {
            width: 60%;
        }

    .title-of-about > h3 {
        font-size: 20px;
        margin-right: 10px;
    }

.text-of-about > p {
    font-size: 16px;
    margin: 10px;
    text-align: justify;
}

.link-of-about {
    display: flex;
    justify-content: start;
    direction: ltr;
}

    .link-of-about > a {
        display: block;
        margin: 10px;
        font-size: 18px;
        width: 100px;
        text-align: center;
        color: #FF165D;
        border-radius: 4px;
        transition: background-color 1s, color 1s, border 1s;
        cursor: pointer;
        background-color: white;
        border: 1px solid #FF165D;
    }

@media only screen and (min-width: 760px) {
    .text-of-about {
        width: 60%;
    }

    .img-of-about {
        display: flex;
        width: 40%;
    }
}

@media only screen and (min-width: 992px) {
    .link-of-about > a:hover {
        background-color: #FF165D;
        color: white;
        border: 1px solid #FF165D;
    }

    .title-of-about > span {
        border: 2px solid #FF165D;
    }
}

/**************** about ****************/

/**************** products ****************/

.products-of-site {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.text-of-products {
    width: 100%;
}

.title-of-products {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-right: 10px;
}

    .title-of-products > span {
        height: 30px;
        width: 30px;
        border: 1.5px solid #FF165D;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }

        .title-of-products > span > img {
            width: 60%;
        }

    .title-of-products > h3 {
        font-size: 20px;
        margin-right: 10px;
    }

.text-of-products > p {
    font-size: 16px;
    margin: 10px;
    text-align: justify;
}

.icons-of-products {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .icons-of-products > div {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.column-of-products {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 120px;
}

.link-of-products {
    width: 100%;
    position: relative;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
}

.icon-of-products {
    opacity: 1;
    width: 94%;
    transition: opacity 1s;
    border-radius: 40%;
    overflow: hidden;
}

.icon-of-products-hover {
    opacity: 0;
    width: 94%;
    transition: opacity 1s;
    position: absolute;
    top: 0;
}

@media only screen and (min-width: 760px) {
    .text-of-products {
        width: 60%;
    }

    .icons-of-products {
        width: 40%;
        justify-content: start;
        direction: ltr;
    }

        .icons-of-products > div {
            width: 70%;
            margin-left: 10px;
        }
}

@media only screen and (min-width: 992px) {
    .link-of-products:hover .icon-of-products {
        opacity: 0;
    }

    .link-of-products:hover .icon-of-products-hover {
        opacity: 1;
    }

    .title-of-products > span {
        border: 2px solid #FF165D;
    }
}

/**************** products ****************/

/**************** packages ****************/

.packages-of-site {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.text-of-packages {
    width: 100%;
}

    .text-of-packages > h1 {
        font-size: 20px;
        text-align: center;
        margin: 30px auto;
        background-color: #ececec;
        padding: 5px 0;
    }

    .text-of-packages > p {
        font-size: 16px;
        margin: 20px;
        text-align: center;
    }

.links-of-packages-mobile {
    width: 100%;
}

    .links-of-packages-mobile > a {
        display: block;
        height: 110px;
        margin: 10px;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }

    .links-of-packages-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .links-of-packages-mobile h3 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        height: 100%;
    }

    .links-of-packages-mobile span {
        background-color: #000000b8;
        border-radius: 10px;
        padding: 3px 10px;
        font-size: 20px;
    }

.links-of-packages-pc {
    display: none;
}

@media only screen and (min-width: 375px) {
    .links-of-packages-mobile > a {
        height: 140px;
    }
}

@media only screen and (min-width: 550px) {
    .links-of-packages-mobile > a {
        height: 180px;
    }
}

@media only screen and (min-width: 700px) {
    .links-of-packages-mobile > a {
        height: 220px;
    }
}

@media only screen and (min-width: 900px) {
    .links-of-packages-mobile {
        display: none;
    }

    .links-of-packages-pc {
        width: 100%;
        display: block;
    }

    .top-box {
        width: 100%;
        display: flex;
        height: 300px;
    }

    .bottom-box {
        width: 100%;
        display: flex;
        height: 200px;
        margin-top: 10px;
    }

    .right-top-box {
        width: 30%;
        height: 100%;
    }

    .center-top-box {
        width: 40%;
        height: 100%;
    }

    .left-top-box {
        width: 30%;
        height: 100%;
    }

    .right-bottom-box {
        width: 33.333333333333333333%;
        height: 100%;
    }

    .center-bottom-box {
        width: 33.333333333333333333%;
        height: 100%;
    }

    .left-bottom-box {
        width: 33.333333333333333333%;
        height: 100%;
    }

    .links-of-packages-pc img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .links-of-packages-pc a {
        display: block;
        margin: 0 5px;
        border-radius: 10px;
        overflow: hidden;
        height: 100%;
        cursor: pointer;
        position: relative;
    }

    .links-of-packages-pc h3 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        height: 100%;
        background-color: transparent;
        transition: background-color 1s;
    }

        .links-of-packages-pc h3:hover {
            background-color: #6af4f482;
        }

    .title-of-package {
        background-color: #000000b8;
        border-radius: 10px;
        padding: 3px 10px;
        font-size: 20px;
        transition: padding 1s;
    }

    .links-of-packages-pc h3:hover .title-of-package {
        padding: 50px 50px;
    }
}

/**************** packages ****************/

/**************** customers ****************/

.customers-of-site {
}

    .customers-of-site > h1 {
        font-size: 20px;
        text-align: center;
        margin: 30px auto;
        /*background-color: #00609C;*/
        /*background-color: #6043c6;*/
        background-color: #ececec;
        padding: 5px 0;
    }

.link-of-customer {
    width: 100%;
    position: relative;
    width: 150px;
    display: block;
    margin: auto;
    border-radius: 100%;
}

.logo-of-customers {
    opacity: 1;
    width: 150px !important;
    transition: opacity 2s;
}

.logo-of-customers-hover {
    opacity: 0;
    width: 150px !important;
    transition: opacity 2s;
    position: fixed;
    top: 0;
}

@media only screen and (min-width: 992px) {
    .link-of-customer:hover .logo-of-customers {
        opacity: 0;
    }

    .link-of-customer:hover .logo-of-customers-hover {
        opacity: 1;
    }
}

/**************** customers ****************/

/**************** banner ****************/

.banner-of-site {
    width: 98%;
    overflow: hidden;
    border-radius: 5px;
    max-width: 1200px;
    margin: 50px auto;
    position: relative;
}

.img-og-banner {
    width: 100%;
}

    .img-og-banner > img {
        width: 100%;
        min-height: 100px;
        object-fit: cover;
        display: block;
    }

.text-of-banner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background-color: #013064b5;
    justify-content: space-between
}

    .text-of-banner > div {
        width: 50%;
        height: 100%;
        width: 50%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        .text-of-banner > div:first-child {
            width: 70%;
        }

        .text-of-banner > div:last-child {
            width: 30%;
        }


        .text-of-banner > div > h1 {
            color: white;
            font-size: 16px;
        }


        .text-of-banner > div > p {
            color: white;
            font-size: 14px;
        }

        .text-of-banner > div > a {
            display: block;
            font-size: 14px;
            text-align: center;
            color: white;
            border-radius: 4px;
            transition: background-color 1s, color 1s;
            cursor: pointer;
            background-color: #FF165D;
            padding: 0px 10px;
        }

            .text-of-banner > div > a:hover {
                background-color: white;
                color: #FF165D;
            }



@media only screen and (min-width: 700px) {

    .text-of-banner > div:first-child {
        width: 40%;
    }

    .text-of-banner > div > h1 {
        font-size: 18px;
        margin-bottom: 5px;
    }


    .text-of-banner > div > p {
        font-size: 16px;
    }

    .text-of-banner > div > a {
        font-size: 16px;
        padding: 2px 30px;
    }
}

@media only screen and (min-width: 900px) {



    .text-of-banner > div > h1 {
        font-size: 20px;
        margin-bottom: 10px;
    }


    .text-of-banner > div > p {
        color: white;
        font-size: 18px;
    }

    .text-of-banner > div > a {
        font-size: 18px;
        padding: 3px 30px;
    }
}
/**************** banner ****************/
