@charset "UTF-8";

html {
    font-size: 100%;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    margin: 15px;
}

p {
    margin: 0px;
    padding: 0px;
}

img {
    max-width: 100%;
    height: auto;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
    text-decoration: none;
    outline: none;
}

i,
span,
a {
    display: inline-block;
}

button {
    border: none;
}

body {
    font-family: 'Raleway', sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #222429;
}

/* section-title */

.section-title span.span {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #BF9C3B;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 0;
    font-weight: bolder;
}

.section-title-white h2 {
    color: #fff;
}

/* all btn style */

.main-btn {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #222429;
    border: none;
    background-color: #BF9C3B;
    border-radius: 10px;
    padding: 6px 16px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.main-btn:hover,
.main-btn:focus {
    background-color: #222429;
    color: #fff;
}

/* Nice select */

.nice-select {
    width: 100%;
    color: #fff;
}

.nice-select .list {
    width: 100%;
}

/* input css */

.form_control {
    width: 100%;
    height: 70px;
    padding: 0 20px;
}

.bg_cover {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* container css */

@media only screen and (min-width: 1201px) {
    .container {
        max-width: 1200px;
    }
}

/*
    search 
*/

#search-modal {
    background: rgba(23, 26, 33, 0.85);
}

#search-modal .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: none;
    outline: 0;
}

#search-modal form {
    width: 555px;
    position: relative;
}

#search-modal .modal-content {
    background: 0 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

#search-modal .modal-content:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

#search-modal .form_control {
    padding-left: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    color: #fff;
    margin-bottom: 0;
    height: 50px;
}

#search-modal .form_control:focus {
    border-color: #d00b2b;
}

#search-modal .form_control::-webkit-input-placeholder {
    color: #fff;
}

#search-modal .form_control::-moz-placeholder {
    color: #fff;
}

#search-modal .form_control:-ms-input-placeholder {
    color: #fff;
}

#search-modal .form_control::-ms-input-placeholder {
    color: #fff;
}

#search-modal .form_control::placeholder {
    color: #fff;
}

#search-modal .search_btn {
    position: absolute;
    background: transparent;
    top: 10px;
    right: 10px;
    color: #fff;
}

/*
    Start Preloader css
*/

.preloader {
    background-color: #fff;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 99999;
}

.lds-ellipsis {
    margin: 0 auto;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 64px;
    text-align: center;
    z-index: 9999;
}

