@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap');

*{
    font-family: "IBM Plex Sans Arabic", sans-serif !important;
    font-weight:bold !important;
    font-style: normal;

}
.pricing-card {
    border: 1px solid #aa8453;
    background: none;
}

.facilties .single-facility h5 {
    font-size: 18px;
    color: #222;
    margin-bottom: 10px;
}

.dark-section {
    color: #fff;
}

.subtitle-dark-section {
    color: #aa8453;
}

.navbar.navbar-expand-lg {
    background: #371a18b3;
}

.navbar.navbar-expand-lg.nav-scroll {
    background: #fff;
}

.navbar .navbar-nav .active {
    color: #aa8453 !important;
    font-size: 19px;
    font-weight: bold;
}

.reservations-contact .icon span {
    color: #ffffff;
}

.footer {
    margin-top: 100px;
}

.hotel-place-map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hotel-place-map 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;
    text-align: center;
    color: #fff;
    font-size: 15px;
    background-color: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.hotel-place-map a + a {
    margin-left: 15px;
}

.hotel-place-map a:hover {
    background-color: transparent;
    color: #aa8453;
}

.hotel-place-map ul li {
    display: inline; /* or inline-block */
}


.jltma--advance-tab-nav.hotel-place-map {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 20px auto;
    direction: rtl;
    justify-content: center;
    gap: 10px;
    font-family: 'Cairo', sans-serif;
}

.jltma--advance-tab-nav.hotel-place-map li {
    color: #dcdbdb;
    border-bottom: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 160px;
}

.jltma--advance-tab-nav.hotel-place-map li:hover,
.jltma--advance-tab-nav.hotel-place-map li.active {
    color: #aa8453;
    border-bottom: 2px solid #aa8453;
}

.jltma--tab-title {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.map-width {
    width: 100%
}

.section-subtitle-map span {
    color: #aa8453;
    font-size: 46px;
    font-weight: 700;
}

.section-padding-map {
    padding: 80px 0;
    margin-bottom: 120px;
}

[data-overlay-dark="2"]:before, [data-overlay-darkgray="2"]:before, [data-overlay-light="2"]:before {
    opacity: 0.6;
}

.whatsapp-button a {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    background-color: #382e21;
    color: white;
    text-decoration: none;
    font-family: sans-serif;
}

.whatsapp-button a:hover {
    background-color: #462a27;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    text-decoration: none;
    font-family: sans-serif;
}

.whatsapp-ico {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}
.call-us-btn a {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    background-color: #382e21;
    color: white;
    text-decoration: none;
    font-family: sans-serif;
}

.call-us-btn a:hover{
    background-color: #462a27;
    color: #FFFFFF;
    display: inline-flex;
    padding: 10px 16px;
    align-items: center;
    text-decoration: none;
    font-family: sans-serif;
}
.modal_container{
    position:fixed;
    background-color:rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    padding:20px;
    z-index:9999;
    display: none;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    transition: all 0.3s ease;
}
.modal_inner_container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background-color:white;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease;
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.close_modal{
    position: absolute;
    top:20px;
    right:20px;
    color:white;
    font-weight: bold;
    z-index:10000;
    cursor: pointer;
    font-size:40px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    line-height: 1;
}
.close_modal:hover{
    background: rgba(170, 132, 83, 0.9);
    transform: rotate(90deg);
    color: #fff;
}
.modal_inner_container .modal_header_banner{
    width:100%;
    height:400px;
    padding:30px;
    text-align:center;
    padding-top:120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal_inner_container .modal_header_banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}
.modal_inner_container .modal_header_banner h3{
    color:white;
    font-weight:700;
    font-size:48px;
    font-family: 'Gilda Display', serif;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
}
.modal_content{
    padding:40px;
}
.modal_media_content{
    padding:40px;
    background: #f8f5f0;
}
.modal_media_content .row {
    margin: 0;
}
.modal_media_content .col-md-4,
.modal_media_content .col-sm-6,
.modal_media_content .col-xs-12 {
    padding: 15px;
}
.modal-image-wrapper {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 0;
}
.modal_media_content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: block;
}
.modal_media_content img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(170, 132, 83, 0.3);
}
@media (max-width: 767px) {
    .modal_inner_container {
        border-radius: 0;
        margin: 0;
    }
    .modal_inner_container .modal_header_banner {
        height: 300px;
        padding-top: 80px;
    }
    .modal_inner_container .modal_header_banner h3 {
        font-size: 32px;
    }
    .close_modal {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }
    .modal_media_content {
        padding: 20px 15px;
    }
}
.modal_block{
    display:block;
}
.content_inner button{
    background-color:transparent;
    border:0.5px solid white;
    color:white;
    padding:10px 17px;
    border-radius:5px;
}
.content_inner button:hover{
    background-color:white;
    color:#333;
    border-color:#333;
}
.portfolio_item_fix{
    min-height: auto;
}
.portfolio_item_fix .media_item{
    height: 300px;
}
.portfolio_item_fix .content_item{
    min-height: 300px;
}
.portfolio_item_fix .content_item .content_inner{
    padding-top: 80px;
}
.portfolio_item_fix .content_item .content_inner h3{
    font-size: 26px;
}

