@font-face {
    font-family: Soho;
    font-weight: bold;
    /*src: url("../soho_font/SohoStd-Bold.otf");*/
    /*src: url("../soho_font/SohoStd-Regular.otf");*/
    src: url("../soho_font/SohoStd-Medium.otf");
}

.blue-color {
    color: #1d95cb;
}

.red-color {
    color: #d62b4d;
}

.orange-color {
    color: #ee7531;
}

.green-color {
    color: #4cab47;
}

.uppercase {
    text-transform: uppercase;
}

*, *:before, *:after {
    box-sizing: border-box;
}

* {
    font-family: Soho;
}

img {
    max-width: 100%;
}

a, p, h1, h2, h3, h4, h5, h6, h7, span, p span {
    font-family: Soho !important;
}

html {
    font-size: 16px;
}

.plane {
    margin: 20px auto;
    max-width: 300px;
    margin-top: 100px;
}

.cockpit {
    height: 250px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 5px solid #d8d8d8;
}

.cockpit:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 500px;
    width: 100%;
    border-radius: 50%;
    border-right: 5px solid #d8d8d8;
    border-left: 5px solid #d8d8d8;
}

.cockpit h1 {
    width: 60%;
    margin: 100px auto 35px auto;
}

.exit {
    position: relative;
    height: 50px;
}

.exit:before, .exit:after {
    content: "EXIT";
    font-size: 14px;
    line-height: 18px;
    padding: 0px 2px;
    font-family: "Arial Narrow", Arial, sans-serif;
    display: block;
    position: absolute;
    background: green;
    color: white;
    top: 50%;
    transform: translate(0, -50%);
}

.exit:before {
    left: 0;
}

.exit:after {
    right: 0;
}

ol {
    list-style: none;
    padding: 8px;
    margin: 0;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.seats {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.seat {
    display: flex;
    flex: 0 0 14.28571428571429%;
    padding: 5px;
    position: relative;
}

.seat:nth-child(3) {
    margin-right: 14.28571428571429%;
}

.seat input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.seat input[type="checkbox"]:checked+label {
    background: #bada55;
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
    animation-duration: 300ms;
    animation-fill-mode: both;
}

.seat input[type="checkbox"]:disabled+label {
    background: #dddddd;
    text-indent: -9999px;
    overflow: hidden;
}

.seat input[type="checkbox"]:disabled+label:after {
    content: "X";
    text-indent: 0;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.seat input[type="checkbox"]:disabled+label:hover {
    box-shadow: none;
    cursor: not-allowed;
}

.seat label {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5rem;
    padding: 4px 0;
    background: #f42536;
    border-radius: 5px;
    animation-duration: 300ms;
    animation-fill-mode: both;
}

.seat label:before {
    content: "";
    position: absolute;
    width: 75%;
    height: 75%;
    top: 1px;
    left: 50%;
    transform: translate(-50%, 0%);
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
}

.seat label:hover {
    cursor: pointer;
    box-shadow: 0 0 0px 2px #5c6aff;
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.seat input[class="female_seats"]:disabled+label {
    background: pink !important;
}

.seat input[class="female_seats"]:disabled+label:after {
    content: "Female" !important;
}

.seat input[type="checkbox"]:disabled+label:after {
    content: "Male";
}

#ticket_list {
    height: 500px;
    max-height: 500px;
    overflow-y: auto;
}

.ml-71 {
    margin-left: 71%;
}

.ml-56 {
    margin-left: 56%;
}

.ml-14 {
    margin-left: 14%;
}

.exit--front {
    border-radius: 15%;
    min-height: 40px;
}

.exit--front span {
    font-size: 35px;
    color: #f6d365;
}

#progress-bar {
    background-color: #12cc1a;
    height: 20px;
    color: #ffffff;
    width: 0%;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
}

.btnSubmit {
    background-color: #09f;
    border: 0;
    padding: 10px 40px;
    color: #fff;
    border: #f0f0f0 1px solid;
    border-radius: 4px;
}

#progress-div {
    border: #0fa015 1px solid;
    padding: 5px 0px;
    margin: 30px 0px;
    border-radius: 4px;
    text-align: center;
}

#targetLayer {
    width: 100%;
    text-align: center;
}

.main-sidebar {
    position: fixed;
    height: 100%;
}

.progress {
    margin-top: 5%;
    height: 100%;
}

.skin-blue .wrapper, .skin-blue .main-sidebar, .skin-blue .left-side {
    background-color: #ffff;
    transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
}

.sectoin_height {
    height: 935px;
}

#home_section {
    background: url("../img/home_bg.jpg");
    background-size: cover !important;
    background-position: bottom;
}

.sidebar-menu li a {
    font-size: 22px;
    text-decoration: none;
    color: #64656b;
    display: block;
    border-top: 1px solid #edebe2;
    padding: 20px 15px;
}

.sidebar-menu li a i {
    line-height: 20px;
}

.text-right {
    text-align: right;
}

.custome_container {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0;
    bottom: 0;
}

.custome_container_home {
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0;
    bottom: 0;
}

.top_ul {
    padding: 0;
}

.bottom_ul {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
}

.lang_ul {
    display: inline-flex;
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0 21%;
}

.lang_ul li {
    margin: 0 15px;
}

.lang_ul li a {
    background: transparent !important;
}

.custome_container h4 {
    color: #dcd7c5;
}

#section_logo {
    max-width: 400px;
    max-height: 90px;
    margin-bottom: 15px;
}

.img-container {
    display: block;
}

.joinus {
    background: #d62b4d;
    font-size: 19px;
    padding: 12px 26px;
    border-radius: 28px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    display: inline-block;
}