.lds-ellipsis span {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #BF9C3B;
    -webkit-animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
    animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(1) {
    -webkit-animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
    animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(2) {
    -webkit-animation: ball-pulse-sync 0.6s -70ms infinite ease-in-out;
    animation: ball-pulse-sync 0.6s -70ms infinite ease-in-out;
}

@-webkit-keyframes ball-pulse-sync {
    33% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    66% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes ball-pulse-sync {
    33% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    66% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/*
    Start scroll_up css
*/

.back-to-top {
    background: #BF9C3B;
    border-radius: 50%;
    bottom: 30px;
    color: #fff;
    cursor: pointer;
    display: none;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    right: 30px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 337;
}

.back-to-top:hover,
.back-to-top:focus {
    background: #000000;
    color: #fff;
}

/* End Default css */

/*======== 02. Start Header Css ==========*/

.transparent-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header-navigation .main-menu ul li {
    display: inline-block;
    position: relative;
}

.header-navigation .main-menu ul li>a {
    display: block;
    font-size: 16px;
    color: #222429;
    font-weight: 500;
    text-transform: capitalize;
    padding: 40px 15px;
    line-height: 1;
}

.header-navigation .main-menu ul li>a.nav-link:hover,
.header-navigation .main-menu ul li>a.nav-link.active {
    color: #BF9C3B;
}

.header-navigation .main-menu ul li .sub-menu {
    position: absolute;
    left: 0;
    top: 120%;
    width: 200px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 99;
    height: auto;
    text-align: left;
}

.header-navigation .main-menu ul li .sub-menu li {
    display: block;
    margin: 0;
}

.header-navigation .main-menu ul li .sub-menu li:last-child>a {
    border-bottom: none;
}

.header-navigation .main-menu ul li .sub-menu li a {
    display: block;
    padding: 8px 15px;
    font-size: 14px;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-radius: 0;
    line-height: 2;
    margin: 0;
    border-bottom: 1px solid #ececec;
    color: #1b3255;
}

.header-navigation .main-menu ul li .sub-menu li a:hover {
    background-color: #BF9C3B;
    color: #fff;
    border-color: transparent;
}

.header-navigation .main-menu ul li .sub-menu li .sub-menu {
    left: 100%;
    top: 50%;
}

.header-navigation .main-menu ul li .sub-menu li:hover .sub-menu {
    top: 0%;
}

.header-navigation .main-menu ul li .sub-menu li:hover>a {
    background-color: #BF9C3B;
    color: #fff;
}

.header-navigation .main-menu ul li:hover.menu-item-has-children>a:after {
    color: #BF9C3B;
}

.header-navigation .main-menu ul li:hover>a {
    color: #BF9C3B;
}

.header-navigation .main-menu ul li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.header-navigation .main-menu ul li .dd-trigger {
    display: none;
}

.header-navigation.breakpoint-on .nav-menu {
    text-align: left;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 9999;
    width: 300px;
    height: 100%;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    padding: 0;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-top: 70px;
}

.header-navigation.breakpoint-on .nav-menu.menu-on {
    left: 0;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li {
    display: block;
    margin: 0;
    border-bottom: 1px solid #ececec;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li:last-child {
    border-bottom: 0;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li.active .sub-menu {
    border-top: 1px solid #ececec;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li a {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: #000000 !important;
    padding: 13px 20px;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    display: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu li a {
    color: #000000;
    padding: 0px 20px 0 40px;
    line-height: 45px !important;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu li a:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li .dd-trigger {
    display: block;
    position: absolute;
    right: 0;
    height: 45px;
    width: 45px;
    top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 2;
    background: transparent;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
    color: #000000;
    font-size: 20px;
}

.header-navigation.breakpoint-on .nav-menu .main-menu.menu-on {
    left: 0;
}

.header-navigation.breakpoint-on .nav-pushed-item {
    display: none;
}

.header-navigation.breakpoint-on .navbar-close,
.header-navigation.breakpoint-on .navbar-toggler {
    display: block;
}

.header-navigation .navbar-toggler {
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: none;
}

.header-navigation .navbar-toggler span {
    position: relative;
    background-color: #000000;
    border-radius: 3px;
    display: block;
    height: 3px;
    margin-top: 5px;
    padding: 0;
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
    width: 30px;
    cursor: pointer;
    display: block;
}

.header-navigation .navbar-toggler.active span:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 9px;
}

.header-navigation .navbar-toggler.active span:nth-of-type(2) {
    opacity: 0;
}

.header-navigation .navbar-toggler.active span:nth-of-type(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: -6px;
}

.header-navigation .navbar-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 12;
    display: none !important;
    background: #d00b2b;
    padding: 5px;
}

.header-navigation .navbar-close .cross-wrap {
    width: 34px;
    height: 34px;
    cursor: pointer;
    position: relative;
}

.header-navigation .navbar-close .cross-wrap span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 6px;
    background: #fff;
}

.header-navigation .navbar-close .cross-wrap span.top {
    top: 17px;
    left: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header-navigation .navbar-close .cross-wrap span.bottom {
    bottom: 15px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header-area-v1 .header-navigation .container-fluid {
    padding-left: 70px;
    padding-right: 70px;
}

.header-area-v2.transparent-header {
    top: 30px;
}

.header-area-v2 .header-container {
    background-color: #fff;
}

.header-area-v2 .header-navigation .nav-tools .icon.off-menu {
    background-color: #1b0e60;
    border-color: transparent;
}

.header-area-v2 .header-navigation .nav-tools .icon.off-menu span {
    background-color: #fff;
}

header .container-fluid {
    padding-left: 70px;
    padding-right: 70px;
}

/* Start Header-v1 css */

.header-area-v1 .header-navigation {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.header-area-v1 .header-navigation .navigation-area .top-header-area,
.header-area-v1 .header-navigation .navigation-area .primary-menu {
    padding-right: 70px;
}

.header-area-v1 .main-menu ul li>a.nav-link {
    color: #fff;
}

.header-area-v1 .top-header-area {
    position: relative;
    padding: 10px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.header-area-v1 .top-header-area .top-left ul li {
    display: inline-block;
    margin-right: 15px;
}

.header-area-v1 .top-header-area .top-left ul li span {
    color: #fff;
}

.header-area-v1 .top-header-area .top-left ul li span i {
    margin-right: 10px;
}

.header-area-v1 .top-header-area .top-right {
    float: right;
}

.header-area-v1 .top-header-area .top-right ul li {
    display: inline-block;
    margin-left: 15px;
}

.header-area-v1 .top-header-area .top-right ul li a {
    color: #fff;
}

.header-area-v1 .header-navigation .site-branding {
    width: 20%;
}

.header-area-v1 .header-navigation .site-branding .brand-logo {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 13px;
}

.header-area-v1 .header-navigation .navigation-area {
    width: 80%;
}

.header-area-v1 .header-navigation .main-menu ul li>a {
    padding: 10px 15px;
}

.header-area-v1 .top-header-area,
.header-area-v1 .header-navigation .main-menu {
    padding-left: 43px;
}

.header-area-v1 .header-navigation .site-branding .brand-logo,
.header-area-v2 .header-navigation .site-branding .brand-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
    border-right: 2px solid #f0f4f9;
    padding: 0 !important;
}

.brand-logo img {
    width: 100%;
}

.header-area-v1 .header-navigation .main-menu ul li:first-child .nav-link,
.header-area-v2 .header-navigation .main-menu ul li:first-child .nav-link {
    padding-left: 0px;
}

.header-area-v1 .header-navigation .site-branding .brand-logo {
    border-color: rgba(255, 255, 255, 0.2);
}

.header-area-v1 .header-navigation .nav-menu .nav-button .main-btn:hover,
.header-area-v1 .header-navigation .nav-menu .nav-button .main-btn:hover {
    background-color: #fff;
    color: #222429;
}

.header-area-v1 .header-navigation .navigation-area .primary-menu {
    height: 100%;
}

.header-area-v1 .header-navigation .nav-toggle {
    display: -webkit-box;
    /* display: -ms-flexbox;
  display: flex; */
    -webkit-box-align: center;
    /* -ms-flex-align: center; */
    /* align-items: center; */
    /* -webkit-align-items: center !important; */
    height: 100%;
    position: absolute;
    top: 0;
    right: 15px;
    /* margin-top: 0.5rem; */
    -webkit-box-pack: end;
    -ms-flex-pack: end;

    text-align: center;
    /* justify-content: flex-end; */
}

.header-area-v1 .header-navigation .navbar-toggler span {
    background-color: #BF9C3B;
}

/* Header v2 */

.header-area-v2 .header-navigation .site-branding {
    height: 100%;
}

.header-area-v2 .nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding-left: 25px;
}

.header-area-v2 .header-navigation .main-menu ul li>a {
    padding: 47px 15px;
}

.header-area-v2 .header-right {
    float: right;
}

.header-area-v2 .header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.header-area-v2 .header-right ul li {
    display: inline-block;
    margin-left: 50px;
}

.header-area-v2 .header-right ul li a.phone-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-area-v2 .header-right ul li a.phone-btn .icon {
    border: 2px solid rgba(34, 36, 41, 0.1);
    height: 50px;
    width: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 50%;
    margin-right: 12px;
}

.header-area-v2 .header-right ul li a.phone-btn .icon i {
    color: #BF9C3B;
}

.header-area-v2 .header-right ul li a.phone-btn .info span {
    display: block;
    color: #565872;
}

.header-area-v2 .header-right ul li a.phone-btn .info span h6 {
    font-size: 16px;
    font-weight: 600;
    color: #222429;
}

.header-area-v2 .header-right ul li .search-btn {
    display: block;
    padding: 40px 30px;
    border-left: 2px solid #f0f4f9;
    border-right: 2px solid #f0f4f9;
}

.header-area-v2 .header-right ul li .off-menu span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #1e2843;
}

.header-area-v2 .header-right ul li .off-menu span:nth-child(2) {
    margin: 4px 0;
}

.header-area-v2 .header-right ul li .off-menu span:nth-child(3) {
    width: 10px;
}

.offcanvas-panel {
    position: fixed;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
    visibility: hidden;
}

.offcanvas-panel.panel-on {
    visibility: visible;
    opacity: 1;
}

.offcanvas-panel.panel-on .offcanvas-panel-inner {
    visibility: visible;
    opacity: 1;
    margin-right: 0;
}

.offcanvas-panel .offcanvas-panel-inner {
    max-width: 400px;
    height: 100%;
    background-color: #fff;
    padding: 40px;
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
    margin-right: -400px;
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
    visibility: hidden;
}

.offcanvas-panel .offcanvas-panel-inner .panel-logo,
.offcanvas-panel .offcanvas-panel-inner .offcanvas-panel,
.offcanvas-panel .offcanvas-panel-inner .about-us {
    margin-bottom: 40px;
}

.offcanvas-panel .panel-widget-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
    border-bottom: 2px solid #ededed;
    font-weight: 600;
}

.offcanvas-panel .contact-us ul li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
    margin-left: 0px;
}

.offcanvas-panel .contact-us ul li:last-child {
    margin-bottom: 0px;
}

.offcanvas-panel .contact-us ul li i {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #BF9C3B;
    border-radius: 50%;
    font-size: 14px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
}

.offcanvas-panel .panel-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 25px;
    line-height: 1;
    padding: 5px;
    color: #000000;
    z-index: 2;
}

/* sticky */

.header-area-v1 .header-navigation.sticky {
    background-color: #1c1e22;
}

.header-area-v1 .header-navigation.sticky .top-header-area {
    display: none;
}

.header-area-v2 .header-navigation.sticky {
    background-color: #fff;
}

.header-navigation.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    -webkit-animation: sticky 1.2s;
    animation: sticky 1.2s;
}

.header-area-v3 .header-navigation.sticky {
    padding: 10px 0;
    background: #6019d5;
}

@-webkit-keyframes sticky {
    0% {
        top: -200px;
    }

    100% {
        top: 0;
    }
}

@keyframes sticky {
    0% {
        top: -200px;
    }

    100% {
        top: 0;
    }
}

/*======= 03. Start hero section css =======*/

.hero-content span.span {
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 63px;
    color: #fff;
    line-height: 90px;
    margin-bottom: 25px;
}

.hero-content .main-btn:hover {
    background-color: #fff;
    color: #BF9C3B;
}

/* .deyerler .lists:hover li{
  color: #fff;
} */
.deyerler .lists:hover li {

    color: #fff;
}

.deyerler .lists:hover p {
    color: #fff;
}

.hero-area {
    padding: 0 !important;
}

/* hero area */

.hero-area-v2 {
    padding: 210px 0 220px;
}

.hero-area-v2 .hero-content span.span {
    color: #BF9C3B;
    font-weight: 700;
}

/* Breadcurmbs */

.breadcrumbs-area {
    padding: 280px 0 140px;
}

.breadcrumbs-area .page-title h1 {
    color: #fff;
    font-size: 47px;
    margin-bottom: 20px;
}

.breadcrumbs-area .page-title ul.breadcrumb-link li {
    display: inline-block;
    color: #fff;
}

.breadcrumbs-area .page-title ul.breadcrumb-link li:after {
    display: inline-block;
    content: '|';
    margin-left: 10px;
    margin-right: 7px;
}

.breadcrumbs-area .page-title ul.breadcrumb-link li:last-child:after {
    display: none;
}

.breadcrumbs-area .page-title ul.breadcrumb-link li.active {
    color: #fff;
}

/* End hero section css */

/*=========== 04. Start about css ========*/

.about-area-v1 .about-img {
    background-color: #BF9C3B;
    text-align: center;
    border-radius: 5px;
    padding-top: 40px;
}

.about-area-v1 .about-img img {
    border-radius: 5px;
    margin-bottom: -40px;
}

.about-area-v1 .about-content-box {
    padding-left: 25px;
}

.about-area-v1 .about-content-box p {
    margin-bottom: 30px;
}

.about-area-v1 .about-content-box h5 {
    font-size: 20px;
    margin-bottom: 10px;
}

.about-list-item .list-item .check-box {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    background-color: #BF9C3B;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    place-content: center;
    border-radius: 5px;
    margin-right: 24px;
    font-size: 24px;
}

/* about-area-v2 */

.about-area-v2 .about-content-box .about-list-item {
    margin-bottom: 40px;
}

.about-area-v2 .about-content-box p {
    margin-bottom: 30px;
}

.about-area-v2 .about-content-box .about-list-item .list-item li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px;
}

.about-area-v2 .about-content-box .about-list-item .list-item li:last-child {
    margin-bottom: 0px;
}

.about-area-v2 .about-content-box .about-list-item .list-item li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '\f00c';
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #BF9C3B;
}

.about-area-v2 .about-img {
    padding-left: 10px;
}

.about-area-v2 .about-img img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* End about css */

/*====== 05. Start service css =========*/

.service-area-v1 {
    background-color: #f0f4f9;
}

.service-area .single-service-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    padding: 35px 35px;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-area .single-service-item:hover {
    background-color: #222429;
}

.service-area .single-service-item:hover p {
    color: #fff;
}

.service-area .single-service-item:hover li {
  color: #fff;
}
.service-area .single-service-item:hover h5 {
    color: #BF9C3B;
}

#komissiyalar .single-service-item {
    background-color: transparent;
    padding: 0px;
    border-radius: 0px;
}

#komissiyalar .row {
    display: flex;
    justify-content: space-around !important;
}

#komissiyalar .komite-item {
    flex: 0 0 30% !important;
    text-align: center;
}

#komissiyalar .service-text h5 {
    margin-top: 1rem;
}

/* #komissiyalar .service-text img {
  width: 70%;
}
.komissiyalar .single-service-item svg {
  width: 160px;
  height: 160px;
} */
.service-area .single-service-item .service-text:hover g {
    fill: #BF9C3B;
}

#komissiyalar .service-area .single-service-item {
    padding: 0px 30px;
}

.service-area .single-service-item h5 {
    margin-bottom: 20px;
}

.komite-title {
    margin-bottom: 0px !important;
}

