@font-face {
    font-family: 'FiraGO';
    src: url('../fonts/FiraGO/FiraGO-Regular.eot');
    src: url('../fonts/FiraGO/FiraGO-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/FiraGO/FiraGO-Regular.woff2') format('woff2'),
    url('../fonts/FiraGO/FiraGO-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FiraGO';
    src: url('../fonts/FiraGO/FiraGO-Medium.eot');
    src: url('../fonts/FiraGO/FiraGO-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/FiraGO/FiraGO-Medium.woff2') format('woff2'),
    url('../fonts/FiraGO/FiraGO-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'FiraGO';
    src: url('../fonts/FiraGO/FiraGO-MediumItalic.eot');
    src: url('../fonts/FiraGO/FiraGO-MediumItalic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/FiraGO/FiraGO-MediumItalic.woff2') format('woff2'),
    url('../fonts/FiraGO/FiraGO-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'FiraGO';
    src: url('../fonts/FiraGO/FiraGO-Bold.eot');
    src: url('../fonts/FiraGO/FiraGO-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/FiraGO/FiraGO-Bold.woff2') format('woff2'),
    url('../fonts/FiraGO/FiraGO-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}


body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    font-family: 'FiraGO', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    background-color: #fff;
    padding-top: 80px;
}
  
a {
    transition: color 0.3s;
    color: #0080cb;
}


a:hover { 
    color: #0080cb;
}

:focus {
    outline: none !important;
    box-shadow: none !important;
}

.container {
    max-width: 1250px;
}

.main-head {
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

/* Valdema */
.logo img {
    height: 40px;
    /* filter: brightness(0); */
    /* opacity: .8; */
}

.footer-section .logo img {
    height: 40px;
    filter: brightness(11);
    opacity: .5;
}

.header-section {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1002;
    transition: all 0.3s ease;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-flag {
    width: 22px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

ul.main-nav .dropdown2.dropdown-lang ul {
    min-width: 140px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
}

ul.main-nav .dropdown2.dropdown-lang ul li {
    width: 100%;
}

ul.main-nav .dropdown2.dropdown-lang ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    border: none;
    transition: all 0.2s ease;
}

ul.main-nav .dropdown2.dropdown-lang ul li a:hover {
    background: #f0f7ff;
    color: #0080cb;
    transform: translateX(4px);
}

ul.main-nav li.lang-drop > a span:before {
    margin-top: 0px;
}

.header-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.main-nav {
    list-style: none;
    display: flex;
    padding: 0;
    margin-bottom: 0;
    position: static;
    gap: 15px;
    align-items: center;
}


.main-nav li   {
    margin: 0;
    position: relative;
}


.main-nav li a { 
    font-size: 15px;
    font-weight: 500;
    font-feature-settings: "case" on;
    color: #4d4d4d;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    padding: 8px 4px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}
 
.main-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #0080cb;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-nav li.active > a,
.main-nav li > a:hover {
    color: #0080cb;
}

.main-nav li:not(.lang-drop).active > a::after,
.main-nav li:not(.lang-drop) > a:hover::after {
    width: 100%;
}

ul.main-nav li.drop > a span:before {
    content: '';
    display: block;
    height: 6px;
    width: 6px;
    border-right: 1.5px solid #0080cb !important;
    border-bottom: 1.5px solid #0080cb !important;
    transform: rotate(45deg);
    margin-left: 6px;
    margin-top: -4px;
    order: 2;
    transition: transform 0.3s ease;
}

ul.main-nav li.drop:hover > a span:before {
    transform: rotate(225deg);
    margin-top: 2px;
}

.main-nav li a span {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
 
 
.main-nav li > a .active-arrow {
    display: none !important;
}

ul.main-nav .dropdown2 {
     display: none;
     z-index: 9999;
     position: absolute;
     top: 0;
     margin-top: 24px;
     left: 0;
     width: auto;
}

ul.main-nav .dropdown2 ul {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    list-style: none;
    padding: 20px 15px;
    min-width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 10px;
    min-height: unset;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
}

ul.main-nav .dropdown2 ul li {
    width: 100%;
    position: relative;
}

ul.main-nav .dropdown2 ul li a {
    text-align: left;
    background: transparent;
    color: #464646;
    padding: 12px 10px;
    border-radius: 8px;
    width: 100%;
    display: block; 
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    text-transform: unset;
    border-bottom: 1px solid #ececec;
    margin-bottom: 2px;
    font-feature-settings: unset !important;
    transition: all 0.2s ease;
}

ul.main-nav .dropdown2 ul li a:hover {
    background: #f0f7ff;
    color: #0080cb;
    transform: translateX(4px);
    border-bottom-color: transparent;
}

ul.main-nav .dropdown2 ul li:last-child a {
    border-bottom: none; 
}


.btn {
    border: 1px solid transparent;
    border-radius: 5px;
    font-weight: 500;
    min-width: 120px;
    font-size: 15px;
    padding: 4px 14px;
    transition: all 0.3s ease ;

}
 
.btn:active {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
}

.btn-auth {
    font-feature-settings: "case" on;
    color: #fff;
    background-color: #0080cb;
    border-color: #0080cb;
}
 
.btn-auth:hover {
    color: #fff;
    background-color: #0080cb;
    border-color: #0080cb;
}

.btn-outline-auth {
    font-feature-settings: "case" on;
    color: #0080cb;
    border-color: #fdf1f1;
    border-width: 2px;
    /* background: #0080cb1c; */
}

.btn-outline-auth:hover { 
    color: #0080cb;
    border-color: #0080cb;
}
 

section.slide {
    padding-top: 29px;
    padding-bottom: 40px;
}

#main-slide {
    height: 500px;
    z-index: 3;
}

#main-slide .item {
    margin: 0;
    height: 500px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

#main-slide .item a {
    text-decoration: none;
}

#main-slide .item .slide-bg {
    position: absolute;
    padding: 51px 32px;
    border: 0;
    left: 0;
    bottom: 0;
    max-width: 500px;
    border-radius: 10px;
}

#main-slide .item a {
    display: block;
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;

}

#main-slide .item .slide-bg:after {
    content: '';
    position: absolute;
    background-color: rgb(255 255 255 / 75%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    /* backdrop-filter: blur(10px); */
    border-radius: 0 10px 0 0;
}


#main-slide .item .slide-bg .slide-h {
    position: relative;
    font-weight: 500;
    color: #0080cb;
    line-height: 1.1;
    font-feature-settings: "case" on;
    font-size: 23px;
    z-index: 9;
    font-style: italic;
    padding-bottom: 0;
    margin-bottom: 10px;
}
 
 


#main-slide .item .slide-bg .desc-slide {
    position: relative;
    line-height: 1.3;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    color: rgb(0 0 0 / 70%);
    display: block;
    margin-bottom: 0;
    z-index: 2;
}


 

#main-slide .item .img-bg {
    border-radius: 10px  ;
    height: 100%;
    width: 100%;
    position: relative;
    display: block;
    object-fit: cover;
}

#main-slide .item video {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    position: relative;
    display: block;
    object-fit: cover;
}