.joinus:hover {
    background: #fff;
    color: #d62b4d;
}

.sidebar-mini.sidebar-collapse .content-wrapper, .sidebar-mini.sidebar-collapse .right-side, .sidebar-mini.sidebar-collapse .main-footer {
    margin-left: 0 !important;
}

section#home_section .video {
    background: url(../img/play-video.png) no-repeat right center;
    padding: 0 37px 0 0;
    line-height: 35px;
    display: inline-block;
    font-size: 18px;
    color: #edeadf;
    margin-bottom: 50px;
}

.projectby {
    color: #fff;
    font-weight: 700;
}

.skin-blue .sidebar a {
    color: #64656b;
}

.img_pro_left {
    float: right;
    width: 150px;
    margin-top: 30px;
}

.img_pro_right {
    float: left;
    width: 200px;
    margin-top: 40px;
}

.ul_container {
    background: #dbdcde;
    border-radius: 15px 15px 0 0;
    position: absolute;
    bottom: 0;
    width: inherit;
    padding: 20px;
}

@media (max-width: 991px) {
    .ul_container {
        padding: 5px;
    }
    .scoical_ul div a i, .scoical_ul div a {
        margin: 20% 3%;
        color: #5a5b60;
        font-weight: 600;
    }
}

@media (min-width: 992px) {
    .scoical_ul div a, .scoical_ul div a i {
        margin: 2px 3px;
        color: #5a5b60;
        font-weight: 600;
        display: inline-block;
        vertical-align: -2px;
    }
    .scoical_ul div a i {
        font-size: 20px;
    }
}

#news_event_one {
    background-size: cover;
    height: 100%;
}

.np_padding {
    height: 100%;
    padding: 0;
}

.padding_0 {
    padding: 0 !important;
}

.icon_news {
    position: absolute;
    font-size: 123px;
    left: 25%;
    z-index: 0;
    top: 4%;
    color: #ffffff45;
}

.big_section {
    background-size: cover;
    padding: 5% 6%;
}

.big_section .about_title {
    position: relative;
}

.text-white {
    color: #fff;
}

#about_us .custom-mt {
    margin-top: 20px;
}

/* aboutus */

.mobile-screen {
    display: none;
}

.med-screen {
    display: block;
}

@media (max-width: 767px) {
    .med-screen {
        display: none;
    }
    .mobile-screen {
        display: block;
    }
}

.pl-0 {
    padding-left: 0;
}

.pr-6 {
    padding-right: 6rem;
}

.about_title i {
    font-size: 13px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: 1px;
}

.about_title_ar {
    padding: 7% 0% 6% 7%;
}

.about_title h1, .about_title_ar h1 {
    color: #fff;
    font-size: 38px;
    text-transform: uppercase;
}

.about_title a, .about_title_ar a {
    color: #1d95cb;
    font-size: 20px;
    margin-top: 20px;
}

.about_title p, .about_title_ar p {
    color: #bab5a5;
    font-size: 22px;
    margin-bottom: 34px;
}

.about_content {
    position: absolute;
    bottom: 6%;
}

@media screen and (min-width: 768px) {
    .about_content img {
        height: 50px;
    }
}

.custome_card_img {
    max-width: 400px;
    max-height: 200px;
    min-height: 200px;
}

.custome_img {
    width: 90px;
    margin: 20px 0;
}

.custome_card h3 {
    color: #fff;
    font-size: 25px;
}

.custome_card a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.news_card {
    padding: 20px;
}

.lib-news_card {
    padding: 20px 0;
}

.news_card_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_head h2 {
    line-height: 43px;
    margin: 0;
    color: #d9232d;
}

.news_head h3 {
    display: inline-block;
}

.news_head h5 {
    display: inline-block;
    vertical-align: middle;
    margin: 3px 0px 4px 0px;
}

.news_head h1 {
    color: #e1004a;
    margin-top: 10px;
}

.col-height {
    height: 50%;
    padding-left: 0;
}

.container-news_con {
    height: 100%;
}

.container_news_btn {
    background: #e1004a;
    height: 50%;
}

.news_btn-control h1 {
    color: #fff;
    font-weight: 700;
}

.news_btn-control h3 {
    color: #fff;
    font-weight: 600;
}

.news_btn-control p {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}

.news_btn-control.responsive a {
    font-size: 16px;
}

.news_btn-control {
    margin: 17.25%;
}

.news_body {
    font-size: 15px;
}

.arrow_point:after {
    display: block;
    content: "";
    position: absolute;
    width: 21px;
    height: 34px;
    background: url(../img/article_link_arrow_yellow.png) no-repeat;
    top: 50%;
    margin-top: -11px;
    right: -21px;
    z-index: 1;
}

section#news_event .news_card.arrow_up::before {
    display: block;
    content: "";
    background: url(../img/article_link_arrow_white_up.png) no-repeat;
    width: 21px;
    height: 34px;
    left: -21px;
    top: 50%;
    position: absolute;
}

.news_tag {
    left: 0;
    background: #e1004a;
    font-size: 10px;
    color: #fff;
    font-size: small;
    font-weight: bolder;
    cursor: default;
    padding: 3px 8px;
    float: right;
}

.news_tag:hover {
    color: #fff;
}

.news_tag_ar {
    left: 0;
    background: #e1004a;
    font-size: 10px;
    color: #fff;
    font-size: small;
    font-weight: bolder;
    cursor: default;
    padding: 2px 6px;
    float: left;
}

.section_tag_left {
    background: #f6f4e2;
    color: #252424;
    font-size: small;
    font-weight: bolder;
    cursor: default;
    padding: 3px 8px;
    float: left;
    display: block;
    text-transform: uppercase;
}

