* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    font-family: "Montserrat", sans-serif !important;
    text-decoration: none;
}

a {
    text-decoration: none;
    color: #000;
}

.cv-container ul:not(.cv-contact) {
    padding-left: 2rem;
}
.cv-container ul li:not(.cv-contact li) {
    list-style: disc;
}
.gray_bg {
    background-color: #eee;
}

.progress-wrap {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(0,0,0,0.1);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.progress-wrap svg {
    padding: 8px;
}

.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
    stroke: rgb(0 0 0 / 20%);
    stroke-width: 16px;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* innerPage codes */


/* team */

    .muellim-card {
    width: 100%;
    height: 280px;
    background: white;
    border-radius: 32px;
    padding: 3px;
    position: relative;
    box-shadow: #604b4a30 0px 70px 30px -50px;
    transition: all 0.5s ease-in-out;
  }
  
  .muellim-card .mail {
    position: absolute;
    right: 2rem;
    top: 1.4rem;
    background: transparent;
    border: none;
  }
  
  .muellim-card .mail svg {
    stroke: #fbb9b6;
    stroke-width: 3px;
  }
  
  .muellim-card .mail svg:hover {
    stroke: #f55d56;
  }
  
  .muellim-card .profile-pic {
    position: absolute;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    top: 3px;
    left: 3px;
    border-radius: 29px;
    z-index: 1;
    border: 0px solid #fbb9b6;
    overflow: hidden;
    transition: all 0.5s ease-in-out 0.2s, z-index 0.5s ease-in-out 0.2s;
  }
  
  .muellim-card .profile-pic img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    -o-object-position: 0px 0px;
    object-position: 0px 0px;
    transition: all 0.5s ease-in-out 0s;
  }
  
  .muellim-card .profile-pic svg {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 0px 0px;
    object-position: 0px 0px;
    transform-origin: 45% 20%;
    transition: all 0.5s ease-in-out 0s;
  }
  
  .muellim-card .bottom {
    position: absolute;
    bottom: 3px;
    left: 3px;
    right: 3px;
    background: #000;
    top: 80%;
    border-radius: 29px;
    z-index: 2;
    box-shadow: rgba(96, 75, 74, 0.1882352941) 0px 5px 5px 0px inset;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  }
  
  .muellim-card .bottom .content {
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 160px;
  }
  
  .muellim-card .bottom .content .name {
    display: block;
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
  }
  
  .muellim-card .bottom .content .about-me {
    display: block;
    font-size: 0.9rem;
    color: white;
    margin-top: 1rem;
  }
  
  .muellim-card .bottom .bottom-bottom {
    position: absolute;
    color: #fff;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .muellim-card .bottom .bottom-bottom .social-links-container {
    display: flex;
    gap: 1rem;
  }
  
  .muellim-card .bottom .bottom-bottom .social-links-container svg {
    height: 20px;
    fill: white;
    filter: drop-shadow(0 5px 5px rgba(165, 132, 130, 0.1333333333));
  }
  
  .muellim-card .bottom .bottom-bottom .social-links-container svg:hover {
    fill: #f55d56;
    transform: scale(1.2);
  }
  
  .muellim-card .bottom .bottom-bottom .button {
    background: white;
    color: #fbb9b6;
    border: none;
    border-radius: 20px;
    font-size: 0.6rem;
    padding: 0.4rem 0.6rem;
    box-shadow: rgba(165, 132, 130, 0.1333333333) 0px 5px 5px 0px;
  }
  
  .muellim-card .bottom .bottom-bottom .button:hover {
    background: #f55d56;
    color: white;
  }
  
  .muellim-card:hover {
    border-top-left-radius: 55px;
  }
  
  .muellim-card:hover .bottom {
    top: 20%;
    border-radius: 80px 29px 29px 29px;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.2s;
  }
  
  .muellim-card:hover .profile-pic {
    width: 100px;
    height: 100px;
    aspect-ratio: 1;
    top: 10px;
    left: 10px;
    border-radius: 50%;
    z-index: 3;
    border: 7px solid #fbb9b6;
    box-shadow: rgba(96, 75, 74, 0.1882352941) 0px 5px 5px 0px;
    transition: all 0.5s ease-in-out, z-index 0.5s ease-in-out 0.1s;
  }
  
  .muellim-card:hover .profile-pic:hover {
    transform: scale(1.3);
    border-radius: 0px;
  }
  
  .muellim-card:hover .profile-pic img {
    /*transform: scale(2.5);*/
    /*-o-object-position: 0px 25px;*/
    /*object-position: 0px 25px;*/
    transition: all 0.5s ease-in-out 0.5s;
  }
  
  .muellim-card:hover .profile-pic svg {
    transform: scale(2.5);
    transition: all 0.5s ease-in-out 0.5s;
  }
  
  /* team inside */
  
    .page-heading{
        background-color: rgb(250, 250, 250);
        padding: 80px 108px;
        width: 100%;
        margin-bottom: 30px;
    }
    .page-heading h2 {
        font-size: 35px;
        font-weight: 600;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .page-heading p {
        margin: 0 auto;
        max-width: 700px;
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        text-decoration: underline;
    }
    
    .teaminside img:not(.xfieldimagegallery img) {
        float: right;
        margin-left: 40px;
        width: 300px !important;
        object-fit: cover;
        height: 300px;
        border-radius: 100%;
    }
    
    .xfieldimagegallery, .comments-image-gallery {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .xfieldimagegallery li img, .comments-image-gallery li img {
        width: 100%;
        height: 440px;
    }
    
    .teaminside ul:not(.xfieldimagegallery) li {
        list-style: disc;
    }
    
    .about-more {
        padding: 50px;
        background: #fafafa;
        border-radius: 10px;
    }
    
    .table-container {
       margin-top: 20px;
    }
    
    
    .table-container table {
        border-collapse: collapse;
        border-spacing: 0;
        border-width: 0;
        width: 100%;
        empty-cells: hide;
    }
    
    .table-container table th {
        font-size: 14px;
        letter-spacing: 1.05px;
        color: #fff;
        background: #005693;
        text-transform: uppercase;
        padding: 25px 20px;
        vertical-align: middle;
    }
    
    .table-container table td {
        padding: 18px 20px;
        vertical-align: middle;
    }
    
    .table-container table th:first-child {
        padding-left: 50px;
    }
    
    .table-container table th:last-child{
        padding-right: 50px;
    }
    
    .table-container table tr:nth-child(even) td {
        background-color: #f4f4f4;
    }
    
    .table-container table tbody td:first-child {
        padding-left: 50px;
    }

/* team */

.addsened {
    justify-self: flex-end;
}

.sened_inner br {
    display: none;
}

.sened_inner {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}

.sened_inner img {
    height: 500px;
    object-fit: cover;
    margin: 0;
    width: 100%;
}

/* feedback */

/* From Uiverse.io by vinodjangid07 */ 
.card_social {
  width: fit-content;
  height: fit-content;
  background-color: rgb(238, 238, 238);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 25px;
  gap: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
}

/* for all social containers*/
.socialContainer {
  width: 52px;
  height: 52px;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: .3s;
}
/* instagram*/
.containerOne:hover {
  background-color: #d62976;
  transition-duration: .3s;
}
/* twitter*/
.containerTwo:hover {
  background-color: #00acee;
  transition-duration: .3s;
}
/* linkdin*/
.containerThree:hover {
  background-color: #0072b1;
  transition-duration: .3s;
}
/* Whatsapp*/
.containerFour:hover {
  background-color: #128C7E;
  transition-duration: .3s;
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: .3s;
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.page-hero .svg-animation {
    width: 100%;
}
.svg-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    overflow: initial;
    transform: translate(-50%, -50%);
}

.page-hero .svg-animation {
    width: 100%;
}
.svg-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    overflow: initial;
    transform: translate(-50%, -50%);
}

.dots-big {
    animation: dots-big 18s cubic-bezier(0.2, 0.1, 0.27, 2.5) infinite;
}

@keyframes dots-big {
    0% {
        transform: translateX(0px) translateY(0px);
    }
    
    20% {
        transform: translateX(-5px) translateY(5px);
    }
    40% {
        transform: translateX(-7px) translateY(-1px);
    }
    60% {
        transform: translateX(5px) translateY(2px);
    }
    80% {
        transform: translateX(1px) translateY(4px);
    }
    100% {
        transform: translateX(0px) translateY(0px);
    }
}

.dots-small {
    animation: dots-small 8s cubic-bezier(0.25, 0.24, 0.42, 1.8) infinite;
}

@keyframes dots-small {
    0% {
        transform: translateX(0px) translateY(0px);
    }
    20% {
        transform: translateX(5px) translateY(-5px);
    }
    40% {
        transform: translateX(7px) translateY(1px);
    }
    60% {
        transform: translateX(-5px) translateY(-2px);
    }
    80% {
        transform: translateX(1px) translateY(4px);
    }
    100% {
        transform: translateX(0px) translateY(0px);
    }
}

.dots-medium {
    animation: dots-medium 10s cubic-bezier(0.25, 0.24, 0.42, 1.8) infinite;
}

@keyframes dots-medium {
    0% {
    transform: translateX(0px) translateY(0px);
}
20% {
    transform: translateX(-5px) translateY(5px);
}
40% {
    transform: translateX(-7px) translateY(-1px);
}
60% {
    transform: translateX(5px) translateY(2px);
}
80% {
    transform: translateX(1px) translateY(4px);
}
100% {
    transform: translateX(0px) translateY(0px);
}
}

#innerPages .contact-page-block {
    position: relative;
    z-index: 1;
    color: #595959;
}

