/*
 * Root variables
 */
@font-face {
    font-family: 'BalooBhaijaan-Regular';
    src: url('../ar/ar-fonts/BalooBhaijaan-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'BalooBhaijaan2-VariableFont_wght';
    src: url('../ar/ar-fonts/BalooBhaijaan2-VariableFont_wght.ttf') format('truetype');
}
:root {
    /* Colors */
    --primary-color: #40826d; /* Primary brand color */
    --secondary-color: #f0f0f0; /* Secondary color (e.g., light background) */
    --accent-color: #ff4081; /* Accent color (e.g., buttons, highlights) */
    --text-color: #333333; /* Main text color */
    --heading-color: #222222; /* Heading text color */
    --link-color: #1e90ff; /* Color for links */
    --background-color: #ffffff; /* Main background color */
    --border-color: #e0e0e0; /* Border color */
    --footer-background: #2d2d2d; /* Footer background color */
    /* Fonts */
    --font-family-primary: 'Arial', sans-serif; /* Primary font */
    --font-family-secondary: 'Georgia', serif; /* Secondary font */
    --font-size-base: 16px; /* Base font size */
    --font-size-lg: 24px; /* Large font size (headings) */
    --font-size-sm: 14px; /* Small font size (footnotes, captions) */
    /* Spacing */
    --spacing-xs: 8px; /* Extra small spacing */
    --spacing-sm: 16px; /* Small spacing */
    --spacing-md: 24px; /* Medium spacing */
    --spacing-lg: 32px; /* Large spacing */
    --spacing-xl: 40px; /* Extra large spacing */
    /* Layout */
    --max-width: 1200px; /* Maximum width for the main container */
    --container-padding: 20px; /* Padding inside containers */
    --column-gap: 20px; /* Gap between columns */
    --row-gap: 20px; /* Gap between rows */
    /* Shadows */
    --box-shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1); /* Light box shadow */
    --box-shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.15); /* Medium box shadow */
    --box-shadow-heavy: 0 6px 12px rgba(0, 0, 0, 0.2); /* Heavy box shadow */
    /* Breakpoints */
    --breakpoint-xs: 480px; /* Mobile devices */
    --breakpoint-sm: 768px; /* Tablets */
    --breakpoint-md: 1024px; /* Small desktops */
    --breakpoint-lg: 1200px; /* Large desktops */
}


body {
    font-family: "Figtree", serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: #000;
/*    padding: 0 50px;*/
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.container-custom{
    max-width: 1400px;
}
/* Navbar */
header.section.header-main .navbar {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    background: #000;
}
/* Container */
header.section.header-main .container.container-custom {
    justify-content: center;
    padding: 40px 0 30px;
    align-items: center;
}
header.section.header-main .navbar-brand {
    padding: 0;
    margin-right: 70px;
}
header.section.header-main .navbar-brand img {
    max-width: 200px;
}
/* Centered Menu Wrapper */
header.section.header-main .center-nav .navbar-nav {
    margin-top: 20px;
}
header.section.header-main .navbar-nav {
    margin-top: 15px;
}

/* Menu List Items */
header.section.header-main .navbar-nav .nav-item {
    margin: 0 15px;
}
header.section.header-main .navbar-nav.ml-auto .nav-item {
    margin-right: 15px;
    margin-left: 0;
}
header.section.header-main .navbar-nav.ml-auto .nav-item:last-child {
    margin-right: 0;
}

header.section.header-main .navbar-nav .nav-item>.nav-link {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 300;
    font-family: "Figtree", serif;
    margin: 0;
    padding: 15px 0;
    position: relative;
}
header.section.header-main .navbar-nav .nav-item>.nav-link:hover,
header.section.header-main .navbar-nav .nav-item>.nav-link.active{
    color:#f19e38;
}
.dropdown-item.nav-link{
    color: #212529 !important;
    padding: .25rem 1.5rem !important;
}
header.section.header-main .center-nav .navbar-nav .nav-item>.nav-link::before{
    position: absolute;
    bottom: 0px;
    left: -15px;
    height: 3px;
    background-color: #f19e38;
    content: '';
    transition: all 300ms ease;
    width: calc(100% + 30px);
    transform-origin: center;
    transform: scale(0);
}
.dropdown-item{
    margin-bottom: 5px;
}
header.section.header-main .center-nav .navbar-nav .nav-item>.nav-link.active::before{
    transform: scale(1);
}
header.section.header-main .center-nav .navbar-nav .nav-item>.nav-link:hover::before{
    transform: scale(1);
}
header.section.header-main .navbar-nav.ml-auto .nav-item .nav-link img {
    max-width: 30px;
}
.dropdown-menu{
    margin-top: 0 !important;
}
.section {
    width: 100%;
    overflow: hidden;
}
.section-shape{
    position:relative;
}
.section-shape::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 112px;
    height: 100%;
    width: 200px;
    z-index: 1;
    background-image: url('../../images/png/banner-right.html');
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
}
.section-shape::after{
    content: '';
    position:absolute;
    right: -20px;
    bottom: 0;
    height: 100%;
    width: 200px;
    z-index: 1;
    background-image: url('../../images/png/banner-left.html');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}
        
