@charset "UTF-8";
@import url("/upload/10/service/a/17_10/homepage/scripts/reset.css");

body {
    color: var(--text-color);
}

/* Header area start */
header {
    position: fixed;
    top: -5em;
    left: 0;
    right: 0;
    width: 100%;
    height: 5em;
    margin: 0 auto;
    z-index: 4;
    /* box-shadow: 0 2px 5px rgb(255 255 255 / 0.2); */
}

header .navbar {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 12px;
}

header .navbar .navbar__logo {
    display: none;
    color: #fff;
    font-family: var(--timesnewroman-fonts);
    padding: 0.8em;
    font-size: 20px;
    font-weight: bolder;
    cursor: pointer;
}

header .navbar .navbar__menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1em;
    margin-right: 5%;
}

header .navbar .navbar__menu li {
    padding: 0.4em 0;
}

/* header .navbar .navbar__menu li.main_menu0 {
    display: none;
} */

header .navbar .navbar__menu li span {
    font-family: var(--popins-fonts);
    color: #fff;
    display: inline-block;
    padding: 0.4em 0.8em;
    cursor: pointer;
    transition: all .4s ease;
}

header .navbar .navbar__menu li span:hover {
    color: rgba(57, 71, 18, 0.6);
    border-radius: 1em;
    background-color: rgba(195, 230, 100, 0.4);
    box-shadow: 0 1px 2px rgb(255 255 255 / 0.2);
}

header .navbar .navbar__menu li span:active {
    color: var(--accent-color);
    border-radius: 1em;
    background-color: rgb(212 148 102 / 0.1);
    box-shadow: 0 1px 2px rgb(255 255 255 / 0.2);
}

header .navbar .navbar__menu li span.on {
    color: papayawhip;
    border-radius: 1em;
    background-color: rgb(212 148 102 / 0.3);
    box-shadow: 0 1px 2px rgb(255 255 255 / 0.2);
}

header .navbar .navbar__langBtn {
	padding:0
}

header .navbar .navbar__langBtn img {
	border: 1px solid rgb(0 0 0 / 0.2);
    width:23px;
}

header .navbar .navbar__langBtn .sub_menu_langcheck {
	width: 100px;
    height: 2rem;
    background-color: white;
    border-radius:5px;
    text-align: center;
    line-height: 2rem;
    font-family : var(-popins-fonts);
    font-size: 0.9rem;
    transition: all .4s ease;
    cursor: pointer;
}

header .navbar .navbar__langBtn .sub_menu_langcheck:hover {
    color: rgba(57, 71, 18, 0.6);
    border-radius: 7px;
    background-color: rgba(195, 230, 100, 0.6);
    box-shadow: 0 1px 2px rgb(255 255 255 / 0.2);
}

header .navbar .navbar__langBtn #country_select_box {
    display: none;
    position: absolute;
    width: 100px;
    font-family : var(-popins-fonts);
    font-size: 0.9rem;
    background-color: white;
    border-radius:5px;
    text-align: center;
    line-height: 2rem;
    top: 60px;
    right: 13px;
}

header .navbar .navbar__langBtn #country_select_box div:hover {
    color: rgba(57, 71, 18, 0.6);
    border-radius: 7px;
    background-color: rgba(195, 230, 100, 0.6);
    box-shadow: 0 1px 2px rgb(255 255 255 / 0.2);
} 

header .navbar .navbar__toggleBtn {
    display: none;
    position: absolute;
    color: white;
    width: 20px;
    height: 20px;
    top: 1.8em;
    right: 32px;
}

header .navbar .navbar__toggleBtn:hover {
    cursor: pointer;
}

header .navbar .navbar__toggleBtn .menu-bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 1.5px;
    position: absolute;
    transition: .5s;
}

header .navbar .navbar__toggleBtn:hover .menu-bar {
    background-color: orange;
}

header .navbar .navbar__toggleBtn .menu-bar-top {
    top: 0;
}

header .navbar .navbar__toggleBtn .menu-bar-middle {
    top: 50%;
    transform: translateY(-50%);
}

header .navbar .navbar__toggleBtn .menu-bar-bottom {
    bottom: 0;
}

