*, *::after, *::before {
    box-sizing: border-box;
}

html, body {
    padding: 0;
    margin: 0;
    font-size: 18px;
}

:root {
    --main-color: #3E515A;
    --hover-color: #6d9a63;
    --background-color: #F4F6F8;
    --white-color: #FFFFFF;
    --font-arial-caps: "BPG Arial Caps", sans-serif;
    --font-arial: "BPG Arial", sans-serif;
    --font-mtavruli: "BPG ExtraSquare Mtavruli", sans-serif;
}

.wrapper {
    max-width: 1860px;
    padding-right: 30px;
    padding-left: 30px;
    margin: auto;
}

/*header section*/
a.read-more {
    font-family: var(--font-mtavruli);
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 400;
    vertical-align: middle;
    padding: 15px 15px 10px;
    min-width: 240px;
    background-color: #50616A;
    border-radius: 7px;
    animation-name: opacity;
    animation-duration: 1s;
    display: inline-block;
    color: white;
}

a.read-more:hover {
    background-color: var(--hover-color);
}


.products-wrapper.open .products-list {
    padding: 60px 0;
    height: auto;
}

.products-list ul {
    max-width: 1862px;
    padding: 0 20px;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.products-list li {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0px 1px 2px #00000033;
    width: calc(12.5% - 22px);
    margin: 0 11px 22px;
    overflow: hidden;
    position: relative;
}

.products-list li > a {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding: 10px 10px 45%;
}

.products-img-wrapper {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.products-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.products-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    height: 45%;
    width: 100%;
    transition: height .3s linear;
}

.products-content h3 {
    color: var(--main-color);
    font-size: 17px;
    line-height: 24px;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    width: 100%;
}

.products-link {
    display: none;
    min-width: 200px;
    margin: 0 auto;
    padding: 10px 17px;
    background-color: var(--hover-color);
    border-radius: 7px;
    font-size: 16px;
    line-height: 22px;
    color: var(--white-color);
    animation: opacity 1s;
    opacity: 0;
}

@keyframes opacity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.products-list li:hover .products-content {
    height: 100%;
}

.products-list li:hover .products-content h3 {
    -webkit-line-clamp: unset;
}

.products-list li:hover .products-link {
    display: block;
    opacity: 1;
}

.products-wrapper.open .nav-top {
    box-shadow: 0px 3px 6px #0000001A
}

/* navbar section */

nav a {
    text-decoration: none;
    display: inline-block;
}

nav ul {
    padding: 0;
    margin: 0;
}

.nav-top li {
    list-style-type: none;
}

.nav-top {
    font-family: var(--font-mtavruli);
    line-height: 22px;
    background-color: #f5f7f8;
    position: relative;
    box-shadow: 0px 3px 6px #00000029;
    height: 100px;
}


.menu-wrapper, .menu-wrapper > ul, .menu-wrapper .language-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: auto;
}

.language-bar span {
    font-weight: bold;
}

.language-bar .active span {
    color: #6D9A63;
}

.home.page-template .swiper-container {
    padding-bottom: 50px;

}

.content-single-page {
    max-width: 1080px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

.content-single-page data,
.content-single-page h2 {
    font-family: var(--font-mtavruli);
    font-size: 24px;
    text-align: center;
    color: #6D9A63;
    margin-bottom: 30px;
}

.content-single-page data {
    display: block;
    font-size: 18px;
    color: #3E515A;
    margin-bottom: 10px;
}


.content-single-page .news-image {
    max-width: 45%;
    padding-right: 15px;
    padding-bottom: 15px;
    float: left;
}

.content-single-page .news-content {
    font-family: 'BPG Arial';
    font-size: 18px;
}

.content-single-page .news-content p {
    margin-bottom: 10px;
}

.homepage .home__slider .swiper-container {
    padding-bottom: 0;
}

.homepage .home__slider .swiper-slide {
    overflow: hidden;
}

.homepage .home__slider .swiper-slide img {
    width: 100%;

}

.menu-wrapper {
    max-width: 1860px;
    margin: auto;
    padding: 0 30px 0 15px;
    height: 100%;
}

.menu, .menu li, .menu li > a {
    height: 100%;
}

.menu-wrapper .menu > li > a {
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: var(--main-color);

    position: relative;
    text-transform: uppercase;
}

.menu li > a:hover, .menu li span:hover, .menu li > a:active, .menu li span:active {
    color: var(--hover-color);
    transition: all .3s ease;
}

.submenu > a::after {
    content: "";
    position: absolute;
    margin-top: 40px;
    left: 50%;
    transform: translate(-50%);
    background: url('../img/Group 5588-1.svg') no-repeat;
    height: 10px;
    width: 20px;
    transition: all .3s ease;
}

.menu li > a:hover::after {
    background-image: url('../img/Group 5588-2.svg');
}

.submenu {
    position: relative;
}

.submenu-content {
    visibility: hidden;
    padding: 0 10px;
    position: absolute;
    background-color: #FFFFFF;

    min-width: 150%;
    transform: translate(-50%);
    left: 50%;
    box-shadow: 0px 3px 6px #00000029;
    z-index: 4;
    font-style: normal;
    height: 0;
    overflow: hidden;
    transition: all .3s ease;
}

.submenu {
    position: relative;
}

.submenu:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 8px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url("../img/drop_down_list.png");
    transition-duration: 0.8s;
    transition-property: transform;
}

