* {
    margin: 0;
    padding: 0;
}

/*extreme small*/
@media (max-width:254px) {
    div.logo img {
        width: 100%;
    }
}

@media (max-width:220px) {
    div.logo img {
        width: 100%;
    }
}

@media (max-width:190px) {
    div.logo img {
        width: 100%;
    }
}

@media (max-width:170px) {
    div.logo img {
        width: 100%;
    }
}

header {
    background-color: #f70708;
    display: flex;
    height: 65px;
    align-items: center;
}

/*Bar design*/
.bars {
    display:flex;
    flex-direction: column;
    position:absolute;
    top:20px;
    left:40px;
    width:30px;
    height:24px;
    align-items: center;
    cursor:pointer;
}

.bar1, .bar2, .bar3 {
    background-color: black;
    width:20px;
    height:4px;
}

.bar1 {
    position:relative;
    top:3px
}

.bar2 {
    position: relative;
    top:5.9px;
}

.bar3 {
    position: relative;
    top: 8.3px;
}

/* Menu box design*/
.menu {
    position:relative;
    display:none;
    z-index: 101;
    width:120px;
    top:90px;
}

.menu ul li {
    position:relative;
    background-color: #f03030;
    box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    width: 100px;
    margin-bottom: 5px;
    text-align: center;
    font-size:19px;
}

.menu a {
    color: white;
    text-decoration: none;
}

.menu ul {
    list-style: none;
}

.logo {
    position: absolute;
    left:100px;
}

.logo img {
    width: 130px;
}

.contain {
    text-align: center;
}

/* Contain box design */
.aboutus,.select ,.mmcmap  {
    background-color: #f03030;
    height:auto;
    margin: 2% 1%;
    border-radius: 20px;
    box-shadow: 4px 4px 8px 8px rgba(0, 0, 0, 0.5);
}

.aboutus,.select ,.mmcmap h2 {
    color: white;
}

@media (min-width:1441px) {
    div.aboutus h2, .select h2, .mmcmap h2{
        font-size: 24px;
    }
    
}

.aboutus_contain {
    padding: 30px;
    position: relative;
    display:flex;
}

.aboutus_picture {
    position:relative; 
    justify-content: left; 
    align-items: left;
    width:4000px;
    display: none;
}

.aboutus_picture img {
    width:1250px;
}

.aboutus_paragraph p {
    font-size: 20px;
}

@media (max-width:1774px) {
    div.aboutus_picture {
        width:2000px;
    }

    div.aboutus_picture img {
        width: 900px;
    }

    div.aboutus_paragraph p {
        font-size: 20px;
    }
}

@media (max-width:1440px) {
    div.aboutus_picture {
        width:700px;
    }

    div.aboutus_picture img {
        width: 700px;
    }

    div.aboutus_paragraph p {
        font-size: 16px;
    }
}

@media (max-width:1204px) {
    div.aboutus_picture {
        width:600px;
    }

    div.aboutus_picture img {
        width: 600px;
    }
}

@media (max-width:1024px) {
    div.aboutus_picture {
        width:500px;
    }

    div.aboutus_picture img {
        width: 500px;
    }
}

@media (max-width:892px) {
    div.aboutus_picture {
        width:400px;
    }

    div.aboutus_picture img {
        width: 400px;
    }
}

@media (max-width:768px) {
    div.aboutus_picture {
        width:380px;
        display: flex;
        align-items: center;
    }

    div.aboutus_picture img {
        width: 380px;
    }
}