.news_href {
    color: #e1004a;
    font-weight: bold;
    font-size: 13px;
}

.news_card.custom-padding {
    padding: 40px 0px;
}

#news_event_two {
    background: #f6f4e2;
}

#GALLERY {
    background-color: #0f0f12;
}

#GALLERY .about_title {
    position: relative;
}

.mycouroselnav {
    text-align: center;
}

.mycouroselnav button {
    color: #fff;
    background: transparent;
    border: navajowhite;
    font-size: 60px;
}

#partner .position-relative .med-screen .d-flex {
    display: flex;
    margin-bottom: 8%;
}

#partner .position-relative .med-screen .d-flex .custom-flex {
    flex: 1;
}

#liblary {
    background: url("../img/library.jpg");
    background-size: cover !important;
}

.lib.news_body {
    margin-bottom: 30px;
}

.library_href {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    background: #e1004a;
    padding: 15px;
    margin-left: 40px;
    border-radius: 4px;
}

@media (max-width: 812px) {
    .library_href {
        display: block;
        margin-left: 0;
        margin-top: 30px;
        text-align: center;
    }
    .lib-news_card {
        padding-bottom: 0;
    }
}

.library_href i {
    font-size: 18px;
    margin-right: 15px;
    vertical-align: middle;
}

.library_href:hover {
    color: #e1004a;
    background: #fff;
    border: solid 1px #e1004a;
}

.position-relative {
    position: relative;
}

.bottom-np {
    bottom: -10%;
}

#about_us .bottom-np {
    bottom: -24%;
}

#partner .bottom-np {
    bottom: -45%;
}

.text-center {
    text-align: center;
}

.d-initial {
    display: initial;
}

.custom-bottom {
    bottom: 5%;
}

.carousel-indicators .active {
    width: 30px;
    height: 5px;
    margin: 0 5px 0px 5px;
    background-color: #fff;
    opacity: 1;
}

.carousel-indicators li {
    width: 30px;
    height: 5px;
    margin: 0 5px 0px 5px;
    border-radius: 0;
    background-color: #fff;
    opacity: 0.5;
    transition: all 0.3s;
}

@media screen and (max-width: 991px) {
    .bottom-np {
        bottom: -35%;
    }
}

@media screen and (min-width: 768px) {
    #libraryCarousel img, #galleryCarousel img {
        vertical-align: bottom;
        object-fit: cover;
        height: 180px;
    }
    #libraryCarousel a, #galleryCarousel a, #mobile_libraryCarousel a {
        display: inline-block;
    }
    #libraryCarousel .carousel-indicators, #galleryCarousel .carousel-indicators {
        bottom: -25%;
        position: absolute;
        left: 50%;
        z-index: 15;
        width: 100%;
        padding: 0;
        margin-left: -50%;
        text-align: center;
        list-style: none;
    }
    #partnerCarousel .carousel-indicators {
        bottom: -55%;
        position: absolute;
        left: 50%;
        z-index: 15;
        width: 100%;
        padding: 0;
        margin-left: -50%;
        text-align: center;
        list-style: none;
    }
    #libraryCarousel .carousel-caption, #galleryCarousel .carousel-caption {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 10;
        color: #fff;
        background: rgb(0, 0, 0);
        background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
        height: auto;
        padding: 30px 10px;
    }
    #libraryCarousel .carousel-caption span, #galleryCarousel .carousel-caption span {
        font-size: 16px;
        list-style: 24px;
    }
    #libraryCarousel .carousel-caption p, #galleryCarousel .carousel-caption p {
        margin-top: 10px;
        margin-bottom: 0px;
        color: #1d95cb;
        font-weight: bold;
        font-family: Soho !important;
    }
}

@media screen and (max-width: 767px) {
    .news_btn-control p {
        font-size: 14px;
    }
    .news_btn-control {
        margin: 0;
    }
    .img-responsive {
        height: 190px;
    }
    #about_us .bottom-np {
        bottom: -5%;
    }
    #partner .bottom-np {
        bottom: 0;
    }
    .carousel-inner {
        height: 230px;
    }
    #mobile_partnerCarousel .carousel-inner {
        line-height: 260px;
    }
    #mobile_partnerCarousel .img-responsive {
        height: auto;
        max-height: 190px;
        max-width: 80%;
    }
    #mobile_aboutCarousel .carousel-inner {
        line-height: 20px;
        height: auto;
        min-height: 205px;
    }
    #mobile_libraryCarousel .carousel-inner {
        height: 190px;
    }
    .carousel-indicators li {
        width: 15px;
        height: 5px;
        margin: 0 5px 0px 5px;
        border-radius: 0;
        background-color: #fff;
        opacity: 0.5;
        transition: all 0.3s;
    }
    .carousel-indicators li.active {
        width: 15px !important;
        height: 5px;
        margin: 0 5px 0px 5px;
        background-color: #fff;
        opacity: 1;
    }
    #mobile_galleryCarousel .carousel-indicators, #mobile_libraryCarousel .carousel-indicators, #mobile_partnerCarousel .carousel-indicators, #mobile_aboutCarousel .carousel-indicators {
        position: absolute;
        bottom: -20%;
        left: 0%;
        z-index: 15;
        width: 100%;
        padding-left: 0;
        margin-left: 0%;
        text-align: center;
        list-style: none;
    }
    #mobile_libraryCarousel a, #mobile_galleryCarousel a, #mobile_partnerCarousel a, #mobile_aboutCarousel a {
        display: inline-block;
    }
    #mobile_libraryCarousel .carousel-caption, #mobile_galleryCarousel .carousel-caption {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 10;
        color: #fff;
        background: rgb(0, 0, 0);
        background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
        height: auto;
        padding: 20px 10px;
    }
    #mobile_libraryCarousel .carousel-caption p, #mobile_galleryCarousel .carousel-caption p {
        margin-top: 15px;
        margin-bottom: 0px;
        color: #1d95cb;
        font-weight: bold;
        font-family: Soho !important;
    }
    #mobile_libraryCarousel .carousel-caption span, #mobile_galleryCarousel .carousel-caption span {
        font-size: 26px;
        list-style: 39px;
    }
    .bottom-np {
        bottom: -5%;
    }
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    max-height: 250px;
}

