/******Colors******/
/******Media-Query******/
/*================================================
[ Start Mixin contents  ]
================================================
1:: Flex-Box
2:: Box-Sizing
3:: Overlay
4:: Circle
5:: Transation
6:: Transform
7:: Object-Fit
8:: Background-Cover
9:: Postion-Absolute
10:: Media-Query
======================================
[ End Mixin content ]
======================================*/
/******Start-Flex-box******/
/******End-Flex-box******/
/******Start-Box-Sizing******/
/******End-Box-Sizing******/
/******Start-Overlay******/
/******End-Overlay******/
/******Start-Circle******/
/******End-Circle******/
/******Start-Transation******/
/******End-Transation******/
/******Start-Transform******/
/******Start-Transform******/
/******Start-Object-Fit******/
/******End-Object-Fit******/
/******Start-background-Cover******/
/******End-background-Cover******/
/******Start-Absolute******/
/******End-Absolute******/
/******Start-Media-Query******/
/******End-Media-Query******/
/******Fonts******/
@font-face {
    font-family: "Almarai-Regular";
    src: url(../fonts/Almarai-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: "Almarai-Light";
    src: url(../fonts/Almarai-Light.ttf);
    font-display: swap;
}

@font-face {
    font-family: "Almarai-Bold";
    src: url(../fonts/Almarai-Bold.ttf);
    font-display: swap;
}

@font-face {
    font-family: "Almarai-ExtraBold";
    src: url(../fonts/Almarai-ExtraBold.ttf);
    font-display: swap;
}

/******Body******/
* {
    border: 0;
    margin: 0;
    padding: 0;
    outline: none !important;
}

body {
    font-family: "Almarai-Regular" !important;
    padding: 0 !important;
    margin: 0 !important;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden !important;
    direction: rtl !important;
    background-color: #ffffff;
    text-align: right;
    scroll-behavior: smooth;
}

/*****section-padding******/
.all {
    padding: 3em 0;
}

/*****section-padding******/
/******Scroll-Bar******/
::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    background-color: #ffffff;
}

::-webkit-scrollbar-thumb {
    background-color: #02230d;
    outline: 1px solid #ffffff;
    border-radius: 30px;
}

::-moz-selection {
    background: #02230d;
    color: #ffffff;
}

::selection {
    background: #02230d;
    color: #ffffff;
}

/******Reset******/
a {
    color: #02230d;
    text-decoration: none;
    cursor: pointer;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #ffffff;
}

button {
    border: 0;
    color: #ffffff;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    display: inline-block;
}

a,
button,
#scroll-top {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

.no-border {
    border: 0 !important;
}

.container .row,
.container-fluid .row {
    width: 100%;
}

h1 {
    font-family: "Almarai-Bold";
}

/******Reset******/
/*********Main-Button***********/
.main-btn {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 10px 30px;
    margin-top: 20px;
}

/*********Section-Head*********/
.section-head {
    text-align: center;
    color: #2A3D55;
    -webkit-box-shadow: 0px 5px 0px #0a667159;
    box-shadow: 0px 5px 0px #0a667159;
    border-radius: 30px;
    opacity: 0.99;
    background-color: #ffffff;
    padding: 5px 30px;
    width: 250px;
    font-size: 30px;
    margin: 0 auto;
    margin-bottom: 20px;
}

/*************Start-Responsive-Section*************/
@media only screen and (max-width: 768px) {
    .container .row,
    .container-fluid .row {
        width: unset;
    }
    .all {
        padding: 3em 1em;
    }
}

/*************End-Responsive-Section*************/
/*================================================
[ Start Navbar content  ]
================================================
1:: Header
2:: Navbar
3:: Fixed-Navbar
4:: Toggle-Menu
5:: Nav-Responsive
======================================
[ End Navbar content ]
======================================*/
/**************Start-Header**************/
header {
    height: 100vh;
    position: relative;
}

header .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #2A3D55;
}

header .header-bg .header-desc {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

header .header-bg .header-desc h1 {
    font-size: 60px;
    color: #ffffff;
    margin-bottom: 5px;
}

header .header-bg .header-desc p {
    font-size: 35px;
    color: #ffffff;
}

header .header-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    z-index: -2;
}