.banner-slider{
    width: 100%;
    overflow: hidden;
}
.slider-main {
    position: relative;
    width: 100%;
  }

  .slider-main .slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
  }
  .slider-main video {
    width: 100%;
    max-height: 100vh;
    position: relative;
    object-fit: cover;
}
  .slider-main .slick-slide::after {
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    content: '';
  }

  .slider-main .content {
    z-index: 1;
    text-align: left;
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider-main .heading {
    font-size: 92px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: left;
    margin-top: 90px;
}
.slider-main .btn {
    background-color: transparent;
    border: 1px solid #ef9d39;
    font-size: 20px;
    color: #fff;
    padding: 8px 40px;
    border-radius: 10px;
    margin-top: 20px;
}
.slider-main .btn:hover {
    background-color: #ef9d39;
}
.slider-main .btn:hover {
    background-color: #ef9d39;
}
.slider-main .slick-dots {
    bottom: 15px;
}
.slider-main .slick-dots li {
    width: auto;
    height: auto;
}
.slider-main .slick-dots li button {
    width: 15px;
    height: 15px;
    font-size: 0px;
    border-radius: 50px;
    background-color: #eab16b;
}
.slider-main .slick-dots li.slick-active button {
    width: 15px;
    height: 15px;
    font-size: 0px;
    border-radius: 50px;
    background-color: #ef9d39;
}
.slider-main .slick-dots li button::before {
    display: none;
}
.banner-slider .full-width-section{
    position:absolute;
    bottom: 60px;
}


/**
 * about page
*/

.section-about {
    border-radius: 8px;
    background-color: #000;
    padding: 80px 0 40px;
    border: none;
    background-image: url('../../images/jpg/about.jpg');
    background-size: cover;
    background-position: center;
}
.section-about .full-width-section{
    margin: 60px 0 0;
}

/* Paragraph scroll styling */
.scrollable-paragraph {
    max-height: 300px;
    min-height: 275px;
    overflow-y: auto;
    padding-right: 10px;
    direction: rtl;
    padding-left: 30px;
    position: relative;
    left: -30px;
}
.scrollable-paragraph > * {
    direction: ltr; 
}

/* Custom scrollbar styling */
.scrollable-paragraph::-webkit-scrollbar {
    width: 4px;
}

.scrollable-paragraph::-webkit-scrollbar-thumb {
    background-color: #ef9d39;
    border-radius: 3px;
}

.scrollable-paragraph::-webkit-scrollbar-thumb:hover {
    background-color: #ef9d39;
}

.scrollable-paragraph::-webkit-scrollbar-track {
    background-color: #cccccc;
    border-radius: 2px; 
    width: 2px; 
}
.section-about .box {
    height: 100%;
    width: 100%;
    background: #ef9d39;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.section-about .box h3 {
    font-size: 50px;
    font-weight: 900;
}
.section-about .box p {
    margin: 0;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 800;
}
.section h2 {
    font-size: 70px;
    font-weight: 800;
    color: #ef9d39;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom:15px;
}
.section-about .scrollable-paragraph p {
    font-size: 16px;
    color: #fff;
    line-height: 120%;
    font-weight: 300;
}

/*
 * valeus section
*/
.section-values {
    padding: 80px 0 40px;
    position: relative;
    background-image: url('../../images/jpg/values.jpg');
    background-size: cover;
    background-position: center;
}
.section-values .full-width-section{
    margin: 40px 0 0;
}
.section-values::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 160px;
    z-index: 1;
    background-image: url('../../images/shape-right.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}
.section-values h2 {
    margin-bottom: 50px;
}
.section-values .scroll-list{
    
}
.section-values .scroll-list li {
    margin: 3px 0;
    position: relative;
}
.section-values .scroll-list li a{
    position: relative;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    line-height: 100%;
}
.section-values .scroll-list li a::before {
    content: '';
    left: -26px;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background-color: #ef9d39;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.section-values .scroll-list li .collapse-content {
    display: none;
    padding: 10px 0;
    margin-top: 10px;
}
.section-values .scroll-list li .collapse-content p{
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    line-height: 120%;
}

/*
 * services section
*/

.section-services{
    padding: 60px 0 30px;
}
.section-services .full-width-section{
    margin: 20px 0 0;
}
.section-services h2{
    padding:0 0 35px;
}
.section-services .service-slider {
    margin: 10px auto;
    width: 100%;
}
/* Individual slide */
.section-services .slide {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
/* Slide image */
.section-services .slide a {
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.section-services .slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    transform: scale(1.1);
}
.section-services .slide:hover img {
    transform: scale(1.2); /* Zoom effect on hover */
}
.section-services.section-team .slide:hover img {
    transform: scale(1); /* Zoom effect on hover */
}
/* Overlay text */
.section-services .overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    transition: color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 40px;
}
.section-services .slide:hover .overlay-text {
    color: #ef9d39; /* Text color changes to gold on hover */
}
/* Slick arrows customization */
.section-services .slick-prev, .section-services .slick-next {
    z-index: 10;
    color: #333;
}
.section-services .slick-prev:hover, .section-services .slick-next:hover {
    color: #000;
}

/**
 * Projects section
*/

.section-projects{
    padding: 40px 0;
    background-image: url('../../images/jpg/projects.jpg');
    background-size: cover;
    background-position: center;
}
.section-projects h2{
    margin-bottom: 20px;
}
.section-projects table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 16px;
    text-align: left;
}
.section-projects th {
    padding: 12px 15px;
    border: none;
    position: sticky;
    top: 0; /* Sticks to the top of the scrollable div */
    z-index: 2;
}
.section-projects tbody tr:first-child td{
    padding-top: 20px;
}
.section-projects td {
    padding: 2px 15px;
    border: none;
    font-size: 14px;
    font-weight: 300;
}
.section-projects th {
    background-color: #ef9d39;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
}
.section-projects tr {
    color: #fff;
}
.section-projects tr:hover {
    color: #ef9d39;
    cursor: pointer;
}
.section-projects tr:hover td {
    color: #ef9d39;
}
.section-projects tr td:last-child {
    text-align: right;
}

/**
 * Full width section
*/
.full-width-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 50px;
    color: white;
    padding: 0 80px;
    box-sizing: border-box;
}

  /* Language links */
  .language-switcher {
    display: flex;
    gap: 9px;
    margin-right: 20%;
}
    .language-switcher a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
        font-weight: 200;
        position: relative;
        display: block;
        padding-right: 3px;
        margin-right: 5px;
        font-family: 'BalooBhaijaan2-VariableFont_wght';
    }