.owl-one .owl-item div, .owl-one .owl-item img {
    height: 250px;
    width: 100%;
}

/* .owl_about_ar .owl-carousel .owl-item img {
  width: 87% !important;
} */

.owl_ar {
    direction: ltr !important;
}

.owl_about .owl-carousel .owl-item img {
    max-height: 120px;
}

.owl_about .owl-stage-outer h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    color: #fff;
}

.owl_about .owl-stage-outer p {
    color: #fff;
}

.owl_library .owl-stage-outer {
    height: 370px;
}

.owl_library .owl-stage-outer h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    color: #fff;
}

.owl_library .owl-stage-outer p {
    color: #fff;
}

.owl_footer .mycouroselnav {
    display: none;
}

body {
    overflow-x: hidden;
}

html, body {
    margin: 0;
    height: 100%;
    width: 100%;
    padding: 0;
}

section {
    display: block;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

/*.shadow{*/

/*border-style: solid;*/

/*border-width: thin;*/

/*border-color: #d4d4c7;*/

/*}*/

.big_card {
    background: #fff;
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0%;
}

.big_card_ar {
    background: #fff;
    width: 100%;
    position: absolute;
    height: 100%;
    left: 0%;
    z-index: 9999;
}

.col-md-12.container_news_btn:hover {
    background: #2094ca;
}

.side_header img, .side_header_ar img {
    width: 100%;
    height: 300px;
}

.custome_table, .custome_table_ar {
    margin-top: 30%;
}

/* #registration_from label {
  position: absolute;
  top: 20px;
  font-size: 18px;
  left: 40px;
  font-weight: 100;
} */

.wizard>.content>.body label.error {
    margin-left: 9.5em !important;
}

.wizard>.steps .disabled a {
    background: #99c58a !important;
    color: #fff !important;
}

/* .contact_form div div div label {
  position: absolute;
  top: 20px;
  font-size: 18px;
  left: 40px;
  font-weight: 100;
} */

/* .contact_form_ar div div div label {
  position: absolute;
  top: 20px;
  font-size: 18px;
  right: 40px;
  font-weight: 100;
} */

.contact_hr {
    position: absolute;
    width: 45px;
    height: 4px;
    background: #d9232d;
    top: 80px;
    left: 10%;
    display: none;
}

.contact_hr_Ar {
    position: absolute;
    width: 45px;
    height: 4px;
    background: #d9232d;
    top: 80px;
    right: 10%;
    display: none;
}

.side_header h1 {
    font-size: 46px;
    font-weight: 600;
    color: #d9232d;
    margin: 0;
}

.side_header_ar h1 {
    font-size: 50px;
    font-weight: 600;
    color: #d9232d;
    margin-right: 12%;
    margin-top: 19%;
}

.new_page_img {
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.news_row .col-md-3 {
    height: 100%;
}

.newswrapper {
    background-color: #f7f2e4;
    height: 100vh;
}

#sec_row_carosel {
    margin-top: 110px;
}

.cus_nav {
    background: #fff;
    border: 0;
    font-size: 16px;
    height: 50px;
    overflow: hidden;
    margin: 0;
    border-bottom: 1px solid #e8e4df !important;
    border-radius: 0;
}

@media (max-width: 767px) {
    .cus_nav .mobile-menu {
        border: 0;
        padding: 0 !important;
    }
    .cus_nav {
        height: auto;
    }
    .navbar-nav {
        margin: 0 -15px;
    }
}

.side_section_news, .side_section_news_ar {
    height: 100%;
}

@media (max-width: 991px) {
    .side_section_news h1 {
        font-size: 24px;
    }
}

.nav .navbar-nav.custome_nav_elemant {
    margin-left: 35px;
}

.navbar-nav.custome_nav_elemant .sidebar-toggle {
    background-color: #fff;
    color: #d9232d;
    font-size: 28px;
    font-weight: 200;
}

.d-inline {
    display: inline-block !important;
}

.navbar-nav.custome_nav_elemant .sidebar-toggle:active, .navbar-nav.custome_nav_elemant .sidebar-toggle:focus {
    background-color: #d9232d;
    color: #fff;
    font-size: 28px;
    font-weight: 200;
}

.navbar-nav.custome_nav_elemant .sidebar-toggle:hover {
    position: relative !important;
    background-color: #d9232d;
    color: #fff;
    font-size: 28px;
    font-weight: 200;
}

.custome_nav_elemant li {
    border-left: 0.1px solid #ccc;
    border-right: 0.1px solid #ccc;
    /* height: 50px; */
    overflow: hidden;
}

.custome_nav_elemant li a {
    color: #625152;
    font-size: 16px;
    padding: 15px 30px;
    font-weight: 600;
    z-index: 999;
}

.custome_nav_elemant li.active a {
    color: #d9232d !important;
}

.custome_nav_elemant li.active {
    border-top: 2px solid #d9232d;
}

.news_tag {
    text-transform: uppercase;
}

.side_section_news {
    height: auto;
}

.custom-fixed-col {
    height: 100%;
    padding: 70px 15px;
    background: #fff;
    position: fixed;
    width: 25%;
    bottom: 0;
}

.float {
    float: right;
}

.float.con {
    margin: 20px 0px;
}

@media (max-width: 812px) {
    .custom-fixed-col {
        height: 100px;
        width: 100%;
        top: 50px;
        z-index: 99;
        padding: 20px 10px;
    }
    .news_head h3 {
        margin-bottom: 0;
    }
    .float.con {
        margin: 450px 0px 40px 0;
    }
    .custome_table {
        margin-top: 0px;
    }
    .custom-fixed-col.reg {
        height: 190px;
    }
    .custom-fixed-col.con {
        height: 430px;
    }
    .float.reg {
        margin-top: 190px;
    }
    .custom-fixed-col.reg p, .custom-fixed-col.con p {
        margin: 20px 0;
    }
    .float {
        float: left;
        margin-top: 90px;
    }
}

.side_section_news_ar {
    position: fixed;
    top: 0;
    right: 0;
    left: 76%;
    bottom: 0;
}

.nopadding {
    padding: 0;
}

.nomargin {
    margin: 0;
}

.news_row {
    padding: 50px 20px;
    display: flex;
    align-items: end;
    border-bottom: solid 1px #d0d0d0;
}

.form_container {
    margin: 40px;
}

.form_head.con {
    margin: 0px 0px 30px 14px;
}

.form_head h6 {
    font-size: 18px;
}

.form_head h6 span {
    color: #d9232d;
}

/* .form_head {
  margin: 120px 40px 100px 0;
} */

.form_head h1 {
    color: #d9232d;
    text-align: center;
    font-weight: 600;
    line-height: 55px;
}

.red {
    color: #d9232d;
}

.black {
    color: #000;
}

.custome_table, tr {
    border-bottom: 1px solid #f1efec;
    border-collapse: collapse;
}

.custome_table, tr td {
    padding: 15px;
}

.custome_table tr td:first-child {
    text-align: left;
    font-weight: 700;
}

.custome_table tr td:nth-child(2) {
    text-align: right;
}

/*********************/

.custome_table_ar, tr {
    border-bottom: 1px solid #f1efec;
    border-collapse: collapse;
}

.custome_table_ar, tr td {
    padding: 15px;
}

.custome_table_ar tr td:first-child {
    text-align: right;
    font-weight: 700;
}

.custome_table_ar tr td:nth-child(2) {
    text-align: left;
}

.form-group {
    margin-bottom: 30px;
}

.social_twitter i {
    font-size: 28px;
    color: #d9232d;
}

.custome_contact_input {
    border: none;
    width: 100%;
    padding: 1em 1em;
    background: #fff;
}

.custome_contact_input_Ar {
    border: none;
    width: 100%;
    padding: 1.5em 1.2em;
    background: #fff;
    text-align: left;
}

.costome_contact_btn:hover {
    background: #d9232d;
}

.costome_contact_btn {
    font-size: 20px;
    float: right;
    padding: 12px 20px;
    background: #d9232d;
    border: none;
    font-weight: 600;
    margin-bottom: 40px;
}

.contact_form {
    display: flex;
    flex-direction: column;
}

/*Contact Form English*/

.contact_form input::placeholder, .contact_form select::placeholder {
    text-align: left;
}

/*Contact Form Arabic*/

.contact_form_ar input::placeholder, .contact_form_ar select::placeholder {
    text-align: right;
}

.wizard>.content {
    background: transparent !important;
}

.mt-65 {
    margin-top: 65px;
}

.mt-30 {
    margin-top: 30px;
}

.side_header p {
    overflow-wrap: BREAK-WORD;
    color: #625152;
    font-size: 18px;
    line-height: 27px;
    margin: 10% 0;
}

.sidebar-menu li a {
    font-size: 18px;
    text-decoration: none;
    color: #64656b;
    display: block;
    border-top: 1px solid #edebe2;
    padding: 20px 15px;
}

.wizard.clearfix {
    margin: 30px 0;
}

.custome_container {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
}

.custome_container h4 {
    color: #dcd7c5;
}

.img-container {
    display: block;
    text-align: center;
}

.event-img-container {
    display: block;
    margin: 4%;
    text-align: center;
}

.img-container h1 {
    margin: 20px 0;
}

.play-btn {
    margin: 20px 0;
    display: inline-block;
}

.img-container a {
    max-width: 100%;
}

#home_section h4 {
    margin-top: 25px;
}