#main-slide .owl-nav [class*="owl-"] {
    transition: all 0.3s ease;
}

#main-slide .owl-nav [class*="owl-"].disabled:hover {
    background-color: #d6d6d6;
}


#main-slide .owl-next,
#main-slide .owl-prev {
    width: 55px;
    height: 55px;
    margin-top: -20px;
    position: absolute;
    top: 50%;
}

#main-slide .owl-prev {
    left: 50px;
}

#main-slide .owl-next {
    right: 50px;
}


#main-slide .owl-dots {
    position: absolute;
    bottom: 15px;
    left: 5px;
    margin-top: 0;
    width: 100%;
} 

#main-slide .owl-dots:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

#main-slide .owl-dots .owl-dot {
    position: relative;
    z-index: 3;
}

#main-slide .owl-dots .owl-dot.active span {
    background: #0080cb;
}

#main-slide .owl-dots .owl-dot:hover span {
    background: #0080cb;

}

#main-slide .owl-dots .owl-dot:first-child span {
    margin-left: 0;
}
 

#main-slide .owl-dots .owl-dot span {
    background: #ebebeba6;
    margin: 0 6px;
    width: 13px;
    height: 13px;
    border-radius: 26px;
}

section.gif {
    padding-top: 80px;
    padding-bottom: 80px;
}

