:root {
    --primary-color: #4C5D58;
    --red: #DD1D3A;
    --background-gray: #F8F8F8;
}


html {
    overflow-x: hidden !important;
}

body {
    font-family: "BPG Mrgvlovani";

    font-size: 12px;
}

body a,
body span,
body p {
    line-height: 16px;
}



.img_fluid {
    width: 100%;
    height: 100%;
    display: block;
}





.container {

    width: min(100% - 2rem, 1232px);
    margin-inline: auto;
    padding: 0;
    padding-right: 16px;
    max-width: unset;
}

.custom-container {
    width: calc(100% - 150px);
    margin-left: 67px;
    margin-right: 83px;
}


/* main start        */
header {
    position: absolute;
    color: white;
    width: 100%;
    z-index: 999;
    text-transform: uppercase;

}

.header--nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 28px;
    min-height: 110px;
}

.header--nav ul:not(.language-switcher--container) {
    display: flex;
    gap: 120px;
    align-items: center;
    margin-bottom: 10px;
    font-family: 'BPG Mrgvlovani Caps 2010';
    font-size: 16px;
    line-height: 22px;
}


.header--nav ul li {
    position: relative;
}

.header--nav ul li.activee::after {
    position: absolute;
    content: '';
    height: 2px;
    left: 50%;
    width: calc(100% + 20px);
    left: -10px;
    background-color: white;
    bottom: -10px;
}

.header--nav ul li::after {
    position: absolute;
    content: '';
    height: 2px;
    left: 50%;

    background-color: white;
    bottom: -10px;
    width: 0;
    transition: all 0.4s ease;
}

.header--nav ul li:hover::after {
    width: calc(100% + 20px);
    left: -10px;

}

.header-button {
    margin-bottom: 13px;
}

.header--nav .dropdown--btn {
    position: relative;

}

.header--nav .dropdown--btn .dropdown--container {
    position: absolute;
    top: 20px;

    width: calc(100% + 30px);
    left: -15px;
    max-height: 0;
    transition: opacity 0.4s ease;
    transition-delay: 0.6s;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
    text-align: center;
    padding-top: 30px;
    opacity: 0;
    visibility: hidden;
}

.header--nav .dropdown--btn:hover .dropdown--container {
   max-height: 300px;
   opacity: 1;
   
   visibility: visible;
}

section.landing {
    width: 100%;
    min-height: 768px;
    height: 100vh;

    color: white;
    overflow: hidden;
    position: relative;

}

section.landing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/B.jpg');
    background-size: cover;
    animation: moveBackground 10s linear infinite alternate;
    z-index: -1;
    background-position: center;
}

section.landing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.25);
}

section.landing>.custom-container {
    height: 100%;
    padding-bottom: 24px;
}


.main-item {
    padding-top: 130px;
}

.landing-logotype {
    margin-top: 173px;
    margin-bottom: 95px;
}

.landing--button {
    height: 60px;
    width: 429px;
    color: white !important;
    border: 2px solid white;
    font-size: 16px;
    font-family: 'BPG Mrgvlovani Caps 2010';
    background-color: rgba(0, 0, 0, 0.38);
    transition: all 0.4s ease;
    display: grid;
    place-items: center;
    margin-bottom: 90px;
    flex-shrink: 0;
}

.landing--button:hover {
    color: black !important;
    background-color: white;
}

.socials {
    display: flex;
    gap: 40px;
    font-size: 20px;
}

.credits {
    color: #B3B5B7;
    line-height: 14px;
    font-size: 10px;
    display: flex;
    width: 350px;
    justify-content: space-between;
}

.segoeUI {
    font-family: "Segoe UI";
}

.landing--pattern {
    position: absolute;
    left: 0;
    top: 160px;
}

.lh-0 {
    line-height: 0;
}


/* main end */

/* sliding menu */






.navigation__background {
    position: fixed;
    top: 0;
    right: 0;
    height: 2vh;
    width: 2vh;
    border-radius: 50%;
    background: white;
    background-size: cover;
    background-position: center;
    z-index: 100;
    transition: all 800ms cubic-bezier(0.86, 0, 0.07, 1);
    visibility: hidden;
}

header.opened .navigation__background {
    visibility: visible;
    transform: scaleX(500) scaleY(500);
    max-height: 100vh;
    max-width: 100vw;
    overflow: hidden;
}

.navigation__nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    opacity: 0;
    width: 0;
    visibility: hidden;
    z-index: 200;
    transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding-top: 90px;
    color: black;
}