.main-sidebar.custom-sidebar {
    height: 100%;
}

.main-sidebar.custom-sidebar ul, .main-sidebar.custom-sidebar ul li {
    list-style: none;
    padding: 0;
}

@media (max-width: 767px) {
    .main-sidebar, .left-side {
        padding-top: 50px;
    }
}

.main-sidebar, .left-side {
    width: 315px;
    left: unset;
    right: 0;
}

/*close sidebar English*/

.sidebar-mini.sidebar-collapse .main-sidebar.main-sidebar-en {
    right: unset;
    left: 0;
    transform: translate(-315px, 0px);
}

/*Open sidebar English*/

.sidebar-mini .main-sidebar.main-sidebar-en {
    right: unset;
    left: 0;
    transform: translate(0px, 0px);
}

/*close sidebar Arabic*/

.sidebar-mini.sidebar-collapse .main-sidebar.main-sidebar-ar {
    transform: translate(315px, 0px);
}

/*Open sidebar Arabic*/

.sidebar-mini .main-sidebar.main-sidebar-ar {
    transform: translate(0px, 0px);
}

.content-wrapper, .right-side, .main-footer {
    margin-left: unset !important;
}

/*For Arabic Sidebar*/

.sidebar-mini .content-wrapper, .sidebar-mini .right-side, .sidebar-mini .main-footer {
    transform: translate(-315px, 0);
    transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
}

