*:not(i) {
    font-weight: 400;
    font-style: normal;
    font-family: 'CocoSharp' !important;
}
logo img 
b{
    font-weight: bold !important;
}
dl, ol, ul{
    margin: 0;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.typed-cursor{
    display:none;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
header .socials{
    display: none;
}
header.sticky {
    position: fixed;
    box-shadow: 10px -6px 15px black;
    transition: all 0.4s ease;
    animation: smoothScroll 1s;
    border-top: none;
    background: #000000e6;
    z-index: 222;
    padding: 5px 0;
}
header.sticky nav .head-navlinks .price-offer{
    /*border: 1px solid #eee;*/
    background-color: #0c4c70;
    font-size: 14px;
}
header.sticky nav .head-navlinks .price-offer:hover{
    opacity: .8;
}
@keyframes smoothScroll {
    0% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0px);
    }
}

.head-section {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo-side {
    display: flex;
    align-items: center;
}
.navlogo{
    display: none;
}
.languages {
    display: flex;
    /* justify-content: center; */
    flex-direction: row;
    margin-left: 25px;
    padding: 0;
}
@keyframes Logoanimation{
  0%{transform: scale(1);}
  5%{ transform: scale(1.1);}
  10%{ transform: scale(0.8);}
  15%{ transform: scale(1.1);}
  20%{ transform: scale(0.8);}
  35%{ transform: scale(1);}
  40%{ transform: scale(1);}
  45%{ transform: scale(1);}
  50%{ transform: scale(1);}
  55%{ transform: scale(1);}
  60%{ transform: scale(1);}
  25%{ transform: scale(1);}
  30%{ transform: scale(1);}
    
}
.logo img {
    transition: .4s;
    width: 200px !important;
    animation-name: Logoanimation;
      animation-duration: 5.2s;
      animation-delay: 5s;
      animation-fill-mode:both;
      animation-iteration-count: infinite;
      transform: rotateZ(0deg);
}

.languages .active {
    background-color: rgba(0, 0, 0, 0.2);
}

.languages li {
    width: 44px;
    height: 44px;
    margin: 0 4px;
    transition: 0.5s all ease;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.languages li:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.languages a {
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    font-size: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.languages a:hover {
    color: #fff;
}

/* mobilenav */
header .head-section .mobile_btn {
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: black;
    float: right;
    display: none;
    position: relative;
    transition: all 0.2s linear;
    z-index: 444;
}

header .head-section .mobile_btn span {
    height: 3px;
    border-radius: 2px;
    background: #fff;
    position: absolute;
    display: block;
    width: 20px;
    left: 14px;
}

header .head-section .mobile_btn span:nth-child(2) {
    top: 23px;
    width: 16px;
    height: 2px;
}

header .head-section .mobile_btn span:nth-child(3) {
    top: 30px;
    transition-delay: 0.6s;
    transition: all 0.4s linear;
}

header .head-section .mobile_btn.opened {
    transform: rotate(45deg);
    transition: all 0.2s linear;
    /* transition-delay: 0.3s; */
}

body.locked {
    overflow: hidden;
}

header .head-section .mobile_btn span:nth-child(1) {
    top: 16px;
    transition-delay: 0.6s;
    transition: all 0.4s linear;
}

header .head-section .mobile_btn.opened span:nth-child(1) {
    top: 23px;
    transition: all 0.2s linear;
}

header .head-section .mobile_btn.opened span:nth-child(3) {
    top: 23px;
    transition: all 0.2s linear;
    transform: rotate(-90deg);
}

/*  */
header nav {
    display: flex;
    justify-content: center;
}

header nav .head-navlinks {
    display: flex;
    flex-direction: row;
    align-items: center;
}

header nav .head-navlinks>li {
    margin-left: 14px;
}

.head-navlinks:not(.dropdown-nav)>li>a:not(.price-offer) {
    font-size: 16px;
    color: #fff;
    padding: 10px 0 20px;
    position: relative;
}

.head-navlinks:not(.dropdown-nav)>li>a:not(.price-offer)::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 8px;
    width: 0;
    height: 1px;
    background: -webkit-linear-gradient(left, #4f4f4f, #fde08d);
    transition: width 0.25s ease-in-out, right 0.25s ease-in-out, left 0.25s ease-in-out, bottom 0.4s;
}

.head-navlinks:not(.dropdown-nav)>li>a:not(.price-offer):hover::after {
    left: 0;
    right: auto;
    width: 100%;
}

.dropdown-nav {
    padding-left: 0;
}

header nav .head-navlinks .open {
    position: relative;
}

header nav .head-navlinks .open:hover .dropdown-nav {
    opacity: 1;
    visibility: visible;
}

header nav .head-navlinks .open .dropdown-nav {
    overflow: hidden;
    position: absolute;
    left: -20px;
    top: 35px;
    width: fit-content;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: white;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 28px 52px 0px;
}

header nav .head-navlinks .open li:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

header nav .head-navlinks .open .dropdown-nav li {
    transition: 0.5s all ease;
}

header nav .head-navlinks .open .dropdown-nav li a {
    color: #454749;
    position: relative;
    white-space: nowrap;
    transition: opacity 0.3s ease-in-out;
    font-weight: 400;
    font-size: 14px;
    width: 100%;
    line-height: 50px;
    display: block;
    padding: 0 20px;
}

header nav .head-navlinks .open .dropdown-nav li :hover {
    background: whitesmoke;
}

header nav .head-navlinks .price-offer {
    color: #fff;
    display: block;
    padding: 16px 22px;
    background-color: rgba(0, 0, 0, 0.432);
    font-size: 13px;
    border-radius: 25px;
    transition: 500ms background ease;
    white-space: nowrap;
    margin-left: 15px;
}

header.sticky nav .head-navlinks .price-offer {
    transition: .9s;
}

header nav .head-navlinks .price-offer:hover {
    /*background: rgba(0, 0, 0, 0.658);*/
}

/* slider-section */
.head-slider {
    position: relative;
    background: #000;
    overflow: hidden;
}

.head-slider .sliderSlick {
    height: 100vh;
}

.head-slider .sliderSlick .box-part {
    height: 100vh;
    overflow: hidden;
    display: block;
    /* transition: all 1s cubic-bezier(0.7, 0, 0.3, 1); */
    /* transform: scale(1.2); */
}

@keyframes test {}

.box {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transform: scale(1.2);
    z-index: 1;
    animation-name: test;
}

.box-part.slick-active .box {
    transform: scale(1);
}

.head-slider .sliderSlick .box-part .slide-txt {
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 0 130px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.61);
    opacity: 0.77;
}

.head-slider .sliderSlick .box-part.slick-active .slide-txt span {
    margin-left: 0;
    transition: all 0.7s ease-out;
}

.head-slider .sliderSlick .box-part.slick-active .slide-txt h2,
.head-slider .sliderSlick .box-part.slick-active .slide-txt h1{
    margin-left: 0;
    transition: all 0.7s ease-out;
    padding-top: 5px;
}

.head-slider .sliderSlick .box-part.slick-active .slide-txt p {
    margin-left: 0;
    transition: all 1s ease-out;
}

/*.head-slider .sliderSlick .box-part .slide-txt span::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 6px;*/
/*    width: 9px;*/
/*    height: 9px;*/
/*    border-radius: 50%;*/
/*    background: #d03000;*/
/*    z-index: 1;*/
/*}*/

.head-slider .sliderSlick .box-part .slide-txt span {
    font-size: 20px;
    text-transform: uppercase;
    /*padding-left: 20px !important;*/
    margin-bottom: 20px;
    /*padding-left: 15px;*/
    position: relative;
    color: #fff;
    margin-left: -100vw;
    transition: all 0.3s ease-out;
}

.head-slider .sliderSlick .box-part .slide-txt h2,
.head-slider .sliderSlick .box-part .slide-txt h1{
    font-size: 70px;
    color: #fff;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    margin-left: -100vw;
    transition: all 0.4s ease-out;
}

.head-slider .sliderSlick .box-part .slide-txt p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 20px;
    line-height: 1.2;
    max-width: 550px;
    margin-left: -100vw;
    transition: all 0.4s ease-out;
}

/* nav-slider */
.head-slider .slider-nav {
    position: absolute;
    bottom: 145px;
    width: 100%;
    z-index: 1;
}

.head-slider .slider-nav .container {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.slick-prev {
    left: auto;
    position: absolute;
    right: 76px;
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

.slick-next {
    right: 30px;
    position: absolute;
}

.head-slider .slider-nav button {
    margin: 0;
    border: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.42);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    text-align: center;
    padding: 0;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s linear;
}

.head-slider .slider-nav button:hover {
    background: #fff;
    transition: all 0.2s linear;
}

.head-slider .slider-nav button:first-child {
    margin-right: 18px;
}

.head-slider .slider-nav button svg {
    fill: #fff;
}

.head-slider .slider-nav button:hover svg {
    fill: #0c4c70;
}

.white-side{
    position: absolute;
    background-image: linear-gradient(to top,rgb(247,247,249),rgba(255,255,255,0));
    height: 200px;
    width: 100%;
    bottom: 0;
    z-index: 999;
}

/*new advantages*/

.advantages{
    padding: 20px;
    background-color: #F7F7F9;
    box-shadow: 0px -20px #fff;
}
.advantage-top {
    padding: 15px 0px;
}
.advantage-text {
    padding: 0 100px;
}
.advantage-top span {
    color: #777;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    font-size: 13px;
}
.advantage-bottom {
    padding-top: 20px;
}
.advantage-row{
    margin: 0;
}
.advantage-link {
    text-decoration: none;
    color: #000;
}
.advantage-box {
    padding: 30px 40px;
    text-align: center;
    background-color: #fff;
    transition: all 0.2s;
    cursor: pointer;
    height: 100%;
}
.advantage-box:hover {
    background-color: #d3af68;
    /*color: #fff;*/
}
.advantage-box:hover .advantage-box-content i{
    color: #fff;
}
.advantage-box:hover .advantage-box-content span{
    color: #fff;
}
.advantage-box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.advantage-box-content i {
    font-size: 50px;
    margin-bottom: 35px;
    color: #d3af68;
}
.advantage-box-content span {
    font-weight: 600;
    font-size: 14px;
    color: #686868;
    line-height: 21px;
}

/* new-about */

#about{
    /*padding: 30px 0;*/
    padding-top: 120px;
    padding-bottom: 40px;
}
.turned2 {
    background-color: transparent;
    opacity: 0.1;
    font-size: 55.13px !important;
    display: none;
}
.turned{
    background-color: transparent;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    margin-top: 5px;
    opacity: 0.1;
    font-size: 55.13px !important;
}
.about-video{
    position: relative;
    /*width: 400px;*/
    height: 381px;
    /*background-color: rgb(231, 86, 73);*/
    border-radius: 40px;
    transition-duration: 500ms;
    overflow: hidden;
}

.about-video::after{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50% , -50%);
    width:0%;
    height:0%;
    border-radius:50%;
    background:transparent;
    transition:.5s;
}
.about-video:hover::after {
    background: #d3af68;
    width:100%;
    border-radius:25%;
    height:100%;
}
.video-wrapper{
    position: absolute;
    top: 0px;
    left: 0px;
    height: 381px;
    object-fit: cover;
    width: 100%;
    opacity: 0.4;
    z-index: 3;
}
.col7{
    padding-left: 1px;
    padding-right: 1px;
}
.play {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    text-align: center;
    width: 100%;
}
.play img.play-black{
    width:10%;
    /*box-shadow:0 0 30px #000;*/
}
#about .zoom{
    transform:scale(1.05) !important;
}
about .zoom img {
     filter: grayscale(0) !important; 
}
about .zoom .owl-image::after{
    background:transparent;
}
.about-right-side {
    display: flex;
    flex-direction: column;
    position: relative;
    bottom: 60px;
    right: 60px;
    z-index: 3;
}
.about-right-side img {
    /*object-fit: contain;*/
    /*height: 270px;*/
    /*width: 450px;*/
    padding-left: 60px;
}
.about-text {
    width: 560px;
    height: 236px;
    background-color: #fafafa;
    border-bottom-left-radius: 45px;
    border-bottom-right-radius: 45px;
    border-top-right-radius: 45px;
    text-align: left;
    padding: 45px 45px 45px 45px;
}
.about-text a{
    text-decoration: underline !important;
    font-size: 15px;
    padding-top: 22px;
    color: rgb(65, 60, 60);
}
.horizantal-heading {
    font-size: 42px;
    margin-bottom: 0.5rem;
    background-color: none;
    padding: 0;
    color: rgb(65, 60, 60);
}
.horizantal-paragraph {
    font-size: 16px;
    margin-bottom: 1rem;
    line-height: 22px;
}
}
.about-right-side a {
    text-decoration: underline;
    font-size: 14px;
    padding-top: 22px;
    color: rgb(65, 60, 60);
} 
/*new-about*/

