@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Kanit", sans-serif;
    font-style: normal;
    list-style: none;
    text-decoration: none;
}

:root {
    --background-white--: #fff;
    --background-gray--: #AAAAAA;
    --color-text-white--: #fff;
    --blue-main--: #2C74B3;
    --light-gray--: #F1EFEC;
    --black-blue--: #18459b;
}

/* ===============NAV================= */
.navigation {
    position: sticky;
    top: 0;
    margin: auto;
    width: 100%;
    height: 80px;
    background-color: var(--background-white--);
    z-index: 999;
    align-content: center;
}

.container_nav {
    margin: auto;
    width: 90%;
    height: 80px;
    background-color: var(--background-white--);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
}

.container_logo {
    padding-top: 10px;
    height: 100%;
    align-content: center;
    align-items: center;
}

#check {
    display: none;
}

#menu {
    display: flex;
}

.menu_list {
    display: flex;
}

.list a {
    padding: 0 10px;
    font-size: 1rem;
    text-align: center;
}

.menu_list a {
    position: relative;
    text-decoration: none;
    color: #000;
    padding: 0 10px;
}

.menu_list a:after {
    content: "";
    position: absolute;
    background-color: var(--blue-main--);
    height: 3px;
    width: 0;
    left: 0;
    bottom: -10px;
    transition: 0.3s;
}

.menu_list a:hover:after {
    width: 100%;
}

.list a,
.menu li {
    color: #000;
    text-decoration: none;
    list-style: none;
}

.dropdown_content_ourwork {
    display: none;
    position: absolute;
    padding: 20px 0px;
    transition: .4s ease;
}

.dropdown_content_ourwork ul li {
    padding: 10px 25px;
    background: var(--background-white--);
}

.dropdown_content_ourwork ul li:hover {
    background: var(--background-gray--);
    transition: .3s;
}

.dropdown:hover .dropdown_content_ourwork {
    display: block;
}

.dropdown1:hover .dropdown_content_ourwork {
    display: block;
}

.hamberger {
    position: absolute;
    display: none;
    right: 5%;
    font-size: 1.25rem;
    cursor: pointer;
}

.hamberger i {
    color: #000;
    text-decoration: none;
    list-style: none;
}

#close-auto {
    display: none;
}

#close-auto~#menu {
    display: none;
}

@media screen and (max-width:768px) {
    .hamberger {
        display: inline-flex;
    }

    #check:checked~#menu {
        display: block;
    }

    #menu {
        display: none;
        position: absolute;
        padding: 0 5%;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--background-white--);
    }

    .menu_list {
        display: block;
        flex-direction: column;
    }

    .list {
        width: 100%;
        font-size: 1.1rem;
        margin: 1.75rem 0;
    }

    .dropdown:hover .dropdown_content_ourwork {
        display: inline-flex;
    }

    .container_logo img {
        width: 180px;
    }
}

@media screen and (max-width:365px) {
    .container_logo img {
        width: 160px;
    }
}

/* ==============NAV================ */





/* ========GALLERY AREA =========== */
.content_container1 {
    width: 100%;
    /* height: 99vh; */
    background: var(--light-gray--);
    text-align: center;
    align-content: center;
    padding: 10px;
    overflow: hidden;
}

.content_head{
    display: block;
}
.head_content{
    font-size: 3.25rem;
}
.num3{
    color: var(--blue-main--);
    font-size: 3.35rem;
}
#menu_list button{
    border: none;
    font-size: 16px;
}
.list_btn{
    margin: 10px;
}
.column_product {
    max-width: 1300px;
    margin: auto;
}
.container_image {
    float: left;
    display: none;
    position: relative;
    width: 33.33%;
}
.image {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    padding: 10px;
}
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background: black;
}
.container_image:hover .overlay {
    opacity: .4;
    transition: .5s;
}
.container_image:hover .text {
    opacity: 1;
    transition: .5s;
}
.text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: .5s;
}
.btn-View_all{
    width: 100%;
    background: var(--light-gray--);
    text-align: center;
    align-content: center;
    padding: 20px;
}
.btn_other_product{
    bottom: 0;
    background: var(--background-gray--);
    padding: 7px 17px;
    font-size: .9rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
.btn_other_product p {
    text-decoration: none;
    font-weight: 500;
    color: var(--color-text-white--);
    transition: .7s;
}
.btn_other_product p:hover {
    color: #000;
    transition: .5s;
}
.show {
  display: block;
}
.list_btn:hover{
    color: var(--blue-main--);
}
.list_active{
    color: #2C74B3;
}
@media (max-width:1024px){
    .container_image {
        width: 50%;
    }
}
@media (max-width:600px){
    .container_image {
        width: 100%;
    }
}
/* ========GALLERY AREA =========== */





/* ========FOOTER AREA =========== */
footer{
    position: relative;
    width: 100%;
    height: auto;
    color: #001219;
    padding: 20px 40px;
}
.container-footer{
    width: 80%;
    margin: 0 auto;
    padding: 20px 40px;
    display: grid;
    background: #fff;
    grid-template-columns: 2fr 1fr 1fr 1fr ;
    grid-gap: 20px;
}
.sec h2{
    position: relative;
    color: var(--black-blue--);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 15px;
}
.sec p{
    color: #001219;
    font-size: .85rem;
    font-weight: 300;
}
.sci{
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4,50px);
}
.sci li a {
    display: inline-block;
    width: 26px;
    height: 26px;
    border-radius: 5px;
    background: var(--blue-main--);
    display: grid;
    align-content: center;
    justify-content: center;
}
.sci li a i {
    color: #fff;
    font-size: 1rem;
}
.quicklink i {
    font-size: 1rem;
    padding-right: 10px;
}
.quicklink a {
    color: #555;
    font-size: .85rem;
}
.copyrightText{
    width: 80%;
    color: #c0bebe;
    background: #fff;
    margin: 0 auto;
    text-align: center;
}
.title_about_footer{
    text-indent: 2em;
}
.info_foot i {
    color: var(--blue-main--);
}
@media (max-width:991px){
    footer{
        padding: 40px;
    }
    footer .container-footer{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 20px;
    }
    .copyrightText{
        width: 100%;
    }
}
@media (max-width:768px){
    footer .container-footer{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1,1fr);
        grid-gap: 20px;
    }
}
/* ========FOOTER AREA =========== */