header .navbar .navbar__toggleBtn.active .menu-bar-top {
    transform: rotate(45deg);
    top: 50%;
}

header .navbar .navbar__toggleBtn.active .menu-bar-middle {
    transform: translate(30px);
    opacity: 0;
    transition: all .1s ease-in;
}

header .navbar .navbar__toggleBtn.active .menu-bar-bottom {
    transform: rotate(-45deg);
    top: 50%;
}

@media screen and (max-width:1000px) {
    header .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 12px;
    }

    header .navbar .navbar__logo {
        display: none;
        padding: 1em 0.8em;
    }

    header .navbar .navbar__menu {
        display: none;
        position: absolute;
        flex-direction: column;
        align-items: center;
        top: 0;
        left: 0;
        background: rgb(0 0 0 / 0);
        width: 100%;
        height: 1%;
        transition: all .8s ease;
    }

    header .navbar .navbar__menu li {
        width: 100%;
        text-align: center;
    }

    header .navbar .navbar__toggleBtn {
        display: block;
    }

    header .navbar .navbar__menu.active {
        display: block;
        background: rgb(0 0 0 / 0.8);
        /* border: rgb(255 255 255 / 0.8); */
        font-size: 1em;
        padding: 10% 0;
        margin-top: 82px;
        height: auto;
    }

    header .navbar .navbar__menu li.main_menu0.active {
        display: block;
    }
    
    header .navbar .navbar__langBtn {
        position: absolute;
        top: 23px;
        right: 70px;
    }
    
    header .navbar .navbar__langBtn #country_select_box {
        display: none;
        position: absolute;
        font-family : var(-popins-fonts);
        font-size: 0.9rem;
        background-color: white;
        border-radius:5px;        
        top: 35px;
        right: 0;
    }
    
    main .sections .section_container {
        flex-direction: column;
        align-items: center;
    }

    .dimmed {
        display: none;
        position: absolute;
        background: rgb(0 0 0 / 0.7);
        z-index: 3;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1000vh;
    }

    .dimmed.active {
        display: block;
        cursor: pointer;
    }
}

/* Header area end */

/* Main area start */
main .sections {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    padding: 0;
}

main .sections .section_container {    
    width: 100%;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;    
}

/* Mainpage contents start */
main .mainpage {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("/upload/10/service/a/17_10/homepage/images/mainpage_bg.jpg") no-repeat bottom right;
    background-size: cover;
    /* animation: grow 40s linear infinite; */
    /* animation: grow 10s linear; */
}

main .mainpage1 {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("/upload/10/service/a/17_10/homepage/images/mainpage1_bg.jpg") no-repeat center center;
    background-size: cover;
}

main .mainpage2 {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("/upload/10/service/a/17_10/homepage/images/mainpage2_bg.jpg") no-repeat center center;
    background-size: cover;
    /* animation: grow 40s linear infinite; */
    /* animation: grow 10s linear; */
}

main .mainpage .section_container .image {
    position: relative;
    opacity: 0;
    left: -50%;
    margin: 3% auto 0 auto;
    max-width: 399px;
    width: 50%;
    /* border: 1px solid rgb(255 255 255 / 0.2); */
}

main .mainpage .section_container .text,
main .mainpage1 .section_container .text,
main .mainpage2 .section_container .text {
    position: relative;
    top: -70px;
    width: 70%;
    margin: 0 auto;
    color: #f8f8f8;
    font-family: "grB";
    font-size: 1em;
    line-height: 1.4rem;
    word-break: keep-all;
    text-align: center;
}

main .mainpage2 .section_container .text {
    color: #272727;
}

@media screen and (max-width:650px) {
    main .mainpage .section_container .text,
    main .mainpage1 .section_container .text,
    main .mainpage2 .section_container .text {
        display: none;
    }
}

main .mainpage1 .section_container .image1 {
    position: relative;
    opacity: 1;
    left: 0;
    margin: 3% auto 0 auto;
    max-width: 399px;
    width: 50%;
}

main .mainpage2 .section_container .image2 {
    position: relative;
    opacity: 1;
    left: 0;
    margin: 3% auto 0 auto;
    max-width: 399px;
    width: 50%;
}