.home-about {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    grid-gap: 50px;
}

.home-about .history-img img {
    max-width: 350px;
    object-fit: cover;
    height: auto;
    border-radius: 5px;
}

.home-about .desc-gifbox{
     width: 62%;
     display: flex;
     flex-direction: column;
     justify-content: center;
}

.home-about .desc-gifbox h1 {
     font-feature-settings: "case" on;
     /* -webkit-text-fill-color: transparent; */
     /* -webkit-text-stroke-width: 2px; */
     /* -webkit-text-stroke-color: #0080cb; */
     text-transform: uppercase;
     font-weight: 900;
     letter-spacing: 2px;
     font-size: 32px;
     font-feature-settings: "case" on;
     text-decoration: none;
     font-weight: 600; 
     color: #333333;
}

.home-about .desc-gifbox .desc-paragraph {
     font-size: 16px; 
}

.home-about .desc-gifbox .desc-paragraph .btn {
    min-width: 200px;
}

.home-about .app-gifbox{
     width: 38%;
     display: flex;
     justify-content: flex-end;
}

.gifemy-front {
    /* background-color: #ffebec; */
    height: 355px;
    width: 355px;
    padding: 4px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(92deg, #e22db9, #0080cb, #6c93ff, #0080cb);
    background-size: 800% 800%;
    -webkit-animation: AnimationName 7s ease infinite;
    -moz-animation: AnimationName 7s ease infinite;
    animation: AnimationName 7s ease infinite;
}
 


@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

 

.gifemy-front video,
.gifemy-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.gifemy-front .gifemy-bg {
    width: 100%;
    height: 100%;
    padding: 10px;
    background: #fff;
    border-radius: 50%;
}
 
section.events {
    padding-top: 60px;
    padding-bottom: 70px;
    background: #fafafa;
}


.events-container > h1 {
    font-weight: 500;
    color: #0080cb;
    font-feature-settings: "case" on;
    font-size: 24px;
    font-style: normal; 
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.events-container > h1 span {
    padding-right: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    order: 1;
}

.events-container > h1 span:after {
    content: '';
    height: 6px;
    width: 6px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 0;
    background-color: #0080cb;
    border-radius: 50%;
}

 

.events-container > h1:after {
    content: '';
    order: 2;
    margin-top: 0;
    height: 2px;
    width: 100%;
    background-color: #fdf1f1;
} 


.event-box {
    display: block;
    text-decoration: none;
    background-color: #ffffff;
    height: 115px;
    border: 3px solid #fdf1f1;
    border-radius: 15px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: border .3s ;
}

.event-box:hover {
    border: 3px solid #0080cb; 
}
 
.event-box img{
    width: 100%;
    object-fit: contain;
    height: 100%;
}

.event-box h1 {
    font-size: 19px;
    font-style: italic;
    width: 100%;
    margin-bottom: 0;
    text-align: center;
}


.all-event {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.demo-app-btn {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
}

  
 
.footer-section {
    padding-top: 50px;
    min-height: 300px;
    padding-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #242429;
    /* margin-top: 55px; */
}

 
 
.nav-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
}

.logo-copyright {
    width: 20%;
}

.logo-footer img {
    height: 40px;
}

.copyright {
    color: #959595;
    font-size: 14px;
    margin-top: 2px;
    font-weight: 500;
    font-style: italic;
}

.footer-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 60%;
    margin-right: 0;
}

.footer-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}


.footer-therd {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-menu ul li {
    /* min-width: 33.33333%; */
    margin: 0 10px;
}

.footer-menu ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #4d4d4d;
    display: block;
    font-weight: 500;
    margin-bottom: 4px;
}

 
.footer-menu ul li a {
    text-decoration: none;
    font-feature-settings: "case" on;
    font-size: 15px;
    color: rgb(255 255 255 / 80%);
    display: block;
    font-weight: 500;
    margin: 5px 0;
}

.getimt {
    color: rgb(255 255 255 / 80%);
    font-size: 16px;
    font-weight: 500;
    font-feature-settings: "case" on;
}