/* projects section */
/*<!--.projects-title {-->*/
/*<!--    display: flex;-->*/
/*<!--    justify-content: space-between;-->*/
/*<!--    align-items: center;-->*/
/*<!--    margin: 0 0 29px;-->*/
/*<!--}-->*/

/*<!--.projects-title h2 {-->*/
/*<!--    font-size: 44px;-->*/
/*<!--    font-weight: 700;-->*/
/*<!--    letter-spacing: .01em;-->*/
/*<!--}-->*/

/*<!--.projects-title svg {-->*/
/*<!--    width: 30px;-->*/
/*<!--    transition: .4s;-->*/
/*<!--}-->*/

/*<!--.right-arrow svg:hover {-->*/
/*<!--    fill: #01ac6a;-->*/
/*<!--}-->*/

/*<!--.owl-item img {-->*/
/*<!--    filter: grayscale(1);-->*/
/*<!--    object-fit: cover;-->*/
/*<!--    height: 250px;-->*/
/*<!--    transition: .4s;-->*/
/*<!--}-->*/

/*<!--.owl-image::after {-->*/
/*<!--    content: "";-->*/
/*<!--    position: absolute;-->*/
/*<!--    top: 0;-->*/
/*<!--    left: 0;-->*/
/*<!--    width: 100%;-->*/
/*<!--    height: 250px;-->*/
/*<!--    opacity: .7;-->*/
/*<!--    background: #202020;-->*/
/*<!--    -webkit-transition: opacity .5s cubic-bezier(.785, .135, .15, .86);-->*/
/*<!--    transition: opacity .5s cubic-bezier(.785, .135, .15, .86);-->*/
/*<!--}-->*/

/*<!--.owl-desc:hover img {-->*/
/*<!--    filter: none;-->*/
/*<!--}-->*/

/*<!--.owl-image:hover::after {-->*/
/*<!--    opacity: 0;-->*/
/*<!--}-->*/

/*<!--.owl-content {-->*/
/*<!--    font-size: 16px;-->*/
/*<!--}-->*/

/*<!--.owl-event-component {-->*/
/*<!--    margin: 0 0 22px;-->*/
/*<!--    font-size: 12px;-->*/
/*<!--}-->*/

/*<!--.owl-event-component a {-->*/
/*<!--    color: #01ac6a;-->*/
/*<!--    margin: 0 20px 0 0;-->*/
/*<!--}-->*/

/*<!--.owl-event-component a:hover {-->*/
/*<!--    color: #202020;-->*/
/*<!--}-->*/

/*<!--.owl-event-component span {-->*/
/*<!--    font-family: 'Mukta', sans-serif !important;-->*/
/*<!--    color: #92969a;-->*/
/*<!--}-->*/

/*<!--.owl-title {-->*/
/*<!--    margin: 0 0 17px;-->*/
/*<!--}-->*/

/*<!--.owl-title a {-->*/
/*<!--    font-size: 22px;-->*/
/*<!--    color: #000;-->*/
/*<!--    transition: .4s;-->*/
/*<!--}-->*/

/*<!--.owl-title a:hover {-->*/
/*<!--    color: #01ac6a;-->*/
/*<!--}-->*/

/*<!--.owl-acc {-->*/
/*<!--    display: flex;-->*/
/*<!--    align-items: center;-->*/
/*<!--    width: fit-content;-->*/
/*<!--    cursor: pointer;-->*/
/*<!--}-->*/

/*<!--.owl-acc:hover .prof-name {-->*/
/*<!--    color: #01ac6a;-->*/
/*<!--}-->*/

/*<!--.owl-prof {-->*/
/*<!--    background-image: url("/img/owl-prof.jpg");-->*/
/*<!--    display: inline-block;-->*/
/*<!--    background-repeat: no-repeat;-->*/
/*<!--    background-position: 50% 50%;-->*/
/*<!--    vertical-align: middle;-->*/
/*<!--    width: 34px;-->*/
/*<!--    height: 34px;-->*/
/*<!--    border-radius: 50%;-->*/
<!--    /* background: none no-repeat 50% 50%; */-->
/*<!--    background-size: cover;-->*/
/*<!--    margin: 0 15px 0 0;-->*/
/*<!--}-->*/

/*<!--.prof-name {-->*/
/*<!--    font-size: 12px;-->*/
/*<!--    color: #000;-->*/
/*<!--    font-weight: 700;-->*/
/*<!--    transition: .4s;-->*/
/*<!--}-->*/

/*<!--.projects .owl-nav .owl-prev,-->*/
/*<!--.owl-next {-->*/
/*<!--    position: absolute;-->*/
/*<!--    top: 29%;-->*/
/*<!--}-->*/

/*<!--.projects .owl-item{-->*/
/*<!--    margin-bottom: 50px;-->*/
/*<!--}-->*/

/*<!--.projects .owl-nav .owl-prev {-->*/
/*<!--    left: 5px;-->*/
/*<!--}-->*/

/*<!--.projects .owl-nav .owl-next {-->*/
/*<!--    right: 5px;-->*/
/*<!--}-->*/