.service-area .single-service-item p {
    opacity: 0.8;
}

.service-area .single-service-item .icon {
    min-width: 60px;
    max-width: 60px;
    margin-right: 30px;
}

.service-area .single-service-item .icon img {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-area .single-service-item .service-text:hover h5 {
    color: #BF9C3B;
}

.service-area .single-service-item h5,
#komissiyalar .service-text g {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* service-area-v2 */

.service-area-v2 {
    position: relative;
    z-index: 1;
}

.service-area-v2:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background-color: #f0f4f9;
    width: 100%;
    height: 590px;
    z-index: -1;
}

.service-area-v2 .single-service-item {
    background-color: #222429;
    border: 1px solid #2f333b;
    margin-bottom: 0;
    border-radius: 0;
}

.service-area-v2 .single-service-item h5,
.service-area-v2 .single-service-item p {
    color: #fff;
    opacity: 1;
}

.service-area-v2 .single-service-item:hover {
    background-color: #BF9C3B;
}

.service-area-v2 .single-service-item:hover h5,
.service-area-v2 .single-service-item:hover p {
    color: #1c1e22;
}

.service-area-v2 .single-service-item:hover img {
    -webkit-filter: brightness(0%);
    filter: brightness(0%);
}

/* End service css */

/*=========== 06. Start Fetaures area ===========*/

/* work section */

.work-process .section-title p {
    color: #fff;
    margin-top: 15px;
    font-weight: 400;
}

.work-process .single-process {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    position: relative;
}

.work-process .single-process .icon {
    width: 75px;
    height: 75px;
    margin-bottom: 40px;
}

.work-process .single-process .icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.work-process .single-process .info p {
    color: #565872;
    margin-bottom: 0;
    margin-top: 20px;
}

.work-process .single-process:before {
    content: '' attr(data-num) '';
    font-size: 100px;
    color: #e7e7e7;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    position: absolute;
    top: 60px;
    right: 30px;
}

/* Start cta section css */

.cta-area {
    margin-bottom: -70px;
}

.cta-area .item-bg-one {
    background-color: #222429;
}

.cta-area .item-bg-two {
    background-color: #BF9C3B;
}

.cta-area .cta-item {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 26px 30px 27px;
}

.cta-area .cta-item .info {
    width: 65%;
}

.cta-area .cta-item .info h3 {
    font-size: 40px;
    color: #fff;
    line-height: 42px;
}

.cta-area .cta-item.item-two .info h3 {
    color: #222429;
}

.cta-area .cta-item .info span {
    font-weight: bold;
    text-transform: uppercase;
}

.cta-area .cta-item.item-two .main-btn {
    background-color: #222429;
    color: #fff;
}

.cta-area .cta-item .button {
    float: right;
}

/* Start counter area */

.counter-area {
    position: relative;
    margin-bottom: -120px;
}