#innerPages .contact-page-block-wrap {
    padding: 0 40px;
}

#innerPages .contact-page-left, #innerPages .contact-page-form {
    flex: 1 1 50%;
    width: 50%;
    max-width: 50%;
}

#innerPages .contact-page-item {
    flex: 1 1 50%;
    width: 50%;
    max-width: 50%;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.5;
}

#innerPages .contact-page-item a:not(.socialContainer) {
    display: block;
    margin-bottom: 10px;
}

#innerPages .contact-page-item a strong {
    color: #65AB0E;
}

/*#innerPages .contact-page-item a:last-child {*/
/*    margin-bottom: 0;*/
/*}*/

/*#innerPages .contact-page-item:nth-child(2n) {*/
/*    padding-right: 15px;*/
/*}*/

#innerPages .contact-page-item-title {
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.3;
    color: #000;
}

/*#innerPages .contact-page-item:nth-child(2n) {*/
/*    padding-right: 15px;*/
/*}*/

#innerPages .contact-page-socials {
    margin-bottom: 0;
}

#innerPages .contact-page-item .footer-socials {
    margin-top: 0;
}

#innerPages .contact-page-item .footer-socials a {
    display: block;
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin-right: 16px;
    margin-bottom: 0;
}

#innerPages .contact-page-left, #innerPages .contact-page-form {
    flex: 1 1 50%;
    width: 50%;
    max-width: 50%;
}

#price-form {
    padding: 40px 100px;
}
section.green {
    background: #F5FFE9;
    position: relative;
}

#price-form .title {
    margin-bottom: 21px;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.1;
    text-align: center;
    color: #2B2B2B;
}

#price-form form {
    flex-direction: column;
    align-items: center;
}

#price-form form .field-group {
    width: 100%;
    max-width: 310px;
    margin-bottom: 20px;
}

.form .field-group {
    position: relative;
}

#price-form form input:not([type="checkbox"]), #price-form form input:not([type="checkbox"])+span {
    font-weight: 500;
    color: #2B2B2B;
}


#price-form form input:not([type="checkbox"]) {
    width: 100%;
}
.form .field-group input, .form .field-group span {
    transition: all .3s ease;
}
#price-form .field-group input {
    border-radius: 0;
}
#price-form input {
    position: relative;
    z-index: 1;
    padding: 15px 0;
    font-size: 16px;
    width: 100%;
    line-height: 1.3;
    color: #595959;
    background: none;
    border: none;
    border-bottom: 1px solid #2B2B2B;
    outline: none;
}

#price-form button {
    width: 100%;
    border: none;
    /* background: none; */
    padding: 10px;
    font-weight: 600;
    letter-spacing: .5px;
}

#price-form form input:not([type="checkbox"]), #price-form form input:not([type="checkbox"])+span {
    font-weight: 500;
    color: #2B2B2B;
}
.form .field-group span {
    position: absolute;
    top: 50%;
    display: block;
    font-weight: 500;
    line-height: 1.3;
    transform: translateY(-50%);
}
.form .field-group input, .form .field-group span {
    transition: all .3s ease;
}

.page-hero-info {
    position: relative;
    z-index: 1;
}

.page-hero-info h1 {
    font-size: 60px;
    font-weight: 600;
}

.page-hero p {
    font-size: 18px;
    line-height: 1.5;
}

#innerPages .page-hero {
    margin-top: 30px;
    margin-bottom: 30px;
}
.page-hero {
    margin-top: 60px;
    min-height: 400px;
    margin-bottom: 130px;
    padding: 110px 40px;
    background: #F7FFED;
    position: relative;
}
.flex-start {
    display: flex
;
    justify-content: flex-start;
    align-items: center;
}

.serviceinner img {
    width: 200px;
    margin: 20px auto;
}

a.form_btn.error_btn {
    width: fit-content;
    margin: 0 auto;
}

.cv_card {
    height: 250px;
    width: 100%;
    padding: 30px;
    border-radius: 15px;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
    overflow: hidden;
}

.cv_card:hover::before {
    width: 300%;
    height: 300%;
    background: #2f5093;
}

.cv_card * {
    transition: all .7s ease-in-out;
}

.cv_card:hover a {
    border-color: white;
}

.cv_card:hover * {
    color: #fff;
}

.cv_card::before {
    content: "";
    position: absolute;
    width: 76%;
    height: 93%;
    background-color: #cddcdc;
    background-image: radial-gradient(at 50% 100%, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%);
    background-blend-mode: screen, overlay;
    border-radius: 50%;
    right: -40%;
    top: -50%;
    transition: all 0.7s ease-in-out;
    z-index: -1;
}

.cv_title h2 {
    font-size: 27px;
}

/* about codes */