/*<!--.fa-chevron-left,-->*/
/*<!--.fa-chevron-right {-->*/
/*<!--    color: #fff;-->*/
/*<!--    font-size: 30px;-->*/
/*<!--}-->*/

/*<!--.owl-theme .owl-nav [class*=owl-] {-->*/
/*<!--    background: none;-->*/
/*<!--}-->*/

/*<!--.owl-theme .owl-nav [class*=owl-]:hover {-->*/
/*<!--    background: none;-->*/
/*<!--}-->*/

/*<!--.owl-carousel .owl-dots.disabled,-->*/
/*<!--.owl-carousel .owl-nav.disabled {-->*/
/*<!--    display: block;-->*/
/*<!--}-->*/

/*.owl-theme .owl-nav .owl-prev, .owl-theme .owl-nav .owl-next {*/
/*	 font-family: FontAwesome;*/
/*	 transition: all, 0.2s, ease;*/
/*}*/
/* .owl-theme .owl-nav .owl-prev::before {*/
/*	 content: "\f104";*/
/*}*/
/* .owl-theme .owl-nav .owl-next::before {*/
/*	 content: "\f105";*/
/*}*/

.all-projects .owl-prev,
.all-projects .owl-next
{
    position: absolute;
    bottom: 50%;
    fill: #fff;
}
.inohom{
    line-height: 24px;
}
.all-projects .owl-prev{
    left: 5px;
}
.all-projects .owl-next{
    right: 5px;
}
.new-projects-section{
    padding: 50px;
}

.all-projects{
    /*margin: -20px;*/
    display: flex;
    flex-wrap: wrap;
}

.new-projects-title h2,.blog-title h2{
    /*font-size: 38px;*/
    padding-bottom: 30px;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: .01em;
}

.ashade-grid:not(.is-masonry) .ashade-grid-item {
    transition: opacity 0.5s, transform 0.5s;
}

.ashade-album-item {
    position: relative;
    overflow: hidden;
    width: 500px;
}
.projects-page .ashade-album-item{
    /*margin-right: 30px;*/
    margin-bottom: 30px;
    width: 530px;
}
@media screen and (min-width: 1367px){
    .projects-page .ashade-album-item{
        width: 612px;
    }
}
.ashade-album-item img{
    object-fit: cover;
}
.ashade-grid .ashade-grid-item {
    margin: 20px;
    backface-visibility: visible;
    transition: opacity 0.5s;
    overflow: visible;
}

.all-projects .ashade-grid-item {
    width: 415px;
    transition: opacity 0.5s, transform 0.5s;
    /*margin: 20px;*/
    backface-visibility: visible;
    transition: opacity 0.5s;
    overflow: visible;
}
@media screen and (max-width: 1400px){
    .all-projects .ashade-grid-item{
        width: 360px;
    }
}
.ashade-grid:not(.is-masonry) .ashade-grid-item {
    transition: opacity 0.5s, transform 0.5s;
}

.ashade-grid-item--inner {
    transition: transform 0.5s;
    backface-visibility: visible;
    overflow: hidden;
    position: relative;
}
.ashade-grid-item:hover .ashade-grid-item--inner,
.ashade-grid-item:hover span{
    transform: scale(1.03);
    /*color: #cba37c;*/
}

.ashade-grid-item:hover span{
    /*transform: scale(1.03);*/
    color: #cba37c;
}
.ashade-album-item .ashade-album-item__image {
    overflow: hidden;
    backface-visibility: hidden;
    height: 300px;
}

.ashade-album-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s;
    backface-visibility: hidden;
}