.language-switcher p{
   margin-bottom: 0;
}
.language-switcher a:first-child:after {
    content: '/';
    position: absolute;
    right: -7px;
}
.language-switcher a:hover,
.language-switcher a.active {
    color: #ef9d39;
}
.scroll-down {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}
.scroll-down img {
    width: 40px;
    margin-right: 8px;
    transition: transform 0.3s ease;
}
.scroll-down:hover img {
    transform: translateY(3px); /* Arrow bounces slightly down */
}
.scroll-down span {
    color: white;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 100%;
    font-size: 15px;
    margin-left: 15px;
}

.section-empty .full-width-section{
    margin: 25px 0 ;
}

/* 
* Awards Section
*/
.section-acheivements {
    padding: 60px 0; /* Adjust padding as needed */
    background-color: #fff; /* Light background color */
    position: relative;
}
/* Slick slider container */
.section-acheivements .acheive-slider {
    position: static;
}
 /* Individual slides */
.section-acheivements .acheive-slider .slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-acheivements .acheive-slider .slide img {
    max-width: 70%;
    border-radius: 0;
    cursor: pointer;
    margin: 0 auto;
}
/* Custom arrows */
.section-acheivements .slick-prev, .section-acheivements .slick-next {
    font-size: 0;
    background: transparent;
    border: none;
    color: transparent;
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}
.section-acheivements .slick-btn img,
.section-acheivements .slick-btn::before{
    display: none;
}
.section-acheivements .slick-prev {
    left: 30px; /* Adjust position of left arrow */
    background-image: url('../../images/png/left.png'); /* Custom left arrow */
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px; /* Adjust size */
    height: 50px; /* Adjust size */
}
.section-acheivements .slick-next {
    right: 30px; /* Adjust position of right arrow */
    background-image: url('../../images/png/right.png'); /* Custom right arrow */
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px; /* Adjust size */
    height: 50px; /* Adjust size */
}
  /* Hide dots */