.sidebar-mini.sidebar-collapse .content-wrapper, .sidebar-mini.sidebar-collapse .right-side, .sidebar-mini.sidebar-collapse .main-footer {
    /*margin-left: 0 !important;*/
    margin-right: 0 !important;
    transform: translate(0px, 0);
    transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
}

/*For English Sidebar*/

.sidebar-mini .content-wrapper.content-wrapper-en {
    transform: translate(315px, 0);
    transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
}

.sidebar-mini.sidebar-collapse .content-wrapper.content-wrapper-en {
    margin-right: 0 !important;
    transform: translate(0px, 0);
    transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
}

section#home_section .video {
    background: url(/img/play-video.png) no-repeat right center;
    padding: 0 37px 0 0;
    line-height: 35px;
    display: inline-block;
    font-size: 18px;
    color: #edeadf;
    margin-bottom: 40px;
}

section#home_section .img-container {
    padding-top: 1%;
    padding-bottom: 1%;
}

@media (min-width: 768px) {
    section#home_section .about-container {
        height: 100%;
        padding: 6% 0 7% 0;
        position: relative;
    }
}

.custom-height {
    height: 50px;
}

.sidebar-toggle, .main-header .sidebar-toggle:hover {
    color: #fff;
    background-color: #d9232d;
}

.main-header .sidebar-toggle:active, .main-header .sidebar-toggle:focus {
    background: #fff;
    color: #d9232d;
}

.main-header .sidebar-toggle {
    font-family: fontAwesome !important;
    background-color: #fff;
    color: #d9232d;
    padding: 13px;
    float: left;
}

.main-header .sidebar-toggle::before {
    display: none;
}

.main-header .sidebar-toggle i {
    font-size: 32px;
    display: block;
    height: 24px;
    line-height: 24px;
}

.skin-blue .sidebar a {
    font-size: 14px;
    color: #64656b;
    font-family: Soho !important;
}

.skin-blue .top_ul>li:hover>a {
    background-color: #f7f2e4;
    color: #64656b;
}

div.sidebar ul.sidebar-menu li a.active {
    background-color: #2094ca;
    color: #fff;
}

/* .img_pro {
} */

.img_pro_left {
    float: right;
    width: 150px;
    margin-top: 30px;
}

.img_pro_right {
    float: left;
    width: 200px;
    margin-top: 40px;
}

.ul_container {
    width: 70%;
    background: #dbdcde;
    margin: auto;
    position: absolute;
    height: 64px;
    bottom: -1px;
    left: 15%;
    border-radius: 15px 15px 0 0;
}

.scoical_ul {
    margin-top: 20px;
}

.scoical_ul .col-md-2.col-xs-6 {
    width: 20%;
}

.scoical_ul li {
    margin: 0 30px;
}

.scoical_ul li a, .scoical_ul li a i {
    margin: 0 10px;
    font-size: 18px;
    color: #5a5b60;
}

#left_sec_section {
    background: url("/img/shbab.JPG");
}

.np_padding {
    height: 100%;
}

.main-sidebar {
    position: fixed;
    /*z-index: 99999999;*/
}

.main-sidebar-ar, .left-side {
    right: 0 !important;
    padding-top: 65px;
    /*z-index: 9999999;*/
}

/* .custome_form_head h1 {
  display: inline;
} */

/* .custome_form_head span {
    font-size: 18px;
    color: #d9232d;
    font-weight: 700;
    margin-left: 20px;
} */

.news_body p {
    position: relative;
    overflow-wrap: break-word;
}

.wizard>.actions .disabled a, .wizard>.actions .disabled a:hover, .wizard>.actions .disabled a:active {
    background: #eee !important;
    color: #aaa !important;
}

.wizard>.actions a, .wizard>.actions a:hover, .wizard>.actions a:active {
    background: #d9232d !important;
    color: #fff !important;
    padding: 0.3em 1em !important;
    font-size: 20px !important;
}

/*Top Banner on View Page*/

.top_part {
    position: relative;
}

div.img-bloc {
    position: relative;
}

.img-bloc {
    background: linear-gradient(0deg, #252424, rgba(99, 93, 96, 0.3)), url("../img/programme_peic.jpg");
    height: 180px;
    margin-bottom: 40px;
    background-position: bottom;
    overflow: hidden;
    background-size: cover;
    background-color: #625152;
    -webkit-transition: height 0.3s ease-in-out;
    -moz-transition: height 0.3s ease-in-out;
    -o-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
}

.top_part .title_part {
    position: absolute;
    top: calc(50% - 44px);
    z-index: 1;
    width: 100%;
}

.top_part .title_part .wrapper {
    clear: both;
    max-width: 900px;
    padding: 0 6%;
    position: relative;
}

.top_part .title_part .cat {
    display: inline-block;
    margin-bottom: 0.2em;
    background: #fff;
    color: #625152;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 700;
    padding: 0.2em 0.5em;
}

.top_part .title_part h1 {
    color: #fff;
    font-size: 40px;
}

section#footer {
    background: #ebe8d9;
    text-align: center;
    z-index: 50;
    position: relative;
    padding-top: 50px;
}

footer.footer .link-container {
    padding: 0 40px;
    text-align: left;
}

footer.footer .link-container::before {
    position: absolute;
    top: 40px;
    height: 67px;
    left: 0;
    width: 1px;
    display: block;
    content: "";
    background: #d2cabf;
}

.footer-seperation-hidden:before {
    display: none !important;
}

footer .link-container h4 {
    font-weight: 900;
    font-size: 20px;
    line-height: 1.2em;
    text-transform: uppercase;
}

footer ul li {
    list-style: none;
}