/**************End-Header**************/
/**************Start-Navbar**************/
nav,
.fixed-navbar {
    /* background-color: transparent;*/
    /*padding: 20px 15px;*/
    padding: 20px 15px 20px 15px;
    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;
    -webkit-transition: 0.6s ease all;
    transition: 0.6s ease all;
    width: 100%;
    background-color: #2A3D55;
}

nav .nav-right ul,
.fixed-navbar .nav-right ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

nav .nav-right ul li,
.fixed-navbar .nav-right ul li {
    padding: 0 10px;
}

nav .nav-right ul li a,
.fixed-navbar .nav-right ul li a {
    font-weight: 800;
    color: #ffffff;
}

nav .nav-left .nav-logo,
.fixed-navbar .nav-left .nav-logo {
    width: 100px;
    display: block;
}

nav .nav-left .nav-logo img,
.fixed-navbar .nav-left .nav-logo img {
    width: 270%;
    -o-object-fit: contain;
    object-fit: contain;
}

/**************End-Navbar**************/
/**************Start-Fixed-Navbar**************/
.fixed-navbar {
    background: #2A3D55;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    z-index: 9999999;
    padding: 20px 15px;
}

.fixed-navbar .nav-right ul li a {
    color: #ffffff;
}

/**************End-Fixed-Navbar**************/
/**************Start-Toggle-Menu**************/
@media only screen and (max-width: 768px) {
    body.active {
        overflow-x: hidden;
    }
    nav,
    .fixed-navbar {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    nav .nav-right,
    .fixed-navbar .nav-right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: absolute;
        top: -1000px;
        right: 0;
        width: 100%;
        margin: 0px;
    }
    nav .nav-right ul,
    .fixed-navbar .nav-right ul {
        -webkit-box-direction: normal;
        -webkit-box-orient: vertical;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    nav .nav-right ul li,
    .fixed-navbar .nav-right ul li {
        padding: 15px 0;
    }
    nav .nav-right.active,
    .fixed-navbar .nav-right.active {
        top: 0;
        opacity: 1;
        z-index: 99;
        padding: 20px 0;
        height: 500px;
        background: #2A3D55;
    }
    nav .navbar-toggle,
    .fixed-navbar .navbar-toggle {
        cursor: pointer;
    }
    nav .navbar-toggle .bar,
    .fixed-navbar .navbar-toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        display: block;
        cursor: pointer;
        background: #ffffff;
        -webkit-transition: 0.5s ease all;
        transition: 0.5s ease all;
    }
    nav #mobile-menu,
    .fixed-navbar #mobile-menu {
        position: absolute;
        top: 0;
        left: 5%;
        z-index: 100;
        -webkit-transform: translate(5%, 70%);
        transform: translate(5%, 70%);
    }
    nav #mobile-menu.is-active .bar:nth-child(2),
    .fixed-navbar #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    nav #mobile-menu.is-active .bar:nth-child(1),
    .fixed-navbar #mobile-menu.is-active .bar:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
        transform: translateY(8px) rotate(45deg);
    }
    nav #mobile-menu.is-active .bar:nth-child(3),
    .fixed-navbar #mobile-menu.is-active .bar:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
    }
}