.counter-area .counter-wrapper {
    background-color: #BF9C3B;
    padding: 80px 3px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.counter-area .counter-wrapper:before {
    content: '';
    width: 450px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #BF9C3B;
    -webkit-clip-path: polygon(0 0, 100% 0, 9% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 9% 100%, 0% 100%);
}

.counter-area .counter-wrapper:after {
    content: '';
    width: 305px;
    height: 70%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #BF9C3B;
    z-index: -1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.counter-area .single-counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.counter-area .single-counter .icon {
    min-width: 45px;
    max-width: 60px;
    /* margin-right: 5px; */
}

.counter-area .single-counter .info h2 {
    font-size: 50px;
    margin-bottom: 0px;
}

.counter-area .single-counter .info p {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #1c1e22;
    line-height: 25px;
}

.counter-area-v2 {
    position: relative;
    z-index: 1;
    margin-bottom: -240px;
}

.counter-area-v2:after {
    content: '';
    width: 60%;
    height: 100%;
    position: absolute;
    right: 0px;
    bottom: 0;
    background-color: #222429;
    z-index: -1;
}

.counter-area-v2 .single-counter .info h2 {
    color: #ffaa18;
    font-size: 70px;
    font-weight: 700;
}

.counter-area-v2 .single-counter .info p {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 23px;
}

/* Start clients section */

.our-clients {
    background-color: #f0f4f9;
}

.our-clients .clients-content-box {
    padding-right: 110px;
}

.our-clients .clients-content-box p {
    margin-bottom: 20px;
}

.clients-img-box .clients-imgs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.clients-img-box .clients-imgs li {
    max-width: 33.33%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    padding-left: 15px;
    padding-right: 15px;
}

.clients-img-box .clients-imgs a {
    display: block;
    text-align: center;
    background-color: #fff;
    margin-bottom: 30px;
    padding: 25px 0px;
}

/* End Features section css */

/*================ 07. Start Team members =======*/

.team-members .single-team-member {
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}

.team-members .single-team-member .team-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.team-members .single-team-member .single-team-member:hover .team-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.team-members .single-team-member .member-info {
    background-color: #222429;
    position: absolute;
    bottom: -30px;
    width: 90%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 5px;
    padding: 25px 33px;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    border-left: 3px solid #BF9C3B;
}

.team-members .single-team-member .member-info h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-members .single-team-member .member-info p {
    margin-bottom: 0;
    color: #fff;
    opacity: 0.8;
}

.team-members .single-team-member:hover .member-info {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}

.team-members-v2 {
    padding-top: 350px;
    background-color: #f0f4f9;
}

.team-members-v2 .single-team-member .team-img {
    position: relative;
    overflow: hidden;
}

.team-members-v2 .single-team-member:hover .member-info:before {
    width: 100%;
}

.team-members-v2 .single-team-member .team-img img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.team-members-v2 .single-team-member .member-info {
    background-color: #222429;
    max-width: 90%;
    margin: 0 auto;
    padding: 20px 30px;
    border-radius: 5px;
    margin-top: -50px;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.team-members-v2 .single-team-member .member-info h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-members-v2 .single-team-member .member-info p {
    color: #fff;
    margin-bottom: 0;
}

.team-members-v2 .single-team-member .member-info:before {
    content: '';
    width: 80%;
    height: 2px;
    background-color: #BF9C3B;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 10px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.team-members-v2 .single-team-member:hover .team-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/* End Team members */

/*========== 08. Start Case study =========*/

.portfolios-list li {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    padding: 5px 5px;
    cursor: pointer;
    margin: 0px 5px;
    border-bottom: 2px solid transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.portfolios-list {
    margin-top: -10px;
    text-align: center;
    margin-bottom: 50px;
}

.portfolios-list li:hover,
.portfolios-list li.active {
    border-color: #BF9C3B;
}

.case-study .single-case-study {
    position: relative;
    border-radius: 5px;
    margin-bottom: 30px;
}

.case-study .single-case-study .case-img {
    position: relative;
    overflow: hidden;
}

.case-study .single-case-study .case-img img {
    width: 100%;
    /* height: 100%; */
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.case-study .single-case-study:hover .case-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.case-study .single-case-study:hover .case-img .case-overlay {
    visibility: visible;
    opacity: 1;
}

.case-study .single-case-study .case-img .case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.case-study .single-case-study .case-study-info {
    position: relative;
    width: 100%;
    background-color: #BF9C3B;
    padding: 30px;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.case-study .single-case-study .case-study-info .icon {
    width: 45px;
    height: 45px;
    background-color: #1c1e22;
    color: #fff;
    display: block;
    text-align: center;
    line-height: 45px;
    border-radius: 5px;
    right: 20px;
    position: absolute;
    top: -20px;
}

.case-study .single-case-study .case-study-info .tag {
    height: 30px;
    display: block;
    margin-bottom: 8px;
}

/* case-study-v2 */

.case-study-v2 {
    background-color: #222429;
}

.case-study-v2 .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

.case-study-v2 .case-slider-one {
    margin-left: -15px;
    margin-right: -15px;
}

.case-study-v2 .single-case-study {
    margin-left: 15px;
    margin-right: 15px;
}

.case-study-v2 .single-case-study .case-img .case-overlay {
    padding: 30px;
}

/* End Case study */

/*====== 09. Start Testimonial Section =======*/

.testimonials-area {
    padding-top: 235px;
}

.testimonials-area .testimonial-slider-one {
    margin-left: -15px;
    margin-right: -15px;
}

.testimonials-area .single-testimonial {
    background-color: #1c1e22;
    padding: 50px 40px;
    border-top: 2px solid #BF9C3B;
    margin-left: 15px;
    margin-right: 15px;
}

.testimonials-area .single-testimonial .testimonial-user-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.testimonials-area .single-testimonial .testimonial-user-info .user-thumb-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.testimonials-area .single-testimonial .testimonial-user-info .user-thumb-title .thumb {
    min-width: 80px;
    max-width: 80px;
    height: 80px;
    margin-right: 25px;
}

.testimonials-area .single-testimonial .testimonial-user-info .user-thumb-title .thumb img {
    width: 100%;
    border-radius: 50%;
}

.testimonials-area .single-testimonial .testimonial-user-info .user-thumb-title h5 {
    color: #fff;
    margin-bottom: 15px;
}

.testimonials-area .single-testimonial .testimonial-user-info .user-thumb-title p.position {
    color: #fff;
}

.testimonials-area .testimonial-user-info .quote {
    font-size: 40px;
    color: #BF9C3B;
}

.testimonials-area .single-testimonial p {
    color: #fff;
}

.testimonial-area-v2 .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

.testimonial-area-v2 .testimonial-slider-two {
    margin-left: -12%;
}

.testimonial-area-v2 .single-testimonial {
    border: 1px solid #eaeaea;
    border-radius: 5px;
    padding: 30px 30px 20px;
    margin-left: 15px;
    margin-right: 15px;
    max-width: 570px;
}

.testimonial-area-v2 .single-testimonial .testimonial-content .author-title-quote {
    margin-bottom: 10px;
}

.testimonial-area-v2 .single-testimonial:hover .testimonial-content .author-title-quote .quote {
    color: #ffaa18;
}

.testimonial-area-v2 .single-testimonial .thumb {
    min-width: 110px;
    max-width: 110px;
    height: 110px;
    margin-right: 15px;
}

.testimonial-area-v2 .single-testimonial .testimonial-content .author-title-quote .title h4 {
    font-size: 30px;
    margin-bottom: 0;
    color: #191919;
}

.testimonial-area-v2 .single-testimonial .testimonial-content .author-title-quote .title p.position {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    color: #686a6f;
    font-weight: 500;
}

.testimonial-area-v2 .single-testimonial .testimonial-content .author-title-quote .quote {
    font-size: 40px;
    margin-top: 9px;
    color: #8f9093;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.testimonial-area-v2 .single-testimonial .testimonial-content p {
    color: #565872;
}

/* End Testimonial Section */

/*===== 10. Start Blog Section ==========*/

.blog-area-v1 .blog-post-item:hover .post-thumbnail .blog-date {
    top: 20px;
    opacity: 1;
    visibility: visible;
}

.blog-area-v1 .blog-post-item:hover .entry-content {
    bottom: -30px;
    opacity: 1;
    visibility: visible;
}

.blog-area-v1 .blog-post-item .post-thumbnail {
    position: relative;
}

.blog-area-v1 .blog-post-item .post-thumbnail img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.blog-area-v1 .blog-post-item .post-thumbnail .blog-date {
    position: absolute;
    top: 14px;
    left: 20px;
    background-color: #BF9C3B;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.blog-area-v1 .blog-post-item .entry-content {
    background-color: #222429;
    position: absolute;
    bottom: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 90%;
    padding: 23px 25px 27px;
    border-top: 4px solid #BF9C3B;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.blog-area-v1 .blog-post-item .entry-content ul li {
    display: inline-block;
    margin-right: 20px;
}

.blog-area-v1 .blog-post-item .entry-content ul li span {
    color: #fff;
    font-size: 12px;
}

.blog-area-v1 .blog-post-item .entry-content ul li span i {
    margin-right: 10px;
}

.blog-area-v1 .blog-post-item .entry-content h3.title {
    color: #fff;
    margin-top: 10px;
    font-size: 22px;
}

.blog-area-v1 .blog-post-item .entry-content h3.title:hover,
.blog-area-v1 .blog-post-item .entry-content ul li span:hover {
    color: #BF9C3B;
}

/* .blog-area-v2 */

.blog-area-v2 {
    background-color: #f0f4f9;
}

.blog-area-v2 .blog-post-item:hover .post-thumbnail img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-area-v2 .blog-post-item .post-thumbnail {
    position: relative;
    overflow: hidden;
}

.blog-area-v2 .blog-post-item .post-thumbnail img {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-area-v2 .blog-post-item .post-thumbnail .tag {
    position: absolute;
    bottom: 10px;
    left: 25px;
    background-color: #BF9C3B;
    font-weight: 500;
    font-size: 14px;
    padding: 5px 15px;
    line-height: 20px;
    text-transform: uppercase;
    z-index: 1;
}

.blog-area-v2 .blog-post-item .entry-content {
    position: relative;
    background-color: #fff;
    margin-top: -25px;
    margin-right: 20px;
    border: 2px solid #f0f4f9;
    padding: 30px 25px 15px;
}

.blog-area-v2 .blog-post-item .entry-content h3.title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
}

.blog-area-v2 .blog-post-item .entry-content .post-meta {
    border-top: 2px solid #f0f4f9;
    padding-top: 20px;
}

.blog-area-v2 .blog-post-item .entry-content .post-meta ul li {
    margin-right: 15px;
}

.post-meta ul li {
    display: inline-table;
}

.post-meta ul li span i {
    margin-right: 10px;
}

.blog-post-item .entry-content h3.title:hover,
.blog-post-item .entry-content h3.title:focus,
.blog-area-v2 .blog-post-item .entry-content .post-meta ul li span:hover,
.blog-area-v2 .blog-post-item .entry-content .post-meta ul li span:focus {
    color: #BF9C3B;
}

/* Blog details css */

.blog-details-page .blog-details-wrapper .entry-content h3.title {
    font-size: 45px;
    line-height: 55px;
    margin-bottom: 30px;
}

.blog-details-page .blog-details-wrapper .entry-content .user-info-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px;
}

.blog-details-page .blog-details-wrapper .entry-content .user-info-tag .tags {
    margin-right: 20px;
}

.blog-details-page .blog-details-wrapper .entry-content .user-info-tag .tags .main-btn {
    padding: 8px 17px;
    line-height: 21px;
    border-radius: 0px;
}

.user-info-tag .user-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.blog-details-page .blog-details-wrapper .entry-content .user-info-tag .user-info .thumb {
    min-width: 37px;
    max-width: 37px;
    height: 37px;
    margin-right: 20px;
}

.blog-details-page .blog-details-wrapper .entry-content .user-info-tag .user-info .thumb img {
    width: 100%;
    border-radius: 50%;
}

.blog-details-page .blog-details-wrapper .entry-content .user-info-tag .user-info .title h6 {
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    color: #2e2e2e;
    margin-bottom: 5px;
}

.blog-details-page .blog-details-wrapper .entry-content .user-info-tag .user-info .title p {
    font-size: 12px;
    line-height: 14px;
}

.blog-details-page .blog-details-wrapper .entry-content p {
    margin-bottom: 25px;
}

.blog-details-page .blog-details-wrapper .entry-content .content-img img {
    width: 100%;
}

.blog-details-page .blog-details-wrapper .entry-content .blockquote {
    position: relative;
    background-color: #222429;
    border-radius: 5px;
    width: 90%;
    margin: auto;
    text-align: center;
    padding: 35px 45px;
    z-index: 1;
    margin-top: -55px;
    margin-bottom: 52px;
}

.blog-details-page .blog-details-wrapper .entry-content .blockquote:after {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    content: '';
    width: 90%;
    height: 2px;
    background-color: #BF9C3B;
}

.blog-details-page .blog-details-wrapper .entry-content .blockquote span {
    color: #fff;
    margin-bottom: 15px;
    display: block;
}

.blog-details-page .blog-details-wrapper .entry-content .blockquote h5 {
    color: #ffffff;
    font-size: 25px;
    line-height: 40px;
    font-style: italic;
    font-weight: 300;
}

.blog-details-page .blog-details-wrapper .entry-content h4 {
    font-size: 35px;
    margin-bottom: 14px;
}

.blog-details-page .blog-details-wrapper .entry-content ul.list-item {
    margin-bottom: 10px;
}

.blog-details-page .blog-details-wrapper .entry-content ul.list-item li {
    position: relative;
}

.blog-details-page .blog-details-wrapper .entry-content ul.list-item li:before {
    display: inline-block;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #2e2e2e;
    margin-right: 10px;
    vertical-align: middle;
}

.blog-details-page .blog-details-wrapper .entry-content .content-img .rounded {
    margin-bottom: 20px;
}

.blog-details-page .blog-details-wrapper .post-share-tag {
    border-bottom: 1px solid rgba(34, 36, 41, 0.4);
}

.blog-details-page .blog-details-wrapper .post-share-tag .tags-box span.tag-title {
    font-size: 18px;
    margin-right: 10px;
}

.blog-details-page .blog-details-wrapper .post-share-tag .tags-box a {
    padding: 5px 7px;
    background-color: #f0f4f9;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.blog-details-page .blog-details-wrapper .social-box {
    float: right;
    text-align: right;
}

.blog-details-page .blog-details-wrapper .social-box ul li {
    display: inline-block;
    margin-left: 20px;
}

.blog-details-page .blog-details-wrapper .social-box ul li a {
    color: rgba(34, 36, 41, 0.4);
}

.blog-details-page .blog-details-wrapper .social-box ul li a:hover,
.blog-details-page .blog-details-wrapper .social-box ul li a:focus {
    color: #BF9C3B;
}

.blog-details-page .blog-details-wrapper .post-next-prev .nav-post-btn a {
    padding: 9px 18px;
    border: 1px solid #707070;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

.blog-details-page .blog-details-wrapper .post-next-prev .nav-post-btn a i {
    padding-left: 5px;
}

.blog-details-page .blog-details-wrapper .post-next-prev .nav-post-btn.prev-post-btn a i {
    padding-left: 0px;
    padding-right: 5px;
}

.blog-details-page .blog-details-wrapper .post-next-prev .nav-post-btn a:hover {
    border-color: transparent;
    background-color: #BF9C3B;
}

.blog-details-page .blog-details-wrapper .post-next-prev .nav-post-btn.next-post-btn {
    float: right;
}

.blog-details-page .blog-details-wrapper .comments-respond h4.comment-title,
.blog-details-page .blog-details-wrapper .comments-area h4.comments-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.blog-details-page .blog-details-wrapper .comments-respond h4.comment-title:after,
.blog-details-page .blog-details-wrapper .comments-area h4.comments-title:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 50px;
    height: 1px;
    background-color: #054055;
}

.blog-details-page .blog-details-wrapper .comments-area .comments-list .comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.35);
    margin-bottom: 40px;
}

.blog-details-page .blog-details-wrapper .comments-area .comments-list .comment:nth-child(even) {
    padding-left: 100px;
}

.blog-details-page .blog-details-wrapper .comments-area .comments-list .comment:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}

.blog-details-page .blog-details-wrapper .comments-area .comments-list .comment .comment-avatar {
    min-width: 100px;
    max-width: 100px;
    height: 100px;
    margin-right: 40px;
}

.blog-details-page .blog-details-wrapper .comments-area .comments-list .comment .comment-avatar img {
    width: 100%;
    border-radius: 50%;
}

.blog-details-page .blog-details-wrapper .comments-area .comments-list .comment .comment-wrap span.date {
    font-size: 14px;
}

.blog-details-page .blog-details-wrapper .comments-area .comments-list .comment .comment-wrap h6.author-title {
    font-weight: 700;
    color: #222222;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 15px;
}

.blog-details-page .blog-details-wrapper .comments-area .comments-list .comment .comment-wrap p {
    background-color: #f0f4f9;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.blog-details-page .blog-details-wrapper .comments-area .comments-list .comment .comment-wrap a {
    margin-right: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #2e2e2e;
    text-transform: uppercase;
}

.blog-details-page .blog-details-wrapper .comments-area .comments-list .comment .comment-wrap a:hover {
    color: #BF9C3B;
}

.blog-details-page .blog-details-wrapper .comments-respond form .form_control {
    border: 2px solid #ebebeb;
    margin-bottom: 40px;
}

.blog-details-page .blog-details-wrapper .comments-respond form textarea.form_control {
    padding-top: 15px;
    height: 200px;
}

textarea {
    display: inherit;
}

.sidebar-widget-area .widget {
    padding: 30px;
    background-color: #fff;
    -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}

.sidebar-widget-area .widget h4.widget-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.sidebar-widget-area .widget h4.widget-title:before,
.sidebar-widget-area .widget h4.widget-title:after {
    position: absolute;
    bottom: 0;
    content: '';
    height: 1px;
    background-color: #054055;
}

.sidebar-widget-area .widget h4.widget-title:before {
    left: 0;
    width: 50px;
}

.sidebar-widget-area .widget h4.widget-title:after {
    width: 10px;
    left: 60px;
}

.sidebar-widget-area .widget.search-widget form .form_group .form_control {
    background-color: #f4f6f9;
    height: 50px;
    border: none;
    color: #565872;
}

.sidebar-widget-area .widget.search-widget form .form_group .form_control::-webkit-input-placeholder {
    color: #565872;
}

.birth-date_label {
    display: none;
}

.sidebar-widget-area .widget.search-widget form .form_group .form_control::-moz-placeholder {
    color: #565872;
}

.sidebar-widget-area .widget.search-widget form .form_group .form_control:-ms-input-placeholder {
    color: #565872;
}

.sidebar-widget-area .widget.search-widget form .form_group .form_control::-ms-input-placeholder {
    color: #565872;
}

.sidebar-widget-area .widget.search-widget form .form_group .form_control::placeholder {
    color: #565872;
}

.sidebar-widget-area .widget.search-widget form .form_group .search-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #BF9C3B;
    color: #222429;
    font-size: 20px;
    border: none;
}

.sidebar-widget-area .widget.categories-widget .widget-link li {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    margin-bottom: 8px;
}

.sidebar-widget-area .widget.categories-widget .widget-link li:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
}

.sidebar-widget-area .widget.categories-widget .widget-link li a {
    display: block;
}

.sidebar-widget-area .widget.widget.recent-post-widget .post-thumbnail-content .post-title-date h6:hover,
.sidebar-widget-area .widget.categories-widget .widget-link li a:hover,
.sidebar-widget-area .widget.categories-widget .widget-link li a:focus {
    color: #BF9C3B;
}

.sidebar-widget-area .widget.categories-widget .widget-link li a span {
    float: right;
}

.sidebar-widget-area .widget.widget.recent-post-widget .post-thumbnail-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 30px;
    border-bottom: 1px dashed #707070;
    margin-bottom: 30px;
}