.mailft {
    margin-top: 8px;
    font-size: 14px;
    color: rgb(255 255 255 / 80%);
}

.soc-nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 9px;
    padding: 0;
    margin-bottom: 0;
}

.soc-nav li {
    margin-right: 10px;
}

.soc-nav li a svg {
    fill: rgb(255 255 255 / 80%);
    height: 20px;
    width: 20px;
    margin-top: -4px;
    -webkit-transition: fill 0.3s;
    -o-transition: fill 0.3s;
    transition: fill 0.3s;
}

.soc-nav li a:hover svg {
    fill: #0080cb;  
}

.sub-footer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgb(255 255 255 / 10%);
    padding-top: 9px;
    color: rgb(255 255 255 / 80%);
    font-size: 14px;
}

 
.contact_list {
    margin-bottom: 0;
}

.contact-list-footer ul {
    text-align: start;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
}

.contact-list-footer ul li {
    display: flex;
    padding: 10px 10px;
    margin: 0;
    color: rgb(255 255 255 / 80%);
    align-items: center;
    font-feature-settings: "case" on;
    font-weight: 400;
    font-size: 14px;
}
 
.contact-list-footer ul li svg {
    height: 20px;
    width: 20px;
    fill: rgb(255 255 255 / 80%);
    margin-right: 10px;
}

.contact-list-footer ul li:last-child {
    padding-right: 0;
}

.contact-list-footer ul li:first-child {
    padding-left: 0;
}

.copy-right {
    font-feature-settings: "case" on;
}
 
.header-map {
    border-radius: 20px;
    overflow: hidden;
    margin: 40px 0;
    position: relative;
    height: calc(100vh - 473px);
    min-height: 500px;
    overflow: hidden;
    background-color: #1d1d1d;
    background-size: cover;
}



.device_box_map {
    background: #ffffff;
    margin-bottom: 0;
    width: 370px;
    max-width: 370px;
    border-radius: 20px;
    display: block;
}

.device_box_map .event_cover {
    position: relative;
    margin-bottom: 0;
    width: 100%;
    border-radius: 20px ;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.device_box_map .event_cover {
    width: 100%;
    border-radius: 10px;
}

.device_box_map .event_title {
    height: unset;
    margin-top: 15px; 
    font-feature-settings: "case" on;
    font-weight: 500;
}

.device_box_map .event_title {
    margin-top: 15px;
    font-feature-settings: "case" on;
    font-weight: 500;
    font-size: 16px;
    font-style: italic;
}

ul.contact-menu {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.contact-menu > li {
    color: #4d4d4d;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 10px;
    padding-top: 10px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.contact-menu > li:last-child {
    border-bottom: 1px solid transparent;
    padding-bottom: 0;
}

.contact-menu > li svg {
    fill: #0080cb;
    height: 20px;
    width: 21px;
    margin-right: 12px;
}


.article-single {
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0 10px 40px 0 rgb(0 0 0 / 6%);
    border-radius: 20px;
    border: 1px solid #eef1f4;
    padding: 56px 72px;
    min-height: calc(100vh - 300px);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.single-h1 {
    text-transform: uppercase;
    text-decoration: transparent;
    color: #4d4d4d;
    font-size: 18px;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 15px;
    font-feature-settings: "case" on;
    font-weight: 500;
    padding-bottom: 10px;
}

/* ---- Post (article) page ---- */
.article-head {
    margin-bottom: 30px;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #7a869a;
    text-decoration: none;
    margin-bottom: 18px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.article-back:hover {
    color: #0080cb;
    gap: 10px;
}

.article-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0080cb;
    background: #eaf5fc;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.article-head .single-h1 {
    text-transform: none;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
    color: #1f2733;
}

.article-hero {
    margin: 8px 0 34px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgb(0 0 0 / 10%);
}

.article-hero .img-bg {
    display: block;
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.6s ease;
}

.article-hero:hover .img-bg {
    transform: scale(1.03);
}

.single-article-content {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
    color: #3d4657;
}

.single-article-content p {
    margin-bottom: 18px;
}

.single-article-content h2,
.single-article-content h3,
.single-article-content h4 {
    color: #1f2733;
    font-weight: 600;
    margin: 32px 0 14px;
    line-height: 1.35;
}

.single-article-content h2 { font-size: 23px; }
.single-article-content h3 { font-size: 20px; }

.single-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 14px 0;
}

.single-article-content a {
    color: #0080cb;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.single-article-content blockquote {
    margin: 24px 0;
    padding: 6px 22px;
    border-left: 4px solid #0080cb;
    background: #f6fafd;
    border-radius: 0 10px 10px 0;
    color: #46506180;
    color: #465061;
    font-style: italic;
}

.single-article-content ul,
.single-article-content ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.single-article-content li {
    margin-bottom: 8px;
}

.gallery-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2733;
    margin: 34px 0 16px;
    padding-top: 26px;
    border-top: 1px solid #eef1f4;
}

.article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #eef1f4;
}

.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 500;
    color: #465061;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.article-back-link:hover {
    color: #0080cb;
    gap: 11px;
}