.section-acheivements .slick-dots {
    display: none;
}
.section-acheivements .scroll-down span{
    color:#000;
    font-size: 17px;
}
.section-acheivements .language-switcher a{
    color: #000;
    font-size: 17px;
}
.section-acheivements .language-switcher a.active{
    color: #ef9d39;
}
.section-acheivements .nav-tabs {
    justify-content: center;
    margin-bottom: 40px;
    border: none;
}
.section-acheivements .nav-tabs li{
    border: none;
    position:relative;
}
.section-acheivements .nav-tabs li:after {
    content: '/';
    position: absolute;
    right: -4px;
    top: 1px;
}
.section-acheivements .nav-tabs li:last-child::after {
    display: none;
}
.section-acheivements .nav-tabs li a {
    border: none;
    text-transform: uppercase;
    font-size: 18px;
    background-color: transparent !important;
    color:#000;
    padding: 0 10px;
}
.section-acheivements .nav-tabs li a.active {
    color: #ef9e39;
}

/**
 * Ceo message section
*/
.section-ceo {
    background-image: url('../../images/jpg/ceo.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 100px;
}
.section-ceo h2{
    
}
.section-ceo p {
    font-size: 16px;
    color: #fff;
    line-height: 23px;
    font-weight: 300;
    width: 80%;
}
.section-ceo h5 {
    color: #ef9d39;
    font-size: 19px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 0px;
}
.section-ceo small{
    font-style: italic;
    color:#fff;
    margin-left: 20px;
    margin-bottom: 25px;
}
.section-ceo .full-width-section{
    margin-bottom: 40px;
}

/**
 * Team section
*/

.section-team {
    padding: 80px 0;
    background-image: url('../../images/jpg/bg_sauditeam.jpg');
    background-position: center;
    background-size: cover;
    
}
.section-team .slide a{
    text-decoration: none;
    width: 80%;
    padding:0px;
    margin:0px;
}
.section-team .slide a img{
    transform: scale(1);
}
.section-team .slide a:hover img{
    transform: scale(1);
}
.section-team .slide a h3 {
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
    font-weight: 800;
    color: #ef9e39;
    margin-bottom: 5px;
}
.section-team .slide a p {
    margin: 0;
    text-align: center;
    color: #fff;
    font-weight: 200;
    font-style: italic;
}
.section-team .full-width-section{
    margin-top: 30px;
}

/**
 * Section success
*/

.section-success {
    background: #fff;
    padding: 50px 0 80px;
    text-align: center;
    border-top: 30px solid #ef9e39;
}
.section-success h1 {
    font-size: 80px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 auto 80px;
    border-bottom: 5px solid #ef9e39;
    display: table;
    padding-bottom: 5px;
}
.section-success .logo-slider{
    
}
.section-success .logo-slider .slick-track{
    display: flex;
}
.section-success .slide {
    padding: 0 0;
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-success .slide img {
    width: auto;
    height: auto;
    padding: 0 30px;
    max-width: 100%;
}
.section-success .slick-btn{
    height: auto;
    width: auto;
}
.section-success .slick-btn img{
    width: 40px;
}
.section-success .slick-btn::before{
    display: none;
}
.section-success .slick-prev{
    left: -80px;
}
.section-success .slick-next{
    right: -80px;
}

/**
 * Section form
*/
.section-form {
    padding: 80px 0;
    background-image: url('../../images/jpg/bg_sendusmessage.jpg');
    background-position: center;
    background-size: cover;
    
}
.section-form p {
    font-size: 16px;
    color: #fff;
    line-height: 23px;
    font-weight: 300;
    width: 80%;
}
.section-form .form-container {
    background: transparent;
    padding: 0;
    border-radius: 8px;
    box-shadow: none;
    max-width: 70%;
    width: 100%;
    margin-top: 40px;
}
  .section-form .form-group {
    margin-bottom: 18px;
  }

  .section-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
  }

  .section-form input, .section-form textarea {
    width: 75%;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 15px;
    font-size: 16px;
    box-sizing: border-box;
    font-style: italic;
}
.section-form textarea {
    resize: none;
    height: 100px;
    width: 100%;
    border-radius: 25px;
}

/* Custom file upload */
.section-form .file-upload {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 75%;
    padding: 10px 20px;
    border: none;
    border-radius: 15px;
    background: #f9f9f9;
    color: #888;
    cursor: pointer;
    transition: none;
}
  .section-form .file-upload:hover {
    background: #f0f0f0;
    color: #333;
  }

  .section-form .file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
  }
  .section-form .file-upload-text {
    text-align: center;
    font-size: 16px;
    font-style: italic;
}

  /* Submit button */
  .section-form .btn-submit {
    width: auto;
    padding: 8px 16px;
    font-size: 16px;
    color: #000;
    background-color: #f19e38;
    border: none;
    border-radius: 26px;
    cursor: pointer;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 700;
}
  .section-form .btn-submit:hover {
    background-color: #36695a;
  }
  .section-form .btn-holder {
    display: flex;
    align-items: center;
}
  .section-form .btn-holder img {
    width: 40px;
    margin-right: 15px;
}
.section-form .box p {
    color: #000;
}
.section-form .box {
    padding: 40px 30px;
}
.section-form-2 .form-container {
    max-width: 90%;
}
.section-form-2 input {
    width: 55%;
}
.section-form-2 textarea {
    height: 130px;
}