.sidebar-widget-area .widget.widget.recent-post-widget .post-thumbnail-content:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}

.sidebar-widget-area .widget.widget.recent-post-widget .post-thumbnail-content img {
    min-width: 80px;
    max-width: 80px;
    height: 70px;
    border-radius: 5px;
    margin-right: 15px;
}

.sidebar-widget-area .widget.widget.recent-post-widget .post-thumbnail-content .post-title-date h6 {
    font-size: 16px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    line-height: 22px;
}

.sidebar-widget-area .widget.widget.recent-post-widget .post-thumbnail-content .post-title-date span.posted-on {
    line-height: 15px;
}

.sidebar-widget-area .widget.instagram-widget ul.instagram-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -4px;
    margin-right: -4px;
}

.sidebar-widget-area .widget.instagram-widget ul.instagram-list li {
    padding-left: 4px;
    padding-right: 4px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    margin-bottom: 10px;
}

.sidebar-widget-area .widget.instagram-widget ul.instagram-list li a {
    position: relative;
    display: block;
    overflow: hidden;
}

.sidebar-widget-area .widget.instagram-widget ul.instagram-list li a .insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    visibility: hidden;
    border-radius: 5px;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sidebar-widget-area .widget.instagram-widget ul.instagram-list li a img {
    width: 100%;
}

.sidebar-widget-area .widget.instagram-widget ul.instagram-list li a .insta-overlay i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(255, 170, 24, 0.7);
    font-size: 13px;
    color: #fff;
}

.sidebar-widget-area .widget.instagram-widget ul.instagram-list li a:hover .insta-overlay {
    visibility: visible;
    opacity: 1;
}

.sidebar-widget-area .widget.tags_cloud_widget a {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 50px;
    background-color: #f4f6f9;
    margin-right: 5px;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.sidebar-widget-area .widget.tags_cloud_widget a:hover,
.sidebar-widget-area .widget.tags_cloud_widget a:focus {
    background-color: #BF9C3B;
}

/* End Blog css */

/*======= 11. Start Contact css ==========*/

.contact-area .contact-form .form_control {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    background-color: transparent;
    margin-bottom: 30px;
    color: #fff;
}

.contact-area .contact-form .nice-select:focus,
.contact-area .contact-form .form_control:focus {
    border-color: #BF9C3B;
}

.contact-area .contact-form .form_control::-webkit-input-placeholder {
    color: #fff;
}

.contact-area .contact-form .form_control::-moz-placeholder {
    color: #fff;
}

.contact-area .contact-form .form_control:-ms-input-placeholder {
    color: #fff;
}

.contact-area .contact-form .form_control::-ms-input-placeholder {
    color: #fff;
}

.contact-area .contact-form .form_control::placeholder {
    color: #fff;
}

.contact-area .contact-form .nice-select {
    height: 70px;
    line-height: 70px;
    color: #fff;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 30px;
}

.contact-area .contact-form .nice-select .list {
    color: #1c1e22;
}

.contact-area .contact-form textarea.form_control {
    height: 180px;
    padding-top: 15px;
}

/* End Contact css */

/*=======  12. Start Footer area ===*/

.footer-area-v1 {
    background-color: #1c1e22;
}

.footer-widget-area .footer-top .footer-logo {
    /* background-color: #BF9C3B; */
    background-color: #1c1e22;
    padding: 50px 0px;
    color: #222429;
    width: 100%;
}

.footer-widget-area .footer-top .newsletter-item {
    padding-left: 40px;
}

.form_group {
    position: relative;
}

.footer-widget-area .footer-top .newsletter-item form .form_control {
    width: 100%;
    font-size: 15px;
    color: #636363;
    height: 73px;
    border: none;
    border-radius: 10px;
}

.footer-widget-area .footer-top .newsletter-item .main-btn {
    position: absolute;
    top: 6px;
    right: 5px;
    background-color: #BF9C3B;
    border-radius: 10px;
    padding: 15px 51px;
    font-weight: 700;
    color: #222429;
    font-size: 15px;
}

.footer-widget-area .footer-top .newsletter-item .main-btn:hover {
    background-color: #222429;
    color: #fff;
}

.footer-widget-area .footer-top .newsletter-item .main-btn i {
    margin-right: 10px;
}

.footer-widget-area .footer-top .social-media-links {
    float: right;
}

.footer-widget-area .footer-top .social-media-links ul li {
    display: inline-block;
    margin-left: 10px;
}

.footer-widget-area .footer-top .social-media-links ul li a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #333539;
    text-align: center;
    border-radius: 100%;
    line-height: 40px;
    color: #fff;
    font-size: 16px;
    padding-top: 0.7rem !important;
}

.footer-widget-area .footer-top .social-media-links ul li a:hover {
    background-color: #BF9C3B;
    color: #fff;
}