.blog-all-sides{
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(242, 242, 242, 1);
    margin-top: 30px;
}
.blog-full-left-side{
    border-right: 1px solid rgba(242, 242, 242, 1) ;
    width: 70%;
    padding: 30px 30px 0 0;
}
.blog-left-side-head{
    background: rgba(0, 0, 0, 0.05);
    padding: 16px;
    border-radius: 4px;
    margin: 20px 0 40px 0;
}
.bloglar-left-side-avtor-all{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.bloglar-avtor-img-all{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px 0 0 ;
}
.blog-full-story h2{
    font-size:25px;
}
.blog-full-story h3{
    font-size:20px;
    margin:0 0 20px 0;
}
.blog-full-story ol{
    list-style:"1";
    padding-left:40px;
}
.blog-full-story ul{
    list-style:disc;
    padding-left:40px;
}
.blog-full-story ol li{
    list-style-type: none;
      counter-increment: my-sec-counter;
      line-height:30px;
      padding: 0 0 6px 8px;
      position:relative;
}
.blog-full-story ol li::before{
    content:  counter(my-sec-counter ) ;
    position: absolute;
    left: -24px;
    top: 2px;
     font-size: 14px;
    line-height: 22px;
    color: #fff;
    border-radius: 3px;
    text-align: center;
    /* background: 100% 0 no-repeat #f9af22; */
    background: #f9af22 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAWCAMAAAA/86biAAAANlBMVEX////5ryL5tC7//vv7w1r//Pj//PX/+vH/+vD+9eT81o780oT7ymz7yGj7xmD6wVT6vEb6tzklMqcOAAAAMElEQVQI12MgHnAzg0hGHlYgycTIwgEiGQU4QSQjH4jkZweJszEwCPKClHIxE2kwACwgALUm5O19AAAAAElFTkSuQmCC) 100% 0 no-repeat;
    padding: 0 9px;
    background-size:contain;
    height: 22px;
}
.blog-full-story ul li{ 
    line-height:30px;
    padding:0 0 6px 0;
}
.blog-full-story ul li::marker{
    color:#baba00;
}
.bloglar-avtor-img {
    margin-right: 16px;
}
.bloglar-avtor-img img{
    width: 48px;
    height: 48px;
    object-fit:cover;
    border-radius: 50%;
}
.bloglar-avtor-content h3{
    font-size: 16px;
    line-height: 24px;
}
.avtor-content-down span{
    color: rgba(117, 117, 117, 1);
    font-size: 14px;
    line-height: 24px;
    padding: 0 8px 0 0;
}
.post-share-icons{
    text-align:center;
    padding: 40px 0;
}
.post-share-icons h5{
    font-size:30px;
    line-height:36px;
}
.avtor-icons,.down-icons{
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    align-items:center;
}
.down-icons{
    justify-content:center;
}
.down-icons a .fa-twitter{
    margin-left:2px;
}
.avtor-icons span{
    font-size:16px;
}
.avtor-icons a{
    width: 35px;
    height: 35px;
    background: #454545;
    color: aliceblue;
    display: inline-flex;
    margin:0 8px 0 0 ;
    justify-content: center;
    font-size:14px;
    transition:.3s;
    align-items: center;
    border-radius: 50% ;
}.avtor-icons a:last-child{
    margin: 0 ;
}
.avtor-icons a:hover{
    opacity:0.6;
}
.blog-full-left-side-blog-name{
    padding: 30px 0;
    line-height:26px;
}
.blog-left-side-full-title h2{
    font-size: 32px;
    line-height: 40px;
    padding: 20px 0 50px 0;
    font-weight: 600;
}
/*.blog-full-left-side-blog-name p{*/
/*    font-size: 20px;*/
/*    line-height: 32px;*/
/*}*/

.blog-full-left-side-blog-name img{
    width: 100%;
    transition: .4s;
    max-height: 456px;
    margin:0 !important;
    border-radius:20px;
    object-fit: cover;
    padding-bottom: 1rem;
}

.blog-full-right-side{
    padding: 20px 0 0 20px;
    text-align: start;
    width: 30%;
}
.blog-right-side-avtors-img img{
    width: 88px;
    height: 88px;
    object-fit:cover;
    border-radius: 50%;
}
.blog-right-side-avtors-img h4{
    font-size: 16px;
    padding: 16px 0 5px 0;
}
.blog-right-side-avtors-img  p{
    color: rgba(117, 117, 117, 1);
    font-size: 14px;
}
.blog-right-side-other-blogs{
    padding: 30px 0;
}
.blog-right-side-other-blog{
    border-bottom: 1px solid rgba(242, 242, 242, 1);
    padding: 20px 0;
    transition: .5s all ease;
}

.blog-right-side-other-blogs a:hover .blog-right-side-other-blog {
    padding: 20px 40px;
}

.other-blog-img{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.other-blog-avtor-img-name{
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 0 0 10px 0;
}
.other-blog-avtor-img-name h4{
    font-size: 13px;
    color: rgba(41, 41, 41, 1);
}
.other-blog-avtor-img-name img{
    width: 20px;
    height: 20px;
    object-fit:cover;
    border-radius: 50%;
    margin-right: 8px;
}
.other-blog-img img{
    width: 56px;
    height: 56px;
    object-fit:cover;
    border-radius: 2px;
}
.other-blog-img h5{
    color: #000;
    font-size: 16px;
    line-height:20px;
    width:90%;
}
.blog-right-side-other-blog:hover .other-blog-img h5{
    opacity:0.8;
}
.down-icons{
    padding: 20px 0 0px 0;
}
.down-icons a{
    margin: 0 20px 0 0 ;
    width: 45px;
    height: 45px;
    color: aliceblue;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50% ;
    font-size: 20px;
    transition:.3s;
}
.down-icons a:last-child{
    margin:0 ;
}
.down-icons a:hover{
    background:transparent;
}
.post-facebook{
    background: #3B5998;
    border: 2px solid #3B5998;
}
.post-facebook:hover{
    color:#3B5998;
}
.post-whatsapp{
    background: rgb(77, 194, 71);
    border: 2px solid rgb(77, 194, 71);
}
.post-whatsapp:hover{
    color: rgb(77, 194, 71);
}
.post-youtube:hover{
    color: rgb(77, 194, 71);
}
.post-pinterest{
    background: rgb(203, 32, 39);
    border:2px solid rgb(203, 32, 39);
}
.post-pinterest:hover{
    color: rgb(203, 32, 39);
}
.post-linkedin{
    background: rgb(0, 119, 181);
    border: 2px solid rgb(0, 119, 181) ;
}
.post-linkedin:hover{
    color:rgb(0, 119, 181);
}
.post-twitter{
    background: #009be9;
    border:2px solid #009be9;
}
.post-twitter:hover{
    color:#009be9;
}
.full-story-navigation-arrow{
    font-size:14px;
}
.masha_index{
    display:none;
}

/* about codes end */

.over {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.over svg {
    width: 20px;
    height: 20px;
}

.over p {
    margin: 0;
}

.over a {
    font-weight: 400;
}

#category {
    width: 350px;
    height: 140px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #f9f9f9;
    font-size: 14px;
    color: #333;
    outline: none;
}
    
#category option {
    padding: 5px;
    margin: 2px 0;
}
    
#category option:checked {
    background-color: #007bff;
    color: white;
}

#innerPages {
    padding: 3rem 0;
}

.innerGrid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}