.ashade-album-item__image:after {
    content: '';
    position: absolute;
    left: 20px;
    top: 250px;
    right: 20px;
    z-index: 99;
    bottom: 17px;
    opacity: .9;
    border: 1px solid #fff;
    border-width: 1px 1px 0;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.portfolio-item-info {
    padding: 25px 50px 25px;
    -webkit-transition: -webkit-transform .2s ease-out;
    transition: -webkit-transform .2s ease-out;
    transition: transform .2s ease-out;
    transition: transform .2s ease-out,-webkit-transform .2s ease-out;
    position: relative;
    /*bottom: 72px;*/
    background-color: #000;
}

.portfolio-item-title {
    position: relative;
    /*overflow: hidden;*/
    font-size: 20px;
    margin-left: -30px;
    margin-right: -30px;
    padding: 0 30px;
}

.portfolio-item-title span {
    position: relative;
    color: #fff;
    display: inline-block;
    transition: .4s;
}

.portfolio-item-title span:before, .portfolio-item-title span:after {
    content: '';
    position: absolute;
    top: 27px;
    height: 1px;
    width: 650px;
    background-color: #fff;
    opacity: .9;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.portfolio-item-title span:before {
    left: 100%;
    margin-left: 15px;
}

.ashade-album-item a.ashade-album-item__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    z-index: 100;
}

.portfolio-item-title span:after {
    right: 100%;
    margin-right: 15px;
}
.sec{
    height: 193px;
}
/* projects */


/* services */
    .services{
        padding-top: 30px;
    }
    .services-all{
        padding-top: 50px;
    }
    .services-all .row{
        justify-content: center;
    }
    .services-title h2{
        font-size: 44px;
        font-weight: 700;
        letter-spacing: .01em;
    }
    .service{
        position: relative;
        overflow: hidden;
    }
    .service-wrapper{
        position: relative;
        /*background-color: black;*/
        background-blend-mode: color;
    }
    .service-wrapper img{
        transition: all 1.5s ease;
        width: 100%;
        object-fit: cover;
        transition: all 1s ease;
        /*opacity: .9;*/
        height: 354px;
    }
    .service-wrapper img::before{
        position: absolute;
        top: 0;
        z-index: 2;
        display: block;
        content: '';
        width: 100%;
        height: 100%;
        background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    }
    .service:hover .serv-first-img{
        opacity: 0;
    }
    .service:hover .serv-sec-img{
        opacity: 1;
    }
    .serv-sec-img{
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
    }
    .service-content{
        font-weight: 500;
        line-height: 1.2;
        position: absolute;
        z-index: 1;
        bottom: 0px;
        left: 0px;
        width: 100%;
        min-height: 80px;
        padding: 0 20px 0 40px;
        color: #fff;
        background: linear-gradient(to top, rgb(0 0 0 / 85%) 11%, rgb(0 0 0 / 63%) 54%, rgba(240,240,240,0) 102%);
    }
    .service-content::before{
        position: absolute;
        top: 5px;
        left: 20px;
        display: block;
        width: 1px;
        height: 100%;
        content: '';
        background-color: #fff;
    }
    .service-content h2{
        font-size: 23px;
        transform: translateY(2px);
    }
    .service-full{
        padding: 80px 0;
    }
    .service-title-img{
        text-align: center;
    }
    .service-title-img img{
        border-radius: 10px;
        width: 100%;
        height: 450px;
        object-fit: cover;
    }
    .service-desc {
        margin-top: 50px;
    }
    .service-full .service-desc{
        line-height: 30px;
    }
    .service-desc h2 {
        margin-bottom: 30px;
        font-size: 38px;
    }
    .service-desc p{
        line-height: 30px;
    }
    .services-all-cat{
        padding: 80px 0 60px;
    }
    .service-inside-imgall{
        padding-top: 20px;
    }
    .service-desc-all video{
        height: 100%;
    }
    .service-desc-all iframe{
        height: 247.5px;
    }
/*services*/

/* blogs */

.blogs{
    padding-top: 80px;
}

.blogs-all{
    padding-top: 40px;
    row-gap: 45px;
}
.blog-all-cat, .blog-inside{
    padding: 80px 0 60px;
}
.blog-all-cat .relative{
    height: 100%;
}
.blog-all-cat .col-lg-4:nth-last-child(-n+3) {
    margin-bottom: 3rem;
}
.project-link-item .image {
    position: relative;
    height: 100%;
    width: 100%;
}

.projests-title {
    text-align: center;
    font-size: 40px;
    padding-bottom: 50px;
    font-weight: 600;
}

.event-date {
    font-size: 20px;
}

.all-desc {
    padding-top: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-link-item>.project-link-item .image {
    transition-delay: .2s;
    transition-duration: .3s;
    height: 100%;
}

.project-link-item .image img.bg {
    background-color: #fafafa;
    border-radius: 20px;
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0
}

.project-link-item .image img:not(.bg) {
    -o-object-fit: contain;
    object-fit: contain;
    position: relative;
    width: 100%;
    z-index: 10;
    height: 100%;
    border-radius: 20px;
    object-fit:cover;
}

.project-link-item .info::before{
    background: linear-gradient(180deg,transparent,rgba(0,0,0,.5));
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    top: 0;
    transition-duration: .15s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    z-index: -1;
}

.project-link-item .image img:not(.bg),
.project-link-item>.project-link-item .image img:not(.bg) {
    transition-duration: .15s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.project-link-item>.relative:hover .image img:not(.bg) {
    margin-top: -50px;
}

.project-link-item .info {
    --tw-bg-opacity: 0.5;
    --tw-text-opacity: 1;
    --tw-text-opacity: 0.6;
    align-items: center;
    bottom: 0;
    color: hsla(0, 0%, 100%, .6);
    color: rgba(255, 255, 255, var(--tw-text-opacity));
    display: flex;
    flex-wrap: wrap;
    font-size: .875rem;
    font-weight: 500;
    left: 0;
    line-height: 1.25rem;
    padding: 1.25rem;
    pointer-events: none;
    position: absolute;
    overflow: hidden;
    transition-duration: .15s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    width: 100%;
    z-index: 10
}

.project-link-item>.relative:hover .info {
    --tw-text-opacity: 1;
    color: #646464;
    color: rgba(100, 100, 100, var(--tw-text-opacity));
    padding: 0
}

.project-link-item>.relative:hover .info:before {
    opacity: 0
}

.project-link-item .info .project-name {
    --tw-text-opacity: 1;
    color: #000;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
    font-size: 10px;
    font-weight: 700;
    max-height: 0;
    opacity: .1;
    overflow: hidden;
    padding-bottom: 0;
    padding-top: 0;
    text-overflow: ellipsis;
    transition-duration: .15s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    white-space: nowrap;
    width: 100%
}

.project-link-item>.relative:hover .info .project-name {
    max-height: 100%
}

.project-link-item>.relative:hover .info {
    font-size: 14px;
    line-height: 16px
}


.project-link-item>.relative:hover .info .project-name {
    font-size: 20px;
    line-height: 21px;
    opacity: 1
}

.project-link-item .btn {
    bottom: 17.5px;
    font-size: .875rem;
    line-height: 1.25rem;
    line-height: 1.25;
    position: absolute;
    right: 17.5px;
    z-index: 20
}

.project-link-item .info .separator {
    opacity: 0;
    /*padding-left: .25rem;*/
    padding-right: .25rem
}

.project-link-item>.relative:hover .info .separator {
    opacity: 1
}

.relative:hover .event-date{
    display: none;
}

.event-date{
    transition-delay: .2s;
    transition-duration: .2s;
}

.project-link-item .info .venue-name {
    opacity: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.project-link-item>.relative:hover .info .venue-name {
    opacity: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.project-link-item .image,
.project-link-item .image img:not(.bg),
.project-link-item .info,
.project-link-item .info:before,
.project-link-item>.relative {
    transition-delay: .2s;
    transition-duration: .3s
}

.project-link-item.slide-active>.relative .image img:not(.bg),
.project-link-item.slide-active>.relative .info,
.project-link-item.slide-active>.relative .info .separator,
.project-link-item.slide-active>.relative .info .venue-name,
.project-link-item.slide-active>.relative .info:before,
.project-link-item>.relative:hover,
.project-link-item>.relative:hover .image,
.project-link-item>.relative:hover .image img:not(.bg),
.project-link-item>.relative:hover .info,
.project-link-item>.relative:hover .info:before,
.promotion-block.style-2 .project-link-item>.relative:hover .image,
.promotion-block.style-2 .project-link-item>.relative:hover .image img:not(.bg),
.promotion-block.style-2 .project-link-item>.relative:hover .info,
.promotion-block.style-2 .project-link-item>.relative:hover .info:before {
    transition-delay: 0ms
}

.project-link-item .info .project-name {
    transition-delay: .2s;
    transition-duration: .3s
}

.project-link-item>.relative:hover .info .project-name {
    transition-delay: .1s;
    transition-duration: .3s
}

.project-link-item .btn {
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    background-color: #fd0;
    background-color: rgba(255, 221, 0, var(--tw-bg-opacity));
    border-radius: 9999px;
    color: #000;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25rem;
    min-width: 125px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-link-item {
    min-height: 400px;
    height: 400px;
    width: 100%;
    display: inline-block;
}

.blogs .relative{
    height: 100%;
}
.relative {
    position: relative;
}

.blog-inside-img{
    max-width: 700px;
    max-height: 500px;
    text-align: center;
    margin: 0 auto;
}
.blog-inside-img img{
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.blog-desc{
    padding-top: 50px;
    line-height: 28px;
}
.blog-desc ul li{
    list-style: disc !important;
}
.blog-desc ol li{
    list-style: auto !important;
}
.blog-desc ol,
.blog-desc ul{
    padding-left: 2rem !important;
}
/*blogs*/

/* references section */
.references {
    padding: 80px 0 80px 0;
}

.references-title h2 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: .01em;
}

.references .container .row {
    justify-content: center;
}

.ref {
    line-height: 80px;
    color: #fff;
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 45px;
    max-width: 180px;
    height: 120px;
    font-weight: 700;
    background-color: #f5f6fa;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    z-index: 3;
    margin: 0 auto;
    margin-bottom: 30px;
}

.ref:hover {
    color: #eee;
    z-index: 2;
}

.ref:hover img {
    transform: scale(.9);
}

.ref span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #cbcedb;
    -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.ref:hover span {
    width: 225%;
    height: 562.5px;
}

.ref img {
    width: 80%;
    object-fit:cover;
    height: 80%;
    padding: 10px;
    object-fit: contain;
    transition: transform 0.35s cubic-bezier(0.3, 0.1, 0.3, 1) 0s;
}
.col-lg-2:nth-child(4) img{
    transform: scale(2);
}
.caspian{
}
/* references */

/* call-to-action */
.call-to-action{
    padding-bottom: 80px;
}
.both-side {
    display: flex;
    justify-content: space-between;
}

.left-side {
    width: 38.834862%;
}

.left-side-title h2,
.right-side-title h2 {
    font-size: 23px;
    font-weight: 700;
    padding-bottom: 17px;
}
.big{
        font-size: 45px;
    font-weight: 600;
    padding-bottom: 125px;
        line-height: 1.1;
    /*font-size: 75px;*/
    /*color: white;*/
    /*font-weight: 700;*/
    letter-spacing: -0.02em;
}
.little{
    color: #b7b7b7;
    width: 70%;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 12px;
    margin-bottom: 40px;
    /*color: white;*/
    /*font-size: 22px;*/
}
.left-side-desc p {
    font-size: 24px;
    padding-bottom: 25px;
    line-height: 31px;
}

.left-side-bottom a {
    font-size: 20px;
    color: #d3af68;
    line-height: 30px;
    font-weight: 700;
}

.right-side {
    width: 500px;
    margin: 0 0 0 auto;
    overflow: hidden;
    background-color: #d3af68;
    padding: 50px;
    border-radius: 20px;
}

.input-section {
    display: block;
}

.form-btn {
    margin-top: 30px;
}

.form-btn button {
    padding: 10px 25px;
    background-color: #050505db !important;
    color: #fff;
    float: right;
    transition: .4s;
    border-radius: 8px;
}

#next-button:disabled {
    opacity: 0.5;
}
#submit-button{
    display: none;
}
#pre-button {
    float: left;
    display: none;
}



.form-input2 input {
    border-radius: 8px;
    border: none;
    outline: none;
    height: 50px;
    width: 100%;
    padding-left: 15px;
    color: grey;
    box-shadow: 0 2px 18px 0 rgb(0 0 0 / 12%);
}

.form-input2 input:not(:last-child),
.form-input3 input:not(:last-child) {
    margin-bottom: 25px;
}


input[type='radio'] {
    display: none;
}

.input-section label {
    width: 260px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 20px;
    transition: .4s;
    cursor: pointer;
    /*width: fit-content;*/
    display: block;
    color: #808080;
    background: #fff;
    padding: 15px 30px;
    border: 1px solid #ccc;
    cursor: pointer;
}
.input-section label:nth-child(4) span{
    line-height: 26px;
}
.input-section label:hover {
    opacity: .4;
}

label.clicked {
    opacity: .4;
}
.form-input3 textarea{
    border-radius: 8px;
    outline: none;
    color: #808080;
    padding: 16px;
    height: 130px;
    width: 100%;
    resize: vertical;
    border: none;
    background: rgb(255, 255, 255);
}
.form-input2 {
    display: none;
}
.form-input3 {
    display: none;
    /* transition: .4s; */
}
.smoothScroll100 {
    animation: smoothScroll2 .7s;
}
.smoothScroll100Reverse{
    animation: smoothScroll2 .7s;
    animation-direction: alternate-reverse;
}
.smoothScrollLeft {
    animation: smoothScrollLeft .7s;
    animation-direction: alternate-reverse;
}
.smoothScrollLeftReverse {
    animation: smoothScrollLeft .7s;
    animation-direction: alternate;
}

@keyframes smoothReverseScroll {
    0% {
        transform: translateX(-100px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes smoothScroll2 {
    0% {
        transform: translateX(400px);
    }

    100% {
        transform: translateX(0px);
    }
}
@keyframes smoothScrollLeft {
    0% {
        transform: translateX(-500px);
    }

    100% {
        transform: translateX(0px);
    }
}
@keyframes smoothScroll3 {
    0% {
        transform: translateX(200px);
    }

    100% {
        transform: translateX(0px);
    }
}

/* call-to-action */



/*new-footer*/

.footer-section{
    background-color: #1e2026;
    padding: 50px 0;
}
.footer-contact h3 {
    font-size: 33px;
    margin-bottom: 20px;
}
.footer-contact h3 span {
    color: #d3af68;
    font-weight: 600;
}
.footer-phone a{
    position: relative;
}
.call-icon{
    padding-right: 0.5rem;
    vertical-align: middle;
}
ul.footerNav.text-white {
    margin-bottom: 0;
    /*text-align: right;*/
    align-items: center;
    display: flex;
    justify-content: flex-end;
}
.footerMainNav li{
    margin-left: 15px;
}
footer li a {
    color: white;
    position: relative;
    text-decoration: none;
}
footer li a::after{
    content: "";
    width: 0;
    height: 1px;
    background-color: white;
    display: block;
    position: absolute;
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    bottom: -3px;
}
footer li:hover a::after {
    width: 100%;
}
.footer-bottom{
    padding: 20px 0;
}
.footer-social{
    display: flex;
    align-items: center;
}
.footer-socials{
    display: flex;
    align-items: center;
}
.facebook,.footer-yt{
    height: 18px;
}
.footer-yt{
    filter: invert(.3);
}
.footer-whatsapp{
    width: 20px;
    filter: invert(.6);
}
.footer-social img {
    margin-right: 17px;
    transition: 500ms all ease;
}
.footer-social img:hover{
    opacity: .7;
}
.footer-social p {
    font-size: 14px;
    color: #b2b2b2;
    display: inline-flex;
    margin-bottom: 0;
    position: relative;
    align-items: center;
}
.footer-social p:before {
    content: "";
    width: 2px;
    height: 16px;
    background-color: #b2b2b2;
    display: inline-block;
    margin-right: 17px;
}
.development {
    text-align: right;
}
.development p{
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #b2b2b2;
}
.development img {
    margin: 0 5px;
    transition: 500ms all ease;
}
.development a:hover img{
    filter: grayscale(100%);
}
/*new-footer*/


/* modal */
.modal-body {
    padding: 20px 30px 60px 30px;
}

.modal-title {
    font-weight: 600;
}

.modal-content .close::before {
    left: 0;
    height: 2px;
    margin-top: -1px;
    top: 50%;
    width: 100%;
}

.modal-content .close::after {
    left: 50%;
    height: 100%;
    margin-left: -1px;
    top: 0;
    width: 2px;
}
.modal-header{
    padding: 1.2rem 30px;
}
.modal-content .close::before,
.modal-content .close::after {
    background: #000000;
    border-radius: 2px;
    content: '';
    display: block;
    position: absolute;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.modal-content .close {
    display: block;
    height: 20px;
    opacity: .5;
    position: absolute;
    right: 30px;
    /*top: 26px;*/
    width: 20px;
    z-index: 100;
    outline: transparent;
    background: none;
}

.input-box input {
    margin-bottom: 16px;
}

input.text,
textarea.text {
    height: 50px;
    width: 100%;
    border: 2px solid #e6ecf2;
    padding: 12px 20px;
    border-radius: 4px !important;
    font-size: 14px !important;
    outline: none;
    /* font-family: "Averta", sans-serif; */
    /* position: relative; */
    appearance: none;
    transition: all .3s ease;
}

.text::placeholder {
    font-size: 14px;
    color: #cccccc;
    font-weight: 500;
}

input.text:focus,
textarea.text:focus,
select:focus {
    border-color: #ebc74a !important;
}

textarea.text {
    resize: vertical;
    height: 160px;
}

.btn-submit {
    background-color: #f06543;
    background-image: linear-gradient(315deg, #f06543 0%, #ffbe3d 74%);
    cursor: pointer;
    color: #fff;
    border-radius: 4px;
    height: 50px;
    line-height: 50px;
    padding: 0 26px;
    width: 100%;
    float: right;
    font-size: 15px;
    font-weight: 700;
    transition: .4s background-image;
    border: 1px solid transparent;
    margin-top: 15px;
}

/* modal */

/* static-section */
.about-page,
.contact-page,
.projects-page,
.references-page,
.service-inside,
.service-page,
.project-page
{
    overflow: hidden;
}
.serv-third-img{
    display: none;
}
.static-header{
    background-image:url(/img/project-khani-design-c523acabc92ec4af47dce8699cff70b5.jpg);
    height: 450px;
    padding: 60px;
    margin: -60px -60px -20px -60px;
    position: relative;
    z-index: 1;
    text-shadow: 0px 1px #1a1a1a;
    background-repeat: no-repeat;
    background-position: 9999px;
}
.static-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 0;
    width: 100%;
    height: 100%;
    -ms-transform: rotate(2deg);
    -webkit-transform: rotate(2deg);
    -webkit-backface-visibility: hidden;
    display: block;
    clear: both;
    background: rgba(0,0,0,0.3);
}
.static-header::after {
    content: "";
    background-color: #005947;
    background-image: inherit;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    width: 100%;
    height: 100%;
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    text-align: center;
    vertical-align: middle;
    -ms-transform: rotate(2deg);
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    outline: 10px solid #fff;
    display: block;
    clear: both;
}
.static-title{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
    position: relative;
}
.static-title h1{
    color: #fff;
    font-size: 48px;
    text-shadow: 0px 1px #1a1a1a;
    font-weight: 900;
}

/*projects-inside*/

.projects-page-main{
    padding: 100px 0 60px;    
}
.project-content{
    display: flex;
    justify-content: space-between;
}
.project-inside-desc{
    width: 45%;
    margin-left: 8%;
}
.project-inside-desc h2{
    font-size: 44px;
}
.project-inside-desc p{
    padding-top: 30px;
    line-height: 25px;
}
.projects-main-text{
    width: 735px;
    text-align: center;
    margin: 0 auto;
}
.projects-all-images{
    display: flex;
    /*justify-content: space-between;*/
    padding-top: 50px;
    gap:15px;
    flex-wrap: wrap;
}
.projects-all-images .highslide{
    position: relative;
}
/*.highslide-controls ul{*/
/*    display: flex;*/
/*    padding-bottom: 30px;*/
/*}*/
/*.highslide-controls ul li{*/
/*    padding: 0 5px;*/
/*}*/
/*.highslide-play,*/
/*.highslide-move,*/
/*.highslide-full-expand{*/
/*    display: none;*/
/*}*/
/*.highslide-next i,*/
/*.highslide-previous i,*/
/*.highslide-close i{*/
/*    color: #fff;*/
/*    font-size: 21px;*/
/*}*/
.projects-all-images .highslide img:first-child{
    width: 362px;
    /*margin-right: 10px;*/
    margin: 0;
    height: 250px;
    object-fit: cover;
}
.projects-all-images .highslide img:nth-child(2){
    position: absolute;
    bottom: 10%;
    left: 8%;
    /*filter: opacity(.6);*/
    width: 116px;
    object-fit: cover;
}
@media screen and (min-width: 1367px){
    .projects-all-images{
        justify-content: flex-start;
    }
    .projects-all-images .highslide img:first-child{
        width: 422px;
    }
}
/* projects */

/* about-static */
.about-page .static-main,.projects-main,.references-main {
    padding: 110px 0 80px 0;
}
.about-page .static-main p {
    /*font-weight: revert;*/
    font-size: 16px;
    /*line-height: 28px;*/
    color: #1a1a1a;
    overflow: hidden;
}
.about-desc{
    line-height: 28px;
}
.about-desc img{
    display: none;
}
.about-page .static-main b{
    font-weight: revert;
}
.static-main h2{
    font-size: 32px;
}
/* about-static */

/* contact */
.contact-page .contact-main{
    padding: 120px 0 100px;
}
.contact-page .contact-info {
    min-height: 104px;
    padding-left: 15px;
}
.contact-page .contact-info h3{
    font-size: 22px;
    font-weight: 700;
    position: relative;
    letter-spacing: 0;
}
.contact-page .contact-info .det-info{
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
}
.contact-info .det-info a{
    font-weight: 400;
    color: #3f4144;
    transition: all .15s ease-in-out;
    width: max-content;
}
.contact-page .contact-info a:hover{
    color: #ff9a00;
}
.contact-page .contact-info h3::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -15px;
    width: 8px;
    height: 8px;
    background-color: #f7931e;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.contact-page #map {
    height: 490px;
    margin: 90px 0;
}
.contact-page .contact-social-media{
    padding: 65px 0;
    background: #f5f7fa;
}
.social-title{
    text-align: center;
}
.contact-page .contact-social-media h2 {
    color: #000;
    margin-top: 0;
    font-weight: 900;
    line-height: 1.7;
    font-size: 35px;
}
.contact-page .contact-social-media p {
    color: #666;
    margin-top: 17px;
    font-size: 17px;
    line-height: 1.7;
}
.socials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.social-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    padding: 17px 10px;
    width: 60px;
    height: 60px;
    border: 1px solid #656d78;
    border-radius: 100%;
    transition: background-color .15s ease,border-color .15s ease,box-shadow .15s ease,transform .15s ease,-webkit-box-shadow .15s ease,-webkit-transform .15s ease,-moz-transform .15s ease,-o-transform .15s ease;
}
.social-icon a img {
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
    height: 24px;
}
.social-icon:not(:last-child) img {
    transition: filter .15s ease,-webkit-filter .15s ease;
    -webkit-filter: invert(60%);
    filter: invert(60%);
}
.social-icon:last-child img {
    transition: filter .15s ease,-webkit-filter .15s ease;
    -webkit-filter: invert(60%);
    /*filter: invert(40%);*/
}
.social-icon.contact-yt:hover {
    transform: scale(1.45);
    background-color: #ec6060;
    border-color: #ec6060;
    -webkit-box-shadow: 0 7px 14px 0 rgb(236 96 96 / 87%);
    box-shadow: 0 7px 14px 0 rgb(236 96 96 / 87%);
}
.social-icon.contact-fb:hover {
    transform: scale(1.45);
    background-color: #6389c8;
    border-color: #6389c8;
    -webkit-box-shadow: 0 7px 14px 0 rgb(99 137 200 / 80%);
    box-shadow: 0 7px 14px 0 rgb(99 137 200 / 80%);
}
.social-icon.contact-ig:hover {
    background-color: #f15274;
    border-color: #f15274;
    outline: 0;
    -webkit-box-shadow: 0 7px 14px 0 rgb(227 97 131 / 79%);
    box-shadow: 0 7px 14px 0 rgb(227 97 131 / 79%);
    transform: scale(1.45);
}
.social-icon.contact-tw:hover {
    background-color: #6aa1df;
    border-color: #6aa1df;
    -webkit-box-shadow: 0 7px 14px 0 rgb(106 161 223 / 63%);
    box-shadow: 0 7px 14px 0 rgb(106 161 223 / 63%);
    transform: scale(1.45);
}
.social-icon:nth-child(2) img{
    filter: invert(30%);
}
.social-icon:nth-child(2):hover img {
    filter: invert(1);
}
.social-icon:hover img {
    filter: none;
}
.form-container h2 {
    margin-top: 65px;
    font-size: 35px;
    line-height: 48px;
    color: #000;
    font-weight: bold;
    text-align: center;
}
.contact-form {
    max-width: 830px;
    margin-top: 55px;
    padding: 20px;
    background: #fff;
    -webkit-box-shadow: 0 0 30px rgb(0 0 0 / 10%);
    box-shadow: 0 0 30px rgb(0 0 0 / 10%);
    margin-inline: auto;
    border-radius: 10px;
    /*padding: 50px 100px;*/
}

.form-item {
    margin: 12px 0;
}
.form-item label {
    margin-bottom: 6px;
    display: block;
    max-width: 100%;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
}
.form-item input, .form-item textarea.contact-field {
    padding: 6px 15px;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    -webkit-appearance: none;
    color: #000;
    background-color: #fff;
    background-image: none;
    border: 1px solid #e3e3e3;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    -webkit-transition: border-color .15s ease-in-out;
    -moz-transition: border-color .15s ease-in-out;
    -o-transition: border-color .15s ease-in-out;
    transition: border-color .15s ease-in-out;
}
.form-item textarea.contact-field {
    padding-top: 13px;
    padding-bottom: 13px;
    height: auto;
    max-height: 380px;
    -webkit-border-radius: 20px;
    border-radius: 20px !important;
}
.contact-field::placeholder{
    font-size: 15px;
}
.form-item input:focus, .form-item textarea.contact-field:focus {
    border-color: #a6a6a6;
    outline: none;
}
.form-item.error input {
    border-color: #f10000;
}
.form-item.submit{
    text-align: center;
}
.gonder {
    position: relative;
    padding: 15px 39px;
    display: inline-block;
    max-width: 100%;
    font-size: 15px;
    font-weight: 500 !important;
    line-height: 1.2;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    -webkit-border-radius: 54px;
    border-radius: 54px;
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    color: #fff !important;
    background-color: #ff9a00 !important;
    border-color: #ff9a00 !important;
}
.gonder:hover {
    background-color: #ffaf07 !important;
    border-color: #ffaf07 !important;
}

/*contact*/

.projects-main .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.projects-main .owl-item,.projects .owl-item{
    transition: .4s;
    border-radius: 5px;
    box-shadow: 0 0 20px 3px #efefef;
}
.owl-content{
    padding: 35px 0 30px 25px;
}
.projects-main .owl-item:hover,.projects .owl-item:hover{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
/*.owl-item img{*/
/*    object-fit: none;*/
/*}*/
/*.projects-main .owl-item:not(:nth-child(1)):not(:nth-child(2)){*/
/*    margin-top: 50px;*/
/*}*/

.projects-page .projects-main .owl-item{
    margin-bottom: 40px;
    margin-right: 20px;
    width: 300px;
}
.projects-page .projects-main .owl-item:nth-child(n+3){
    margin-right: 0;
}
.projects-page .projects-main .owl-item img{
    width: 100%;
    /*border-radius: 5px;*/
        border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.contact-form iframe{
    padding: 50px 100px;
}


/*projects*/

/*references*/
    .references-main .row{
        justify-content: center;
    }
/*references*/
/* static */


/*responsive*/
@media screen and (max-width: 992px) {
    header .head-section {
        padding: 6px 0;
    }

    .mobile_btn {
        display: block !important;
    }
    /*.logo{*/
    /*    display: none;*/
    /*}*/
    .logo.navlogo{
        display: block;
        padding-bottom: 30px;
    }
    header .socials{
        display: flex;
    }
    header .social-icon{
        width: 50px;
        height: 50px;
        border: 1px solid #ffff;
    }
    header .social-icon:not(:last-child) img{
        filter: none !important;
    }
    header .social-icon:last-child img{
        filter: invert(1);
    }
    header nav {
        flex-direction: column;
        padding: 0 30px;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease-in;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(60, 39, 0, 0.43);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(8.5px);
        -webkit-backdrop-filter: blur(8.5px);
        border: 1px solid rgba(60, 39, 0, 0.1);
        z-index: 333;
    }

    header nav.navOpen {
        transition: 0.5s ease;
        right: 0;
    }
    .dropdown-nav{
        visibility: hidden !important;
    }
    header nav.navOpen .price-offer {
        margin-left: 0;
    }

    header nav .head-navlinks {
        text-align: center;
        flex-direction: column;
    }

    header nav .head-navlinks>li {
        margin-left: 0;
    }

    .head-navlinks:not(.dropdown-nav)>li>a:not(.price-offer) {
        display: block;
    }

    .head-slider .sliderSlick .box-part .slide-txt h2,
    .head-slider .sliderSlick .box-part .slide-txt h1{
        font-size: 45px;
    }

    .my-md-5 {
        margin-bottom: 0 !important;
    }
    .turned {
        display: none;
    }
    .turned2 {
        display: inline-block;
        margin-bottom: 10px;
    }
    .about-right-side img{
        height: 200px;
        width: 400px;
    }
    .about-video {
        height: 269px;
    }
    .about-text {
        width: 420px;
        position: absolute;
        top: 221px;
    }
    /* about */
    
    /* projects */
    .projects{
        padding-top: 200px;
    }
    .projects-main .owl-item:not(:last-child){
        padding-bottom: 50px;
    }
    .new-projects-section{
        padding: 256px 0 50px 0;
    }
    /*.projects-main .owl-item:not(:nth-child(1)):not(:nth-child(2)){*/
    /*    margin: 0;*/
    /*}*/
    .references-main .row{
        z-index: 1;
        position: relative;
    }
    /*projects*/
}

@media screen and (max-width: 486px) {
    .about-img .circle{
        width: 300px;
        height: 300px;
    }
    .about-img img{
        width: 250px;
    }
    .languages{
        display: none;
    }
    #map{
        margin: 40px 0;
    }
    .contact-page .contact-social-media h2{
        font-size: 27px;
    }
    .contact-page .contact-social-media p{
        font-size: 14px;
    }
    .social-icon{
        width: 40px;
        height: 40px;
    }
    .social-icon a img{
        height: 18px;
        object-fit: contain;
    }
    .turned2 {
        font-size: 35px !important;
    }
    .horizantal-heading{
        font-size: 30px;
    }
    .projects{
        padding-top: 350px !important;
    }
    .services-all .row{
        flex-direction: column;
    }
    .services-all .row .col-6{
        width: 100%;
    }
    .about-right-side img{
        width: 100%;
        /*object-fit: contain;*/
    }
}

@media screen and (max-width: 768px) {
    .head-slider .slider-nav{
        display: none !important;
    }
    #album-93{
        width: 100%;
    }
    .advantage-text{
        padding: 0;
    }
    .advantage-bottom .col7{
        width: 33%;
    }
    .about-video {
        height: 381px;
        width: 96%;
        margin: 10px auto 120px auto;
    }
    .about-right-side img{
        /*width: 100%;*/
        /*object-fit: contain;*/
    }
    .about-text {
        width: 100%;
        right: -59px;
    }
    .projects{
        padding-top: 250px;
    }
    .footer-section{
        text-align: center;
    }
    .footer-contact ul {
        margin-bottom: 40px;
    }
    .footer-phone li{
        width: fit-content;
        margin: 0 auto;
    }
    .footerMainNav{
        flex-direction: column;
    }
    .footerMainNav li{
        margin: 0 auto 20px auto;
        display: flex;
        justify-content: center;
    }
    .footer-social{
        flex-direction: column;
    }
    .footer-social p{
        padding: 20px 0 10px 0;
        text-align: center;
    }
    .footer-social p:before{
        display: none;
    }
    .development p{
        justify-content: center;
        padding-top: 10px;
    }
    .footerNav li a:after {
        position: static;
        margin: 0 auto;
    }
    .footer-social img{
        margin: 0 10px;
    }
    .both-side{
        display: inherit;
    }
    .left-side,.right-side{
        width: auto;
    }
    .right-side{
        /*padding: 20px;*/
    }
    .right-side-form iframe{
        width: 100%;
        height: 460px;
    }
    .input-section{
        padding-top: 20px; 
    }
    .input-section label{
        margin: 0 10px 20px 0;
    }
    .form-input2,.form-input3{
        padding-top: 30px;
    }
    .offlinebg img{
        width: 100%;
    }
    .contact-page .contact-info{
        min-height: auto;
    }
    .contact-main .col-xs-12:not(:last-child){
        padding-bottom: 15px;
    }
    .social-icon{
        margin: 10px;
    }
    .contact-form iframe{
        padding: 40px 30px;
    }
    .owl-item img{
        width: 100%;
    }
    .projects-main .owl-item{
        padding: 0;
    }
    .projects-all-images .highslide img:first-child{
        width: 100%;
        margin-right: 0;
        height: 100%;
        margin-bottom: 10px;
    }
    .projects-all-images .highslide{
        width: 100%;
        height: 350px;
    }
    .white-input{
        padding: 30px !important;
    }
    .project-link-item{
        width: 100%;
        min-height: 100%;
    }
    .info .project-name{
        max-height: 0 !important;
    }
    .project-link-item .info{
        padding: 1.25rem !important;
        color: #fff !important;
    }
    .info:before{
        opacity: 1 !important;
    }
    .relative:hover .event-date{
        display: block;
    }
    .project-link-item .info .venue-name{
        opacity: 0 !important;
    }
    .project-link-item>.relative:hover .image img:not(.bg){
        margin: 0;
    }
    .project-link-item>.relative:hover .info{
        line-height: unset;
    }
    .blog-all-cat .project-link-item{
        max-width: 100% !important;
    }
    .blog-all-cat .project-link-item{
        min-height: 100%;
    }
    .blog-all-cat .project-link-item{
        padding: 0;
    }
}

@media screen and (min-width: 769px){
    .respinh{
        display: none;
    }
    .footer-phone li{
        width: max-content;
    }
    .all-projects .ashade-grid-item{
        width: 100%;
    }
}
@media screen and (min-width: 769px) and (max-width: 992px){
    .right-side-form iframe{
        width: 400px;
    }
    .projects-page .ashade-album-item{
        width: 330px;
    }
    .projects-all-images .highslide img:first-child{
        width: 340px;
    }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
    .logo img {
        width: 107px;
    }

    .languages {
        margin-left: 17px;
    }

    .head-navlinks:not(.dropdown-nav)>li>a:not(.price-offer) {
        font-size: 14px;
    }

    header nav .head-navlinks>li {
        margin-left: 14px;
    }

    header nav .head-navlinks .price-offer {
        margin-left: 0;
    }

    .head-section {
        padding: 6px 0;
    }
    .projects-page .ashade-album-item{
        width: 450px;
    }
    .projects-all-images .highslide img:first-child{
        width: 302px;
    }
}
@media screen and (min-width: 1500px){
    .projects-page .projects-main .owl-item{
        width: 400px;
    }
}
@media screen and (max-width: 1500px){
    .projects-page .projects-main .owl-item{
        width: 350px;
    }
}
@media screen and (max-width: 1200px){
    .fotorama__wrap{
        margin: 0 auto;
    }
    .project-content{
        flex-direction: column;
    }
    .project-inside-desc{
        text-align: center;
        padding-top: 50px;
        margin: 0;
        width: 100%;
    }
    .head-navlinks li:first-child{
        display: none;
    }
}

@media screen and (max-width: 1300px){
    header nav .head-navlinks>li{
        margin-left: 10px;
    }
}

/*responsive*/
.my-static-box{
    padding:30px 20px;
    transform:translateY(-180px);
    box-shadow:0 7px 20px rgba(195, 199, 206, .35);
    position:relative;
    z-index: 1;
    background: #fff;
    border-radius:4px;
}
.my-static-box_2{
    transform:translateY(0px) !important;
}
.my-grid-umid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap:10px;
    max-height:500px;
    width:100%;
}
.my-grid-umid div{
    width:100%;
}
.my-grid-umid div img{
    object-fit:cover;
    width:100%;
    border:10px solid #000;
    height:100%;
    max-height:250px;
}
.my-grid-umid div:nth-child(1){
     grid-area: 1 / 1 / 2 / 2;
}
.my-grid-umid div:nth-child(2){
    height:100%;

     grid-area: 1 / 2 / 3 / 3; 
}
.my-grid-umid div:nth-child(2) img{
        max-height:100%;
}
.my-grid-umid div:nth-child(3){
     grid-area: 2 / 1 / 3 / 2;
}
#call-to-action {
    background: #000;
    /*padding-top: 90px;*/
    /*padding-bottom: 90px;*/
    /*padding-left: 30px;*/
    /*padding-right: 40px;*/
    padding: 90px 30px;
}
.white-input {
    background-color: #fff;
    border-radius: 15px !important;
    padding: 60px ;
}
.big {
    line-height: 1.1;
    font-size: 75px;
    color: white;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.little {
    line-height: 1.5;
    margin-top: 12px;
    margin-bottom: 40px;
    color: white;
    font-size: 22px;
}
#call-to-action .little {
    color: #ffffff94 !important;
    width: 70% !important;
    font-size: 16px;
}
#call-to-action .big {
    font-size: 45px;
    font-weight: 600;
    padding-bottom: 75px;
}
#xidmetler {
    color: grey;
    font-weight: 600;
    opacity: .5;
}
.highslide-controls {
    width: 195px;
    height: 40px;
    background: url(../../../engine/classes/highslide/graphics/controlbar-black-border.gif) 0 -90px no-repeat;
    margin-right: 15px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.highslide-controls ul {
    position: relative;
    left: 15px;
    height: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: url(../../../engine/classes/highslide/graphics/controlbar-black-border.gif) right -90px no-repeat;
}
.highslide-controls li {
    float: left;
    padding: 5px 0;
}
.highslide-controls a {
    background: url(../../../engine/classes/highslide/graphics/controlbar-black-border.gif);
    display: block;
    float: left;
    height: 30px;
    width: 30px;
    outline: none;
}
.highslide-controls .highslide-previous a.disabled {
    background-position: 0 -60px !important;
}

.highslide-controls .highslide-play a {
    background-position: -30px 0;
}

.highslide-controls .highslide-next a {
    background-position: -90px 0;
}

.highslide-controls .highslide-move a {
    background-position: -120px 0;
}

.highslide-controls .highslide-full-expand a {
    background-position: -150px 0;
}

.highslide-controls .highslide-close a {
    background-position: -180px 0;
}

.highslide-controls a span {
    display: none;
}

.service-desc-all ul li {
    list-style: disc!important;
}

.service-desc-all ul {
    padding-left: 30px!important;
}
.succes_anima{
    color: #199219;
    text-align: center;
    /*position: fixed;*/
    z-index: 999;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    display: flex;
    flex-direction: column;
    left: 0;
    align-items: center;
    justify-content: center;
}
.succes_anima.active{
    animation-name: textAnimaClose;
    animation-duration: .5s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
@keyframes textAnimaClose{
  0%{opacity: 1;}
  100%{opacity: 0;}
}
/**
 * Extracted from: SweetAlert
 * Modified by: Istiak Tridip
 */
 .anima_text{
     font-size:20px;
     padding: 20px 0 0;
  animation-duration: .5s;
  animation-delay: 0.4s;
  animation-fill-mode: forwards;
}
.anima_text.active{
    animation-name: textAnima;
}
@keyframes textAnima{
  0%{opacity: 0;}
  100%{opacity: 1;}
}
.success-checkmark {
    width: 80px;
    height: 115px;
    
    .check-icon {
        width: 80px;
        height: 80px;
        position: relative;
        border-radius: 50%;
        box-sizing: content-box;
        border: 4px solid #4CAF50;
        
        &::before {
            top: 3px;
            left: -2px;
            width: 30px;
            transform-origin: 100% 50%;
            border-radius: 100px 0 0 100px;
        }
        
        &::after {
            top: 0;
            left: 30px;
            width: 60px;
            transform-origin: 0 50%;
            border-radius: 0 100px 100px 0;
            animation: rotate-circle 4.25s ease-in;
        }
        
        &::before, &::after {
            content: '';
            height: 100px;
            position: absolute;
            background: #FFFFFF;
            transform: rotate(-45deg);
        }
        
        .icon-line {
            height: 5px;
            background-color: #4CAF50;
            display: block;
            border-radius: 2px;
            position: absolute;
            z-index: 10;
            
            &.line-tip {
                top: 46px;
                left: 14px;
                width: 25px;
                transform: rotate(45deg);
                animation: icon-line-tip 0.75s;
            }
            
            &.line-long {
                top: 38px;
                right: 8px;
                width: 47px;
                transform: rotate(-45deg);
                animation: icon-line-long 0.75s;
            }
        }
        
        .icon-circle {
            top: -4px;
            left: -4px;
            z-index: 10;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            position: absolute;
            box-sizing: content-box;
            border: 4px solid rgba(76, 175, 80, .5);
        }
        
        .icon-fix {
            top: 8px;
            width: 5px;
            left: 26px;
            z-index: 1;
            height: 85px;
            position: absolute;
            transform: rotate(-45deg);
            background-color: #FFFFFF;
        }
    }
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}
  
  .testimonial_card {
  border: 1px solid #ddd;
  padding: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.testimonial_title {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.testimonial_text {
  color: #4a5568;
  font-style: italic;
  padding-left: 1.5rem;
  position: relative;
}

.testimonial_quote_icon {
  position: absolute;
  left: 0;
  top: 0;
  color: #3b82f6;
  font-size: 1.5rem;
}

.testimonial_link {
  display: inline-block;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: underline dotted;
  transition: color 0.2s;
}

.testimonial_link:hover {
  color: #1e40af;
}
.test_bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ui-field__label {
    position: relative;
    width: 100%;
}
.ui-field__input {
    display: block;
    width: 100%;
    min-height: 56px;
    padding: 17px 18px 17px;
    border: 1px solid #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    color: var(--text-main-color);
    font-size: 16px;
    font-family: inherit;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    background-color: #f5f5f5 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color .2s ease-in-out;
    transition: border-color .2s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}
.ui-field__name {
    position: absolute;
    top: 20px;
    left: 16px;
    color: grey;
    font-size: 15px;
    line-height: 1;
    opacity: 0.5;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    pointer-events: none;
    font-weight: 600;
}
.ui-field__input:focus ~ .ui-field__name, .ui-field__input:not(:focus):valid ~ .ui-field__name {
    top: 7px;
    font-size: 13px;
    opacity: 1;
    left: 20px;
    color: #cecece;
}
    input, textarea{
        padding: 17px 17px 8px 17px !important;
    }
    input[type="submit"]{
        padding: 17px !important;
    }
    .red-btn2{
    background: #000!important;
    border: none!important;
    color: white!important;
    width: 100%!important;
    border-radius: 10px!important;
    transition: all .3s ease;
}
.red-btn2:hover{
    background: #000!important;
}


#modal_form input::placeholder {
        color: #ccc;
        opacity: 1;
    }
    
    #modal_form textarea {
        height: 160px;
    }
    
    input.text, textarea, select {
        width: 100%;
        border: 2px solid #e6ecf2;
        padding: 12px 20px;
        border-radius: 4px !important;
        font-size: 14px !important;
        outline: none;
        position: relative;
        -webkit-appearance: none;
        transition: all .3s ease;
        position: relative;
    }
    

    
    .input-box {
    position: relative;
    margin-bottom: 16px;
    }
    
    .submit-button {
    position: relative;
    padding-right: 20px;
    }
    
    
    .btn:not(:disabled):not(.disabled) {
    cursor: pointer;
    }
    
    .btn {
    cursor: pointer;
        background: #000;
        color: #fff;
        border-radius: 4px;
        height: 50px;
        line-height: 17px;
        transition: 0.3s ease-in-out;
        padding: 0 26px;
        width: 100%;
        float: right;
        font-size: 15px;
        font-weight: 500;
        position: absolute;
        right: 0;
        outline: none;
        border: none;
    }
    
    input.text:focus, textarea:focus, select:focus {
    border-color: #0796d5 !important;
    }
    
    .btn:hover {
    background: #0009;
    }
    
    
    
    .modal-content .close {
    display: block;
    height: 20px;
    opacity: .5;
    width: 20px;
    z-index: 100;
    padding: 0;
    outline: transparent;
    }
    
    #xidmetler {
        color: #ccc; 
        margin-bottom:15px; 
        position: relative
    }
        
    
    #xidmetler option {
        color: #000
    }
    
    #xidmetler option:first-child {
        color: #ccc
    }
  
  textarea::placeholder {
      color: #ccc;  
    }
    #comment::placeholder {
        color:  #ccc !important;
    }
    .select-wrapper {
        position:relative;
    }
    .select-wrapper::after {
        font-family: "Font Awesome 5 Free";
        content: "\f107";
        font-size: 1rem;
        top: 15px;
        right: 15px;
        font-weight: 900;
        position: absolute;
        opacity: .5;
    }
    
    .form-container h2{
            margin-top:65px;
            font-size: 35px;
            line-height: 48px;
            color:#000;
            font-weight:bold;
            text-align:center;
        }
        .contact-form {
            max-width:830px;
            margin-top: 55px;
            background: #fff;
            -webkit-box-shadow: 0 0 30px rgb(0 0 0 / 10%);
            box-shadow: 0 0 30px rgb(0 0 0 / 10%);
            margin-inline: auto;
            border-radius:10px;
            padding:50px 100px;
        }
        .form-item{
            margin:12px 0;
        }
        .form-item.submit{
            text-align:center;
        }
        .form-item label{
            margin-bottom: 6px;
            display: block;
            max-width: 100%;
            font-size: 15px;
            font-weight: 500;
            line-height: 1.2;
            color: #000;
        }
        .form-item.error label{
            color:#f10000;
        }
        .form-item.error input{
            border-color:#f10000;
        }
        .form-item input, .form-item textarea{
            padding: 6px 15px;
            display: block;
            width: 100%;
            height: 50px;
            font-size: 15px;
            font-weight: 300;
            line-height: 1.6;
            -webkit-appearance: none;
            color: #000;
            background-color: #fff;
            background-image: none;
            border: 1px solid #e3e3e3;
            -webkit-border-radius: 30px;
            border-radius: 30px;
            -webkit-transition: .15s ease-in-out;
            -moz-transition: .15s ease-in-out;
            -o-transition: .15s ease-in-out;
            transition: .15s ease-in-out
        }
        .form-input input[name="submit"]{
            width: 100%;
        }
        .form-item input:focus, .form-item textarea:focus {
            border-color:#a6a6a6;
            outline:none;
        }
        .form-item textarea {
            padding-top: 13px;
            padding-bottom: 13px;
            height: auto;
            max-height: 380px;
            -webkit-border-radius: 20px;
            border-radius: 20px;
        }
       .form-item buttton{
            position: relative;
            padding: 15px 39px;
            display: inline-block;
            max-width: 100%;
            font-size: 15px;
            font-weight: 500;
            line-height: 1.2;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            text-align: center;
            vertical-align: middle;
            white-space: nowrap;
            color: #000;
            background-color: transparent;
            background-image: none;
            border: 1px solid transparent;
            -webkit-border-radius: 54px;
            border-radius: 54px;
            -webkit-transition: all .15s ease-in-out;
            -moz-transition: all .15s ease-in-out;
            -o-transition: all .15s ease-in-out;
            transition: all .15s ease-in-out;
            -ms-touch-action: manipulation;
            touch-action: manipulation;
            color: #fff;
            background-color: #ff9a00;
            border-color: #ff9a00;
            }
           .form-item buttton:hover{
            background-color: #ffaf07;
            border-color: #ffaf07;
        }
        
        .send_inp{
            position: relative;
            padding: 15px 39px;
            display: inline-block;
            max-width: 100%;
            width: 100% !important;
            font-size: 15px;
            font-weight: 500 !important;
            line-height: 1.2;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            text-align: center;
            vertical-align: middle;
            white-space: nowrap;
            background-color: transparent;
            background-image: none;
            border: 1px solid transparent;
            -webkit-border-radius: 54px;
            border-radius: 54px;
            -webkit-transition: all .15s ease-in-out;
            -moz-transition: all .15s ease-in-out;
            -o-transition: all .15s ease-in-out;
            transition: all .15s ease-in-out;
            -ms-touch-action: manipulation;
            touch-action: manipulation;
            color: #fff !important;
            background-color: #000 !important;
        }
        .send_inp:hover{
            background: #0009 !important;
        }
        
        