footer ul li a {
    display: block;
    padding: 0.5em 0;
    color: #30313a;
}

footer ul li a:hover {
    color: #30313a;
    text-decoration: underline;
}

/*social connections*/

footer .socials_connection {
    padding-top: 1em;
    clear: both;
}

footer .socials_connection h3 {
    font-size: 30px;
}

footer .footer_social_list {
    display: inline-block;
    margin: auto;
    padding: 0;
}

footer .footer_social_list li {
    display: inline-block;
    padding: 0.4em;
    border: 1px solid #a9a697;
    border-left: none;
    margin-left: -3px;
}

footer .footer_social_list li:first-child {
    border-left: 1px solid #a9a697;
    margin-left: 0;
}

.socials>a, .socials>li a {
    display: inline-block;
    text-indent: 99999px;
    background-image: url(../img/social_icon.png);
    background-repeat: no-repeat;
    width: 31px;
    height: 31px;
}

footer .socials a {
    background-image: url(../img/social_icon_dark.png);
}

.socials a.facebook {
    background-position: 0 0;
}

.socials a.twitter {
    background-position: -32px 1px;
}

.socials a.youtube {
    background-position: -60px 0;
}

.socials a.linkedin {
    background-position: -89px 1px;
}

.socials a.instagram {
    background-position: -119px 0;
}

.navbar a span.back {
    padding-left: 1em;
    background: url(../img/ico-arw-#d9232d-left.png) no-repeat left;
}

.navbar a.back i {
    color: #d9232d;
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 991px) {
    footer.footer .link-container {
        padding: 0 10px;
    }
    .pr-6 {
        padding-right: 2rem;
    }
}

/*max-width: 767px*/

@media (max-width: 767px) {
    .hidden-xs {
        display: none;
    }
    .wizard>.steps .current a, .wizard>.steps .current a:hover, .wizard>.steps .current a:active {
        font-size: unset !important;
    }
    /*Arabic Sidebar*/
    .sidebar-mini.sidebar-open .main-sidebar.main-sidebar-ar, .sidebar-mini.sidebar-open .left-side {
        transform: translate(0, 0);
    }
    .sidebar-mini .main-sidebar.main-sidebar-ar, .sidebar-mini .left-side {
        transform: translate(315px, 0);
    }
    /*English Sidebar*/
    .sidebar-mini.sidebar-open .main-sidebar.main-sidebar-en {
        transform: translate(0, 0);
    }
    .sidebar-mini .main-sidebar.main-sidebar-en {
        transform: translate(-315px, 0);
    }
    /*Arabic main content*/
    .sidebar-mini.sidebar-open .content-wrapper, .sidebar-mini.sidebar-open .right-side, .sidebar-mini.sidebar-open .main-footer {
        transform: translate(-315px, 0);
    }
    .sidebar-mini .content-wrapper, .sidebar-mini .right-side, .sidebar-mini .main-footer {
        transform: translate(0px, 0);
    }
    /*English main content*/
    .sidebar-mini .content-wrapper.content-wrapper-en {
        transform: translate(0px, 0);
    }
    .sidebar-mini.sidebar-open .content-wrapper.content-wrapper-en {
        transform: translate(315px, 0);
    }
    .content-wrapper.content-wrapper-ar ul.navbar-nav {
        float: unset !important;
    }
    nav.navbar ul.navbar-nav {
        float: unset !important;
    }
    section.section {
        padding-top: 70px;
    }
    @media (max-width: 767px) {
        section.section {
            display: flex !important;
            flex-flow: column !important;
            justify-content: space-between !important;
            padding: 15% 6% 50% 6% !important;
        }
    }
    section.section .owl-carousel {
        margin-top: 30px;
    }
    footer.footer .col-sm-3.col-xs-6 {
        padding-right: 0;
        padding-left: 0;
    }
}

/*max-width: 767px*/

.main-header .navbar {
    margin-left: 0px !important;
}

@media only screen and (min-width: 813px) {
    .hidden-md {
        display: none;
    }
}

/*min-width: 813px*/

@media (min-width: 768px) {
    .sidebar-mini.sidebar-collapse .main-sidebar {
        width: 0px !important;
    }
    .sidebar-mini.sidebar-collapse .main-header .navbar {
        margin-left: 0px;
    }
    .navbar-nav {
        float: left;
        margin: 0 -15px;
    }
}

@media only screen and (max-width: 600px) {}

@media only screen and (max-width: 812px) {
    .navbar-header .navbar-toggle {
        background-color: #fff;
        color: #d9232d;
        margin: 0;
        display: block;
        float: left;
        padding: 13px 13px;
        border: 0;
        border-radius: 0;
    }
    .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
        background-color: #d9232d;
        color: #fff;
    }
    .navbar-header .navbar-toggle i {
        font-size: 32px;
        display: block;
        height: 24px;
        line-height: 24px;
    }
    .news_head h2 {
        font-size: 20px;
        line-height: 30px;
        margin-top: 15px;
    }
    .news_card.custom-padding .news_body {
        margin: 15px 0;
    }
    .news_row {
        display: flex;
        flex-direction: column;
    }
    .img_pro_right {
        width: 125px;
    }
    .img_pro_left {
        width: 95px;
    }
    #section_logo {
        width: 55%;
        margin-bottom: 25px;
    }
    .about-container h1 {
        font-size: 23px;
    }
    section#home_section .video {
        margin-bottom: 50px;
    }
    .scoical_ul div a {
        font-size: 12px;
        font-weight: 700;
        color: #fff;
    }
    .scoical_ul div a i {
        color: #fff;
        font-size: 15px;
    }
    #news_event_one {
        height: 45%;
    }
    .ul_container {
        border-radius: 0;
        background: transparent;
        top: 25%;
        width: 8%;
        left: unset;
        right: 2px;
        height: 45%;
        padding: 10px 0;
        margin: 0 auto;
        line-height: 50px;
        text-align: center;
    }
    .scoical_ul .col-md-2.col-xs-6 {
        width: 100%;
        float: unset;
        text-align: center;
        padding: 0;
    }
    .scoical_ul .col-md-2.col-xs-6 a {
        margin-right: 0;
    }
    .scoical_ul .col-md-2.col-xs-6 a span {
        display: none;
    }
    .news_body {
        margin: 0;
    }
    .dislpay_none_768px {
        display: none;
    }
    .big_card {
        width: 100%;
    }
    .col-height {
        padding: 0;
    }
    .news_head h1 {
        font-size: 20px;
    }
    .col-height {
        height: 100%;
    }
    .about_title h1 {
        font-size: 25px;
        margin-top: 30px;
    }
    .about_title p {
        font-size: 16px;
    }
    .about_title_ar h1 {
        font-size: 25px;
        margin-top: 70px;
    }
    .about_title_ar p {
        font-size: 16px;
    }
    .side_section_news, .side_section_news_ar {
        position: relative;
    }
    .sidebar-menu li a {
        font-size: 16px;
    }
    .form_container {
        margin: 0;
    }
    .form_head {
        margin: 30px 10px;
    }
    .form_head h2 {
        font-size: 20px;
    }
    .wide_project_by {
        margin-top: 10px;
    }
    /* .scoical_ul {
    margin-bottom: 62px !important;
        width: 100%;
        left: 0;
  } */
    .img-container {
        display: block;
        /*padding-top: 34%;*/
    }
    .custome_card_img {
        max-width: 400px;
        height: 180px;
        margin-top: 10px;
    }
    .owl-item {
        width: 375px;
        margin-right: 40px;
        height: 164px;
        display: flex;
        justify-content: center;
        /*margin-top: 4%;*/
    }
    .owl-item img {
        width: auto;
    }
    #sec_row_carosel {
        margin-top: 0;
    }
    .onepage-wrapper .section.last {
        height: 100% !important;
        padding: 20px 0 !important;
    }
    .footer {
        padding: 0px !important;
        text-align: center;
        height: 100%;
    }
    .custom-margin {
        margin: 14px 0;
    }
}