.submenu:hover:before {
    transform: rotate(180deg) translateX(calc(-50% + 14px));
    -webkit-transform: rotate(
            180deg
    ) translateX(calc(-50% + 14px));
}


.submenu-content > li > a {
    visibility: hidden;
}

.video-page .media-news-img-wrapper {
    height: 60%;
}

.video-page .media-video {
    height: 45%;
}

.submenu:hover .submenu-content {
    visibility: visible;
    padding: 32px 0;
    height: auto;
    transition: all 0.3s ease;
}

.video_item-container .media-news-img {
    max-height: 500px;
}

.homepage-projects-content li > div {
    height: 100%;
}

.submenu:hover .submenu-content > li > a {
    visibility: visible;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

li.hs-form-radio:before {

    display: none !important;
}

.submenu-content a {
    color: var(--main-color);
    padding: 15px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.language-bar {
    height: 100%;
}

.language-bar a {
    margin-left: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--main-color);
    align-items: center;
}

.language-bar div {
    margin-bottom: 9px;
    width: 55px;
    height: 55px;
    border-radius: 5px;
    text-transform: uppercase;
}

.language-bar img {
    display: inline-block;
    margin-top: 5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}


.geo:hover div, .eng:hover div, .geo:active div, .eng:active div {
    background-color: var(--hover-color);
    cursor: pointer;
}

.geo:hover, .eng:hover {
    color: var(--hover-color);
}

.language-bar a.active div {
    background-color: var(--hover-color);
}

.hamburger-menu {
    display: none;
}

/* homepage common  */
.homepage section {
    font-family: var(--font-arial-caps);
    padding-top: 50px;
    padding-bottom: 50px;
}

.bg-grey {
    background-color: #f4f6f8;
}

.homepage h2 {
    font-family: var(--font-mtavruli);
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0;
    font-size: 34px;
    margin-bottom: 50px;
    font-weight: 100;
}

.homepage h2::before {

}

.homepage h2::after {

}

/* homepage news section */

.homepage-news-content {
    max-width: 1550px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.homepage-news-content li {
    list-style-type: none;
    width: calc(33.33% - 30px);
    margin: 15px;
    padding: 20px 18px;
    background-color: #ffffff;
    box-shadow: 0px 1px 2px #00000033;
    border-radius: 10px;
    overflow: hidden;
}

.homepage-news-item {
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding-bottom: 35%;
    position: relative;
}

.homepage-news-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.homepage-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepage-news h3 {
    font-size: 20px;
}

.homepage-news-summary {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    color: var(--main-color);
    padding: 15px 15px 0;
    line-height: 24px;
    text-align: center;
    width: 100%;
    height: 35%;
    transition: height .5s ease;
    font-family: var(--font-arial-caps);
    font-size: 20px;
}

.homepage-news-summary time {
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: var(--main-color);
    font-family: var(--font-mtavruli);
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    text-align: center;
}

.media-news-summary time {
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: var(--main-color);
    font-family: var(--font-mtavruli);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.homepage-news-summary h3 {
    width: 100%;
    margin: 15px auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 16px;
}

.media-news-item .media-news-summary h3 {
    font-size: 16px;
}

a.popup-youtube img {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 1px 2px #00000033;
    top: 115px;
    width: 52px !important;
    height: 52px !important;
}

.media-news-item {
    position: relative;
    list-style-type: none;
}

.news-more {
    display: none;
    min-width: 240px;
    padding: 15px;
    margin: 30px auto;
    background-color: var(--hover-color);
    border-radius: 7px;
    font-weight: 400;
    font-size: 18px;
    color: var(--white-color);
    animation-name: opacity;
    animation-duration: 1s;
}

.homepage-news-content li {
    position: relative;
}

.media-news-item a {
    text-decoration: none;

    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
}

.post, .page {
    margin: 0;
}

.media-news-item div > a img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 1px 2px #00000033;
    top: 115px;
}

.media-news-item div > a:hover img {

}

.media-news-summary {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 35%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    color: var(--main-color);
    padding: 15px 15px 0;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
}

.media-news-img-wrapper {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.media-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-news-link {
    display: inline-block;
    position: absolute;
    bottom: 10px;
    min-width: 270px;
    padding: 15px;
    background-color: var(--hover-color);
    left: 50%;
    transform: translate(-50%);
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: var(--white-color);
    font-family: var(--font-arial-caps);
}

.media-news-item:hover, .media-news-item:hover .media-news-summary {

}

.media-news-item:hover .media-news-img {
    transform: scale(1.5);
    transition: .5s;
}

.media-news-item:hover .media-news-summary time {

}

.homepage-news li:hover .homepage-news-summary {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.homepage-news li:hover .news-more {
    display: block;
}

.homepage-news li:hover .homepage-news-summary h3 {
    -webkit-line-clamp: unset;
}

.homepage-news-summary img {
    width: 100%;
}

.see-all {


    text-align: center;

}

.see-all a {
    font-family: var(--font-mtavruli);
    text-decoration: none;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 400;
    vertical-align: middle;
    padding: 15px 15px 10px;
    min-width: 240px;
    background-color: #50616A;
    border-radius: 7px;
    animation-name: opacity;
    animation-duration: 1s;
    display: inline-block;
    transition: .5s ease;
}

.see-all-icon {
    transition: .3s ease;
}

.see-all a:hover .see-all-icon {
    transform: scaleX(-1);
}

.see-all a:hover {
    background-color: var(--hover-color);
}

/*homepage projects section*/
.homepage-projects {
    background-image: url("../img/products_background.png");
    background-size: cover;

}

.homepage-projects .homepage-projects-content {
    margin-bottom: 50px;
}

.homepage-projects .see-all a {
    background: white;
    color: #50616A;
    border: 1px solid #50616A;
    transition: .5s ease;
}

.homepage-projects .see-all a:hover {
    background-color: var(--hover-color);
    color: white;
}

.content-project-temp {
    background-image: none;
}

.content-project-temp h3 {
    font-family: var(--font-arial-caps);
}

.homepage-projects .homepage-projects-content li {
    width: calc(50% - 40px);
}

.homepage-projects h2 {
    color: white;
}

.homepage-projects h2:after,
.homepage-projects h2:before {
    background-color: white;
}

.homepage-projects h3 {
    font-size: 18px;
    line-height: 24px;
}

.homepage-projects-content {
    max-width: 1550px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;

    gap: 20px;

}

.homepage-projects-content li {
    width: calc(50% - 30px);
    list-style-type: none;
    margin: 15px;
    padding: 25px;
    background-color: #f4f6f8;
    box-shadow: 0px 1px 2px #00000033;
    border-radius: 8px;
    transition: .5s ease;
}

.homepage-projects-content > li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--main-color);
}

.homepage-projects-content > li:hover {
    background-color: var(--hover-color);
    color: #fff;
}

.homepage-projects-content > li:hover h3 {
    color: white;
}

.homepage-projects-content span {
    display: inline-block;
    font-family: var(--font-mtavruli);
}


.project-menu {
    max-width: 1465px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    background: #F4F6F8;
}

.project-menu ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.project-menu ul li {
    list-style-type: none;
}

.project-menu ul li a {
    text-decoration: none;
    color: #3E515A;
    font-family: var(--font-arial-caps);
    padding: 20px 60px;
    display: inline-block;
    border-right: 1px solid #D3DBDE;


}

.project-menu ul li a.active {
    background: #6D9A63;
    color: white;

}

.date-icon {
    margin-right: 10px;
}

.project-date {
    font-size: 20px;
    letter-spacing: 0.64px;
}

.project-detail {
    color: var(--hover-color);
    font-size: 18px;
    letter-spacing: 0.58px;
}

.homepage-projects-content > li:hover .project-detail, .homepage-projects-content > li:hover .project-date {
    color: #fff;
}

/*homepage donation section */

.donation {
    padding: 190px 0;
    position: relative;


}

.donation h2 {
    margin-bottom: 55px;

}

.donation-details {
    font-family: var(--font-mtavruli);
    text-align: center;
}

.donation-details h2 {
    font-family: var(--font-mtavruli);
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0;
    font-size: 34px;
}

.donation-content p {
    max-width: 1080px;
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    margin: auto auto 45px;
}

.donation-details {

    padding: 50px 20px 100px;
    width: 60%;
    margin: auto;
    border: 8px solid #D8DEE5;
    box-shadow: 0px 1px 2px #0000004A;
    background-color: #fff;
    z-index: 30;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.donation-details {

}

.donation-details-active {
    visibility: visible;
}

.donation-details p {
    font-weight: 600;
}


.donation-details img {
    margin-bottom: 20px;
    height: 38px;
    width: 35px;
}


.donation-details span {
    color: var(--hover-color);
}

.photo-items {
    background: white;
    padding: 5px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0px 1px 2px #00000033;
    position: relative;
    font-family: var(--font-mtavruli);
    text-transform: uppercase;


}

.fa-search-plus:before {
    color: white;
}

.sp-items-container > h3 {
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 30px;
    font-family: var(--font-mtavruli);
    padding: 20px;
    background: #F5F7F9;
}

.single-project h2 {
    font-family: var(--font-mtavruli);
    text-transform: uppercase;
    margin-top: 40px;
    text-align: center;
}

.single-project .photo-items {
    height: 325px;
}


.single-project .photo-items img {
    border-radius: 8px 8px 0 0;
    height: 70%;
    object-fit: cover;

}

.single-project .photo-items h3 {
    background: white;
    padding: 0;
    font-size: 18px;
    font-weight: 100;
}

.vg-items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.vg-items-container > ul {
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

p.who-content-center {
    text-align: center;
    font-family: var(--font-mtavruli);
    font-weight: bold;
    margin: 5px auto;

}


p.who-content-center span {
    display: block;
    font-family: var(--font-mtavruli);
    color: #6d9a63;
}

.who-we-are {

}

.vg-items-container h3 {
    background: transparent;
}

.vg-items-container .media-news-item {
    width: calc(50% - 20px);
}

.vg-items-container > h3 {
    width: 100%;
}

.news-items-container {
}


.news-items-container ul {
    margin: 0;
    padding: 0;
}

.news-items-container ul li {
    list-style-type: none;

}

.news-items-container ul li .homepage-news-item {


}

.photo-items .see-all a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    display: none;

}

.photo-items .see-all {
    visibility: hidden;


    position: absolute;
    box-shadow: 0px 1px 2px #00000033;
    border-radius: 8px;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 100%;
    transition: all 0.5s ease;

}

.photo-items:hover .see-all a {
    display: inline-block;
}

.photo-items:hover .see-all {
    visibility: visible;

    background: rgb(255, 255, 255, 0.95);

}


.photo-items h3 {
    margin-top: auto;
    margin-bottom: auto;
    padding: 10px;
    font-size: 18px;
}

.photo-items img {
    border-radius: 8px 8px 0 0;
}

.photo-gallery-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.photo-gallery-container .media-news-item {
    min-height: 400px;
}

.photo-gallery-container .photo-items {
    width: calc(25% - 30px);
}

.homepage-photo-gallery .photo-gallery-container .photo-items {
    width: 100%;
    height: 427px;
}

.homepage-photo-gallery .photo-gallery-container .swiper-container {
    padding-bottom: 50px;
}

.homepage-photo-gallery .photo-items img {
    height: 300px;
    object-fit: cover;
}


.homepage-photo-gallery .photo-gallery-container .swiper-container-horizontal > .swiper-pagination-bullets,
.homepage-photo-gallery .photo-gallery-container .swiper-pagination-custom, .swiper-pagination-fraction {

}

.home_profile__slider.container-profile .profile {
    width: 100%;
    min-height: 460px;
}

ul.video-gallery-container {
    padding: 0;
    margin: 0;
    width: 100%;
}

.video-gallery-container li {
    list-style-type: none;
    position: relative;
    box-shadow: 0px 1px 2px #00000042;
    border-radius: 8px;

}

.video-gallery-container li .media-news-img-wrapper {
    border-radius: 8px 8px 0px 0px;


}

.video-gallery-container .media-news-summary {
    border-radius: 0 0 8px 8px;
}


ul.video-gallery-container .media-news-item div > a img {
    left: 0;
    transform: translateX(0);
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    padding: 50px 40px;
    box-shadow: 0px 1px 2px #00000033;
    background: #fbfcfd;
    position: relative;
}

.profile .circle {
    width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0px 1px 2px #00000033;
    border: 10px solid #FFFFFF;
    background: white;

}

.profile .circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile h5, .profile h3 {
    text-align: center;
    font-family: var(--font-mtavruli);
}

.profile h3, .profile h5 {
    margin-top: 15px;
    margin-bottom: 0;
}

.container-profile {
    display: flex;
    gap: 30px;
    max-width: 1600px;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: center;
}

.profile .see-all {
    display: none;
}

.profile:hover .see-all {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.profile:hover .see-all img {
    margin-bottom: 10px;
}

.container-profile .profile {
    width: calc(25% - 30px);
}

/*homepage social section */

main .social {
    text-align: center;
    padding-bottom: 250px;
}

.social h2 {
    margin-bottom: 90px;
}

.social-list {
    font-size: 20px;
    display: flex;
    justify-content: center;
}

.social-list li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    width: 200px;
    position: relative;
    list-style-type: none;
    margin: 45px;
}

.social-list li::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 25px;
    height: 150px;
    width: 150px;
    background-color: #fff;
    box-shadow: 1px 1px #00000029;
    transform: rotate(45deg);
    border-radius: 15px;
    transition: all .5s linear;
}

.social-list li::after {
    content: "";
    position: absolute;
    top: 25px;
    left: 25px;
    height: 150px;
    width: 150px;
    border-radius: 15px;
    transform: rotate(45deg) scale(0);
    overflow: hidden;
    opacity: 0;
    transition: all .55s linear;
}

.social-list > .youtube::after {
    background-color: #FE0000;
}

.social-list:hover {
    cursor: pointer;
}

.social-list > .facebook::after {
    background: linear-gradient(90deg, #00C6FF 0%, #0073FF 100%) 0% 0% no-repeat;
}

.social-list > .twitter::after {
    background-color: #59B6F8;
}

.social-list > li:hover::after {
    transform: rotate(225deg) scale(1);
    opacity: 1;
    transition: all .55s linear;
}

.social-list > li:hover::before {
    transform: rotate(225deg);
    transition: all .5s linear;
}

.social-list > li:hover a {
    color: #fff;
}

.social-list > li a {
    display: inline-block;
    text-decoration: none;
    text-transform: capitalize;
    z-index: 1;
    color: var(--main-color);
}

.social-icon {
    margin-right: 10px;
    font-size: 18px;
}

/*about us page*/

.about-us {
    padding: 95px 0 250px;
    text-align: center;
    color: var(--main-color);
}

.about-us-content {
    max-width: 1170px;
    margin: auto;
    padding: 0 30px;
}

.about-us h1 {
    font-family: var(--font-mtavruli);
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0;
    font-size: 34px;
    margin-bottom: 100px;
}

.about-us h1::before {
    content: "";
    flex-basis: 150px;
    height: 2px;
    background-color: var(--main-color);
}

.about-us h1::after {
    content: "";
    height: 2px;
    flex-basis: 150px;
    background-color: var(--main-color);
}

.about-us h2 {
    font-family: var(--font-arial-caps);
    font-size: 24px;
    color: var(--hover-color);
    margin-bottom: 25px;
}

.about-us p {
    font-family: var(--font-arial);
    font-size: 17px;
    margin-bottom: 25px;
    width: 100%
}

.about-us ul {
    font-family: var(--font-arial-caps);
    padding: 0;
    margin-bottom: 50px;
}

.about-us ul li {
    list-style-type: none;
    line-height: 34px;
}

.about-us h3 {
    margin-bottom: 40px;
}


/*single page*/

.single-news {
    padding: 90px 0;
    color: var(--main-color);
    font-family: var(--font-arial);
    font-size: 18px;
}

.single-news h1 {
    font-family: var(--font-mtavruli);
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0;
    font-size: 34px;
    margin-bottom: 100px;
}

.single-news h1::before {
    content: "";
    flex-basis: 150px;
    height: 2px;
    background-color: var(--main-color);
}

.single-news h1::after {
    content: "";
    height: 2px;
    flex-basis: 150px;
    background-color: var(--main-color);
}

.single-news h2 {
    max-width: 950px;
    margin: auto auto 45px;
    text-align: center;
    font-family: var(--font-arial-caps);
    color: var(--hover-color);
    font-size: 24px;
}

.single-news section {
    max-width: 1170px;
    margin: auto;
    padding: 0 30px;
}

.single-news article::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--main-color);
    margin: 35px 0;
}

.single-news-img-wrapper {
    width: 45%;
    float: left;
    margin-right: 15px;
    margin-top: 5px;
}

.single-news article img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.single-news p {
    color: #5A5A5A;
    width: 100%;
}

.single-news h3 {
    font-family: var(--font-arial-caps);
}

.single-news h4 {
    color: #324734;
    font-family: var(--font-arial-caps);
}

.single-news ul {
    margin: 0 0 35px;
    padding: 0;
}

.single-news ul li {
    margin-left: 25px;
}

.single-news ul li::marker {
    font-size: 25px;
}

.share-news {
    display: flex;
    align-items: center;
}

.share-news > * {
    margin-right: 20px;
}

.share-news span {
    font-family: var(--font-arial-caps);
    font-weight: 600;
}

.news-social {
    width: 36px;
    height: 33px;
    border-radius: 5px;
    border: 1px solid var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-social-fb:hover {
    background: transparent linear-gradient(180deg, #00C6FF 0%, #0073FF 100%) 0% 0% no-repeat;
    border: 1px solid #0091FF;
    color: var(--white-color);
}

.news-social-twitter:hover {
    background: #59B6F8 0% 0% no-repeat;
    border: 1px solid #59B6F8;
    color: var(--white-color);
}

.home__slider {
    padding-top: 0;
    padding-bottom: 0;
}


.pop-up-profile {
    width: 100%;
    position: static;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #3E515A;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
    z-index: 10;
}

.container-profie-pop-up {
    max-width: 1100px;
    display: flex;
    box-shadow: 0px 3px 6px #00000029;
    border: 1px solid #F5F5F5;
    border-radius: 0;
    background-color: white;
    padding: 60px;
    gap: 30px;
}

.container-profie-pop-up span {
    display: flex;
    flex-direction: column;
    font-family: var(--font-mtavruli);
}

.container-profie-pop-up span h3 {
    margin-bottom: 0;
}

.mfp-close-btn-in .mfp-close {

}

.container-profie-pop-up img {
    max-width: 260px;
    border-radius: 8px;
}

.mfp-content .white-popup.profile-pop {
    max-width: 1100px;
    margin: 0 auto;
}

.products-list {

    background-color: #f4f6f8 !important;
}
@media screen and (max-width: 1800px) {
    .products-content h3{
        line-height: 20px;
        font-size: 14px;
    }
    .products-link{
        min-width: auto;
    }
}
@media screen and (max-width: 1441px) {
    section.single-page-photo-gallery ul .photo-items {
        width: calc(33.33% - 20px);
    }

    .container-profile .profile {
        width: calc(33.33% - 30px);
    }

    .products-list li {
        width: calc(20% - 22px);
    }

    .products-content h3 {
        font-size: 16px;
    }

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

@media screen and (max-width: 1025px) {
    section.all-video-content ul li, section.all-video-content ul .photo-items {
        width: calc(50% - 20px);
    }

    section.all-publications-container ul .publication__item {
        width: calc(33.33% - 20px);
    }

    .products-list li {
        width: calc(33.33% - 22px);
    }

    .homepage section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .homepage h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 991px) {
    .photo-gallery-container .media-news-item {
        min-height: 300px;
    }

    .container-profie-pop-up {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .profile:hover .see-all {

    }

    .container-profie-pop-up span {
        align-items: center;
    }

    section.single-page-photo-gallery ul .photo-items {
        width: calc(50% - 20px);
    }

    .project-menu ul li a {
        padding: 10px;
        font-size: 16px;
    }

    .project-menu ul {
        margin-bottom: 20px;
        align-items: center;
        text-align: center;
    }

    .container-profile .profile {
        width: calc(50% - 30px);
    }

    .homepage-news-content {
        margin-bottom: 0;
    }

    .footer {
        flex-direction: column;
    }

    .footer-contact {
        width: 100%;
    }

    .footer-nav {
        width: 100%;
    }

    .location {
        width: 100%;
    }

    .footer h3::after {
        width: 100%;
    }

    .footer h3::after {
        width: 100%;
        max-width: 100%;
    }


    .homepage-news-content {

    }

    .homepage-news-content li {
        width: calc(50% - 30px);
    }


    .homepage .home__slider .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .homepage h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .homepage h2::before, .homepage h2::after {
        flex-basis: 80px;
    }

    .home_slider_title {
        bottom: 0 !important;
    }

    .homepage section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    /*nav-top section    */
    .menu-wrapper .menu > li.submenu {
        padding: 10px 0 0 0;
    }

    .menu-wrapper .menu > li.submenu > a {
        pointer-events: none;
        padding-bottom: 10px;
        padding-left: 25px;
    }

    .submenu-content {
        min-width: 100%;
        position: relative;
        transform: translate(0);
        left: 0;
    }

    .nav-top .submenu-content > li:last-child {
        border-bottom: 0;
    }

    .products {
        padding: 10px 20px;
    }

    .submenu:hover .submenu-content {
        padding: 0;
    }

    .nav-top {
        height: 50px;
        position: relative;
    }

    .logo {
        max-width: 200px;
    }


    .nav-top {
        position: relative;
        z-index: 112;
    }

    .menu-wrapper {
        position: relative;
    }

    .nav-top ul.menu {
        flex-direction: column;
        width: 100%;
        background: white;
        position: absolute;
        z-index: 113;
        right: 0;
        top: 50px;
        height: auto;
        display: none;
    }

    .nav-top ul.menu.hamburger-dropdown-menu {
        display: flex;
    }

    .nav-top ul.menu li {
        padding: 10px;
        border-bottom: 1px solid var(--main-color);
        width: 100%;
    }

    .nav-top ul.menu li:first-child {
        border-top: 1px solid var(--main-color);
    }


    .hamburger-menu-wrapper {
        position: absolute;
        background-color: var(--white-color);

    }

    .hamburger-menu-wrapper .hamburger-dropdown-menu {
        display: flex;
        flex-direction: column;

    }

    .hamburger-dropdown-menu > li {

    }

    .hamburger-menu {
        display: block;
        position: absolute;
        right: 20px;
    }

    .hamburger-menu {
        display: block;
        cursor: pointer;
        width: 31px;
    }

    .hamburger-menu-icon {
        padding: 3px;
    }

    .hamburger-menu .line {
        display: block;
        background-color: var(--main-color);
        width: 27px;
        height: 3px;
        margin: 5px 0;
        border-radius: 7px;
        transition: 1s;

    }

    .close {
        position: absolute;
        top: 10px;
    }

    .hamburger-menu-icon.close .middle {
        transform: rotate(45deg);
    }

    .hamburger-menu-icon.close .top {
        opacity: 0;
    }

    .hamburger-menu-icon.close .bottom {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .dropdown-nav-top {
        position: relative;
    }

    .hamburger-menu-wrapper {
        position: absolute;
        display: block;
        width: 100%;
        z-index: 10;
    }

    .language-bar a.geo > span {

    }

    .language-bar div {
        height: auto;
        margin-bottom: 0;
    }

    .social-list li {
        width: 150px;
        height: 150px;
        margin: 30px;
    }

    .social-list li::before {
        width: 120px;
        height: 120px;
    }

    .social-list > li a {
        font-size: 16px;
        top: 57%;
        position: absolute;
        transform: translateY(-50%);
    }

    .donation-details {
        width: 100%;
    }

    .donation-details p {
        font-size: 16px;
    }

    .donation-details h2 {
        font-size: 26px;
    }

    section .page_title {
        font-size: 26px;
        margin: 40px auto 40px;
    }

    section .page_title::before,
    section .page_title::after {
        flex-basis: 50px;

    }

}

@media screen and (max-width: 768px) {
    .social-list li::before {
        display: none;
    }

    .social-list li {
        height: 50px;
    }

    .homepage section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    section.single-page-photo-gallery ul .photo-items {
        width: calc(100% - 20px);
    }

    section.all-video-content ul li, section.all-video-content ul .photo-items {
        width: calc(100% - 20px);
    }

    .media-news-item .media-news-summary h3, .homepage-news-summary h3 {
        font-size: 16px;
    }

    section.all-publications-container ul .publication__item {
        width: calc(100% - 20px);
    }

    .container-profile .profile {
        width: calc(100% - 30px);
    }

    .homepage .home__slider {
        height: 500px;
    }

    .home_slider_title h3 {
        font-size: 18px;
    }

    .homepage section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .homepage-news-content li, .homepage-projects .homepage-projects-content li {
        width: calc(100% - 30px);
    }

    .products-list li {
        width: calc(50% - 22px);
    }

    .wrapper {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/*mobile version*/
@media screen and (max-width: 426px) {
    section.all-publications-container ul .publication__item {
        width: calc(100% - 20px);
    }

    /*header*/
    header {
        font-size: 14px;
    }

    .logo {
        width: 195px;
    }

    .products {
        padding: 5px 25px;
        font-size: 14px;
    }

    .products-list li > a {
        padding: 10px 10px 35%;
    }

    .products-content {
        height: 35%;
    }

    .products-list ul {
        max-width: 355px;
    }

    .products-content h3 {
        font-size: 14px;
    }


    .products-list li {
        width: 100%;
    }


    /*homepage common*/
    .homepage section {
        font-family: var(--font-arial-caps);
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .homepage h2 {
        font-size: 20px;
        gap: 15px;
        margin-bottom: 50px;
    }

    .homepage h2::before {
        content: "";
        flex-basis: 50px;
        height: 1px;
        background-color: var(--main-color);
    }

    .homepage h2::after {
        content: "";
        height: 1px;
        flex-basis: 50px;
        background-color: var(--main-color);
    }

    /*homepage news section*/
    .homepage-news-content {
        max-width: 415px;
        margin-bottom: 0;
        font-size: 14px;
    }

    .homepage-news-content li {
        width: 100%;
        padding: 15px 10px 20px;
        margin: 0 0 50px;
    }

    .homepage-news-img, .media-news-img-wrapper {
        height: 185px;
    }

    .homepage-news h3, .media-news-summary h3 {
        font-size: 14px;;
        margin: 0;
    }

    .homepage-news-summary time, .media-news-summary time {
        font-size: 14px;
    }

    .media-news-link {
        display: none;
    }

    .see-all {
        min-width: 220px;
        padding: 13px 15px;
    }

    .see-all a {
        font-size: 14px;
    }

    /*homepage project section */
    .homepage-projects-content {
        max-width: 410px;
        margin-bottom: 0;
    }

    .homepage-projects-content li {
        width: 100%;
        margin: 0 0 50px;
        padding: 35px 15px;
    }

    .project-date, .project-detail, .homepage-projects h3 {
        font-size: 14px;
    }

    /*homepage donation section    */
    .donation {
        margin-bottom: 0;
    }

    .donation h2 {
        margin-bottom: 50px;
    }

    .donation-content p {
        font-size: 14px;
    }

    /*homepage social section    */
    .social h2 {
        margin-bottom: 50px;
    }

    .social-list {
        font-size: 14px;
        max-width: 370px;
        flex-wrap: wrap;
    }

    .social-list li {
        width: 150px;
        height: 150px;
        margin: 5px;
    }

    .social-list li::before {
        height: 100px;
        width: 100px;
    }

    .social-list li::after {
        height: 100px;
        width: 100px;
    }

    .social-list .twitter {
        transform: translateY(-50%);
    }

    .social-icon {
        margin-right: 5px;
    }

    /*footer section    */
    .footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        text-align: center;
        padding-top: 50px;
    }

    .footer > * {
        width: 100%;
    }

    footer .logo {
        width: 240px;
    }

    .footer-contact {
        margin-bottom: 40px;
    }

    .footer-contact address {
        max-width: 295px;
    }

    .footer h3 {
        font-size: 20px;
    }

    .footer-nav li {
        list-style-type: none;
        margin-bottom: 25px;
    }

    .footer-nav ul li::before {
        content: " ";
    }

    .footer h3 {
        flex-direction: column;
    }

    .footer-icon {
        width: 33px;
        height: 33px;
    }

    .footer-meta {
        font-size: 12px;
    }

    .footer-meta-date {
        display: block;
    }

    /*about us page*/
    .about-us {
        padding: 95px 0;
    }

    .about-us-content {
        padding: 0 20px;
    }

    .about-us h1 {
        gap: 15px;
        font-size: 20px;
        margin-bottom: 50px;
    }

    .about-us h1::before {
        content: "";
        flex-basis: 50px;
        height: 2px;
        background-color: var(--main-color);
    }

    .about-us h1::after {
        content: "";
        height: 2px;
        flex-basis: 50px;
        background-color: var(--main-color);
    }

    .about-us h2, .about-us h3, .about-us ul {
        font-size: 18px;
        margin-bottom: revert;
    }

    .about-us p {
        font-size: 14px;
    }

}