.footer-widget-area .widget h4.widget-title {
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-widget-area .widget h4.widget-title:before,
.footer-widget-area .widget h4.widget-title:after {
    position: absolute;
    content: '';
    background-color: #BF9C3B;
}

.footer-widget-area .widget h4.widget-title:before {
    bottom: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.footer-widget-area .widget h4.widget-title:after {
    bottom: 3px;
    left: 20px;
    width: 40px;
    height: 2px;
}

.footer-widget-area .widget.about-widget p {
    color: rgba(225, 225, 225, 0.75);
    font-weight: 300;
    font-size: 16px;
    line-height: 34px;
}

.footer-widget-area .widget.widget-categories .widget-link li {
    margin-bottom: 10px;
}

.footer-widget-area .widget.widget-categories .widget-link li:last-child {
    margin-bottom: 0px;
}

.footer-widget-area .widget.widget-categories .widget-link li a {
    font-weight: 300;
    color: #e1e1e1;
}

.footer-widget-area .widget.recent-post-widget .recent-post .post-item .post-content h6.title:hover,
.footer-widget-area .widget.widget-categories .widget-link li a:hover {
    color: #BF9C3B;
}

.footer-widget-area .widget.recent-post-widget .recent-post .post-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}

.footer-widget-area .widget.recent-post-widget .recent-post .post-item:last-child {
    margin-bottom: 0px;
}

.footer-widget-area .widget.recent-post-widget .recent-post .post-item img {
    display: block;
    min-width: 85px;
    max-width: 85px;
    height: 66px;
    border-radius: 6px;
    margin-right: 15px;
}

.footer-widget-area .widget.recent-post-widget .recent-post .post-item .post-content span {
    color: #BF9C3B;
    margin-bottom: 8px;
    display: block;
}

.footer-widget-area .widget.recent-post-widget .recent-post .post-item .post-content h6.title {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.footer-widget-area .widget.contact-widget .contact-info p {
    padding-left: 35px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    color: #e1e1e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 300;
    line-height: 17px;
}

.footer-widget-area .widget.contact-widget .contact-info p:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}

.footer-widget-area .widget.contact-widget .contact-info p i {
    position: absolute;
    top: 0;
    left: 0;
    color: #BF9C3B;
}

.copyright-area {
    text-align: center;
    padding: 20px 0px 20px;
    border-top: 1px solid #3e4043;
}

.copyright-area .copyright-text p {
    color: #fff;
}

/* footer-area-v2 */

.footer-area-v2 {
    background-color: #BF9C3B;
    padding: 45px 0px 50px;
}

.footer-area-v2 .social-media-links {
    float: right;
}

.footer-area-v2 .social-media-links ul li {
    display: inline-block;
    margin-left: 10px;
}

.footer-area-v2 .social-media-links ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(28, 30, 34, 0.1);
    color: #1c1e22;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.footer-area-v2 .social-media-links ul li a:hover,
.footer-area-v2 .social-media-links ul li a:focus {
    background-color: #1c1e22;
    color: #fff;
}

/* End Footer area */

/* MUSIAD Azerbaycan */

.header-area-v1 {
    /* background: #45545b; */
    background-color: #1c1e22;
}

.nav-link {
    font-weight: 600 !important;
}

.top-left li:first-child {
    margin-right: 3rem !important;
}

.top-left span {
    font-family: 'Raleway', sans-serif;
}

.top-right {
    margin-right: 1.5rem;
}

.top-right a:hover {
    color: #BF9C3B !important;
}

.hero-area {
    /* padding: 144px 0px 0px; */
    height: calc(100vh - 144px);
    margin-top: 144px;
}

#home .carousel,
#home .carousel-inner,
#home .carousel-item,
#home .active {
    height: 100% !important;
}

.hero-area .carousel-item,
.hero-area .active {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.562);
    position: absolute;
    bottom: 10%;
}

.single-service-item {
    min-height: 240px;
    color: #202124;
    font-weight: 600;
}

.service-text h5 {
    font-size: 1.7rem;
    font-weight: 500 !important;
}

.service-text {
    line-height: 1.5rem;
}

.single-service-item li {
    line-height: 1.4rem;
    font-family: 'Raleway', sans-serif;
    opacity: 0.8;
    list-style-type: disc;
    font-weight: 600;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* .service-area .single-service-item:hover li {
  color: #fff;
} */

/* partners section css start */
.partners-section {
    display: flex;
    width: 100%;
    background-color: #f0f4f9;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
    
}

.partner-slider-container {
    flex: 1;
    padding: 40px 40px 40px 0;
    overflow: hidden;
}

.partner-slider {
    height: 280px;
    overflow: hidden;
    background: #fff;
    border-radius: 0 20px 20px 0;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}

.partner-slider-items {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: partner-scrolling 23s linear infinite;
    width: max-content;
    height: 100%;
}

@keyframes partner-scrolling {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-slider-items img {
    height: 100%;
    max-height: 200px;
    max-width: 355px;
    object-fit: contain;
    transition: transform 0.5s;
    padding: 40px;
}

.partner-slider .partner-slider-items:hover {
    animation-play-state: paused;
}

.partner-slider-items img:hover {
    transform: scale(1.2);
}

.partner-vertical-text {
    writing-mode: vertical-rl;
    font-weight: bold;
    margin-right: 40px;
    color: #333;
    white-space: nowrap;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.partner-vertical-text h2{
    font-size: 42px;
}

/* 
.partner-vertical-text:hover {
    color: #BF9C3B;
} */

/* partners section css end */

/* members section css start */
.members-section{
    display: grid;
    place-items: center;
    background-color: #f0f4f9;
}

.member-slider-container {
    flex: 1;
    padding: 40px;
    overflow: hidden;
}

.member-slider {
    position: relative;
    width: 100vw; /* Ekranın tam eni */
    height: 280px;
    overflow: hidden;
    background: #fff;
    border-radius: 20px 0 0 20px; /* yalnız sol alt tərəfi yumşaldırıq */
    box-shadow: 0px 0px 20px rgba(0,0,0,0.05);
    margin-right: 0;
    padding-right: 0;
}


.member-slider-items {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: member-scrolling 150s linear infinite;
    width: max-content;
    height: 100%;
}

@keyframes member-scrolling {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}


.member-slider-items img {
    height: 100%; /* şəkilləri uyğunlaşdır */
    max-height: 200px;
    max-width: 355px;
    object-fit: contain;
    transition: transform .5s; /* Animation */
}

.member-slider .member-slider-items:hover {
    animation-play-state: paused;
  }

.member-slider-items img:hover {
    transform: scale(1.2); 
}

.member-vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: bold;
    margin-left: 40px;
    color: #333;
    white-space: nowrap;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.member-vertical-text h2{
    font-size: 42px;
    margin: 0;
}

.member-vertical-text a{
    font-size: 18px;
    margin-top: 10px; /* istəyə görə məsafə */
    text-decoration: none;
    color: #333;
}

.member-vertical-text a:hover{
    color: #BF9C3B;
}
/* members section css end */

@media (max-width: 1024px) {
    .member-slider,
    .partner-slider {
        height: 220px;
    }

    .member-slider-items img,
    .partner-slider-items img {
        max-height: 150px;
        padding: 20px;
    }

    .member-vertical-text h2,
    .partner-vertical-text h2 {
        font-size: 32px;
    }

    .member-vertical-text a,
    .partner-vertical-text a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    /* PARTNERS SECTION */
    .partners-section {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .partner-vertical-text {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
        margin: 20px 0 10px 0;
        text-align: center;
        order: -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .partner-vertical-text h2 {
        font-size: 28px;
    }

    .partner-slider-container {
        padding: 0 20px 20px 20px;
        width: 100%;
    }

    .partner-slider {
        width: 90vw;
        border-radius: 20px;
        height: 200px;
    }

    .partner-slider-items img {
        max-height: 120px;
        max-width: 250px;
        padding: 15px;
    }

    /* MEMBERS SECTION */
    .members-section {
        flex-direction: column;
        align-items: center;
    }

    .member-vertical-text {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
        margin: 20px 0 10px 0;
        text-align: center;
        order: -1; /* yuxarı çıxartmaq üçün */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .member-vertical-text h2 {
        font-size: 28px;
    }

    .member-vertical-text a {
        font-size: 16px;
        margin-top: 5px;
    }

    .member-slider-container {
        width: 100%;
        padding: 0 20px 20px 20px;
    }

    .member-slider {
        width: 90vw;
        border-radius: 20px;
        height: 200px;
    }

    .member-slider-items img {
        max-height: 120px;
        max-width: 250px;
        padding: 15px;
    }
}


@media (max-width: 480px) {
    .member-slider,
    .partner-slider {
        height: 160px;
    }

    .member-slider-items img,
    .partner-slider-items img {
        max-height: 100px;
        max-width: 200px;
        padding: 10px;
    }

    .member-vertical-text h2,
    .partner-vertical-text h2 {
        font-size: 22px;
    }

    .member-vertical-text a,
    .partner-vertical-text a {
        font-size: 14px;
    }
}


.team-img {
    height: 405px !important;
}

.team-members {
    background-color: #1d1e22;
}

.case-img img {
    min-height: 310px;
}

.form_control,
.contact-area .contact-form .nice-select {
    background-color: rgb(238, 238, 238) !important;
}

.form_control::-webkit-input-placeholder {
    color: #363636 !important;
    font-weight: 600;
}

.form_control::-moz-placeholder {
    color: #363636 !important;
    font-weight: 600;
}

.form_control:-ms-input-placeholder {
    color: #363636 !important;
    font-weight: 600;
}

.form_control::-ms-input-placeholder {
    color: #363636 !important;
    font-weight: 600;
}

.form_control::placeholder,
.contact-area .contact-form .nice-select,
.contact-area .contact-form .form_control {
    color: #363636 !important;
    font-weight: 600;
}

.form-group {
    background-color: rgb(238, 238, 238);
    padding: 10px;
    border-radius: 5px;
}

.contact-form .main-btn {
    font-family: 'Raleway', sans-serif;
    padding: 12px 40px !important;
    margin-top: 30px;
    font-size: 22px;
    font-weight: 700;
    color: #222429;
}

.contact-form .main-btn:hover {
    background-color: #fff;
    color: #BF9C3B;
}

.widget-link a {
    font-weight: 300;
    color: #e1e1e1 !important;
}

.widget-link a:hover {
    color: #BF9C3B !important;
}

.footer-widget .main-btn {
    width: 100%;
    text-align: center;
}

.footer-widget .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

/* .komite-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: center;
} */

.komite-box {
    margin-right: 0.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.144);
}

.komite-uzvleri {
    margin-top: 1.5rem;
}

.komite-uzvleri li {
    list-style: none !important;
}

.copyright-text a:hover {
    color: #BF9C3B;
}

.tedbir-section {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tedbir-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tedbir-img {
    min-width: 30%;
    margin-right: 5rem;
    align-self: center !important;
}

.tedbir-img img {
    width: 100%;
    border: 1px solid rgb(145, 145, 145);
}

.container-tree {
    max-width: 1800px !important;
}

.bi {
    background-color: #BF9C3B;
    border-radius: 50%;
    padding: 8px;
    height: 30px !important;
    width: 30px !important;
}

.info p {
    font-size: 1.2rem;
}

.uzvler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.table-striped {
    border: none;
    display: inline-table;
}

.sector-select {
    margin-bottom: 2rem;
    width: 170px !important;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.table-container {
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.table-striped th {
    font-size: 1.4rem;
    text-align: center;
}

.tr td {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    vertical-align: middle;
    height: 100px;
}

.table-striped td img {
    /* width: 180px !important; */
    max-width: 180px !important;
    /* min-width: 140px !important; */
    vertical-align: middle !important;
    height: 100%;
}

.table-striped .tr td:first-child {
    vertical-align: middle !important;
}

/* .nice-select.open .list {
  width: 170px;
} */

.list li,
.current,
.photo-form {
    font-size: 16px !important;
    color: #363636 !important;
    font-weight: 600 !important;
}

.table-hover tbody tr:hover {
    background-color: #BF9C3B !important;
}

.carousel-inner .uzv img {
    width: 160px !important;
}

.idare .card {
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.idare .card:hover {
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3);
}

.card-text {
    color: #BF9C3B;
}

.box-footer a:hover {
    color: #BF9C3B !important;
    cursor: pointer;
}

.card-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.card-container .row {
    /* width: 60% !important; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    margin-bottom: 2.5rem;
}

tr.hover {
    cursor: pointer;
    /* whatever other hover styles you want */
}

.mobile-logo {
    display: none;
}

#metbuatda_biz .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.masonry-row {
    width: 100%;
}

.musiad_main-logo {
    width: 150px;
    padding-bottom: 5px;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.musiad_main-logo:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

#more,
#more2,
#more3,
#more4,
#more5,
#more6,
#more7,
#more8,
#more9 {
    display: none;
}

#myBtn,
#myBtn2,
#myBtn3,
#myBtn4,
#myBtn5,
#myBtn6,
#myBtn7,
#myBtn8,
#myBtn9 {
    color: #BF9C3B;
    background: none;
    font-weight: bold;
}

.empty {
    height: 7rem;
    width: 100%;
    background-color: transparent;
    position: absolute;
    top: -8%;
    z-index: -100;
}

#empty-komissiyalar {
    top: 1%;
}

#empty-uzvler {
    top: -10%;
}

#metbuatda_biz .fa-plus {
    line-height: 3;
}

#haqqimizda .tarixce .single-service-item {
    height: 779px;
}

.deyerler .single-service-item {
    width: 100%;
}

.deyerler .lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100% !important;
}

.deyerler .service-text {
    width: 100%;
}

.short {
    display: none !important;
}

#statistika .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#statistika .row-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0.5;
    -ms-flex: 0.5;
    flex: 0.5;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    border-right: 2px solid black;
    padding: 20px 60px 0px 10px !important;
    width: 100%;
    height: 100%;
}