/*service details area*/
.service_details_area{
    background-color: #fff;
    padding: 200px 0 80px;
    overflow: hidden;
}
.service_details_area .container>img{
    margin: 30px -30px;
    width: calc(100% + 60px);
}
.service_details_area p{
    margin-top: 30px;
}
.service_details_area h5{
    font-weight: 700;
}
.service_details_area ul{
    column-count: 4;
    margin: 30px 0 0;
    font-weight: 700;
    font-size: 18px;
    padding: 0;
    list-style: none;
}
.service_details_area ul li{
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
}
.service_details_area ul li::before{
    position: absolute;
    content: '';
    left: 0;
    top: 6px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: #ef9d39;
}

/*media pages*/
.blog_card h6{
    font-weight: 700;
    margin-top: 25px;
}
.blog_card p{
    margin-top: 15px;
    margin-bottom: 0;
}

/**
 * Footer main
*/

.footer-main {
    background-color: #000;
    padding: 70px 0 0;
    border-top: 30px solid #ef9d39;
}
  /* Left Column (9 cols) */
  .footer-main .footer-left {
    
  }
  .footer-main .footer-left h2 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #ef9d39;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding-bottom: 4px;
    border-bottom: 1px solid #ef9d396e;
}

  .footer-main .footer-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
  }
  .footer-main .footer-left ul li {
    flex: 0 0 50%;
    margin-bottom: 4px;
}
.footer-main .footer-left ul li.socials{
    display: flex;
}
.footer-main .footer-left ul li.socials a{
    margin-right: 10px;
}
.footer-main .footer-left ul li.socials a:last-child{
    margin-right: 0;
}
.footer-main .footer-left ul li.socials img{
    width: 30px;
}

.footer-main .footer-left ul li a {
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    line-height: 100%;
}

  .footer-main .footer-left ul li a:hover {
    color: #ef9d39;
  }

  /* Right Column (3 cols) */
  .footer-main .footer-right {
    text-align: right;
  }  
  .footer-main .footer-right a{
    display: table;
    margin-left: auto;
    margin-top: 50px;
  }
  .footer-main .footer-right a img {
    width: 330px;
    display: inline-block;
    cursor: pointer;
    position: relative;
    right: -50px;
}
  .footer-main .footer-right a img:hover {
    
  }
  .copyright p {
    color: #fff;
    margin: 30px 0 40px;
    font-size: 12px;
}