.article-share {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #0080cb;
    border: none;
    padding: 9px 20px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.article-share:hover {
    background: #0071b5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgb(0 128 203 / 30%);
}

@media (max-width: 767px) {
    .article-single {
        padding: 30px 20px;
        border-radius: 16px;
    }
    .article-head .single-h1 {
        font-size: 24px;
    }
}


.article-section {
    padding-top: 60px;
    padding-bottom: 50px;
    background: #fafafa;
}

.contact-section {
    padding-top: 60px;
    padding-bottom: 50px;
    background: #fafafa;
}
 
.contact-box {
    padding: 0;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: flex-start;
    align-items: stretch;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
}


.contact-area {
    padding: 25px 25px;
    min-width: 344px;
}

 


.contact_list {
    margin-bottom: 20px;
    margin-top: 30px;
}


.contact_list ul {
    text-align: start;
    padding-left: 0;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.contact_list ul li {
    display: flex;
    padding: 12px 0;
    /* border-bottom: 1px solid #d4d4d4; */
    margin: 0;
    width: 100%;
    color: #959595;
    font-weight: 400;
    align-items: flex-start;
    flex-direction: row;
}

.contact_list ul li:first-child {
    padding-left: 0;
}


.contact_list ul li:first-child {
    padding-top: 0;
}


.contact_list ul li svg {
    height: 26px;
    width: 35px;
    fill: #0080cb;
    margin-right: 10px;
}


.contact-form h2 {
    margin-bottom: 15px;
    margin-top: 45px;
    color: #4d4d4d;
    font-size: 16px;
    font-weight: 500;
    font-feature-settings: "case" on;
}

.contact-form .form-contact {
    width: 100%;
    font-style: italic;
    font-size: 14px;
    font-weight: 400;
    padding: 7px 15px;
    line-height: 1.5;
    background-color: #f0f0f0;
    background-clip: padding-box;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
}

.contact-form .form-contact::placeholder { 
    font-weight: 500;
    font-style: italic;
    color: #a1a1a1;
}

textarea {
    resize: vertical;
}


.btn-contact {
    background-color: #0080cb;
    color: #fff;
    border-radius: 5px;
    padding: 2px 9px;
    font-feature-settings: "case" on;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 4px solid #0080cb;
}

.btn-contact:hover {
    background-color: #0080cb;
    color: #fff;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-box .box_title {
    margin-bottom: 30px;
    font-size: 21px;
}


.contact-map {
    width: 100%;
    height: 688px;
}

.map {
    height: 100%;
    width: 100%;
}







.mobilebar {
    height: 100%;
    align-items: center;
    padding-right: 10px;
    display: none;
}

.burgerbar {
    display: inline-block;
    cursor: pointer;
    z-index: 105;
    position: relative;
}

.burgerbar .bar1,
.burgerbar .bar2 {
    width: 46px;
    height: 3px;
    background-color: rgb(0 0 0 / 70%);
    margin: 10px 0;
    border-radius: 1px;
    transition: 0.2s;
}

.burgerbar.active .bar1,
.burgerbar.active .bar2 {
    /* background-color: #000000; */
}

 

.burgerbar.active .bar1 {
    -webkit-transform: rotate(-45deg) translate(-7px, 2px);
    transform: rotate(-45deg) translate(-7px, 2px);
    width: 35px;
}

.burgerbar.active .bar2 {
    -webkit-transform: rotate(45deg) translate(-7px, -3px);
    transform: rotate(45deg) translate(-7px, -3px);
    width: 35px;
}


.sidebar {
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    padding-top: 160px;
    position: fixed;
    z-index: 99;
    background: rgb(255 255 255);
    color: #fff;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    overflow-y: scroll;
}


.sidebar.active {
    right: 0;
}

.overlay {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    bottom: -1px;
    left: -1px;
    right: -1px;
    opacity: 1;
    z-index: 99;
    transition: all 0.3s ease-in-out;
}

.overlay.active {
    display: block;
    width: 100%;
    opacity: 1;
}


.body-lock {
    margin: 0;
    height: 100%;
    overflow: hidden;
}


.sliding-menu {
    position: relative;
    background: rgba(255, 255, 255, .5)
}

.sliding-menu-panel {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    padding-left: 0
}

.sliding-menu li {
    padding: 0;
    margin: 0;
    list-style: none
}

.sliding-menu li a {
    font-family:  'FiraGO',  Helvetica, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-feature-settings: "case" on;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 26px;
    font-size: 16px;
    line-height: 1.4em;
    color: #464646;
    text-decoration: none;
    border: none;
    outline: none;
    -ms-flex-align: center;
    align-items: center;
}

.sliding-menu li a ul li a {
    font-family:  'FiraGO',  Helvetica, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-feature-settings: "case" off;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 26px;
    font-size: 14px;
    line-height: 1.4em;
    color: #464646;
    text-decoration: none;
    border: none;
    outline: none;
    -ms-flex-align: center;
    align-items: center;
}

.sliding-menu li:last-child a {
    border-bottom: none;
}


.sliding-menu li a:lang(ka) {
    font-weight: 500;
}

.sliding-menu .active a {
    color: #464646;
    background: #fff;
    border: none
}

.sliding-menu .sliding-menu-nav:after {
    content: "";
    display: block;
    position: relative;
    width: .75em;
    height: .75em;
    border-top: 2px solid;
    border-right: 2px solid;
    opacity: 1;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sliding-menu .sliding-menu-back {
    color: #fff !important;
    background: #0080cb;
    border-bottom: none;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.sliding-menu .sliding-menu-back:hover {
    color: #fff !important;
    background: #0080cb;
    border-bottom: none;
}

.sliding-menu .sliding-menu-back:before {
    content: "";
    display: block;
    position: relative;
    width: .65em;
    height: .65em;
    margin-top: 1px;
    margin-right: 10px;
    border-top: 2px solid;
    border-left: 2px solid;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sliding-menu .sliding-menu-back:after {
    display: none;
}

.sliding-menu .sliding-menu-icon {
    margin-right: .4em
}

.sliding-menu .sliding-menu-separator {
    margin: .4em 1em;
    border-top: 2px solid #0080cb
}





 



@media (max-width: 1035.98px) {

    .auth-nav,
    .footer-menu,
    .main-nav {
        display: none;
    }

    .mobilebar {
        display: flex;
        position: relative;
        z-index: 100;
    }
   
    .home-about {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        grid-gap: 50px;
    }

    .home-about .desc-gifbox {
        width: 100%; 
    }

    .demo-app-btn { 
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .home-about .desc-gifbox h1 {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .home-about .app-gifbox {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .event-box {
        height: 90px; 
        padding: 15px 15px;
    }

    .nav-footer {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 50px;
    }

    .logo-copyright {
        width: 100%;
    }

   
    .sub-footer {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .contact-list-footer ul {
        text-align: start;
        padding-left: 0;
        margin-bottom: 25px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-list-footer ul li {
        width: 100%;
        padding: 5px 0px;
        justify-content: center;
    }
    .contact-list-footer ul li:last-child {
        padding-left: 0;
    }

    .copy-right {
        text-align: center;
        font-feature-settings: "case" on;
        margin-top: 15px;
        margin-bottom: 15px;
    }


    .contact-box {
        flex-direction: column;
    }

    .contact-area { 
        min-width: 100%;
        order: 2;
    }
    .contact-map {
        order: 2;
        height: 350px;
        border-top: 1px solid #e1e1e1;
    }

    .contact-form h2 { 
        margin-top: 30px;
    }
    
    .sidebar .auth-nav {
        display: flex;
        gap: 20px;
        padding: 20px;
        flex-direction: column;
    }

    #main-slide .item .slide-bg:after { 
        background-color: rgb(0 0 0 / 60%); 
    }

    .article-single {
 
        padding: 15px 10px; 
    }

}


.readmore { 
    text-decoration: none;
    font-size: 14px;
    font-weight: 500; 
}

.footer-owl .owl-item .item img {
    height: 85px;
    width: 85px;
    object-fit: contain;
}

.footer-brand {
    padding: 40px 0;
    background-color: #f8f9fa;
}
 

.article-left .img-bg {
    cursor: pointer;
    width: 100%; max-height: 420px; object-fit: cover;  border-radius: 10px;  margin-bottom: 20px;
}


.article-content {
    font-size: 15px;
    font-family: 'FiraGO', 'Open Sans', sans-serif;
    font-weight: 400;
    color: #acacac; 
}


.article-content .article-content-inner {
    font-size: 15px;
    font-family: 'FiraGO', 'Open Sans', sans-serif;
    font-weight: 400;
    color: #acacac;
    max-height: 117px;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden;
    max-height: 113px;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}

.article-content .article-content-inner ul {
    
    padding-left: 0;
}


.article-item {
    margin: 15px 0;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 24px 0 rgb(0 0 0 / 6%);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px 0 rgb(0 128 203 / 12%);
}

.article-item .col-4 > a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.article-item .img-bg {
    transition: transform 0.5s ease;
}

.article-item:hover .img-bg {
    transform: scale(1.04);
}

.article-desc {
    max-height: 158px;
    overflow: hidden;
}

.article-desc h1 a , 
.article-desc h1 {
    text-decoration: none;
    font-family: 'FiraGO', 'Open Sans', sans-serif;
    font-feature-settings: "case" on;
    font-size: 17px;
    font-weight: 500;
    margin-top: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    max-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article-item .img-bg {
    border-radius:  10px;
    height: 200px;
    position: relative;
    display: block;
    width: 100%;
    object-fit: cover;
}

.item-gallery {
    cursor: pointer;
    display: block;
}

.item-gallery img{
    width: 100%;
    height: 200px;
    object-fit: cover; 
    border-radius: 5px;  
    margin-bottom: 20px;
 
}



.page-item.active .page-link {
    z-index: 1;
    color: #0080cb;
    background-color: #f3f3f3;
    border-color: #f3f3f3;
    font-family: 'FiraGO', 'Open Sans', sans-serif;
    font-weight: 500;
}

.page-link {
    position: relative;
    display: block;
    padding: 7px 13px;
    font-family: 'FiraGO', 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    margin: 0 6px;
    line-height: 1.25;
    border-radius: 50%;
    color: #959595;
    background-color: #fff;
    border: 1px solid #ffffff;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.page-link:hover {
    z-index: 2;
    color: #0080cb;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
}

.page-item:first-child .page-link {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}


.page-item:last-child .page-link {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.page-item.disabled .page-link {
    color: #959595;
    pointer-events: none;
    cursor: auto;
    background-color: #ffffff;
    border-color: #ffffff;
}


.pagnationi .pagination {
    justify-content: center;
    padding-top: 30px; 
    margin-bottom: 20px;
    padding-bottom: 0;
}


.reg-section {

    background-color: #f8f9fa;
    padding-top: 70px;
    padding-bottom: 70px;
}

.reg-section .container {
    max-width: 750px;
}

.reg-box { 
    background-color: #fff; 
    box-shadow: 0 0 18px 0 rgb(0 0 0 / 5%);
    border-radius: 10px;
    padding: 30px 30px;
} 


.form-group {
    margin-bottom: 20px;
}

.form-group label {
    margin-bottom: 5px;
}



div.notice {
    font-weight: 500;
    margin-top: 30px;
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    background: #1b1b1b;
    position: relative;
    z-index: 99;
    top: 0;
    width: 100%;
  }
  
  div.notice.success {
    background-color: #058795;
  }
  
  div.notice h1 {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }
  