#statistika .row-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0.5;
    -ms-flex: 0.5;
    flex: 0.5;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    padding: 20px 60px 0px 10px !important;
    height: 100%;
    width: 100%;
}

/* The flip box container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-box {
    background-color: transparent;
    width: 100%;
    height: 70px;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-box:hover .flip-box-inner {
    transform: rotateX(180deg);
}

/* Position the front and back side */
.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 5px;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
    display: flex;
    align-items: center;
}

/* Style the front side */
.flip-box-front {
    color: black;
}

/* Style the back side */
.flip-box-back {
    color: black;
    transform: rotateX(180deg);
    font-size: 20px;
}

.counter-area .single-counter .info h2 {
    font-size: 35px;
}

.counter-area .counter-wrapper {
    padding: 80px 3px 25px !important;
}

.main-musiad {
    display: none;
}

.mobile-main-menu_logo {
    display: none;
}

.main-menu.mobile {
    display: none;
}

#uzvler .carousel,
#uzvler .carousel-inner,
#uzvler .carousel-item,
#uzvler .carousel-inner .active {
    height: 162px !important;
}

#home .carousel,
#home .carousel-inner,
#home .carousel-item,
#home .carousel-inner .active {
    height: 100% !important;
}

#tedbirler .section-title h2 {
    color: black;
    margin-top: 5rem;
    font-weight: 600;
    font-size: 3rem;
}

.idare .section-title h2 {
    font-size: 60px;
    color: #BF9C3B;
    text-shadow: 0px 0px 2px black;
    letter-spacing: 2.3;
}

.card-profile {
    height: 350px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.modal {
    width: 100%;
}

.modal.show .modal-dialog {
    max-width: 70%;
}

.modal-open .modal {
    top: 5% !important;
}

.modal-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 50px 30px 30px;
    width: 100%;
}

.modal-content .close {
    position: absolute;
    right: -2.5%;
    box-sizing: revert;
    top: -7%;
    font-size: 3rem;
    text-shadow: 2px 2px 2px black;
    color: #BF9C3B;
}

.article-image {
    display: flex;
}

.modal-image {
    width: 300px;
    height: fit-content;
    float: right;
    margin-left: 9px;
}

.modal-content {
    display: flex;
}

.modal-contact a {
    font-weight: 600;
    margin-right: 1.5rem;
    color: #686868;
}

.modal-contact a:hover {
    color: #BF9C3B;
}

.modal-contact a i {
    margin-right: 5px;
    vertical-align: text-bottom;
}

.modal-right__title {
    color: #BF9C3B;
}

.modal-right__subtitle {
    color: #707070;
    margin-bottom: 0.5rem;
}

.modal-article {
    color: #3e4043;
    text-align: justify;
}

.reklam-mobile {
    display: none;
}

.contact-form__container {
    display: flex;
    justify-content: space-around;
}

.contact-form {
    flex: 0.5;
}

.contact-form__info {
    flex: 0.4 !important;
}

.contact-form__info>p {
    line-height: 1.8rem !important;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-form__info>p span {
    font-size: 1.3rem;
    font-weight: 500;
}

.contact-form__info>p>i {
    margin-right: 1.5rem;
    width: 1rem;
    font-size: 1.5rem;
}

.form_group {
    width: 100%;
}

.contact-form .main-btn {
    margin-top: 0px;
}

.akademi-svg,
.istehsalat-svg {
    width: 125px !important;
}

.komite-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    justify-items: center;
}

.komite-row {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 2rem;
}

.komite-row .service-text h5 {
    color: #43525a !important;
}

.komite-row .service-text:hover h5 {
    color: #bb9c46 !important;
}

.tanitim-pdf {
    display: grid;
    grid-template-areas:
        'a t e'
        'az tr en';
    grid-gap: 50px;
    align-items: center;
    justify-content: space-evenly;
}

.tanitim-video {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tanitim-section h1 {
    text-align: center;
}

.iframes {
    display: flex;
    justify-content: space-between;
}

.tanitim-img {
    background-position: 100% 53.79% !important;
    background-size: auto !important;
    width: 100%;
    height: 350px;
    background-repeat: no-repeat !important;
    margin-bottom: 30px;
}

.tanitim-section {
    padding-top: 180px;
    padding-bottom: 90px;
    display: flex;
    align-items: center;
    /* min-height: 1343px; */
}

.tanitim-banner {
    width: 100%;
}

.items-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 50px;
}

.item-box {
    width: 400px;
    height: 250px;
    border: 4px solid #bb9c46;
}