header.opened .navigation__nav {
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.fullscreen-ul {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: center;
    margin-top: 110px;
    margin-bottom: 130px;
    font-size: 16px;
    font-family: 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;

}

.fullscreen-ul li {
    transition: all 0.4s ease;
    cursor: pointer;
}

.fullscreen-ul li:hover {
    color: #D8BA98;
}

.fullscreen-ul li:hover i,
.fullscreen-ul li i {
    color: black;
}

.gap-75 {
    gap: 75px;
}

.language-switcher--container {
    display: flex;
}

.language-switcher--container a {

    font-size: 16px;
    font-family: "FiraGO regular";
    width: 63px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.language-switcher--container a.active {
    border: 1px solid #D8BA98;
    border-radius: 6px;
}

.fullscreen--bottomer {
    position: absolute;
    bottom: 0;
    right: 0;
}

.fullscreen--credits {
    margin-top: 70px;
    color: #7E7E7E;
    font-size: 10px;
    text-align: center;
}

.fullscreen--dropdown-btn {
    color: black !important;
}

.fullscreen--dropdown-container {

    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 14px;
    max-height: 0;
    transition: all 0.4s ease;
    overflow: hidden;
    text-align: center;
}

.fullscreen--dropdown-btn.opened .fullscreen--dropdown-container {
    max-height: 200px;
    padding-top: 20px;
}

.fa-caret-down {
    transition: all 0.3s ease;
}

.fullscreen--dropdown-btn.opened .fa-caret-down {
    transform: rotate(-180deg);
}

/* projects start */
.pe-90 {
    padding-right: 90px;
}

.projects--left .pe-90 {
    width: 100%;
}

.projects .projects--left>.pe-90:first-of-type {
    margin-bottom: 20px;
}

.projects--left {
    min-height: 768px;

    background-image: url('../img/Mask\ Group\ 4.svg');
    background-repeat: no-repeat;
    background-size: cover;


    width: 526px;
    padding-left: 67px;
    padding-top: 50px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.projects--left h1 {
    margin-left: 62px;
    font-family: 'Gilroy GEO';
    font-size: 27px;
    line-height: 30px;
    margin-bottom: 35px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.see__project {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4C5D58;
    font-family: 'BPG Mrgvlovani Caps 2010';
    color: white !important;
    height: 45px;
    margin-top: 15px;
    margin-bottom: 10px;
    transition: all 0.4s ease;
    position: relative;
    margin-bottom: 10px;
}

.see__project span {
    position: relative;
    z-index: 5;
}

.see__project::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 0;
    background-color: #D8BA98;
    left: 0;
    top: 0;
    transition: all 0.4s ease;
}

.see__project:hover::after {
    width: 100%;
}

.project--left-building {
    /* margin-bottom: 40px; */
    width: 379px;
    height: 212px;
    margin-top: 25px;
    margin-bottom: 15px;
    object-fit: cover;
}

.projects--call {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: transparent;
    border: 1px solid #959595;
    height: 45px;
}

.projects--call span {
    position: relative;
    z-index: 6;
    color: black;
    transition: all 0.2s ease;
}

.projects--call:hover span {
    color: white;
}

.projects--call div {
    position: absolute;
    height: 100%;
    width: 45px;
    padding-left: 13px;
    display: flex;
    align-items: center;
    background-color: black;
    left: 0;
    top: 0;
    transition: all 0.4s ease;
    z-index: 5;
}

.projects--call:hover div {
    width: 100%;
}

.projects--credit {
    color: #707070;
    font-size: 10px;
    margin-top: 27px;
    display: flex;
    justify-content: space-between;
    padding-inline: 5px;
    gap: 25px;
    position: relative;
}

.projects--item {
    height: 100vh;
    min-height: 768px;
}

.projects .s1 {
    width: calc(100vw - 526px);
    position: relative;
}
.s2.swiper-container,.s3.swiper-container{
    width: 100%;
}
.s1 .swiper-slide img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;

}

.s1-pagination {
    position: absolute;
    right: calc((100vw - 560px) / -2);
    transform: translateX(50%);
    top: 2px;
    bottom: unset !important;
    left: unset !important;
    z-index: 11;
    color: white !important;
    font-size: 20px;
    font-family: 'Gilroy GEO';
    display: inline-flex;
    align-items: center;
    gap: 30px;
    text-decoration: underline;
    height: 26px;
    width: unset !important;

}

.swiper-pagination-bullet-active {
    color: #D8BA98 !important;
}

.swiper-pagination-bullet {
    background-color: transparent;
    height: auto;
    width: auto;
    opacity: 1;
}

.swiper-slide-active {
    position: relative;
}

.swiper-slide-active::after {
    content: '';
    background-image: url('../img/Rectangle\ 109.svg');
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.s1-logo {
    position: absolute;
    right: 83px;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    line-height: 0;
}
.s2-pagination span, .s3-pagination span{
    font-family: 'Gilroy GEO' !important;
}
/* projects end */

/*  project__inner start             */
section.project__inner {
    width: 100%;
    height: 100vh;
    min-height: 768px;
    padding-bottom: 28px;
    color: white;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;

}

section.project__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/B.jpg');
    object-position: center;
    background-size: cover;
    animation: moveBackground 10s linear infinite alternate;
    z-index: -2;
    filter: blur(3px);
}

section.project__inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.65);
}

