@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================ */





.content_container1 {
    width: 100%;
    background: var(--light-gray--);
    text-align: center;
    align-content: center;
    padding: 20px 0;
}
.head_content{
    font-size: 2.75rem;
    color: #001219;
}
.head_content span {
    color: var(--blue-main--);
}
.preview-box{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  max-width: 900px;
  width: 100%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  padding: 0 5px 5px 5px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
  overflow: hidden;
}
.preview-box.show{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
}
.preview-box .details{
  display: flex;
  align-items: center;
  padding: 12px 15px 12px 10px;
  justify-content: space-between;
}
.preview-box .details .title{
  display: flex;
  font-size: 18px;
  font-weight: 400;
}
.details .title p{
  margin: 0 5px;
}
.details .title p.current-img{
  font-weight: 500;
}
.details .icon{
  color: #007bff;
  font-size: 20px;
  cursor: pointer;
}
.preview-box .image-box{
  display: flex;
  width: 100%;
  position: relative;
}
.image-box .slide{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  height: 50px;
  width: 60px;
  line-height: 50px;
  text-align: center;
  border-radius: 3px;
}
.slide.prev{
  left: 0px;
}
.slide.next{
  right: 0px;
}
.image-box img{
  width: 100%;
  border-radius: 0 0 3px 3px;
}
.shadow{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: none;
  backdrop-filter: blur(5px);
  background: rgba(0,0,0,0.45);
}
.image-box i{
    font-size: 3rem;
}
@media (max-width:400px){
    .head_content{
        font-size: 1.75rem;
    }
}
/* ========= CONTENT 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 =========== */