@media screen and (max-width:900px) {
    main .mainpage .section_container .image,
    main .mainpage1 .section_container .image1,
    main .mainpage1 .section_container .image2 {
        margin: 5% auto 0 auto;
    }  
}

@media screen and (max-width:790px) {
    main .mainpage .section_container .image,
    main .mainpage1 .section_container .image1,
    main .mainpage1 .section_container .image2 {
        margin: 7% auto 0 auto;
    }  
}

@media screen and (max-width:730px) {
    main .mainpage .section_container .image,
    main .mainpage1 .section_container .image1,
    main .mainpage1 .section_container .image2 {
        margin: 10% auto 0 auto;
    }  
}

@media screen and (max-width:650px) {
    main .mainpage .section_container .image,
    main .mainpage1 .section_container .image1,
    main .mainpage1 .section_container .image2 {
        margin: 21% auto 0 auto;
    }  
    main .mainpage .section_container .text,
    main .mainpage1 .section_container .text,
    main .mainpage2 .section_container .text {
        top: 10px;
        font-size: 0.75em;
      line-height: 1.5em;
    }
}

main .mainpage .section_container .image > img,
main .mainpage1 .section_container .image1 > img ,
main .mainpage2 .section_container .image2 > img {
    width: 100%;
    /* border: 1px solid rgb(255 255 255 / 0.2); */
}

/* main .mainpage .section_container .com_title {
    position: absolute;
    max-width: 399px;
    color: #bdbdbc;
    font-family: var(--timesnewroman-fonts);
    font-size: 100%;
    font-weight: bolder;
    left: 50%;
    top: 0;
    border: 1px solid red;
} */

main .mainpage .section_container .image::after,
main .mainpage1 .section_container .image1::after,
main .mainpage2 .section_container .image2::after {
    position: absolute;
    content: "A-STONE VENTURES";
    text-align: center;
    width: 100%;
    color: #bdbdbc;
    font-family: var(--timesnewroman-fonts);
    font-size: 160%;
    font-weight: bolder;
    left: 50%;
    transform: translate(-50%, 0);
    top: 76%;
}

@keyframes grow {
    0% {
        background-size: 100% auto;
    }

    50% {
        background-size: 110% auto;
    }

    100% {
        background-size: 100% auto;
    }
}

/* Mainpage contents end */

main .company {
    position: relative;
    word-break: keep-all;
    width: 100%;
    height: 100%;
    background: url("/upload/10/service/a/17_10/homepage/images/companypage_bg.jpg") no-repeat bottom right;
    background-size: cover;
    background-position-y: 0;    
}

main .company .section_container .com_de_img {
    text-align: center;
    margin: 20px auto;
    position: relative;
    opacity: 0;
    right: -40%;
}

main .company .section_container .com_de_img img {
    max-width: 400px;
    width: 40%;
}

main .section_container {
    text-align: left;
}

main .section_container .title {
    position: relative;
    opacity: 0;
    left: -30%;
    margin-top: 8%;
    width: 100%;
    color: #fff;
    font-family: var(--popins-fonts);
    font-size: 2em;
}

main .company .title {
    color: #364236;
}

main .section_container .description {
    position: relative;
    opacity: 0;
    left: -30%;
    margin-top: 2%;
    width: 100%;
    color: #fff;
    font-family: "grB";
    font-size: 1em;
    line-height: 1.2rem;
    font-weight: 400;
}

@media screen and (max-width:1280px) {
    main .section_container .title {
        width: 92%;
        margin-left: 4%;
    }  
    main .section_container .description {
        width: 92%;
        margin-left: 4%;
    } 
}

@media screen and (max-width:900px) {
    main .section_container .title {
        margin-top: 15%;
        font-size: 1.5em;
    }  
    main .section_container .description {
        font-size: 0.8em;
    } 
}

@media screen and (max-width:650px) {
    main .section_container .title {
        font-size: 1.2em;
    }  
    main .section_container .description {
        font-size: 0.7em;
        line-height: 1.2em;
    }
    main .company .section_container .com_de_img img {
        width: 60%;        
    }
}

main .history {
    position: relative;
    width: 100%;
    height: 100%;
    background: url("/upload/10/service/a/17_10/homepage/images/historypage_bg.jpg") no-repeat center center;
    background-size: cover;
    background-position-y: 0;
    /* animation: grow 40s linear infinite; */
    /* animation: grow 10s linear; */
}