.innerGridFour {
    grid-template-columns: repeat(4,1fr)
}

.innerGridPartnors {
    grid-template-columns: repeat(8,1fr)
}

.innerGrid .service-item {
    width: 100%;
    margin: 0;
    margin-left: 0 !important;
}

/* innerPage codes */

/* vakansiya page */

.vacancyGrid {
    display: grid;
    grid-template-columns: .5fr 1fr 1fr;
    gap: 3rem;
}

.catVacancyGrid {
    grid-template-columns: 1fr 3fr;
}

.vacancy_left img {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    object-fit: contain;
    border: 1px solid #eee;
    border-radius: 50%;
}

.vacancy_left h5 {
    display: flex;
    align-items: baseline;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: .2rem;
    color: #000;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.vacancy_left span {
    color: rgba(0, 0, 0, .5) !important;
    font-size: 14px;
}

.vacancy-description ul li {
    list-style: disc;
}

.side_card {
    width: 100%;
    height: fit-content;
    border-radius: 15px;
    color: #000;
    font-weight: 600;
    font-size: 1.2em;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: sticky;
    top: 130px;
}

.element {
  color: grey;
  font-size: .8em;
  padding: 6px 15px;
  border-left: 2px solid grey;
  cursor: pointer;
  transition: .5s all ease;
}

.side_active {
  background-color: #004d92;
  border-left: 2px solid #8cb4ff;
  color: azure;
}

.element:hover:not(.active) {
  /*color: #004d92;*/
}

.sidebar {
    height: fit-content;
    flex: 1;
    background: #0070d2;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 130px;
}

.card__container {
    gap: 5px;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #333;
    font-size: 16px;
}

.loading-spinner::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 3px solid #3498db;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* For the description box loading */
.description-content .loading-spinner {
    text-align: center;
    padding: 30px;
}

.description-content .loading-spinner::before {
    width: 30px;
    height: 30px;
    border-width: 4px;
}

.default-message {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 50px 20px;
}

.no-results, .error-message {
    text-align: center;
    padding: 30px;
    color: #666;
    font-size: 18px;
}

.sidebar h2 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.sidebar ul {
    list-style-type: none;
    padding-left: 2rem;
}

.sidebar ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: .5s all ease;
    border-bottom: 1px solid transparent;
}

.sidebar ul li a:hover {
    opacity: .5;
    border-bottom: 1px solid #fff;
}

/* Main Content */
.vacancy-section {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filters {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
    grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
}

.filters select,
.filters input {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    width: 100%;
}

.filters select:hover,
.filters input:hover {
    border-color: #4f46e5;
}

.vacancies {
    display: grid
;
    flex-wrap: wrap;
    gap: 20px;
    grid-template-columns: 1fr;
    position: sticky;
    top: 133px;
}

.vacancy-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
    height: fit-content;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.vacancy_link {
    height: fit-content;
}

.vacancy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.vacancy-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.vacancy-card p {
    font-size: 14px;
    color: #777;
}

.description {
    flex: 2;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.description h3 {
    font-weight: bolder;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.description p {
    font-size: 13px;
    color: #555;
    margin: 0;
}

/* vakansiya page end */

/* login codes */

#login_pane h2 {
    text-align: center;
    border-bottom: 2px solid #0070d2;
    width: fit-content;
    margin: 0 auto 30px auto;
    font-weight: 600;
}

#login_pane input {
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #eee;
    padding: 10px 25px;
}

#login_pane .services-redirect-button {
    justify-content: center !important;
}

.login_form__foot {
    display: flex;
    justify-content: space-between;
}

.login_form__foot a {
    transition: .4s all ease;
}

.login_form__foot a:hover {
    color: #0070d2;
}

#registration input:nth-child(1) {
    padding: 0.5rem 1.5rem;
    border: 2px solid #002161;
    background: transparent;
    font-weight: bold;
    color: #000;
}

#registration input:nth-child(2) {
    padding: 0.5rem 1.5rem;
    border: 2px solid #002161;
    background: transparent;
    font-weight: 300;
    color: #000;
}

input#sec_code {
    width: fit-content;    
}

.ui-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /*max-width: 500px;*/
  margin: 20px auto 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.select2-container .select2-search--inline .select2-search__field {
    height: 26px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    top: -15px;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.form-group label span {
    font-size: 13px;
    color: #ff0000;
}

.wide {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.form_btn,
.user_tab .tab-item:not(.tab_userName) a {
    padding: 0.5rem 1.5rem;
    border: 2px solid #002161;
    background: transparent;
    font-weight: bold;
    transition: .5s all ease;
    display: inline-block;
}

.header_bottom .form_btn {
    font-size: 13px;
    padding: 5px 10px;
}

.cv_file .form_btn {
    width: 100%;
    text-align: center;
}

.cv_file p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
}

.form_btn:hover,
.user_tab .tab-item:not(.tab_userName) a:hover {
  background-color: #0070d2;
  color: #fff;
}

.form_btn:hover a,
.user_tab .tab-item:not(.tab_userName) a:hover{
    color: #fff;
}

.login_check {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.c-captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#login_pane {
  position: relative;
}

.dropdown {
  position: relative;
}

.btn-border {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  background-color: white;
}

.btn-border:hover {
  background-color: #f0f0f0;
}

.pm_num {
  background-color: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 12px;
}

.dropdown-form {
  margin-top: 10px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 16px;
  z-index: 100;
}

.login_pane__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.login_pane__info {
  display: flex;
  align-items: center;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #eee;
}

.avatar img {
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    width: 100%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar .cover {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  text-indent: -9999px;
}

.login_pane__admin a {
  font-size: 12px;
  color: #007bff;
  text-decoration: none;
}

.login_pane__admin a:hover {
  text-decoration: underline;
}

.login_pane__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.menu-item a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.menu-item a:hover {
  color: #007bff;
}

.right {
  float: right;
}

.grey {
  color: #888;
}

.login_pane__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.addnews-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.addnews-link:hover {
  color: #007bff;
}

.plus_icon.circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  font-size: 14px;
  margin-right: 6px;
}

.title.user_tab {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.usinf {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.user-info-item {
    display: flex;
    justify-content: space-between;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 6px;
}

.ui-c1 {
    font-weight: bold;
}

.ui-c2 {
    text-align: right;
}

.online {
    color: #70bb39;
    font-weight: bold;
}

.addform .ui-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn.btn-big {
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn.btn-big:hover {
    background: #45a049;
}

.tab_userName a {
    font-size: 25px;
}

/* login codes end */

/* header */

.header {
  transition: transform 0.4s ease;
}

.header.hide {
  transform: translateY(-100%);
}

#exampleModal2 .modal-header {
    display: flex;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #D1D5DB;
}

#exampleModal2 .modal-header h1 {
    color: #1F2937;
    font-size: 25px !important;
    font-weight: 700;
    flex: 1;
}

#exampleModal2 .modal-body,
#exampleModal3 .modal-body{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#exampleModal2 .modal-body input,
#exampleModal3 .modal-body input {
    border: 1px solid #e6ecf2;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #000000;
    border-radius: 0.375rem;
    outline-color: #0070d2;
    width: 100%;
}

#exampleModal2 .modal-body select {
    border: 1px solid #e6ecf2;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #000000;
    border-radius: 0.375rem;
    outline-color: #0070d2;
    width: 100%;
    color: #757575;
    font-size: 14px;
}