/**************End-Toggle-Menu**************/
/**************Start-Responsive**************/
@media only screen and (max-width: 480px) {
    header .header-bg .header-desc h1 {
        font-size: 30px;
    }
    header .header-bg .header-desc p {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1024px) {
    header {
        height: 50vh;
    }
}

@media only screen and (min-width: 1382px) {
    header {
        height: 70vh;
    }
}

/**************End-Responsive**************/
footer {
   /* background: url(../img/footer-bg.png); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 20px 0;
	background-color: #5D80AE;
}

footer .row > div {
    margin-bottom: 10px;
}

footer h1 {
    color: #ffffff;
}

footer span {
    display: block;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

footer span i {
    padding: 0 3px;
}

footer p,
footer a {
    color: #ffffff;
    font-size: 1.1rem;
}

.bottom-footer {
    background: #2A3D55;
    padding: 15px 0;
}

.bottom-footer .footer-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.bottom-footer .footer-logo img {
    width: 100%;
    max-width: 150px;
    -o-object-fit: contain;
    object-fit: contain;
}

.bottom-footer .footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bottom-footer .footer-links ul li {
    padding: 0 10px;
}

.bottom-footer .footer-links ul li a {
    color: #ffffff;
}

/**********Responsive**********/
@media only screen and (max-width: 480px) {
    .bottom-footer .footer-links ul li {
        padding: 0 2px;
        font-size: 15px;
    }
}

/**********Responsive**********/
/*================================================
[ Start Index contents  ]
================================================
1:: Market-Section
2:: Achievements-Section
3:: Partner-Section
4:: Service-Section
5:: Responsive-Section
======================================
[ End Index content ]
======================================*/
/*********************Start-Market-Section*********************/
.market {
    position: relative;
}
.market .market-sign {
    position: fixed;
    left: -60px;
    bottom: 70px;
    z-index: 100;
    /*top: 30%;*/
    border-radius: 0 0 10px 10px;
    background-color: #2A3D55;
    color: #ffffff;
    font-size: 18px;
    padding: 10px 25px;
    transform: rotate(270deg);
}
.market .swiper-container-wrapper {
    padding: 1em 4em;
}

.market .swiper-wrapper {
    height: 80%;
}

.market .swiper-container {
    overflow: hidden;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 480px) {
    .market .swiper-container {
        min-height: 320px;
    }
}

.market .swiper-container-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
}

.slide-btn{
    overflow: hidden;
}
@media (min-width: 480px) {
    .market .swiper-container-wrapper {
        -webkit-box-direction: normal;
        -webkit-box-orient: horizontal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.market .swiper-slide {
    text-align: center;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: none;
    flex-wrap: nowrap; */
    /* Slide content */
}

.market .swiper-slide .description,
.market .swiper-slide .title {
    display: block;
    opacity: 0;
    position: absolute;
    left: 50%;
    width: 100%;
    -webkit-transition: 0.5s ease 0.5s;
    transition: 0.5s ease 0.5s;
}

.market .swiper-slide-active .description,
.market .swiper-slide-active .title {
    opacity: 1;
}

.market .swiper-slide-active .title {
    font-size: 30px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    bottom: 0;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    -webkit-transition: opacity 0.5s ease 0.5s;
    transition: opacity 0.5s ease 0.5s;
}

.market .swiper-slide-active .description {
    font-size: 16px;
    color: #000000;
    text-align: right;
    /* bottom: -15%;
    -webkit-transform: translate(-50%, 15%);
    transform: translate(-50%, 15%); */
    -webkit-transform: translate(-50%, 20px);
    transform: translate(-50%, 20px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    -webkit-transition: opacity 0.5s ease 0.75s;
    transition: opacity 0.5s ease 0.75s;
}

.market .swiper-slide img {
    width: 100%;
    
    border-radius: 10px 10px 0 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.market .gallery-top {
    position: relative;
    width: 100%;
    height: 75vh;
    margin-left: 30px;
}

@media (min-width: 480px) {
    .market .gallery-top {
        width: 80%;
        height: 100vh;
    }
}

.market .gallery-thumbs {
    width: 100%;
    height: 25vh;
    padding-top: 10px;
}

@media (min-width: 480px) {
    .market .gallery-thumbs {
        width: 20%;
        height: 100vh;
        padding: 0;
    }
}

.market .gallery-thumbs .swiper-wrapper {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
}

@media (min-width: 480px) {
    .market .gallery-thumbs .swiper-wrapper {
        -webkit-box-direction: normal;
        -webkit-box-orient: vertical;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.market .gallery-thumbs .swiper-slide {
    width: 25%;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    border: 1px solid #d1cfd1;
    border-radius: 10px 10px 0 0;
    height: 100%;
    opacity: 0.75;
    cursor: pointer;
}

.market .gallery-thumbs .swiper-slide .thumb-title {
    font-size: 15px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px;
    position: absolute;
    width: 100%;
    left: 50%;
    text-align: right;
    bottom: 0;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: opacity 0.5s ease 0.5s;
    transition: opacity 0.5s ease 0.5s;
}

@media (min-width: 480px) {
    .market .gallery-thumbs .swiper-slide {
        -webkit-box-direction: normal;
        -webkit-box-orient: vertical;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: none;
        flex-wrap: nowrap;
        width: 100%;
    }
}

.market .gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.market .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

/*********************End-Market-Section*********************/
/*********************Start-Achievements-Section*********************/
.achievements {
    background-color: #2A3D55;
}

.achievements .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.achievements .row > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 30px 0;
}

.achievements .row > div .service-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    padding: 10px;
}

.achievements .row > div .service-icon img {
    width: 100%;
    height: 100%;
}

.achievements .row > div .achive-desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 40%;
    padding: 0 10px;
    color: #ffffff;
}

.achievements .row > div .achive-desc span:first-of-type {
    font-size: 25px;
    font-weight: 600;
}

.achievements .row > div .achive-desc span:last-of-type {
    font-size: 15px;
}

/*********************End-Achievements-Section*********************/
/*********************Start-Partner-Section*********************/
.partner .section-head {
    background-color: #2A3D55;
    color: #ffffff;
    margin-bottom: 30px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.partner .swiper {
    width: 100%;
    height: 100%;
    padding: 1em 3em;
    overflow: hidden;
}

.partner .swiper .swiper-wrapper .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 250px;
    padding: 0 10px;
}

.partner .swiper .swiper-wrapper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.partner .swiper .swiper-wrapper .swiper-slide h5 {
    margin-top: 5px;
    color: #000000;
    font-size: 16px;
}

/*********************End-Partner-Section*********************/
/*********************Start-Service-Section*********************/
.service .right-service {
    padding: 0;
    height: 350px;
}

.service .right-service img {
    width: 100%;
    height: 100%;
}

.service .left-service {
    background-color: #2A3D55;
    padding: 3em 2em;
    height: 350px;
    object-fit: cover;
}

.service .left-service h1 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service .left-service h2 {
    font-size: 1.7rem;
    color: #ffffff;
    line-height: 1.5;
    font-weight: 800;
    margin-bottom: 20px;
}

.service .left-service p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 40px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*********************End-Service-Section*********************/
/*********************Responsive*********************/
@media only screen and (max-width: 768px) {
    .market .swiper-slide-active .title {
        font-size: 20px;
    }
    .market .swiper-slide-active .description {
        bottom: -25%;
        -webkit-transform: translate(-50%, 2%);
        transform: translate(-50%, 2%);
    }
    .market .gallery-thumbs .swiper-slide .thumb-title {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .market .swiper-slide-active .description {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

.achievements .row,
.service .row {
    margin: 0;
}

/*********************Responsive*********************/

/********* Navbar Dropdown *****************/

.dropdown-menu {
    float: right;
    text-align: right;
    flex-direction: column !important;
    border: 1px solid #777777;
    display: none !important;
    transition: 0.5s ease all;
}

.dropdown-menu li {
    display: block !important;
    padding: 3px 0 !important;
}

.dropdown-menu li a {
    color: #02230d !important;
    display: block !important;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    white-space: nowrap;
    transition: 0.5s ease all !important;
}

.dropdown-menu li a:hover {
    color: #2A3D55 !important;
}

.dropdown:hover .dropdown-menu {
    display: block !important;
    margin-top: 0;
    transition: 0.5s ease all !important;
}

/*************************************************** Start Contact ****************************************************/
.header-overlay {
    /*  background-color: rgba(12, 12, 12, 0.65);*/
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 9;
}

.map-content {
    position: relative;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    height: 350px;
}

#map {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.map-content .header-overlay {
    background-color: rgba(12, 12, 12, 0.4);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.map-content:hover .header-overlay {
    opacity: 0;
}

.map-content:hover #map {
    z-index: 99;
}

/************* Left ******************/
.contact .mailing {
    /* background-image: url(https://tagheez.org.sa/website/img/map.png);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: top center;
    position: relative;
    height: 350px;
    background-size: 50% 100%;
    background-position: top left;
    background-color: #2A3D55;
}

.call {
    z-index: 99;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90%;
    max-height: 100%;
    padding: 0 30px;
}

.mailing .title {
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.contact .mailing .h2-after {
    margin: 0 0 25px 0;
    font-size: 22px;
}

.mailing p {
    color: #fff;
    font-size: 15px;
}

.form1 {
    display: inline-block;
    /*    margin: 25px 0 0 0;*/
    margin: 10px 0 0 0;
}

.form1 .form-group {
    margin-left: 10px;
    /*  margin-top: 10px;*/
}

.form1 .form-control {
    border: none;
    background-color: #fff;
    height: 50px !important;
}
.form1 input::-webkit-outer-spin-button,
.form1 input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form1 button {
    color: #777777;
    width: 210px;
    transition: 0.5s ease all;
}
/*.form1 button:hover {
    color: #ffffff;
    background-color: #2A3D55;
}*/

.nav > li > a:focus,
.nav > li > a:hover {
    background: none;
}

@media (max-width: 580px) {
    .contact .mailing {
        height: 480px !important;
    }
}

/********* Social Media Buttons *****************/
.plus-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    height: 75px;
    width: 75px;
    border-radius: 100%;
    background-color: #5D80AE;
    -webkit-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.58);
    -o-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.58);
    -ms-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.58);
    box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.58);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: scale(0.92);
    transform: scale(0.92);
    cursor: pointer;
}

.plus-button::before {
    content: "\f879";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 28px;
    font-weight: 600;
}

.plus-button:hover {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 3px 3px 12px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 3px 3px 12px 2px rgba(0, 0, 0, 0.5);
}

.plus-button:active {
    -webkit-transform: scale(0.96);
    transform: scale(0.96);
    -webkit-box-shadow: 2px 3px 11px 1px rgba(0, 0, 0, 0.53);
    -o-box-shadow: 2px 3px 11px 1px rgba(0, 0, 0, 0.53);
    -ms-box-shadow: 2px 3px 11px 1px rgba(0, 0, 0, 0.53);
    box-shadow: 2px 3px 11px 1px rgba(0, 0, 0, 0.53);
}

.plus-button.open {
    -webkit-transform: scale(0.92);
    transform: scale(0.92);
    background-color: #333;
    -webkit-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.58);
    -o-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.58);
    -ms-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.58);
    box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.58);
}