main .history .title {
    color: #354439;
}

main .history ul {
    margin-top: 2%;
}

main .history ul li {
    color: #fff;
    font-family: "grB";
    font-size: 1.2em;
    line-height: 1.6em;
    list-style-type : square;
    margin-left: 25px;
}

main .history ul li span {
    font-weight: 600;
    margin-right: 15px;    
}

@media screen and (max-width:1280px) {
    main .history ul {
        margin: 4% 0 0 4%;
        width: 96%;
    }
}

@media screen and (max-width:650px) {
    main .history ul li {
        font-size: 0.9em;
    }

    main .history ul li span {
        display: block;  
    }

    main .history ul li {
        line-height: 1.1em;
        margin-top: 5px;
    }
}

main .member {
    position: relative;
    width: 100%;
    height: 100%;
    background: url("/upload/10/service/a/17_10/homepage/images/memberpage_bg.jpg") no-repeat center center;
    background-size: cover;
    background-position-y: 0;
    /* animation: grow 40s linear infinite; */
    /* animation: grow 10s linear; */
}

main .member .title {
    color: #4a1a01;
}

main .member ul.mebercard {
    margin-top: 3%;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

main .member ul.mebercard > li {
    position: relative;
    color: white;
    width: 19%;
    transition: all 0.4s ease;
}

main .member ul.mebercard > li:hover {
    width: 20%;  
    cursor: pointer;  
}

main .member ul.mebercard > li:not(:hover) {
    width: 19%;
}

main .member ul.mebercard > li .desc {
    position: absolute;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
    color: white;
    font-size: 0.9em;
    font-weight: 600;
    word-break: keep-all;
    opacity: 0;
    transition: all 0.4s ease;
    background-color: gray;
    min-height: 100%;
    padding: 5px;
}

main .member ul.mebercard > li .desc b span {
    color: #cdcfff;
}

main .member ul.mebercard > li .desc b span:first-child {
    display: block;
    font-size: 1.2em;
}

main .member ul.mebercard > li .desc b span:last-child {
    display: block;
}

main .member ul.mebercard > li .desc > ul li {
    position: relative;
    font-size: 1.0em;
    padding-left: 10px;
    margin-bottom: 3px;
}

main .member ul.mebercard > li .desc > ul li::before {
    position: absolute;
    content: "º";
    top: 2px;
    left: 0;
}

main .member ul.mebercard > li:hover .desc {
    opacity: 1;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
}

main .member ul.mebercard > li img {
    position: relative;
    opacity: 0;
    top: -300px;
    width: 95%;  
    transition: all 0.4s ease;  
}

main .member ul.mebercard > li img:hover {
    box-shadow: 0 3px 10px rgb(255 255 255 / 0.6);
}

main .member ul.mebercard > li:hover .memimg {
    position: relative;
}

main .member ul.mebercard > li:hover .memimg::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; 
    background-color: rgb(0 0 0 / 0.8);
}

/* main .member ul.mebercard li:hover .memimg::after {
    content: url("/images/memceoimg_over.jpg");
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; 
    background-color: rgb(0 0 0 / 0.4);
} */

main .member ul.mebercard > li .position {
    font-size: 0.9em;
    font-weight: 600;    
}

main .member ul.mebercard > li .name {
    font-size: 1.2em;
    font-weight: 600;
    float: right;
}

/* @media screen and (max-width:1000px) {
    main .member ul.mebercard li {
        width: 44%;
    }
    main .member ul.mebercard li:hover {
        width: 46%;
    }
    
    main .member ul.mebercard li:not(:hover) {
        width: 43%;
    }
} */

@media screen and (max-width:650px) {
    main .member ul.mebercard {
        margin-top: 0;
    }
    main .member ul.mebercard > li {
        width: 33%;
        margin-top: 20px;
    }
    main .member ul.mebercard > li:hover {
        width: 32%;
    }
    
    main .member ul.mebercard > li:not(:hover) {
        width: 32%;
    }
    main .member ul.mebercard > li  .position,
    main .member ul.mebercard > li  .name {
        font-size: 0.7em;
    }

    main .member ul.mebercard > li  .desc {
        font-size: 0.6em;
    }
}
main .portfolio {
    position: relative;
    width: 100%;
    height: 100%;
    background: url("/upload/10/service/a/17_10/homepage/images/portfoliopage_bg.jpg") no-repeat center center;
    background-size: cover;
    background-position-y: 0;
    /* animation: grow 40s linear infinite; */
    /* animation: grow 10s linear; */
}

