/* version:0.10 */
.carousel {
    position: relative
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

.carousel-item {
    position: relative;
    display: none;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    transition: -webkit-transform .6s ease;
    transition: transform .6s ease;
    transition: transform .6s ease, -webkit-transform .6s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px
}

@media screen and (prefers-reduced-motion:reduce) {
    .carousel-item {
        transition: none
    }
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: block
}

.carousel-item-next,
.carousel-item-prev {
    position: absolute;
    top: 0
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {
    .carousel-item-next.carousel-item-left,
    .carousel-item-prev.carousel-item-right {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.active.carousel-item-right,
.carousel-item-next {
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
}

@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {
    .active.carousel-item-right,
    .carousel-item-next {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

.active.carousel-item-left,
.carousel-item-prev {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {
    .active.carousel-item-left,
    .carousel-item-prev {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: .6s;
    transition-property: opacity
}

.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right,
.carousel-fade .carousel-item.active {
    opacity: 1
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    opacity: 0
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev,
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {
    .carousel-fade .active.carousel-item-left,
    .carousel-fade .active.carousel-item-prev,
    .carousel-fade .carousel-item-next,
    .carousel-fade .carousel-item-prev,
    .carousel-fade .carousel-item.active {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: .5
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent no-repeat center center;
    background-size: 100% 100%
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")
}

.carousel-indicators {
    position: absolute;
    bottom: -19px;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: left;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0px;
    list-style: none;
    background: white;
    height: 31px;
}

.carousel-indicators li {
    height: 10px;
    width: 10px;
    border-radius: 180px;
    margin-top: 10px;
    cursor: pointer;
    background-color: grey;
    opacity: 0.5;
    margin-right: 10px;
}

.carousel-indicators .active {
    background-color: #275E58!important;
    opacity: 1;

}

.carousel-indicators li::before {
    position: absolute;
    top: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: ""
}

.carousel-indicators li::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: ""
}

.carousel-indicators .active {
    background-color: black
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center
}

.heeight {
    height: 84.5vh;
}

.navbar {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 30vh;
    width: 100vw;
    text-align: right;
    background: #ffdecf;
}

.navbar h1 {
    margin: 0 auto 0 110px;
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    color: #222831;
}

.navbar ul {
    width: 100px;
    font-weight: 800;
    list-style: none;
}

.navbar a {
    padding: 0px 10px 0 0;
    text-decoration: none;
    font-size: 20px;
    color: #222831;
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
}

.portfolio-menu {
    text-align: center;
}

.portfolio-menu ul li {
    display: inline-block;
    list-style: none;
    cursor: pointer;
}

.portfolio-item .item {
    float: left;
    margin-bottom: 10px;
}

.active-menu {
    border-bottom: 2px solid #275E58;
    color: #275E58;
    font-variation-settings: "wght" 800;
}

.btn-menu {
    margin: 0 -3px!important;
    padding: 0 20px;
    padding-bottom: 10px;
}

.btn-menu:hover {
    border-bottom: 2px solid #275E58;
}

ul {
    margin: 0;
}

hr {
    margin-top: -2px!important;
    margin-bottom: 0px!important;
    border: 0;
    border-top: 1px solid black!important;
    margin: 0;
    margin-top: -4px;
}

.right-col {
    padding-right: 0!important;
}

.left-col {
    padding-left: 0!important;
}

.center-col {
    padding: 10px 5px!important;
}

.grey {
    background-color: #EDEDED;
    margin: 0;
    margin-top: 40px;
}

.no-padding {
    padding: 0;
}

.margin-top {
    margin-top: 20px;
}

.margin-top-btn {
    margin-top: 40px;
}

.moraba {
    width: 100%;
    height: 350px;
    position: relative!important;
    left: 0!important;
    top: 0!important;
    margin-top: 15px;
    background-repeat: no-repeat;
    background-size: cover;
}

.mostatil {
    width: 100%;
    height: 200px;
    position: relative!important;
    left: 0!important;
    top: 0!important;
    margin-top: 15px;
    background-repeat: no-repeat;
    background-size: cover;
}

.bigmostatil-text {
    height: 300px;
    position: relative!important;
    left: 0!important;
    top: 0!important;
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
}

.bigmostatil {
    height: 300px;
    position: relative!important;
    left: 0!important;
    top: 0!important;
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
    transition: width 2s;
}

.hoverr:hover .bigmostatil {
    width: 40%;
}

.hoverr:hover .arrow-right {
    left: 58.5%;
}

.hoverr:hover .arrow-left {
    right: 58.5%;
}

.arrow-left {
    position: absolute;
    right: 48.5%;
    width: 50px;
    top: 130px;
    z-index: 2;
    transition: right 2s;
}

.arrow-right {
    position: absolute;
    left: 48.5%;
    width: 50px;
    top: 130px;
    transition: left 2s;
}

#hover-left {
    position: relative;
    transition: left 1s;
    left: 1000px;
}

#hover-right {
    position: relative;
    transition: right 2s;
    right: 1000px;
}

.mostatil-txt {
    padding: 0 70px;
}

p {
    font-variation-settings: "wght" 500;
    font-size: 13px;
}

h3 {
    font-variation-settings: "wght" 650;
    font-size: 22px;
}

.row {
    position: relative!important;
    left: 0!important;
    top: 0px!important;
}

.tablink {
    border: 0;
    background: none;
    padding: 0;
    width: 100%;
    outline: none;
}

button:focus {
    border: none;
    outline: none;
}

.column {
    margin-top: 30px;
    margin-bottom: 30px;
}

#mines {
    display: none;
    width: 20px;
    margin-left: 10px;
}

#plus {
    width: 20px;
    margin-left: 10px;
}

.column hr {
    border: 0;
    border-top: 1px solid black!important;
    margin-top: 10px!important;
    margin-bottom: 15px!important;
}

.column button {
    color: #275E58;
}

.column a {
    color: black;
    text-decoration: none;
}

.column a:hover {
    color: #275E58!important;
    font-variation-settings: "wght" 600;
}

.spaceon p {
    text-align: justify;
}

.mines {
    display: none;
}

t {
    float: right;
    font-size: 17px;
}

.plus,
.mines {
    float: left;
    width: 20px;
}

.mines {
    margin-top: 10px;
}

.mySlides img {
    margin-bottom: 10px;
}

.datas {
    display: none;
}

.digital {
    display: block;
}

.city img {
    margin-bottom: 20px;
    width: 100%;
}

.cke {
    visibility: hidden;
}


.city p {
    margin: 10px 0 20px 0;
    font-size: 14px;
}

.img-fix {
    margin: auto;
}

a {
    text-decoration: none;
    color: inherit!important;
    transition: all 0.25s linear;
}

.btn-menu:hover {
    cursor: pointer;
}

.tablink:hover {
    cursor: pointer;
}

.city a {
    float: right;
}

footer p {
    margin: auto;
}

.city_mobile {
    display: none;
}

.none_desktop {
    display: none!important;
}

.imggg {
    display: none;
}

.tablink {
    font-weight: 400;
}

@media (max-width: 768px) {
    .btn-menu {
        padding: 0 5px;
    }
    ul {
        padding: 0;
    }
    .datas .col-lg-6 {
        /*margin-top: 35px;*/
    }
    #logo {
        width: 80%;
        margin-top: 14px;
    }
    .container {
        width: 100%;
        padding-right: 45px;
        padding-left: 45px;
        margin-right: auto;
        margin-left: auto;
    }
    .none_mobile {
        display: none!important;
    }
    .city_mobile {
        display: block;
        margin-bottom: 50px;
    }
    .spinner-spin2 {
        right: -17px!important;
    }
    .padding-zero {
    
    }
    .none_desktop {
        display: flex!important;
    }
    .width2_mobile {
        max-width: 20%;
    }
    .width3_mobile {
        max-width: 29%;
    }
    .city_mobile img {
        margin-bottom: 2px;
    }
    .city_mobile a {
        font-size: 11px;
    }

    .column a {
        color: black;
        text-decoration: none;
        /* width: 100%; */
        text-align: center;
        border: 1px solid #eeeeee;
        padding: 5px 10px;
        background: #eeeeee;
    }
    .imggg {
        display: none;
        margin: 0;
        background: #275e58;
        width: 10%;
        margin-top: 5px;
        max-width: 46%;
        margin-bottom: 5px;
    }

    .btn-menuu {
        background-color: #eeeeee;
        margin-bottom: 10px;
        padding: 15px 6px 15px 6px;
        text-align: center;
        line-height: 0;
        margin: 4px 0;
        border: 0!important;
    }
    .active-menu {
        color: white;
        background-color: #275E58;
        font-variation-settings: "wght" 400;
    }
    .column hr {
        margin: 10px 0 10px 0!important;
    }
    .column {
        margin-top: 10px;
    }
    .tablink {
        font-weight: 400;
    }
    .imggg img {
        width: 83%;
        margin: 16px 0 5px
    }
    #branding-img,
    #hoviat-img,
    #mohtava-img,
    #resane-img {
        display: none!important;
    }
   


}
.customheigii {
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}
footer{
    margin-top: 0;
}