#subSelect:disabled {
    opacity: .5;
}

.modal-body textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e6ecf2;
    border-radius: 0.375rem;
    outline-color: #0070d2;
    resize: none;
}

.buttononlayn {
    background-color: #0070d2;
    color: black;
    font-weight: 500;
    padding: 12px 46px;
    border: none;
    border-radius: 28px;
    color: #fff;
}

.second-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 190;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

.second-header.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.second-header {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header_top {
    background-color: #f4f5f6;
    /*height: 34px;*/
    display: flex;
    justify-content: flex-end;
}

.hedaer_top_list li a {
    font-size: 13px;
    color: #1B1C1D;
    font-weight: 500;
}

.lang {
    gap: 5px; /* Kiçik boşluq */
    font-size: 13px; /* Kiçik font ölçüsü */
}

.lang ul {
    display: flex;
    gap: 5px; /* Kiçik boşluq */
    padding: 0;
    margin: 0;
}

.lang a {
    color: #1B1C1D; /* Link rəngi */
    padding: 6px 10px; /* Kiçik padding (aşağıya doğru daha kompakt) */
    border-radius: 5px; /* Künclər yuvarlaq */
    text-decoration: none; /* Alt xətt yoxdur */
    display: inline-block; /* Block kimi göstərmək üçün */
    font-weight: normal; /* Yüngül ağırlıqda mətn */
}

/* Hover və fokus vəziyyəti */
.lang a:hover,
.lang a:focus {
    background-color: #f0f0f0; /* Hover və focus zamanı arxa plan rəngi */
    outline: none; /* Default outline-u silmək */
}

/* Kiçik ekranlar üçün uyğunlaşdırma */
@media (max-width: 768px) {
    .lang {
        font-size: 12px; /* Mobil üçün daha kiçik font ölçüsü */
    }
    .lang a {
        padding: 5px 8px; /* Mobil üçün daha kiçik padding */
    }
}

.header_mid {
    padding: 10px 0;
    border-bottom: 1px solid #d6d6d6;
}

/* dropdown */

.open_drop {
    position: relative;
}

.open_drop ul {
    padding: 0;
    min-width: max-content;
    opacity: 0;
    left: 0;
    top: 100%;
    position: absolute;
    visibility: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background: #fff;
    transition: .5s all ease;
}

li.open_drop:hover > ul {
    opacity: 1 !important;
    visibility: visible !important;
}

.open_drop > ul > li a {
    padding: 10px;
    display: inline-flex
;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    width: 100%;
}

.open_drop > ul > li a:hover {
    background: #eee;
    /* color: yellow; */
}

.logo_side .logo {
    width: 100px;
}

.logo_side ul a {
    font-size: 14px;
    color: #1B1C1D;
    font-weight: 500;
    transition: .5s all ease;
}

header ul a:hover,
.second_header ul a:hover {
    color: #0070d2;
}

.login_btn {
    background: none;
    outline: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-box-container {
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  overflow: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s ease;
  right: 10px;
}

.search-box-container.active {
  opacity: 1;
  transform: translateX(0%);
}

.search-input {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 10px;
  width: 0;
  transition: width 0.4s ease;
}

.search-box-container.active .search-input {
  width: 200px;
}

.button_side a {
    border: 1px solid #0070d2;
    font-size: 14px;
    color: #0070d2;
    display: flex;
    align-items: center;
    padding: 0.8rem 2rem;
    border-radius: 4.8rem;
    transition: .5s all ease;
}

.button_side i {
    color: #0070d2;
}

.button_side a:hover {
    color: #053660;
    border-color: #053660;
}

.button_side span {
    font-weight: 500;
}

.button_side span i {
    color: #0070d2;
}

.header_bottom {
    border-bottom: 1px solid #d6d6d6;
    padding: 6px 0;
}

.header_bottom ul.header_bottom_list a {
    color: #606162;
    font-size: 14px;
    /*margin-right: 1rem;*/
}

.header_bottom ul.header_bottom_list li:not(:last-child)::after {
    content: "/";
    margin: 0 10px;
    font-size: 11px;
    color: #606162;
}

.header_top ul.social_links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #0070d2;
    color: #606162;
    padding: 10px;
    border-radius: 50%;
    transition: .5s all ease;
}

.header_top ul.social_links a:hover {
    background: #0070d2;
    color: #fff;
}

/* header end */

/* slider */

#slider {
    height: 88vh;
}

.swiper {
    width: 100%;
    height: 100%;
}

#slider .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.0) 100%);
    width: 100%;
    height: 100%;
    z-index: 5;
}


#slider img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
}

.swiper_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 50%;
    position: relative;
    z-index: 6;
}

.swiper_content h2 {
    font-size: 4rem;
}

.swiper_content p {
    max-width: 70%;
}

.swiper_content a {
    padding: 10px 20px;
    border-radius: 20px;
    background-color: #0d274d;
    color: #fff;
    width: fit-content;
    font-size: 17px;
    font-weight: 600;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0070d2;
    background: #eee;
    border: 1px solid #0070d2;
    font-size: 14px;
    width: 15px;
    height: 15px;
    padding: 2rem;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 22px;
}

/* slider end */

/* ustunlukler */

#advantages {
    padding: 3rem 0;
}

.sec_title {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.adv_cards {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    width: 100%;
    margin-top: 0;
    display: grid;
}

.adv_card {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    background-color: #fff;
    border-radius: 1rem;
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 12px 24px #284e661a;
    display: flex;
    flex-flow: column;
}

.adv_icon i {
    object-fit: contain;
    background-color: #eff2f5;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    min-height: 40px;
    margin-bottom: 0;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0070d2;
}

.adv_icon img {
    width: 60px;
    height: 60px;
}

.adv_content h2 {
    font-size: 20px;
    font-weight: 700;
    min-height: 78px;
}

.adv_content p {
    font-size: 14px;
    color: #454f5b;
}

/* ustunlukler son */

/* xidmetler  */

#services {
    padding: 3rem 0;
}

#services:before {
    top: -65px;
    right: 0;
    width: 216px;
    height: 370px;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjE2IiBoZWlnaHQ9IjM3MCIgdmlld0JveD0iMCAwIDIxNiAzNzAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxjaXJjbGUgY3g9IjE4NSIgY3k9IjE4NSIgcj0iMTg1IiBmaWxsPSIjRjdGRkVEIi8+Cjwvc3ZnPgo=) no-repeat 50% 50%;
}

#services:before,
#services:after {
    content: '';
    position: absolute;
    z-index: -1;
}

#services .block-title {
    position: absolute;
    top: 0;
    left: 13px;
    max-width: 450px;
}

#services .block-title h2:before,
.blog-widget-left h2::before,
.form-director-title::before {
    animation: pulse 3s ease infinite;
}

#services .block-title h2:before,
.blog-widget-left h2::before,
.form-director-title::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    z-index: 1;
    width: 90px;
    height: 90px;
    background: linear-gradient(90deg, #0070d2 0%, #8fb2d0 100%);
    opacity: 0.8;
    filter: blur(35px);
}

@keyframes pulse {
    50% {
        transform: scale(0.5);
        filter: blur(25px);
    }
}