section.project__inner>.custom-container {
    height: 100%;

}

.project__inner--header {
    font-family: 'Gilroy GEO';
    font-size: 30px;
    line-height: 30px;
    position: absolute;
   /* top: 50px;
    left: 50%;
    transform: translateX(-50%); */

    top: 180px;
     left: 127px;

}

.project__inner .back {
    display: flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.4s ease;
}

.project__inner .back span {
    opacity: 0;
    transition: all 0.4s ease;
}

.project__inner .back:hover span {
    opacity: 1;
}

.project__inner .back i {
    font-size: 30px;
    color: #C6C6C6;
    transition: all 0.4s ease;
    position: relative;
    left: 0;
}

.project__inner .back:hover i {
    color: white;
    left: -30px;
}

.project__inner--building {
    height: 768px;
}

.project__inner--credits {
    position: absolute;
    bottom: 30px;
}


/* project_inner end */

/*apartment start */
.apartment--left {
    min-height: 768px;
    height: 100vh;
    background-image: url('../img/Mask\ Group\ 4.svg');
    background-repeat: no-repeat;
    background-size: cover;


    width: 526px;
    padding-left: 67px;
    padding-top: 50px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.apartment--info {
    width: 330px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    font-family: 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    padding-bottom: 27px;
    padding-right: 2px;
    margin-bottom: 27px;
    border-bottom: 1px solid #575757;

}

.apartment--info2 {
    min-width: 223px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;

    margin-bottom: 64px;
}

.apartment--info sup {
    font-size: 13px;
}

.apartment--info2 sup {
    font-size: 10px;
}

.apartment--cost {
    margin-top: 4px;
    font-size: 20px;
    color: #575757 !important;
}

.apartment--left h1 {
    margin-bottom: 30px;
    margin-left: 62px;
    font-family: 'Gilroy GEO';
    font-size: 27px;
    line-height: 30px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.apartment--info2 p span:last-child {
    color: #757575;
}

.apartment--right {
    width: 100%;
    height: 100vh;
    min-height: 768px;
    overflow: hidden;
    position: relative;
    padding-right: 82px;
    padding-top: 110px;
}

.apartment--right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/Scroll\ Group\ 1.svg');
    background-size: cover;
    animation: moveBackground 10s linear infinite alternate;
    z-index: -2;
}

.apartment--right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.65);
}

.apartment--img--cont {
    margin-top: 82px;
}

.apartment--img {
    height: 442px;
    width: 572px;
    object-fit: cover;
    position: relative;
    z-index: 5;
}

.apartment--pattern {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
}

.apartment .back {
    display: flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    top: 50%;
    left: 30px;
    color: white !important;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 9;
}

.apartment--left {
    position: relative;
}

.apartment .back span {
    opacity: 0;
    transition: all 0.4s ease;
    color: white;
    display: none;
}

.apartment .back:hover span {
    opacity: 1;
}

.apartment .back i {
    font-size: 30px;
    color: #C6C6C6;
    transition: all 0.4s ease;
    position: relative;
    left: 0;
}

.apartment .back:hover i {
    left: -20px;
    color: white;
}

/* apartment end */

/* contact start */
.contact__container {
    margin-top: 85px;
    display: flex;
    justify-content: space-between;
    gap: 64px;
}

.contact--adresses {
    display: flex;
    flex-direction: column;
    gap: 32px;
    font-size: 14px;
    padding: 43px 56px 0 64px;
    border-right: 1px solid #7E7F7F;
    border-left: 1px solid #7E7F7F;
}

.contact--adresses .socials {
    margin-top: 30px;
}


section.contact {
    width: 100%;
    height: 100vh;
    min-height: 768px;
    padding-bottom: 46px;
    color: white;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;

}

section.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/B.jpg');
    background-position: center;
    background-size: cover;
    animation: moveBackground 10s linear infinite alternate;
    z-index: -2;
}

section.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.65);
}