.box-img {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat !important;
    background-position: 100% !important;
    background-size: cover !important;
    position: relative;
}

.box-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.item-box:hover .box-shadow {
    background-color: rgba(0, 0, 0, 0.7) !important;
    opacity: 1;
}

.box-title {
    color: whitesmoke;
    font-size: 33px;
    text-align: center;
    margin-bottom: 25px;
}

.box-languages {
    display: flex;
    justify-content: space-evenly;
    width: 75%;
    align-items: center;
}

.flag {
    width: 65px;
    height: 58px;
    transition: all 0.3s linear;
}

.flag:hover {
    transform: scale(1.2);
}

.team-members .single-team-member .member-info h5 {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0px;
    line-height: 1.2;
}

.team-members .single-team-member:hover .member-info {
    bottom: 10px;
    padding: 7px 20px;
}

#metbuatda_biz .case-study-info h5 {
    font-size: 1.05rem;
}

.case-study .single-case-study .case-study-info {
    padding: 19px;
}

@media (min-width: 1200px) {
    .tarixce {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .card-container .row {
        width: 80%;
    }

    .header-area-v1 .header-navigation .nav-toggle {
        height: auto !important;

    }

    .modal-content {
        padding: 50px;
    }

    #statistika .info #menteqe {
        font-size: 1rem;
    }

    .komite-container .komite-item,
    .komite-row .komite-item {
        padding: 0.7rem;
    }

    .tanitim-img {
        background-position: center 53.79% !important;
        background-size: cover !important;
        width: 100%;
        height: 415px;
        background-repeat: no-repeat !important;
        margin-bottom: 30px;
    }

    /* .tanitim-section {
    padding-top: 50px;
    padding-bottom: 215px;
    min-height: 1340px;
  } */
    .iframes iframe {
        width: 49%;
        height: 400px;
    }
}

@media (max-width: 1200px) {
    .hero-area {
        padding: 0 0 4px;
        height: 600px;
        margin-top: 55px;
    }

    .card-container .row {
        width: 100%;
    }

    .header-navigation .navbar-close .cross-wrap span {
        background-color: #222222 !important;
    }

    .header-navigation.breakpoint-on .nav-menu .main-menu ul li a,
    .header-navigation.breakpoint-on .nav-menu .main-menu ul li .dd-trigger {
        color: #202124 !important;
        border: none;
    }

    .header-navigation.breakpoint-on .nav-menu .main-menu ul li,
    .header-navigation.breakpoint-on .nav-menu .main-menu ul li a {
        border: none;
    }

    .header-navigation .navbar-close {
        background-color: #BF9C3B;
    }

    #haqqimizda .tarixce .single-service-item {
        height: 872px;
    }

    #haqqimizda .tarixce .service-text {
        line-height: 1.25rem;
    }

    #statistika .row-left {
        border-right: none !important;
        margin-bottom: 30px;
        padding: 0;
    }

    #statistika .row-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0.5;
        -ms-flex: 0.5;
        flex: 0.5;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
        padding: 0;
    }

    #statistika .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    #statistika .row h1 {
        margin-bottom: -40px;
        font-weight: bold;
        font-size: 25px;
    }

    #statistika .info h4 {
        font-size: 2rem;
    }

    #statistika .container {
        max-width: 850px;
    }

    #statistika .d-flex .align-items-center {
        margin-left: 90px;
    }

    .counter-area .counter-wrapper {
        padding: 80px 10px 0px;
    }

    .mobile-logo {
        margin-bottom: 100px;
        display: block;
    }

    .mobile-copyright {
        position: absolute;
        bottom: 5%;
    }

    .main-menu.mobile .active {
        height: auto;
    }

    .musiad-main-logo {
        display: none;
    }

    .main-musiad {
        display: block;
    }

    .mobile-main-menu_logo {
        position: absolute;
        top: 12%;
        left: 5%;
        display: block;
    }

    .main-menu {
        display: none !important;
    }

    .main-menu.mobile {
        display: block !important;
    }

    /* .main-menu.mobile > ul {
    margin-top: 35% !important;
  } */

    .nav-social-links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
        width: 100%;
        position: absolute;
        bottom: 5%;
    }

    .tedbir-container {
        padding-top: 160px;
    }

    .idare .section-title {
        margin-top: 20px;
    }

    #uzvler .section-title {
        margin-bottom: 25px;
    }

    #uzvler .col-md-12 .text-center .mt-40 {
        margin-top: 50px;
    }

    .header-area-v1 .header-navigation .site-branding .brand-logo {
        padding: 18px 5px !important;
    }

    .dd-trigger {
        display: flex !important;
        align-items: center !important;
    }

    #elaqe .section-title {
        margin-top: 50px;
        margin-bottom: 60px;
    }

    #elaqe .section-title>h2 {
        font-size: 50px;
    }

    .tedbir-section {
        padding-top: 0rem;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .tedbir-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 5px 15px 0;
        margin: 0;
        /* padding-top: 60px; */
    }

    .tedbir-img {
        margin-right: 0;
        width: 80%;
    }

    .tedbir-img img {
        width: 100%;
        height: auto;
        margin-top: 8rem;
    }

    .tedbir-article h1 {
        margin-top: 1.5rem;
        font-size: 1.3rem;
        line-height: 1.6rem;
    }

    .tedbir-article p {
        line-height: 1.4;
    }

    .komite-container .komite-item,
    .komite-row .komite-item {
        padding: 0.7rem;
    }

    .tanitim-section {
        padding-top: 10rem;
    }

    .modal-content .close {
        top: -2%;
    }
}

@media (max-width: 996px) {
    .box-footer a {
        padding-right: 15px !important;
    }

    .case-study .row {
        width: 100%;
    }

    .row .card {
        margin-bottom: 2rem;
    }

    #metbuatda_biz .case-column {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    #komissiyalar .single-service-item {
        min-height: auto !important;
    }

    #haqqimizda .tarixce .single-service-item {
        height: 1132px;
    }

    #haqqimizda .tarixce .service-text {
        font-size: small;
        line-height: 1.2rem;
    }

    #statistika .info p {
        font-size: 1rem;
    }

    #statistika .info h2 {
        font-size: 32px;
    }

    #statistika .icon {
        min-width: 50px;
        max-width: 50px;
        margin-right: 15px;
    }

    #statistika .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 0;
        flex: 0 0 0;
    }

    .modal-content {
        display: flex;
        flex-direction: column;
        padding: 40px 30px 30px 30px;
    }

    .modal-content .close {
        right: -10px;
        top: -40px;
    }

    .modal {
        top: 10%;
    }

    #komissiyalar .modal.show .modal-dialog {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .birth-date_label {
        display: block !important;
        font-weight: 600 !important;
        color: #363636 !important;
        position: absolute;
        top: 21px;
        left: 22px;
    }

    .contact-form {
        flex: 0.8;
    }

    .contact-form__info {
        display: flex;
        flex-direction: column-reverse;
        margin-top: 2rem;
    }

    #elaqe iframe {
        margin-bottom: 1rem;
    }

    #komissiyalar .container {
        max-width: 90% !important;
    }

    .tanitim-section {
        padding-left: 20px;
        padding-right: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .items-container {
        grid-gap: 20px;
    }

    .item-box {
        width: 370px;
    }

    .modal-image {
        width: 240px;
    }
}

@media (max-width: 770px) {
    .footer-logo {
        display: none;
    }

    .footer-top {
        padding-top: 1.5rem;
    }

    .footer-widget {
        margin-bottom: 0;
    }

    .footer-widget .main-btn {
        width: 100%;
        margin-left: 2rem;
        text-align: center;
    }

    .footer-widget .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .card-container .row {
        width: 100% !important;
    }

    .card-container .card {
        margin-bottom: 2rem;
    }

    .table-container {
        width: 108%;
    }

    .table-striped td img {
        max-width: 110px !important;
    }

    #myTable .tr td {
        font-size: 0.8rem;
    }

    #myTable .table-bordered thead td,
    .table-bordered thead th {
        font-size: 0.9rem;
    }

    #komissiyalar .single-service-item {
        min-height: auto;
    }

    .short {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        height: auto !important;
    }

    .long {
        display: none !important;
    }

    #haqqimizda .short .service-text {
        line-height: 1.5rem;
        font-size: 16px;
    }

    .tarixce-col {
        padding-left: 0;
        padding-right: 0;
    }

    #statistika .info p {
        font-size: 1rem;
    }

    #statistika .info h2 {
        font-size: 32px;
    }

    #statistika .icon {
        height: 50px;
        min-width: 50px;
        margin-right: 10px;
    }

    #statistika .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 0;
        flex: 0 0 0;
    }

    #statistika .d-flex .align-items-center {
        margin-left: 35px;
    }

    .idare .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #terefdashliq {
        width: 16rem !important;
    }

    .komissiyalar .single-service-item svg {
        width: 150px;
    }

    #komissiyalar .service-text h5 {
        font-size: 1.5rem;
    }

    #komissiyalar .single-service-item {
        min-height: auto;
        width: 15rem;
    }

    #komissiyalar .komite-item {
        flex: 0 0 0% !important;
    }

    #elaqe .contact-form__info {
        flex: 0.8;
    }

    .komite-container {
        display: grid;
    }
}