/* Homepage Hero Section - Full Viewport */
html {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden;
}

section.hero-section {
    position: relative !important;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background-color: #1a1a1a !important;
    overflow: hidden;
    display: block;
    box-sizing: border-box;
}

.hero-section .lang-btn:hover {
    background: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-section .hero-image-container img {
    animation: fadeInUp 1s ease-out;
}

.hero-section .hero-arabic-text h2 {
    animation: fadeInUp 1.2s ease-out;
}

.hero-section .hero-arabic-text p {
    animation: fadeInUp 1.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section - Full Width with Background Image */
.about-section {
    position: relative;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    height: 80vh;
    min-height: 600px;
    margin: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    overflow: hidden;
    display: block;
    box-sizing: border-box;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.about-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.about-arabic-text {
    text-align: center;
    max-width: 90%;
}

.about-arabic-text h2 {
    color: #fff;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    font-family: 'Gilda Display', serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

/* Our Services Section - Cards Layout */
.our-services-section {
    background-image:
        linear-gradient(
            rgba(71, 71, 71, 0.6),
            rgba(59, 59, 59, 0.85)
        ),
        url('../img/value_catering/image5.png');

    background-size: cover;
    background-color: #2a2a2a;
    padding: 100px 0;
    margin: 0;
    width: 100%;
    min-height: 800px;
}



.our-services-main-title {
    font-family: 'Gilda Display', serif;
    font-size: 56px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

.service-card {
    background-color: transparent;
    border-radius: 12px;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card-image {
    width: 100%;
    border-radius: 12px;
    position: relative;
    display: block;
}


.service-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    border:4px solid white;
}

.service-card-overlay {
    position: absolute;
    width:80%;
    top: 240px;
    left: 50%;
    transform: translate(-50%);
    right: 0;
    background-color: #fff;
    border-radius:12px;
    padding: 30px;
    z-index: 3;
}

.service-card-title {
    font-family: 'Gilda Display', serif;
    font-size: 18px;
    font-weight: 400;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card-text {
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* Services Item - Keep for backward compatibility if needed */
.services-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.services-item:hover {
    transform: translateY(-5px);
}

.services-item .img {
    overflow: hidden;
    height: 300px;
}

.services-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.services-item:hover .img img {
    transform: scale(1.1);
}

.services-item .content {
    padding: 30px;
}

/* Why Section - Two Column Layout */
.why-section {
    background-color: #f5f5f5;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    overflow: hidden;
}

.why-section .row {
    margin: 0 !important;
}

.why-section .col-lg-6 {
    padding: 0 !important;
}

.why-content-wrapper {
    background-color: #f5f5f5;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
    height: 100%;
}

.why-title {
    font-family: 'Gilda Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #222;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
    text-align: center;
}

.why-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: 3px;
    background-color: #aa8453;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    padding-right: 30px;
    position: relative;
}

.why-list li::before {
    content: '•';
    color: #aa8453;
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.why-list li:last-child {
    margin-bottom: 0;
}

.why-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
    padding: 0;
    margin: 0;
}

/* Why Card - Keep for backward compatibility if needed */
.why-card {
    padding: 40px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card h5 {
    color: #222;
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
}

/* Gallery Item */
.gallery-item .img {
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
}

.gallery-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .img img {
    transform: scale(1.1);
}

/* Buttons */
.butn-light {
    display: inline-block;
    padding: 12px 40px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.butn-light:hover {
    background: #fff;
    color: #222;
}

.butn-light span {
    position: relative;
}

.w-100 {
    width: 100%;
}

/* Contact Form */
.contact-form input::placeholder,
.contact-form select option {
    color: rgba(255,255,255,0.7);
}

.contact-form input:focus,
.contact-form select:focus {
    background: rgba(255,255,255,0.15) !important;
    border-color: #aa8453 !important;
    outline: none;
    box-shadow: none;
}

/* Section Subtitle */
.section-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 5px;
}

.section-subtitle span {
    color: #aa8453;
}

/* Navbar Scroll Effect */
.navbar.nav-scroll {
    background: #fff !important;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}

.navbar.nav-scroll .navbar-brand,
.navbar.nav-scroll .nav-link {
    color: #222 !important;
}

.navbar.nav-scroll .navbar-toggler-icon {
    background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'30\' height=\'30\' viewBox=\'0 0 30 30\'%3E%3Cpath stroke=\'rgba(34, 34, 34, 1)\' stroke-linecap=\'round\' stroke-miterlimit=\'10\' stroke-width=\'2\' d=\'M4 7h22M4 15h22M4 23h22\'/%3E%3C/svg%3E') !important;
}

/* Body padding for fixed navbar */
body {
    padding-top: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .hero-section .lang-selector {
        top: 20px !important;
        left: 20px !important;
    }
    
    .hero-section .hero-logo {
        top: 20px !important;
    }
    
    .hero-section .hero-logo div div:first-child {
        font-size: 24px !important;
    }
    
    .hero-section .hero-logo div div:last-child {
        font-size: 11px !important;
        letter-spacing: 4px !important;
    }
    
    .hero-section .hero-image-container {
        max-width: 90% !important;
        max-height: 50vh !important;
        right: 50% !important;
        transform: translate(50%, -50%) !important;
        padding: 0 20px !important;
    }
    
    .hero-section .hero-arabic-text {
        bottom: 30px !important;
        right: 20px !important;
        left: 20px !important;
        max-width: none !important;
        text-align: right !important;
    }
    
    .hero-section .hero-arabic-text h2 {
        font-size: 28px !important;
        margin-bottom: 20px !important;
    }
    
    .hero-section .hero-arabic-text p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    /* About Section Responsive */
    .about-section {
        height: 60vh !important;
        min-height: 500px !important;
    }
    
    .about-arabic-text {
        max-width: 90% !important;
    }
    
    .about-arabic-text h2 {
        font-size: 32px !important;
        padding: 0 20px;
    }
    
    .about-content {
        padding: 0 20px !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Services Section Responsive Mobile */
    .services-image {
        min-height: 400px !important;
    }
    
    .services-content-wrapper {
        padding: 50px 30px !important;
        min-height: 400px !important;
    }
    
    .services-title {
        font-size: 36px !important;
        margin-bottom: 25px !important;
        padding-bottom: 15px !important;
    }
    
    .services-text p {
        font-size: 16px !important;
        line-height: 1.7 !important;
        margin-bottom: 20px !important;
    }
    
    /* Our Services Section Responsive Mobile */
    .our-services-section {
        padding: 60px 0 !important;
    }
    
    .our-services-main-title {
        font-size: 42px !important;
        margin-bottom: 30px !important;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .service-card-overlay {
        padding: 20px 18px !important;
    }
    
    .service-card-title {
        font-size: 22px !important;
        margin-bottom: 12px !important;
    }
    
    .service-card-text {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    
    /* Why Section Responsive Mobile */
    .why-image {
        min-height: 400px !important;
    }
    
    .why-content-wrapper {
        padding: 50px 30px !important;
        min-height: 400px !important;
    }
    
    .why-title {
        font-size: 36px !important;
        margin-bottom: 25px !important;
        padding-bottom: 15px !important;
    }
    
    .why-title::after {
        width: 60px !important;
        height: 2px !important;
    }
    
    .why-list li {
        font-size: 16px !important;
        line-height: 1.7 !important;
        margin-bottom: 18px !important;
        padding-right: 25px !important;
    }
    
    .services-item .img {
        height: 250px;
    }
    
    .gallery-item .img {
        height: 250px;
    }
    
    .navbar {
        background: #fff !important;
    }
    
    .navbar .navbar-brand,
    .navbar .nav-link {
        color: #222 !important;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .hero-section .hero-arabic-text h2 {
        font-size: 36px !important;
    }
    
    .hero-section .hero-arabic-text {
        bottom: 40px !important;
        right: 40px !important;
        max-width: 500px !important;
    }
    
    /* About Section Tablet */
    .about-section {
        height: 70vh !important;
        min-height: 550px !important;
    }
    
    .about-arabic-text {
        max-width: 85% !important;
    }
    
    .about-arabic-text h2 {
        font-size: 42px !important;
    }
    
    .about-content {
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Services Section Tablet */
    .services-content-wrapper {
        padding: 60px 50px !important;
        min-height: 550px !important;
    }
    
    .services-title {
        font-size: 42px !important;
    }
    
    .services-text p {
        font-size: 17px !important;
    }
    
    /* Why Section Tablet */
    .why-content-wrapper {
        padding: 60px 50px !important;
        min-height: 550px !important;
    }
    
    .why-title {
        font-size: 42px !important;
    }
    
    .why-list li {
        font-size: 17px !important;
    }
    
    .why-image {
        min-height: 550px !important;
    }
    
    /* Our Services Section Tablet */
    .our-services-section {
        padding: 80px 0 !important;
    }
    
    .our-services-main-title {
        font-size: 48px !important;
    }
    
    .service-card-overlay {
        padding: 28px 25px !important;
    }
    
    .service-card-title {
        font-size: 24px !important;
        margin-bottom: 14px !important;
    }
    
    .service-card-text {
        font-size: 15px !important;
    }
}

.imag_sector_wrapper{
    width:50%;
    height:450px;
    border-radius:10px;
    margin:40px auto;
}
.imag_sector_wrapper img{
    border-radius:20px;
    width:100%;
    height:100%;
    object-fit: cover;
}


.why_title_middle {
    font-size: 48px;
    font-weight: 400;
    color: white;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
    text-align: center;
}

.why_title_middle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 180px;
    height: 3px;
    background-color: #aa8453;
}

.contact-us-section{
    background-image:
    linear-gradient(
        rgba(78, 78, 78, 0.6),
        rgba(31, 31, 31, 0.85)
    ),
    url('../img/value_catering/image9.png');

    background-size: cover;
    background-color: #2a2a2a;
    padding: 100px 0;
    margin: 0;
    width: 100%;
    min-height: 800px;
}
.contact-form{
    width:60%;
    padding:30px;
    background-color:rgb(230, 230, 230);
    border-radius:5px;
    margin:10px auto;
    text-align: right;
    color:#333;
}
.contact-form input{
    border:1px solid rgb(212, 212, 212);
    background-color:white;
    color:#333;
    margin:10px auto;
    text-align: right;
    padding:10px;
}
.contact-form button{
    background-color:#333;
    color:#AA8453;
    border:1px solid #AA8453;
    padding:15px;
    text-align: center;
    margin:10px auto;
    display: block;
    border-radius: 10px;
}
.contact-form button:hover{
    background-color:transparent;
    border-color:#AA8453;
    color:#AA8453;
}
.footer_button{
    background-color:#AA8453;
    color:#333;
    border:1px solid #AA8453;
    padding:15px;
    text-align: center;
    margin:10px auto;
    display: block;
    border-radius: 10px;
    width:190px
}
.footer_button:hover{
    background-color:transparent;
    border:1px solid #AA8453;
    color:#AA8453;
}

.social_links{
    width:80%;
    text-align: center;
    color:white;
    position: relative;
    left:44%;
    transform: translate(-44%);
    list-style-type: none;
}
.social_links li{
    color:white;
    font-size:12px;
    display: inline-block;
    padding:2px 4px;
}

@media (max-width: 768px) {
    .imag_sector_wrapper{
        width:90%;
        height:300px;
        margin:20px auto;
    }
    .why_title_middle{
        font-size:32px;
        margin-bottom:20px;
        padding-bottom:10px;
    }
    .why_title_middle::after{
        width:120px;
        height:2px;
    }
    .services-items{
        padding-bottom:290px;
    }
    .contact-form{
        width:90%;
    }
    .social_links{
        position: relative;
        left:42%;
        transform: translate(-46%);
    }
}