main .portfolio .title {
    color: #544939;
}

main .portfolio ul.portfolioimgs {
    margin-top: 3%;
    flex-wrap: wrap;
    display: flex;
    #justify-content: space-around;
    align-items: flex-start;
}

main .portfolio ul.portfolioimgs li {
    position: relative;
    color: white;
    width: 25%;
    border-radius: 5px;
    background-color: #fff;
    height: 140px;
    margin: 2px;
    text-align: center;
    opacity: 0;
    top: -100px;  
    transition: all 0.4s ease;  
}

main .portfolio ul.portfolioimgs li > .desc1 {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translate(0, -50%);
    z-index: 2;
    color: #fff;
    font-size: 0.75em;
    font-weight: 500;
    opacity: 0;
    transition: all 0.4s ease;
} 

main .portfolio ul.portfolioimgs li:hover {
    width: 16%;  
    cursor: pointer;  
    box-shadow: 0 3px 10px rgb(255 255 255 / 0.8);
}

main .portfolio ul.portfolioimgs li:hover > .desc1 {
    opacity: 1;
    top: 50%; 
    left: 0;
    transform: translate(0, -50%);
}

main .portfolio ul.portfolioimgs li:hover > .desc1 > a {
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #fff;
}

main .portfolio ul.portfolioimgs li:hover > .desc1 > a > span {
    display: inline-block;
    width: 100%;
    min-height: 100%;
    line-height: 1.6em;
    background-color: gray;
}

main .portfolio ul.portfolioimgs li:not(:hover) {
    width: 16%;
}

main .portfolio ul.portfolioimgs li:hover::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; 
    border-radius: 5px;
    background-color: rgb(0 0 0 / 0.8);
    transition: all 0.4s ease;
}

main .portfolio ul.portfolioimgs li .desc {   
    top: 0;
    color: rgb(41, 41, 41);
    font-size: 1em;
    font-weight: 600;
}

main .portfolio ul.portfolioimgs li img {
    margin: 8% auto;  
    transition: all 0.4s ease;  
}

@media screen and (max-width:1000px) {
    main .portfolio ul.portfolioimgs li {
        width: 44%;
        height: 100px;
        margin-bottom: 2px;
    }
    main .portfolio ul.portfolioimgs li:hover {
        width: 24%;
    }
    
    main .portfolio ul.portfolioimgs li:not(:hover) {
        width: 24%;
    }
    main .portfolio ul.portfolioimgs li img {
        margin: 5% auto;   
    }
    main .portfolio ul.portfolioimgs li .desc {
        font-size: 0.8em;
    }
}

@media screen and (max-width:650px) {
    /* main .portfolio ul.portfolioimgs li {        
        height: 110px;
    } */

    main .portfolio ul.portfolioimgs li .position,
    main .portfolio ul.portfolioimgs li .name {
        font-size: 0.89em;
    }    
}

main .contact {
    position: relative;
    width: 100%;
    height: 100%;
    background: url("/upload/10/service/a/17_10/homepage/images/contactpage_bg.jpg") no-repeat center center;
    background-size: cover;
    background-position-y: 0;
    /* animation: grow 40s linear infinite; */
    /* animation: grow 10s linear; */
}

main .contact .title {
    color: #2f4c56;
}

main .contact iframe {
    width: 100%;
    height: 450px;
    border: 0;
    margin: 20px 0;
}

main .contact .description {
    width: 100%;
    margin: 20px 0;
    word-break: keep-all;
}

@media screen and (max-width:1280px) {
    main .contact iframe {
        width: 90%;
        height: 450px;
        border: 0;
        margin: 20px 5% 0 5%;
    }

    main .contact .description {
        width: 90%;
        margin: 20px 5%;
    }
}

@media screen and (max-width:650px) {
    main .contact iframe {
        height: 250px;
    }
}