@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100;300;400;500;700;900&display=swap');

* { scroll-behavior: smooth; }
:root {
    --base-font-size: 30px;
    --base-font: "Kanit", sans-serif;
    --red: #FF0000;
    --dirty-white: #F7FBFF;
    --gray: #7188A4;
    --solid-gray: #A9A9A9;
    --light-green: #eef9f9;
    --green: #37827e;
    --black: #141517;
    --white: #fff;
    --bg-gray: #f6fbff;
    --border-radius: 20px;
    --theme-bg-color: #f8f7fa;
    --theme-bg-color-second: #43a5f5;
    --theme-bg-color-third: #071a2b;
    --theme-font-color: rgba(211,227,253,0.9);
    --theme-font-color-blue: #335a98;
    --theme-font-color-green: #b3d4fc;
    --animate-duration: 800ms;
    --animate-delay: 0.9s;
}
html {}
body {
    font-family: var(--base-font);
    font-weight: normal;
    font-style: normal;
    font-optical-sizing: auto;
    line-height: 1.5rem;
    color: var(--black);
    background-color: var(--white);
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: calc(16px + (26 - 16) * ((100vw - 300px) / (1600 - 300)));
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust:100%;
    -ms-text-size-adjust:100%;
    scroll-behavior: smooth;
}
::-moz-selection {
    background-color: var(--theme-bg-color-second);
    text-shadow: none;
}
::selection {
    background-color: var(--theme-bg-color-second);
    text-shadow: none;
}
/*Global*/
p{ line-height: 1.4; }
a{ color: var(--gray); text-decoration: none; transition: 0.5s; position: relative; }
a:hover{ color: var(--black); }
a.link-effect::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--black);
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
a.link-effect:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}
.light-link-effect{
    font-size: 12px;
    color: var(--theme-bg-color-second);
    font-weight: normal;
    border: solid 1px var(--theme-bg-color-second);
    border-radius: 8px;
    padding: 3px 6px 3px 6px;
    transition: background-color 1000ms linear;
}
.light-link-effect:hover{
    background-color: var(--theme-font-color-blue);
    color: var(--theme-font-color);
}
.btn-circle{
    width: 33px;
    height: 33px;
    background-color: var(--dirty-white);
    -webkit-mask:  url("../img/arrow-circle-right.svg") no-repeat 50% 50%;
    mask: url("../img/arrow-circle-right.svg") no-repeat 50% 50%;
}
a.btn-white{
    text-align: left;
    padding: 5px 16px 5px 16px;
    border: #efefef solid 3px;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    color: #efefef;
    text-decoration: none;
    background: linear-gradient(to left, transparent 50%, white 50%) right;
    background-size: 200%;
    transition: .3s ease-out;
    font-weight: bold;
    font-size: 0.8rem;
}
a.btn-white span:after {
    content: ' \003E';
    font-weight: bold;
    float: right;
    margin-left: 20px;
    margin-top: 1px;
}
a.btn-white:hover {
    color: #0153F9;
    background-position: left;
}
a.btn-light-blue{
    text-align: left;
    font-size: 1rem;
    min-width: 150px;
    font-weight: bold;
    padding: 7px 12px 7px 12px;
    border: var(--theme-bg-color-second) solid 3px;
    border-radius: 20px 20px 20px 20px;
    -moz-border-radius: 20px 20px 20px 20px;
    -webkit-border-radius: 20px 20px 20px 20px;
    color: var(--theme-bg-color-second);
    text-decoration: none;
    background: linear-gradient(to left, transparent 50%, var(--theme-bg-color-second) 50%) right;
    background-size: 200%;
    transition: .3s ease-out;
    margin-left: 4px;
}
a.btn-light-blue span:after {
    content: ' \003E';
    font-weight: bold;
    float: right;
}
a.btn-light-blue:hover {
    color: #fff;
    background-position: left;
}
a.btn-gray{
    text-align: center;
    font-size: 1rem;
    min-width: 150px;
    font-weight: bold;
    padding: 7px 20px 7px 20px;
    border: var(--gray) solid 2px;
    border-radius: 20px 20px 20px 20px;
    -moz-border-radius: 20px 20px 20px 20px;
    -webkit-border-radius: 20px 20px 20px 20px;
    color: var(--gray);
    text-decoration: none;
    background: linear-gradient(to left, transparent 50%, var(--gray) 50%) right;
    background-size: 200%;
    transition: .3s ease-out;
    margin-left: 4px;
    top: -2px;
}
a.btn-gray span:after {
    content: ' \003E';
    font-weight: bold;
    float: right;
}
a.btn-gray:hover {
    color: #fff;
    background-position: left;
}
a.btn-black{
    text-align: center;
    font-size: 1rem;
    min-width: 150px;
    font-weight: bold;
    padding: 7px 20px 7px 20px;
    border: var(--black) solid 2px;
    border-radius: 20px 20px 20px 20px;
    -moz-border-radius: 20px 20px 20px 20px;
    -webkit-border-radius: 20px 20px 20px 20px;
    color: var(--black);
    text-decoration: none;
    background: linear-gradient(to left, transparent 50%, var(--black) 50%) right;
    background-size: 200%;
    transition: .3s ease-out;
    margin-left: 4px;
    top: -2px;
}
a.btn-black span:after {
    content: ' \003E';
    font-weight: bold;
    float: right;
}
a.btn-black:hover {
    color: #fff;
    background-position: left;
}
.bg-gradient{
    background: rgb(2,0,36);
}
img.black{
    -webkit-filter: saturate(0%) grayscale(100%) brightness(69%) contrast(1000%);
}
.margin-reset{ padding: 0; margin: 0; }
.full-height-pages{ height: 100dvh; }
.none{ display: none !important; }
.radius-20px{ border-radius: 20px; }
.color1 {background-color: #12192e;}
.color2 {background-color: #123e5a;}
.color3 {background-color: #156d8e;}
.color4 {background-color: #61a3d9;}
.color5 {background-color: #20dad8;}
/*Global*/

.all-div{
    background-color: var(--bg-gray);
    border-radius: 40px;
    margin-top: 40px;
    padding-bottom: 40px !important;
}
header{
    width: 100%;
    padding: 40px;
}
header .container .row{
    align-items: center;
}
header .logo{
    width: 70px;
}
header nav{
    display: flex;
    align-content: center;
    height: 100%;
    justify-content: flex-end;
    flex-direction: column;
}
header nav ul{
    display: flex;
    flex-wrap: nowrap;
    margin: 0;
    justify-content: flex-end;
    align-items: center;
}
header nav ul:first-child li{
    margin: 0 0 8px 6px;
}
header nav ul li{
    list-style: none;
    margin: 0 18px;
    display: inline-block;
    position: relative;
    text-wrap: nowrap;
}
header nav ul li{
    margin-right: 0;
}
header nav ul.main-menu{
    margin-top: 9px;
}
header nav ul.main-menu li:last-child{
    margin-left: 10%;
    margin-right: 36px;
}
header nav ul li a{
    font-size: 1.1rem;
    color: var(--black);
    font-weight: bold;
    text-transform: uppercase;
}
.arrow-circle-right:after{
    content: '';
    position: absolute;
    background-image: url("../img/arrow-circle-right.svg");
    width: 33px;
    height: 33px;
    margin-left: 6px;
    margin-top: -1px;
}

/*Dropdown Menu*/
header nav ul.main-menu li{
    position: relative;
    z-index: 100;
}
header nav ul.main-menu li.dropdown-active{
    z-index: 200;
}
header .primary-menu .dropdown-block{
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 10px;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
header .primary-menu .main-menu li.dropdown-active > .dropdown-block{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
header .primary-menu .dropdown-block .dropdown{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    background-color: var(--bg-gray);
    padding: 30px 20px 10px 20px;
    border-radius: 10px;
    transform: translate(-30%, 4%);
    z-index: 201;
    box-shadow: rgba(99, 99, 99, 0.3) 0px 4px 12px 0px;
}
header .primary-menu .dropdown-block .dropdown ul{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: nowrap;
    margin: 0 0 10px 0;
    padding: 0;
    flex-wrap: nowrap;
}
header .primary-menu .dropdown-block .dropdown ul li{
    margin: 0;
    padding: 0;
}
header .primary-menu .dropdown-block .dropdown ul li a{
    color: var(--gray);
    font-size: 1rem;
    font-weight: normal;
    border-bottom: solid 1px var(--gray);
    text-transform: unset;
    transition: color 0.2s ease;
}
header .primary-menu .dropdown-block .dropdown ul li > ul li a{
    border-bottom: none;
}
header .primary-menu .dropdown-block .dropdown ul li > ul li a:hover{
    border-bottom: solid 1px var(--gray);
    color: var(--black);
}
/* Activities dropdown specific styling */
header .primary-menu .dropdown-block .dropdown.dropdown-activities{
    top: 12px;
}
/*Dropdown Menu*/

/*Mobile Menu*/
.primary-menu label{
    display: none;
    flex-direction:column;
    width:70px;
    cursor:pointer;
    align-items: flex-end;
    z-index: 100;
}
.primary-menu label span{
    background: var(--theme-bg-color-second);
    border-radius:10px;
    height: 4px;
    margin: 5px 0;
    transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.primary-menu label span:nth-of-type(1){
    width:40%;
}
.primary-menu label span:nth-of-type(2){
    width:80%;
}
.primary-menu label span:nth-of-type(3){
    width:55%;
}
.primary-menu label input[type="checkbox"]{
    display:none;
}
.primary-menu label input[type="checkbox"]:checked ~ span:nth-of-type(1){
    transform-origin:bottom;
    transform: rotatez(45deg) translate(-13px, 18px);
}
.primary-menu label input[type="checkbox"]:checked ~ span:nth-of-type(2){
    transform-origin:top;
    transform:rotatez(-45deg);
}
.primary-menu label input[type="checkbox"]:checked ~ span:nth-of-type(3){
    transform-origin:bottom;
    width:50%;
    transform: translate(0px,-5px) rotatez(45deg);
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(6, 35, 60, 0.9);
    backdrop-filter: blur(5px);
    padding: 20px;
    transition: transform 0.3s ease-in-out;
    z-index: 98;
    transform: translateX(0);
}
.mobile-menu ul{
    width: 90%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0;
}
.mobile-menu ul li{
    margin-bottom: 22px;
    list-style: none;
}
.mobile-menu ul li a{
    font-size: 28px;
    font-weight: bold;
    text-decoration: underline;
}
.mobile-menu ul li:last-child{
    margin-top: 40px;
}
.mobile-menu ul li:last-child a{
    font-size: 18px;
    text-decoration: none;
}
.mobile-menu label{
    display: none !important;
}
.mobile-menu .link-effect{
    color: var(--theme-bg-color-second);
}
/*Mobile Menu*/

/*Hero Text*/
section.hero-text{
    display: flex;
    flex-direction: row;
    padding: 0 40px 0 40px;
    justify-content: space-between;
}
section.hero-text .btn-light-blue{
    font-size: 0.8rem;
    padding: 4px 9px 4px 9px;
    margin-top: 26px;
    left: -14px;
}
section.hero-text h1{
    width: 55%;
    font-size: 34px;
    font-weight: bold;
    line-height: 52px;
}
section.hero-text h2{
    width: 35%;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    padding-top: 26px;
}
section.hero-text h2:before{
    content: "";
    position: absolute;
    width: 10%;
    border: solid 1px var(--gray);
    margin-top: -10px;
}
/*Hero Text*/

/*Slider*/
section.slider{
    height: 60vh;
    margin-top: 40px;
    position: relative;
}
section.slider .images{
    height: 60vh;
    display: flex;
    flex-direction: row;
}
section.slider .left{
    width: 38%;
    margin-right: 2%;
    background-size: cover;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
section.slider .right{
    width: 60%;
    background-size: cover;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
section.slider .text-blocks{
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 60vh;
    align-items: center;
    justify-content: flex-end;
    right: 5%;
    gap: 20px;
}
section.slider .text-blocks .text-block{
    width: 40%;
    padding: 30px;
    border-radius: 10px;
    color: var(--dirty-white);
    transition: background-color 1000ms linear;
    transition: transform .2s;
    cursor: pointer;
}
section.slider .text-blocks .text-block:hover{
    transform: scale(1.03);
}
section.slider .text-blocks .text-block:nth-child(1):hover{
    color: var(--theme-bg-color-second);
    background-color: var(--bg-gray);
}
section.slider .text-blocks .text-block:nth-child(1):hover .btn-circle{
    background-color: var(--theme-bg-color-second);
}
section.slider .text-blocks .text-block:nth-child(2){
    width: 30%;
    color: var(--theme-bg-color-second);
    background-color: var(--bg-gray);
}
section.slider .text-blocks .text-block:nth-child(2) .btn-circle{
    background-color: var(--theme-bg-color-second);
}
section.slider .text-blocks .text-block:nth-child(2):hover{
    color: var(--bg-gray);
    background-color: var(--theme-bg-color-second);
}
section.slider .text-blocks .text-block:nth-child(2):hover .btn-circle{
    background-color: var(--bg-gray);
}
section.slider .text-blocks .text-block .title h2{
    font-size: 1.6rem;
    font-weight: 900;
}
section.slider .text-blocks .text-block p{
    font-size: 1rem;
    font-weight: 300;
}
/*Slider*/

/*Services*/
section.services-block .heading-block{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 40px;
}
section.services-block .heading-block .heading, section.services-block .heading-block .button-group{
    width: 50%;
}
section.services-block .heading-block .button-group{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    top: -10px;
}
section.services-block .heading-block .button-group a.btn-light-blue{
    min-width: 170px;
    padding: 7px 15px 7px 15px;
    margin-right: 10px;
}
section.services-block .heading-block .button-group a.btn-light-blue span:after {
    content: '\2197';
}
section.services-block .heading-block .heading h2{
    font-weight: 800;
    font-size: 1rem;
    color: var(--theme-bg-color-second);
}
section.services-block .heading-block .heading p{
    width: 75%;
    font-weight: 600;
    font-size: 2.4rem;
    margin-bottom: 0;
}
section.services-block .list-block{
    position: relative;
    overflow: hidden;
}
section.services-block .list-block .tags{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 40px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
section.services-block .list-block .tags .owl-item{
    width: auto !important;
}
section.services-block .list-block .tags .tag{
    border: solid 2px #4f4f4f;
    border-radius: var(--border-radius);
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1.5rem;
    padding: 1rem 1rem 1rem 50px;
    cursor: pointer;
    box-shadow: rgba(16,24,41,.08) 0 0 0 0;
    transition: box-shadow ease .2s;
    margin-bottom: 20px;
    margin-top: 10px;
}
section.services-block .list-block .tags .tag:hover{
    box-shadow: rgba(16,24,41,.3) 0 4px 17px -4px;
    background-color: var(--bg-gray);
}
section.services-block .list-block .tags .tag:before{
    content: "";
    position: absolute;
    width: 34px;
    height: 34px;
    background-image: url("../img/list-item.svg");
    top: 24px;
    left: 12px;
}
section.services-block .list-block .left, section.services-block .list-block .right {
    position: absolute;
    width: 100px !important;
    height: 100px !important;
    z-index: 99;
    top: -15px;
}
section.services-block .list-block .left{
    left: 40px;
    background: linear-gradient(270deg, #E8E8E800, var(--bg-gray));
    top: -28px;
}
section.services-block .list-block .right{
    right: 0;
    background: linear-gradient(90deg, #E8E8E800, var(--bg-gray));
}
section.services-block .list-block .tags .tag a{
    color: #4f4f4f;
}
/*Services*/

/*Projects*/
section.projects-block{
    padding: 40px;
    background-image: linear-gradient(to bottom, var(--theme-bg-color-second) 70%, rgba(0,0,0,0) 55%);
    color: var(--white);
}
section.projects-block .heading-block{
    display: flex;
    margin-bottom: 80px;
}
section.projects-block .left{
    display: flex;
    flex-direction: column;
}
section.projects-block .left p{
    width: 100%;
    font-weight: 600;
    font-size: 2.4rem;
    margin-bottom: 0;
}
section.projects-block .left h2{
    font-weight: 800;
    font-size: 1rem;
    margin-top: 10px;
}
section.projects-block .right{
    display: flex;
    justify-content: flex-end;
}
section.projects-block .right p{
    width: 50%;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 20px;
}
section.projects-block .images{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}
section.projects-block .images:not(.owl-carousel){
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
}
section.projects-block .images .image{
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
section.projects-block .images .image:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--theme-bg-color-third);
    top: 0;
    left: 0;
    opacity: .6;
    border-radius: var(--border-radius);
    transition: opacity ease .2s;
    z-index: 1;
}
section.projects-block .images .image:hover:before{
    opacity: .3;
}
section.projects-block .images .image .content{
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}
section.projects-block .images .image .content:before{
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    width: 52px;
    height: 52px;
    right: 40px;
    top: 30px;
    background-color: var(--white);
    -webkit-mask: url("../img/arrow-circle-right.svg") no-repeat 50% 50%;
    mask: url("../img/arrow-circle-right.svg") no-repeat 50% 50%;
    transition: transform ease .2s;
}
section.projects-block .images .image:hover .content:before{
    transform: rotate(-20deg);
}
section.projects-block .images .image .content, section.projects-block .images .image .content a{
    color: var(--white);
}
section.projects-block .images .image .content a{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
}
section.projects-block .images .image .content .title{
    font-size: 2rem;
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 2rem;
}
section.projects-block .images .image .content .bottom{
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    font-size: 1rem;
}
section.projects-block .owl-nav{
    position: absolute;
    right: 0;
    top: -60px;
}
section.projects-block .owl-carousel .owl-nav button.owl-prev{
    margin-right: 10px;
    padding: 4px 20px 8px 20px !important;
    border: solid 2px var(--white);
    border-radius: var(--border-radius);
    transition: background-color ease .2s;
}
section.projects-block .owl-carousel .owl-nav button.owl-next{
    padding: 4px 20px 8px 20px !important;
    border: solid 2px var(--white);
    border-radius: var(--border-radius);
    transition: background-color ease .2s;
}
section.projects-block .owl-carousel .owl-nav button.owl-prev:hover, section.projects-block .owl-carousel .owl-nav button.owl-next:hover{
    background-color: var(--white);
    color: var(--theme-font-color-blue);
}
/*Projects*/

/*News*/
section.news-block{
    padding: 0 40px 40px 40px;
}
section.news-block .heading-block{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
section.news-block .heading-block .button-group{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    top: -10px;
}
section.news-block .heading-block .button-group a.btn-gray{
    margin-top: 30px;
}
section.news-block .heading-block .heading{
    width: 70%;
}
section.news-block .heading-block .heading h2{
    font-weight: 800;
    font-size: 1rem;
    color: var(--theme-bg-color-second);
}
section.news-block .heading-block .heading p{
    width: 75%;
    font-weight: 600;
    font-size: 2.4rem;
    margin-bottom: 0;
}
section.news-block .news-list{
    width: 100%;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.news-block .news-list .news{
    width: 90%;
    display: flex;
    padding: 10px;
    margin: 10px auto 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: rgba(16, 24, 41, .08) 0 0 0 0;
    transition: box-shadow ease .4s;
}
section.news-block .news-list .news:hover{
    box-shadow: rgba(16, 24, 41, .3) 0 4px 17px -4px;
}
section.news-block .news-list .news .content{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0 20px 46px;
    align-items: center;
}
section.news-block .news-list .news .content h3{
    font-weight: normal;
    font-size: 2rem;
}
section.news-block .news-list .news img{
    width: 40%;
    border-radius: var(--border-radius);
}
section.news-block .news-list .owl-nav {
    width: 98%;
    display: flex;
    justify-content: space-between;
    position: absolute;
}
section.news-block .news-list .owl-nav button.owl-prev span, section.news-block .news-list .owl-nav button.owl-next span {
    color: var(--theme-bg-color-second);
    font-size: 68px;
    border-radius: var(--border-radius);
}
section.news-block .news-list .owl-nav button.owl-prev.disabled span, section.news-block .news-list .owl-nav button.owl-next.disabled span {
    color: var(--solid-gray);
    opacity: 0.3;
}
/*News*/

/*Gallery*/
section.gallery-block{
    padding-bottom: 60px;
}
section.gallery-block .heading-block{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px 40px 40px;
}
section.gallery-block .heading-block .button-group{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    top: -10px;
}
section.gallery-block .heading-block .button-group a.btn-gray{
    margin-top: 30px;
}
section.gallery-block .heading-block .heading{
    width: 70%;
}
section.gallery-block .heading-block .heading h2{
    font-weight: 800;
    font-size: 1rem;
    color: var(--theme-bg-color-second);
}
section.gallery-block .heading-block .heading p{
    width: 50%;
    font-weight: 600;
    font-size: 2.4rem;
    margin-bottom: 0;
}
section.gallery-block .list-block {
    position: relative;
    overflow: hidden;
}
section.gallery-block .list-block .left {
    position: absolute;
    background: linear-gradient(270deg, #E8E8E800, var(--bg-gray));
    width: 20%;
    height: 78%;
    z-index: 99;
    top: 0;
    left: 0;
}
section.gallery-block .list-block .right {
    position: absolute;
    background: linear-gradient(90deg, #E8E8E800, var(--bg-gray));
    width: 20%;
    height: 78%;
    z-index: 99;
    top: 0;
    right: 0;
}
section.gallery-block .list-block .gallery img {
    border-radius: 4px;
    aspect-ratio: 3 / 2;
}
section.gallery-block .list-block .gallery .content {
    opacity: 0.1;
    text-shadow: 0 0 2px var(--black);
    color: transparent;
    width: 70%;
    margin: 40px auto 50px;
}
section.gallery-block .list-block .owl-item.active.center .gallery .content {
    opacity: 1;
    color: var(--black);
    text-shadow: none;
}
section.gallery-block .list-block .gallery .content h4 {
    font-size: 1.6rem;
    text-align: center;
}
section.gallery-block .list-block .owl-carousel .owl-nav {
    position: absolute;
    bottom: 67px;
    z-index: 99;
    width: 80%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 50%;
    transform: translate(-50%, -50%);

}
section.gallery-block .list-block .owl-carousel .owl-nav button{
    z-index: 99;
    font-size: 82px;
    color: var(--theme-bg-color-second);
}
/*Gallery*/



/*Footer*/
footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0 5px 0;
}
footer .logo{
    width: 80px;
}
footer nav{
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer nav ul{
    display: flex;
    flex-direction: row;
    margin: 10px 0 10px 0;
    padding: 0;
}
footer nav ul.footer-menu{
    gap: 35px;
}
footer nav ul li{
    list-style: none;
    margin-right: 5px;
}
footer nav ul li a{
    color: var(--theme-bg-color-second);
    font-size: 1.1rem;
    font-weight: 700;
}
footer address{
    font-size: 1rem;
    color: var(--gray);
    text-align: center;
}

footer .copyright{
    font-size: 0.8rem;
    color: var(--solid-gray);
}
/*Footer*/