@media only screen and (max-width: 890px) {}

@media only screen and (max-width: 970px) {}

@media only screen and (max-width: 1100px) {}

@media only screen and (max-width: 1200px) {}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.wide_project_by {
    max-height: 70px;
}

.animation_top {
    opacity: 0;
    top: -300px;
    -webkit-transition: top 1.5s;
    -moz-transition: top 1.5s;
    -o-transition: top 1.5s;
    transition: top 1.5s;
}

.animation_right_05s {
    right: -300px;
    -webkit-transition: right 0.5s;
    -moz-transition: right 0.5s;
    -o-transition: right 0.5s;
    transition: right 0.5s;
}

.animation_right_1s {
    right: -300px;
    -webkit-transition: right 1s;
    -moz-transition: right 1s;
    -o-transition: right 1s;
    transition: right 1s;
}

.animation_right_15s {
    right: -300px;
    -webkit-transition: right 1.5s;
    -moz-transition: right 1.5s;
    -o-transition: right 1.5s;
    transition: right 1.5s;
}

.viewing-page-3 .animation_top, .viewing-page-6 .animation_top {
    top: 0;
    opacity: 1;
}

.viewing-page-2 .animation_right_05s, .viewing-page-2 .animation_right_1s, .viewing-page-2 .animation_right_15s {
    right: 0;
}

.wizard>.steps .current a, .wizard>.steps .current a:hover, .wizard>.steps .current a:active {
    background: #d9232d !important;
    font-size: 14px;
    padding: 1em;
}

.wizard>.steps>ul>li {
    width: 33% !important;
}

.wizard>.steps .done a, .wizard>.steps .done a:hover, .wizard>.steps .done a:active {
    background: darkseagreen !important;
}

#registration_from {
    margin-bottom: 40px;
}

#registration_from h3 {
    padding: 15px;
    background: #d4d4d4;
    font-size: 20px;
}

fieldset {
    margin-top: 30px;
}

.back a {
    font-size: 15px !important;
    font-weight: 100 !important;
    color: #000 !important;
}

.back a i {
    color: #d9232d !important;
    /*font-size: 14px;*/
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

li.li-no-hover:hover {
    background: #d9232d !important;
}

.sidebar-menu li.li-no-hover a:hover {
    color: #ffffff !important;
}

@media only screen and (max-width: 1200px) {}

.news_head h3 {
    color: #e1004a;
    margin-top: 10px;
    line-height: 36px;
}

.custome_card p {
    color: #bab5a5;
    font-size: 15px;
    min-height: 66px;
    overflow-wrap: break-word;
    padding: 10px;
}

.onepage-wrapper .section.last {
    height: 300px;
}

.onepage-pagination {
    display: none !important;
}

.footer {
    padding-top: 40px;
}

.footer .logo img {
    max-height: 55px;
    margin: auto;
}

.footer_title {
    font-size: larger;
    font-weight: bolder;
}

.footer_title_ar {
    width: 181px;
    font-size: larger;
    font-weight: bolder;
    text-align: right;
}

.newscontent {
    background-color: #f7f2e3;
    /* height: 100vh; */
}

.mycouroselnav {
    display: none !important;
}

.owl-carousel .owl-item img {
    object-fit: contain !important;
    height: 250px;
}
.contact-us-social{
    display: inline;
}
.contact-us-social li{
    display: inline;
}