.plus-button.open::before {
    content: "\f00d";
}

.plus-button.open:hover {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 3px 3px 12px 2px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 3px 3px 12px 2px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 3px 3px 12px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 3px 3px 12px 2px rgba(0, 0, 0, 0.5);
}

.plus-button.open:active {
    -webkit-transform: scale(0.96);
    transform: scale(0.96);
    -webkit-box-shadow: 2px 3px 11px 1px rgba(0, 0, 0, 0.53);
    -o-box-shadow: 2px 3px 11px 1px rgba(0, 0, 0, 0.53);
    -ms-box-shadow: 2px 3px 11px 1px rgba(0, 0, 0, 0.53);
    box-shadow: 2px 3px 11px 1px rgba(0, 0, 0, 0.53);
}

.social-button {
    position: fixed;
    bottom: 43px;
    right: 41px;
    height: 50px;
    width: 50px;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    background-size: 100% !important;
    border-radius: 100%;
    -webkit-box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.4);
    -o-box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.4);
    -ms-box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    z-index: 99;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.social-button:hover {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.35s cubic-bezier(0.3, 0.2, 0, 2.5);
    transition: 0.35s cubic-bezier(0.3, 0.2, 0, 2.5);
}

.social-button.whatsapp-button {
    background: url("../img/whatsapp.png") no-repeat center;
}

.social-button.whatsapp-button.active {
    bottom: 110px;
    left: 21px;
}


.news-video{
    display: flex;
    justify-content: center;
    align-items: center;
}
.news-video > iframe{
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}
/*************************************************** End Contact ****************************************************/
/*# sourceMappingURL=main.css.map */
    