.contact--form {
    width: 388px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.contact--form h2 {
    font-size: 16px;
    font-family: 'BPG Mrgvlovani Caps 2010';
}

.contact--form input {
    width: 100%;
    height: 40px;
    padding: 0;
    padding-left: 20px;
    border-radius: 5px;
    border: none;
}

.contact--form textarea {
    width: 100%;
    height: 94px;
    padding: 0;
    padding-left: 20px;
    padding-top: 14px;
    border-radius: 5px;
    border: none;
    resize: none;
}

.contact--form button {
    background-color: #D8BA98;
    color: white !important;
    width: 201px;
    height: 40px;
    margin-top: 16px;
    border-radius: 5px;
    padding: 0;
    transition: all 0.4s ease;
}

.contact--form button:hover {
    background-color: #000000;
}

.contact .credits {
    margin-top: auto;
}

/* contact end */


/* sartuli start */
.sartuli h1 {
    font-family: 'Gilroy GEO';
    font-size: 30px;
    margin-top: 47px;

    line-height: 30px;
}

.gap-35 {
    gap: 35px;
}

.sartuli--sartuli ul {
    margin-top: 68px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    font-size: 20px;
    font-family: 'Gilroy GEO';
    line-height: 30px;
    text-align: center;
    text-decoration: underline;
}
.sartuli--sartuli ul li:nth-child(1),.sartuli--sartuli ul li:nth-child(2){
    display: none;
}

.sartuli--sartuli ul .active {
    color: #D8BA98 !important;
}


.project__inner.sartuli .back {
    left: 0;
}

.sartuli--img {
    margin-left: 140px;
}


/* sartuli end */

/* logo animation */

.logo-icon-path {
    stroke: #262F34;
    stroke-width: 1;
    fill: none;
    stroke-miterlimit: 10;
}

.logo-icon-path--middle-right {
    animation: draw 4s 0.6s linear forwards, fillOpacity 0.6s 3s forwards ease-in;
    stroke-dasharray: 354;
    stroke-dashoffset: 354;
    fill: #262F34;
    fill-opacity: 0;
}

.logo-animation {
    opacity: 1;
    width: 100vw;
    height: 100vh;
    background-image: url('../img/Foris\ Facebook\ profile\ piczzture.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 2s cubic-bezier(.42, 0, .58, 1);
}

.removed {
    opacity: 0;


}

/* about  start */

section.about {
    width: 100%;
    min-height: 100vh;


    color: white;
    overflow: hidden;
    position: relative;

}

section.about::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/B.jpg');
    background-size: cover;
    background-position: center;
    animation: moveBackground 10s linear infinite alternate;
    z-index: -2;
}

section.about::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.83);
}

section.about>.custom-container {
    height: 100%;
    padding-bottom: 24px;
    padding-top: 80px;
}

.about--smallflex {
    display: flex;
    align-items: center;
    justify-content: center;


}

.about--smallflex div.d-flex {
    width: 606px;
    padding-right: 62px;
    padding-left: 56px;
    max-width: 85vw;
}

.gap-20 {
    gap: 20px;
}

.about--header {
    font-size: 20px;
    font-family: 'Gilroy GEO';
    line-height: 26px;
}

section.about p,
section.about a,
section.about span {
    font-size: 14px;
}

.about--bigflex p {
    width: 576px;
    max-width: 85vw;
    padding-right: 88px;
}



.about--bigflex {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 86px;
    margin-bottom: 66px;
    justify-content: center;
}

.company__info__container {
    margin-top: 190px;
    background-color: #4C5D58;
    width: 100%;
    padding-top: 62px;
    height: 230px;
}

.company__info h2 {
    font-size: 45px;
    font-family: 'Gilroy GEO';
    text-align: center;
}

.company__info h2 span:first-child {
    font-size: 45px;
    padding-right: 5px;
}

.company__info h2 span:last-child {
    font-size: 40px;
}

.company__info p {
    font-size: 14px;
    font-family: 'BPG Mrgvlovani Caps 2010';
}

.company__info {
    display: flex;
    gap: 130px;
    justify-content: center;
    position: relative;
}

.company__info--item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.company__info .company__logo--left {
    position: absolute;
    left: -183px;
}

.company__info .company__logo--right {
    position: absolute;
    right: -183px;
}

.company--credits {
    margin-top: 46px;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 10px;
    color: #8C8C8C;
}


/* about  end */

.header-button {
    display: none;
}

/* removing all patterns */


.landing--pattern {
    display: none;
}

.s1-logo {
    display: none;
}


.apartment--pattern {
    display: none;
}
.contact--adresses img{
    display: none;
}
.company__info .company__logo--left{
    display: none;
 }
 .company__info .company__logo--right{
    display: none;
 }
/* removing all : created by proservice */

.projects--credit .segoeUI {
    display: none;
}

.credits .segoeUI {
    display: none;
}

.credits,
.projects--credit {
    justify-content: center;
}

.company--credits .segoeUI {
    display: none;
}

.fullscreen--credits .segoeUI {
    display: none !important;
}


/*
section.landing::before{
   
    -moz-animation:    moveBackground 10s linear infinite alternate, back 15s infinite; 
    -o-animation:      moveBackground 10s linear infinite alternate, back 15s infinite; 
    animation:         moveBackground 10s linear infinite alternate, back 15s infinite; 
} */
/*
section.landing::before{
    background-image: url('../img/B.jpg');
} */