.block-title p {
    font-size: 18px;
    color: #595959;
    line-height: 150%;
}

#services .services {
    margin: 0 -15px -30px;
    align-items: stretch;
    justify-content: flex-start;
}

.service-item:nth-child(1) {
    margin-left: 50%;
}

.service-item:nth-child(1),
.service-item:nth-child(2) {
    min-height: 205px;
}

.service-item {
    position: relative;
    margin-bottom: 30px;
    padding: 0 15px;
    width: 25%;
    cursor: pointer;
}

.innerGrid .service-item {
    padding: 0;
}

.service-item-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 22px 20px;
    background: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0px 5px 20px rgba(232, 232, 232, 0.7);
    overflow: hidden;
}

.flex-spb {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-item-wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0070d2 0%, #8fb2d0 100%);
    opacity: 0;
    transition: all .3s ease;
}

.service-item-name {
    padding-right: 45px;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    color: #2B2B2B;
}

.service-item-name span {
    font-weight: 600;
    min-height: 75px;
    display: inline-block;
}

.service-item-wrap * {
    position: relative;
}

.service-item p {
    margin: 20px 0;
    font-weight: normal;
    font-size: 16px;
}

.service-item strong {
    font-size: 18px;
    color: #0070d2;
}

.service-item-redirect {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.flex-start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.service-item img {
    width: 36px;
    height: auto;
}

.service-item:hover .service-item-wrap:before,
.service-item:active .service-item-wrap:before,
.service-item:focus .service-item-wrap:before {
    opacity: 1;
}

.service-item:hover .service-item-name,
.service-item:active .service-item-name,
.service-item:focus .service-item-name {
    color: #fff;
}

.service-item:hover strong,
.service-item:active strong,
.service-item:focus strong {
    color: #fff;
}

.service-item:hover img {
    filter: invert(1);
}

.services-redirect-button {
    margin-top: 10px;
}

#services .services-redirect-button {
    justify-content: center !important;
}

.services-redirect-button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-bottom: 30px;
}

.services-redirect-button button,
.services-redirect-button a {
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 14px 60px 14px 30px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: white;
    background-image: linear-gradient(90deg, #0070d2 0%, #8fb2d0 100%);
    border-radius: 30px;
    border: 0;
    overflow: hidden;
    cursor: pointer;
}

.services-redirect-button span {
    position: relative;
    z-index: 3;
    display: inline-block;
    margin-bottom: 1px;
    will-change: transform;
    transform: translateZ(0);
    transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.services-redirect-button button:before,
.services-redirect-button a:before{
    content: "";
    position: absolute;
    z-index: 3;
    top: calc(50% - 5px);
    right: 30px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.services-redirect-button button:after,
.services-redirect-button a:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #0070d2 0%, #0070d2 100%);
    transition: opacity 0.4s ease-in-out;
    opacity: 0;
}

.services-redirect-button button:hover:before,
.services-redirect-button a:hover:before{
    transform: translate3d(45px, 0, 0) scale(0.5);
}

.services-redirect-button button:hover:after,
.services-redirect-button a:hover:after{
    opacity: 1;
}

.services-redirect-button button:hover span,
.services-redirect-button a:hover span{
    transform: translate3d(15px, 0, 0);
}

/* xidmetler son */

#certificates {
    padding: 3rem 0;
}

#certificates .blog-widget-left {
    max-width: 360px;
    position: relative;
}

.title-desc {
    font-size: 18px;
    color: #595959;
    line-height: 150%;
}

#certificates .blog-widget-right {
    flex: 1 1 calc(100% - 360px);
    width: calc(100% - 360px);
    max-width: calc(100% - 360px);
}

.flex-start-start {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.blog-item {
    position: relative;
    height: auto;
    padding: 0 0 30px
}

.blog-item:hover .desc,
.blog-item:active .desc,
.blog-item:focus .desc {
    box-shadow: 0px 5px 20px rgba(203, 203, 203, 0.55)
}

.blog-item:hover .blog-item-image img,
.blog-item:active .blog-item-image img,
.blog-item:focus .blog-item-image img {
    transform: scale(1.2)
}

.blog-item-hashtag {
    position: absolute;
    top: 0;
    z-index: 1;
    left: 0;
    flex-wrap: wrap;
    padding: 20px 17px
}

.blog-item-hashtag a {
    display: block;
    margin: 0 3px 6px;
    padding: 4px 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    background: #0070d2;
    border-radius: 5px
}

.blog-item a.desc {
    display: block;
    height: 100%;
    margin-bottom: 0;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(203, 203, 203, 0.25)
}

.blog-item-image {
    width: 100%;
    height: 250px;
    border-radius: 10px 10px 0 0;
    overflow: hidden
}

.blog-item-image picture {
    width: 100%;
}

.blog-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease
}

.blog-item-info {
    padding: 20px
}

.blog-item .blog-item-name {
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    color: #2B2B2B;
    margin-bottom: 20px;
    display: -webkit-box;
    height: 45px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.blog-item .blog-item-name br {
    display: none
}

.blog-item .blog-item-text {
    color: #595959
}

.blog-item .blog-item-text .blog-item-date {
    font-size: 14px
}

#certificates .services-redirect-button {
    justify-content: flex-start;
}

/* sertifikatlar end */

/* bloqlar */

#blogs {
    padding: 3rem 0;
}

.services-redirect-button {
    justify-content: flex-end;
}

.f33 {
    flex: 1 1 33.33333%;
    max-width: 33.33333%;
    width: 33.33333%;
    padding: 0 .75rem 0 0 !important;
}

.f33,
.f66 {
    padding: 0 0.75rem 1.5rem;
}

.f33 .front-news-item {
    height: 100%;
    max-width: 100%;
    width: 100%;
}

.front-news-item {
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    padding: 0.375rem 0.375rem 2rem;
    position: relative;
    background-color: #e0e0e0; /* Daha tünd bir arxa plan */
}

.f66 .front-news-item>div,
.innerGrid .front-news-item>div{
    position: relative;
    z-index: 2;
}

.front-news-item img,
.front-news-item picture {
    border-radius: 16px;
}

.front-news-item img {
    height: auto;
    object-fit: contain;
}

.front-news-item img {
    height: 206px;
    margin-bottom: 1.5rem;
    -o-object-fit: cover;
    object-fit: cover;
}

.f33 .front-news-item img {
    height: 400px;
}

.front-news-item img,
.front-news-item picture {
    border-radius: 16px;
}

img {
    height: auto;
    max-width: 100%;
}

.front-news-item strong,
.front-news-item>.flex {
    padding-inline: 0.625rem;
}

.front-news-item strong {
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: 2rem;
    letter-spacing: -0.96px;
    margin-bottom: 2.875rem;
    overflow: hidden;
    color: #333;
}

.front-news-item .link {
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
    padding: 0.65625rem 3.5rem 0.65625rem 0;
    color: #1a1a1a;
}

.front-news-item .link:after {
    background: url(/img/arrow-red.svg) no-repeat 50% 50%;
    content: "";
    height: 1.5rem;
    position: absolute;
    right: 1.5rem;
    top: 0;
    transition: all 0.3s ease;
    width: 1.5rem;
}