@media (max-width:767px) {
    div.aboutus_picture {
        width:700px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    div.aboutus_picture img {
        width: 500px;
    }

    div.aboutus_contain {
        flex-direction: column;
    }
}

@media (max-width:766px) {
    div.aboutus_picture {
        width:100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    div.aboutus_picture img {
        width: 100%;
    }

    div.aboutus_contain {
        flex-direction: column;
    }
}

@media (max-width:320px) {
    div.aboutus_paragraph p{
        font-size: 11px;
    }
}

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

.select {
    position: relative;
    justify-content: center;
    box-shadow: 4px 4px 8px 8px rgba(0, 0, 0, 0.5);
    height:100%;
}

.selections {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@keyframes fadeUp{
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selection:nth-child(1) {
    animation-delay: 0s;
}
.selection:nth-child(2) {
    animation-delay: 0.2s;
}
.selection:nth-child(3) {
    animation-delay: 0.4s;
}
.selection:nth-child(4) {
    animation-delay: 0.6s;
}
.selection:nth-child(5) {
    animation-delay: 0.8s;
}
.selection:nth-child(6) {
    animation-delay: 1s;
}

.selection.animate {
    animation:fadeUp 1.5s forwards;
}

.selection {
    margin: 30px;
    overflow: hidden;
    width:280px;
    height:280px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 3px 3px 5px 5px rgba(0, 0, 0, 0.5);
}

.selection:hover {
    box-shadow: 4px 4px 8px 8px rgba(0, 0, 0, 0.5);
}

.selection:hover .service p{
    opacity: 1; /* Make visible */
    visibility: visible; /* Make visible */
    transform:translate(-50%, -50%) translateY(0%); /* Move into view */
}


.service {
    position: relative;
    width:280px;
    height: 280px;
    overflow:hidden;
}

.service p {
    cursor: pointer;
}

@media (min-width:2300px) {
    div.select {
        height:747px;
    }
    div.selection, .service {
        height: 310px;
        width: 310px;
    }
}

@media (max-width:780px) {
    div.selection, .service {
        width: 200px;
        height: 200px;
    }
}

@media (max-width:560px) {
    div.selection, .service {
        width: 200px;
        height: 200px;
    }
    div.selection {
        margin: 15px;
    }
    div.service p {
        font-size: 25px;
    }
}

@media (max-width:470px) {
    div.selection, .service {
        width: 180px;
        height: 180px;
    }
}

@media (max-width:429px) {
    div.selection, .service {
        width: 160px;
        height: 160px;
    }
}

@media (max-width:390px) {
    div.selection, .service {
        width: 140px;
        height: 140px;
    }
    div.selection {
        margin: 15px;
    }
    div.service p {
        font-size: 10px;
    }
}

@media (max-width:346px) {
    div.selection, .service {
        width: 130px;
        height: 130px;
    }
}

@media (max-width:326px) {
    div.selection, .service {
        width: 110px;
        height: 110px;
    }
    div.selection {
        margin: 15px;
    }
    div.service p {
        font-size: 10px;
    }
}

/*extreme small*/
@media (max-width:290px) {
    div.selection, .service {
        width: 100%;
        height: 100%;
    }
    div.selection {
        margin: 15px;
    }
}
.service img {
    width:100%;
    transition: transform 1s ease;
}

.service:hover img {
    cursor: pointer;
    transform:scale(1.15);
    transition: transform 0.3s ease;
    filter: brightness(0.5);
}

.service p {
    position: absolute;
    text-align: center;
    top:50%;
    left:50%;
    transform: translate(-50%, 0%);
    color:white;
    opacity:0;
    width:100%;
    font-size: 35px;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.selection:hover p {
    opacity: 1; /* Make visible */
    visibility: visible; /* Make visible */
}

/* Service */
@media (max-width:2560px) {
    div.pictureAdj {
        width:98%;
    }

    div.bigimage {
        width: 650px;
        height:650px;
    }
}

@media (max-width:1605px) {
    div.detail p, div.item a {
        font-size: 18px;
    }

    div.itemproducts {
        display:flex;
        justify-content: center;
    }

    div.item {
        width:90px;
    }

    div.detailimage {
        width:180px;
        height:180px;
    }

    div.detailinfomation1 {
        width: 800px;
    }
}

@media (max-width:1582px) {
    div.detail p, div.item a {
        font-size: 18px;
    }

    div.item {
        width:70px;
    }

    div.detailimage {
        width:150px;
        height:150px;
    }

    div.detailinfomation1 {
        width: 700px;
    }
}

@media (max-width:1387px) {
    div.pictureAdj {
        position: absolute;
        top:110px;
    }
}

@media (max-width:1253px) {
    div.detail p, div.item a {
        font-size: 15px;
    }

    div.item {
        width:60px;
    }

    div.detailimage {
        width:130px;
        height:130px;
    }

    div.detailinfomation1 {
        width: 600px;
    }
}

@media (max-width:1154px) {
    div.bigimage {
        height: 645px;
    }

    div.detail p, div.item a {
        font-size: 15px;
    }

    div.item {
        width:60px;
    }

    div.detailimage {
        width:100px;
        height:100px;
    }

    div.detailinfomation1 {
        width: 500px;
    }
}

@media (max-width:949px) {

    div.pictureAdj {
        top:0;
        margin: 0 20px;
        flex-direction: column;
        height: 1250px;
    }

    div.detail p, div.item a {
        font-size: 18px;
    }

    div.item {
        width:90px;
    }

    div.detailimage {
        width:90px;
        height:90px;
    }

    div.detailinfomation1 {
        width: 500px;
    }
}

@media (max-width:1029px) {
    div.provideservices {
        justify-content: center;
        text-align: center;
        align-items: center;
    }

    div.pictureAdj {
        top:0;
        position: relative;
        margin: 50px 5px;
        flex-direction: column;
        height: 1250px;
    }

    div.bigimage {
        width:100%;
    }

    div.detail p, div.item a {
        font-size: 18px;
    }

    div.item {
        width:90px;
    }

    div.detailimage {
        width:180px;
        height:180px;
    }

    div.detailinfomation1 {
        width: 900px;
    }
}

@media (max-width:905px) {
    div.pictureAdj {
        height: 1250px;
    }
    div.detail p, div.item a {
        font-size: 18px;
    }

    div.item {
        width:90px;
    }

    div.detailimage {
        width:180px;
        height:180px;
    }

    div.detailinfomation1 {
        width: 900px;
    }
}

@media (max-width:979px) {
    div.detail p, div.item a {
        font-size: 18px;
    }

    div.itemproducts {
        display:flex;
        justify-content: center;
        margin: 30px 0px;
    }
    div.item {
        width:90px;
        margin:0;
    }

    div.detailimage {
        width:160px;
        height:160px;
    }

    div.detailinfomation1 {
        width: 760px;
    }
}

@media (max-width:810px) {
    div.bigimage {
        width: 100%;
        height: 500px;
    }

    div.item {
        width:90px;
        margin:0;
    }

    div.detailimage {
        width:130px;
        height:130px;
    }

    div.detailinfomation1 {
        width: 660px;
    }
}

@media (max-width:780px) {
    
    div.bigimage {
        width: 100%;
        height: 400px;
    }

    div.pictureAdj {
        height: 1000px;
    }

    div.item {
        width:90px;
        margin:0;
    }

    div.detailimage {
        width:130px;
        height:130px;
    }

    div.detailinfomation1 {
        width: 660px;
    }
}

@media (max-width:700px) {
    
    div.detailinfomation1 {
        width: 600px;
    }
}

@media (max-width:624px) {
    
    div.bigimage {
        width: 100%;
        height: 480px;
    }

    div.pictureAdj {
        height: 1000px;
    }

    div.item {
        width:90px;
        margin:0;
    }

    div.detailimage {
        width:100px;
        height:100px;
    }

    div.detailinfomation1 {
        width: 500px;
    }
}

@media (max-width:780px) {
    
    div.bigimage {
        width: 100%;
        height: 400px;
    }

    div.pictureAdj {
        height: 1000px;
    }

    div.item {
        width:90px;
        margin:0;
    }

    div.detailimage {
        width:130px;
        height:130px;
    }

    div.detailinfomation1 {
        width: 660px;
    }
}

@media (max-width:696px) {
    
    div.bigimage {
        width: 100%;
        height: 500px;
    }

    div.pictureAdj {
        height: 1000px;
    }

    div.item {
        width:90px;
        margin:0;
    }

    div.detailimage {
        width:100px;
        height:100px;
    }

    div.detailinfomation1 {
        width: 600px;
    }
}

@media (max-width:635px) {

    div.itemproducts {
        display:flex;
        justify-content: center;
        margin: 15px 0px;
    }

    div.bigimage {
        width: 100%;
        height: 500px;
    }

    div.pictureAdj {
        height: 1000px;
    }

    div.item {
        width:90px;
        margin:0;
    }

    div.detailimage {
        width:80px;
        height:80px;
    }

    div.detailinfomation1 {
        width: 500px;
    }
}

@media (max-width:560px) {

    div.itemproducts {
        display:flex;
        justify-content: center;
        margin: 15px 0px;
    }

    div.bigimage {
        width: 100%;
        height: 250px;
    }

    div.pictureAdj {
        height: 880px;
    }

    div.detailimage {
        width:80px;
        height:80px;
    }

    div.detailinfomation1 {
        width: 100%;
    }
}

@media (max-width:560px) {

    div.pictureAdj {
        height: 800px;
    }
    
}

@media (max-width:430px) {

    div.bigimage {
        width: 100%;
        height: 250px;
    }

    div.pictureAdj {
        height: 800px;
    }

    div.detailimage {
        width:70px;
        height:70px;
    }

    div.detailinfomation1 {
        width: 100%;
    }
}

@media (max-width:429px) {

    div.bigimage {
        width: 100%;
        height: 250px;
    }

    div.pictureAdj {
        margin: 5px;
        height: 760px;
    }

    div.detailimage {
        width:80px;
        height:80px;
    }

    div.detailinfomation1 {
        width: 400px;
    }
}

@media (max-width:405px) {

    div.bigimage {
        width: 100%;
        height: 250px;
    }

    div.detailimage {
        width:70px;
        height:70px;
    }

    div.detailinfomation1 {
        width: 100%;
    }
}

@media (max-width:390px) {


    div.itemproducts {
        display:flex;
        justify-content: center;
        margin: 15px 0px;
    }

    div.detail h1 {
        font-size: 20px;
    }

    div.detail p {
        font-size: 15px;
    }

    div.bigimage {
        width: 100%;
        height: 250px;
    }

    div.pictureAdj {
        height: 690px;
    }

    div.detailimage {
        width:70px;
        height:70px;
    }

    div.detailinfomation1 {
        width: 100%;
    }
    div.item a {
        font-size: 14px;
    }

    div.detailinfo {
        margin-top: -20px;
    }
}

@media(max-width:363px) {
    div.detailimage {
        width:60px;
        height:60px;
    }
}

@media (max-width:346px) {

    div.pictureAdj {
        height: 650px;
    }

}

@media(max-width:332px) {
    div.detailimage {
        width:56px;
        height:56px;
    }
}

@media (max-width:329px) {

    div.bigimage {
        height:200px
    }
}

@media (max-width:326px) {

    div.pictureAdj {
        height:560px;
    }

    div.bigimage {
        height:150px;
        
    }
}

@media (max-width:296px) {
    div.pictureAdj {
        height:100%;
    }

    div.itemproducts {
        margin:5;
    }
    div.item {
        width: 60px;
    }
}

@media (max-width:1240px) {
    div.detail {
        position: relative;
        top:40px;
    }
    
}
@media (max-width:1029) {
    div.detail {
        top:0px;
    }
}

.provideservices {
    position: absolute;
    top:0;
    left:0;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    height:100%;
    width: 100%;
    display: none;
}

.close {
    position:absolute;
    display: flex;
    right:30px;
    height: 30px;
    width:30px;
    cursor: pointer;
    font-size: 30px;
    border-radius: 100px;
    justify-content: center;
    text-align: center;
    align-items: center;
}


.close:hover {
    background-color: #a82121;
}

.pictureAdj {
    display:flex;
    height: 650px;
    background-color: #f03030;
    margin: 2% 1%;
    border-radius: 20px;
    overflow: hidden;
}

.provideservices img {
    width:100%;
    height: 100%;
}

.bigimage {
    display: flex;
    width: 800px;
    height:800px;
    justify-content: center;
    text-align: center;
}

.detailinfo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.itemproducts {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.item {
    position: relative;
    background-color: #ed6a6a;
    border-radius: 100px;
    margin: 30px 2px;
    justify-content: center;
    align-items: center;
    width: 100px;
}

.item:hover {
    background-color: #a82121;
    cursor: pointer;
}

.item a {
    font-size: 25px;
    text-align: center;
    color:white;
    text-decoration: none;
}

.detail {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.detail h1 {
    cursor: default;
}

.detail p {
    font-size: 23px;
    margin-top:30px;
    cursor: default;
}
@media (max-width:1536px) {
    div.detail p {
        width:860.35px;
    }
}

@media (max-width:1440px) {
    div.detail p {
        width:660.35px;
    }
}

@media (max-width:1340px) {
    div.detail p {
        width:560.35px;
    }
}

@media (max-width:1000px) {
    div.detail p {
        width:100%;
    }
}
.detailinfomation1 {
    display: flex;
    flex-wrap: wrap;
    background-color: #ed6a6ac0;
    width: 900px;
    position: relative;
    justify-content: center;
    border-radius: 10px;
    margin: 40px;
}

.detailimage {
    width:200px;
    height: 200px;
    margin: 10px;
    overflow: hidden;
    border-radius: 10px;
}

.detailimage img {
    transition: transform 0.3s ease;
}

.detailimage:hover img{
    transform: scale(1.2);
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* Location */
@media screen and (max-width:1536px) {
    div.iframecontainer
    {
        width: 1000px;
        height:380px;
    }
    div.icon-content
    {
        width: 50px;
        height: 50px;
    }
}

@media (max-width:1305px) {
    div.iframecontainer
    {
        width: 800px;
        height:380px;
    }
}

@media (max-width:1120px) {
    div.iframecontainer
    {
        width: 600px;
        height:380px;
    }
}

@media (max-width:906px) {
    div.iframecontainer
    {
        width: 400px;
        height:380px;
    }
}

@media (max-width:710px) {
    div.iframecontainer
    {
        width: 100%;
        height:380px;
    }

    div.our
    {
        flex-direction: column;
    }
}




.mmcmap {
    padding-bottom: 30px;
}

.our {
    justify-content: center;
    display: flex;
}

.adjustcontainer, .ourinfo {
    margin: 0% 1%;
}

.location, .socialmedia {
    margin: 50px 0%;
}

.iframecontainer {
    width: 1300px;
    height:380px;
}

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

.icon-content {
    overflow: hidden;
    width: 60px;
    height: 60px;
    border-radius: 100px;
}

.icon-content img {
    width: 100%;
}

.icon-content:hover {
    box-shadow: 4px 4px 8px 8px rgba(0, 0, 0, 0.5);
}

.location a, p{
    color:white;
    text-decoration: none;
}

/* Footer done */
footer {
    background-color: #f70708;
   color:white;
}

.footercontainer {
    display: flex;
    justify-content: center;
}

.footercontainer1 {
    margin: 10px 20px;
}

.footercontainer2 ul {
    list-style: none;
}

.footercontainer2 a{
    text-decoration: none;
    color: white;
}

.footercontainer2 a:hover {
    text-decoration: underline;
}