.front-news-item .link:after {
    background-color: #fff;
    border-radius: 50%;
    height: 2.5rem;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
}

.front-news-item .date {
    font-weight: 600;
    color: #333; /* Tünd boz rəng */
}

.f66 {
    gap: 1.5rem;
    flex: 1 1 66.66666%;
    max-width: 66.66666%;
    width: 66.66666%;
    padding: 0 0 0 .75rem;
}

.f66 .front-news-item {
    position: relative;
}

.f66 img,
.innerGrid .front-news-item img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 1;
    opacity: 1;
    filter: brightness(.5);
    transition: .5s all ease;
    width: 100%;
}

.f66 .front-news-item:hover img,
.innerGrid .front-news-item:hover img {
    opacity: 0;
}

.front-news-item {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
    padding: 1.5rem 1.5rem 2rem;
    width: calc(50% - 0.75rem);
}

.innerGrid .front-news-item {
    width: 100%;
    max-width: 100%;
}

.front-news-item strong {
    font-size: 1.5rem;
    color: #333;
    letter-spacing: -0.72px;
}

.f66 .front-news-item strong,
.f66 .front-news-item .link,
.innerGrid .front-news-item .link,
.innerGrid .front-news-item strong {
    color: #fff;
}

.f66 .front-news-item:hover strong,
.f66 .front-news-item:hover .link,
.innerGrid .front-news-item:hover strong,
.innerGrid .front-news-item:hover .link {
    color: #000;
}

/* bloqlar end */

/* partnyorlar */

#partnors {
    padding: 3rem 0;
}

.logo_item {
    justify-content: center;
    align-items: center;
    width: 200px;
    max-width: 200px;
    height: 70px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
}

.innerGridPartnors .logo_item {
    width: 100%;
    padding: 10px;
    max-width: 100%;
    border-radius: 8px;
    height: unset;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.logo_item--img.ironman-logo {
    max-height: 70px;
    margin-top: 0;
    filter: grayscale(1);
}

.logo_item--img {
    height: auto;
    object-fit: contain;
    max-height: 70px;
}

/* partnor son */

/* faq */

#faq {
    padding: 3rem 0;
}

#faq .description ul {
    padding-left: 2rem;
}

#faq .description ul li {
    list-style: disc;
}

.resources-item-wrapper .description {
    margin-left: 10px;
    padding-bottom: 10px;
    font-size: 17px;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.f33 {
    flex: 1 1 33.33333%;
    width: 33.33333%;
    max-width: 33.33333%;
}

.f66 {
    flex: 1 1 66.66666%;
    width: 66.66666%;
    max-width: 66.66666%;
}

.fb {
    font-weight: 700;
}

.btn-hover {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding: 0.9375rem 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    background: #a11d1d;
    border: none;
    border-radius: 48px;
    cursor: pointer;
}

.btn-hover:hover,
.btn-hover:active,
.btn-hover:focus {
    background-color: #AA284B;
}

.link {
    position: relative;
    display: block;
    margin-bottom: 1.5rem;
    padding-inline: 1.5rem 3.125rem;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.2;
}

.link:after {
    content: "";
    position: absolute;
    top: 0;
    right: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: url(/img/arrow-red.svg) no-repeat 50% 50%;
    transition: all 0.3s ease;
}

.link-hover-red:hover,
.link-hover-red:active,
.link-hover-red:focus {
    color: #D1325E;
}

@media screen and (max-width: 760px) {

    .f33 {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }
}

/* Header */

/* END Header */

/* Main page */

.resources .f33 {
    padding-right: 0.75rem;
}

.resources .f66 {
    position: relative;
    padding-left: 0.75rem;
}

.resources .f66:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    z-index: 1;
    width: calc(100% - 2.75rem);
    height: 3.125rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, #FFF 87.5%);
}

.resources-desc {
    padding: 3.25rem 1.5rem 1.5rem;
    font-size: 24xp;
    text-align: center;
    line-height: 1.2;
    background-color: #F5F5F5;
    border-radius: 20px;
}

.resources-desc .desc {
    margin-block: 2.75rem 3rem;
    letter-spacing: -0.72px;
}

.resources picture {
    justify-content: center;
}

.resources .btn-hover {
    width: 100%;
}

.resources-items {
    max-height: 502px;
    padding-right: 2rem;
    padding-bottom: 3.125rem;
    overflow-y: auto;
}

.resources-item {
    margin-bottom: 1rem;
    padding: 1.5625rem 3.75rem 1.5625rem 1.5rem;
    background-color: #F5F5F5;
    border-radius: 36px;
}

.resources-item:hover:after,
.resources-item:active:after,
.resources-item:focus:after {
    transform: rotate(45deg);
}

.resources-item:last-child {
    margin-bottom: 0;
}

.resources-item:after {
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #fff;
    border-radius: 50%;
}

@media screen and (max-width: 768px) {
    
    .resources-items {
        padding-right: 0;
    }
    
    .resources .flex {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .resources .flex .f33 {
        max-width: 100%;
        width: 100%;
    }

    .resources .flex .f66 {
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .resources.m80 {
        margin-block: 0;
    }
}

/* faq end */

/* cta */

#cta {
    background: #f3f3f3;
    position: relative;
    padding: 3rem 0;
}

.form-director-container {
    gap: 16px;
}

.form-director-wrapper {
    max-width: 645px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1 1 645px;
    padding: 0 0 105px;
}

.form-director-title {
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 700;
    position: relative;
}

.form-director-title h2 span {
    position: relative;
    z-index: 1;
}

.form-director-description {
    max-width: 548px;
    width: 100%;
    margin-bottom: 40px;
}

.form-director .field-group-wrapper {
    gap: 16px;
}

.flex-spb {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-spb-start {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-director .field-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    flex: 1;
    min-width: calc(50% - 8px);
}

.form .field-group {
    position: relative;
}

.form .field-group input,
.form .field-group span {
    transition: all .3s ease;
}

.form-style input {
    padding: 15px 0;
    border-bottom: 1px solid #595959;
}

.form-director input {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    border: 1px solid #e3e3e3;
    border-radius: 30px;
    background-color: #fff;
    padding: 16px 12px 16px 32px;
    outline: none;
    color: #595959;
}

.form-director button {
    width: 100%;
    margin-bottom: 24px;
}

.form-director .button {
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 14px 60px 14px 30px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: white;
    background-image: linear-gradient(90deg, #0070d2 0%, #8fb2d0 100%);
    border-radius: 30px;
    border: 0;
    overflow: hidden;
    cursor: pointer;
}

.form-director .button span {
    position: relative;
    z-index: 3;
    display: inline-block;
    margin-bottom: 1px;
    will-change: transform;
    transform: translateZ(0);
    transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.form-director .button:hover span {
    transform: translate3d(15px, 0, 0);
}

.form-director-policy {
    font-weight: 400;
    font-size: .875rem;
    line-height: 1.5;
    color: #595959;
}

.form-director-card {
    position: relative;
    max-width: 421px;
    width: 100%;
    padding-top: 26px;
}

.form-director-card-top {
    display: flex;
    position: relative;
    border-radius: 28px 28px 0 0;
}

.form-director-card-top::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 388px;
    height: 100%;
    background: #d6f898;
    filter: blur(9px);
    z-index: 1;
    border-radius: 28px 28px 0 0;
}

.form-director-card-top img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 350px;
    object-fit: contain
}

.form-director-card-bottom {
    position: relative;
    gap: 1px;
    padding: 20px 32px 26px;
    border-bottom: 1px solid #f0f0f0;
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    border-radius: 0 0 28px 28px;
    background-color: #FFFFFF;
    z-index: 2;
}

.form-director-card-bottom .name {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.1;
    color: #2b2b2b;
}

.form-director-card-bottom .job {
    font-size: 1.5rem;
    line-height: 1.1;
    color: #666;
}

.form-director-card .arrow {
    position: absolute;
    left: -235px;
    bottom: 200px;
    z-index: 0;
    scale: 1.3;
}

.form-director-card .arrow svg {
    max-width: 291px;
    max-height: 248px;
    width: 100%;
    height: 100%;
}

/* cta end */

/* footer */

#footer {
    background: #212529;
    border-top: 4px solid #212529;
    font-size: .9em;
    padding: 0;
    clear: both;
}

#footer {
    background: linear-gradient(225deg, #ECECEC 0, #fff 100%);
    border-top: 0 solid;
}

#footer .footer-logo {
    width: 215px;
}

#footer h4 {
    font-size: 1.55rem;
    line-height: 1.3;
    font-weight: 700;
    color: #001f42 !important;
}

.list.list-icons {
    list-style: none;
    padding-left: 0;
    padding-right: 0;
}

#footer li {
    margin-bottom: 3px;
    line-height: 24px;
}

.list.list-icons li {
    position: relative;
    padding-left: 25px;
}

#footer li a,
#footer li p {
    font-size: .9rem;
    color: #000 !important;
}

#footer a:not(.btn):not(.no-footer-css) {
    color: #777;
    transition: all .1s ease-in-out;
}

.list.list-icons li a:first-child>.icons:first-child,
.list.list-icons li a:first-child>[class*=fa-]:first-child,
.list.list-icons li>.icons:first-child,
.list.list-icons li>[class*=fa-]:first-child {
    position: absolute;
    left: 0;
    top: 5px;
}

@media screen and (max-width: 1500px) {
    
    .header_mid ul {
        gap: .5rem !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        padding: 1rem;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 17px;
    }
    
    /*ul.header_bottom_list {*/
    /*    gap: 10px !important;*/
    /*}*/
    
    .header_bottom ul.header_bottom_list a,
    .filters select, .filters input,
    .header_bottom ul.header_bottom_list li:not(:last-child)::after{
        font-size: 11px;
        font-weight: 700;
    }
    
    .logo_side ul a {
        font-size: 13px;
    }
    
    .hedaer_top_list li a {
        font-size: 12px;
    }
    
    .swiper_content h2 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 1201px) {
    
    #innerPages .contact-page-block-wrap {
        flex-direction: column;
        padding: 0;
    }
    
    #innerPages .contact-page-item,
    #innerPages .contact-page-form {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .card_social {
        width: 100%;
        margin-bottom: 15px;
    }
    
    #footer .footer-logo {
        width: 125px;
    }
    
    .logo_side,
    .button_side {
        gap: 10px !important;
    }
    
    .button_side a,
    .logo_side ul a,
    .button_side span,
    .login_btn,
    .header_bottom .form_btn {
        font-size: 12px;
    }
    
    #price-form {
        padding: 40px 20px;
    }
    
    #innerPages .contact-page-left {
        flex-direction: column;
        max-width: 100%;
        width: 100%;
    }
    
    .blog-all-sides {
        flex-direction: column;
    }
    
    .blog-full-left-side {
        border: none;
        width: 100%;
    }
    
    .post-share-icons {
        padding: 10px;
    }
    
    .blog-full-right-side {
        width: 100%;
    }
    
    .blog-right-side-other-blogs,
    .blog-full-left-side {
        padding: 30px 0 0 0;
    }
}

@media screen and (max-width: 992px) {
    
    .cv-container {
        flex-direction: column;
    }
    
    .cv-sidebar,
    .cv-main {
        width: 100%;
    }
    
    .vacancyGrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .side_card {
        position: unset;
    }
    
    .innerGrid,
    .innerGridPartnors,
    .sened_inner {
        grid-template-columns: 1fr 1fr;
    }
    
    header {
        position: sticky;
        top: 0;
        z-index: 5;
        background: #fff;
    }
    
    header .hedaer_top_list {
        display: none;
    }
    
    .header_mid nav ul,
    .header_mid .button_side,
    .header_bottom,
    .form-director-card {
        display: none !important; 
    }
    
    .swiper_content {
        max-width: 70%;
        text-align: center;
        margin: 0 auto;
        align-items: center;
    }
    
    .swiper_content h2 {
        font-size: 1.5rem;
    }
    
    .logo_side {
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .logo_side .btn,
    .logo_side .logo {
        width: 110px;
    }
    
    .logo_side .btn {
        background: none;
        border: none;
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        /*justify-content: flex-end;*/
        width: fit-content;
        align-items: flex-end;
        background: none !important;
        box-shadow: none !important;
        padding: 0;
    }
    
    .line {
        width: 32px;
        height: 3px;
        background: #000;
    }
    
    .adv_cards {
       grid-template-columns: 1fr;
    }
    
    .second-header img {
        width: 120px;
    }
    
    #advantages .w-75 {
        width: 100% !important;
    }
    
    #services {
        overflow: hidden;
    }
    
    #services .block-title {
        position: unset;
        width: 100%;
    }
    
    #services .services {
        flex-direction: column;
    }
    
    .service-item:nth-child(1) {
        margin: 0;
        margin-bottom: 30px;
    }
    
    .innerGrid .service-item:nth-child(1) {
        margin-bottom: 0;
    }
    
    .service-item:nth-child(1), .service-item:nth-child(2) {
        min-height: auto;
    }
    
    .service-item {
        width: 100%;
    }
    
    #services .services-redirect-button {
        justify-content: center;
    }
    
    #certificates .container,
    .front-news-items {
        flex-direction: column;
        gap: 1.5rem
    }
    
    #certificates .blog-widget-right {
        flex: 100%;
        width: 100%;
        max-width: 100%;
    }
    
    .front-news-item strong {
        padding: 0;
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .f33,
    .f66 {
        width: 100%;
        max-width: 100%;
        flex: 100%;
        padding: 0 !important;
    }
    
    .f33 .front-news-item {
        height: 100%;
        max-width: 100%;
        width: 100%;
    }
    
    .f33 .front-news-item img {
        height: 200px;
    }
    
    .front-news-item {
        width: 100%;
        max-width: 100%;
    }
    
    .form-director-title {
        font-size: 30px;
    }
    
    .form-director .field-group-wrapper {
        flex-direction: column;
    }
    
    .form-director .field-group {
        width: 100%;
    }
    
    #footer {
        margin: 0;
    }
}

@media screen and (max-width: 768px) {
    .innerGrid,
    .innerGridPartnors,
    .sened_inner {
        grid-template-columns: 1fr;
    }
    
    .title.user_tab {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .company__item__details li {
        flex-direction: column;
        align-items: flex-start;
    }
}

/*projects*/
.project-card img{height:220px;border-radius:10px;object-fit:cover}
/*projects end*/
