/* font  */

@font-face {
    font-family: GulfBold;
    src: url('../vendor/font/GulfBold.ttf');
}

@font-face {
    font-family: GulfMedium ;
    src: url('../vendor/font/GulfMedium.ttf');
}

@font-face {
    font-family: GulfSemiBold;
    src: url('../vendor/font/GulfSemiBold.ttf');
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    /* font-family: "Open Sans", sans-serif; */
    font-family: GulfMedium;
    color: #444444;
}

a {
    color: #d0a14f;
    text-decoration: none;
}

a:hover {
    color: #ffd584;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: GulfBold;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #d0a14f;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #151515;
    line-height: 0;
}

.back-to-top:hover {
    background: #151515;
}

.back-to-top:hover i {
    color: #d0a14f;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    /* top: calc(50% - 0px);
    left: calc(50% - 30px);
    border: 6px solid #d0a14f;
    border-top-color: #151515;
    border-bottom-color: #151515;
    border-radius: 50%; */
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
}

#header.header-scrolled, #header.header-inner-pages {
    background: rgba(0, 0, 0, 0.8);
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo a {
    color: #fff;
}

#header .logo a span {
    color: #d0a14f;
}

/*#header .logo img {*/
/*  max-height: 80px;*/
/*}*/
#header .logo img {
    max-height: 80px;
    width: 100%;
    max-width: 300px !important;
    height: auto;
    margin-left: 15px;
}

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
    color: #fff;
    border-radius: 4px;
    padding: 7px 25px 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    border: 2px solid #d0a14f;
}

.get-started-btn:hover {
    background: #ffbb38;
    color: #343a40;
}

@media (max-width: 992px) {
    .get-started-btn {
        padding: 7px 20px 8px 20px;
        margin-right: 15px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 10px 0 10px 30px; */
    padding: 33px 0 33px 143px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

a.nav-link.scrollto.active:before {
    content: "";
    background-color: #d0a14f;
    padding: 3px;
    position: relative;
    top: 23px;
    left: 29px;
    border-radius: 100px;
}

.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #d0a14f;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #151515;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    background-color: #d0a14f;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #151515;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #151515;
    background-color: #d0a14f;
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
    color: #151515;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    background-color: #d0a14f;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* vid start */
@media (max-width: 768px) {
    video {
        object-fit: cover;
        width: 100vw;
        height: 38vh;
        position: absolute;
        top: 0;
        left: 0;
    }

    .vid-overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: black;
        opacity: 0.5;
        z-index: 1;
    }
}

video {
    object-fit: cover;
    width: 130vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

.vid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 1;
}

/* vid end  */
.hero-btn {
    background: #d0a14f;
    border: 0;
    padding: 10px 24px;
    color: #07213a;
    transition: 0.4s;
    border-radius: 100px;
    /* color: white; */
    font-size: 20px;
    /* line-height: 67px; */
    color: #ffffff;
    font-weight: bold;
    /* font-family: "Gulf"; */
    text-align: center;
    width: 425px;
    margin-top: 22px;
    height: 80px;
}

.hero-btn:hover {
    background-color: #07213A;
}

#hero {
    width: 100%;
    height: 100vh;
    background: url('../img/bg-efada.mp4') top center;
    background-size: cover;
    position: relative;
}

#hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background-color: black;
    opacity: 0.5;
}

#hero .container {
    position: relative;
    padding-top: 74px;
    text-align: center;
    z-index: 11;
}

#hero h1 {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    color: #fff;
    padding-bottom: 35px;
}

.hero-btn img {
    width: 20px !important;
    margin-left: 24px;
}

/* #hero h1 span {
  color: #d0a14f;
} */
#hero h1 span {
    color: #d0a14f;
    font-size: 76px;
    font-weight: 800;
    /* line-height: 144px !important; */
    font-family: GulfBold !important;
    padding-bottom: 25px;
}

/* #hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
} */
#hero h2 {
    color: white;
    margin: -93px 0 0 0;
    font-size: 55px;
    font-weight: 700;
    line-height: 119px;
    padding-bottom: 25px;
}

h3.hero3 {
    font-size: 45px;
    color: white;
}

#hero .icon-box {
    padding: 30px 20px;
    transition: ease-in-out 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
    text-align: center;
}

#hero .icon-box i {
    font-size: 32px;
    line-height: 1;
    color: #d0a14f;
}

#hero .icon-box h3 {
    font-weight: 700;
    margin: 10px 0 0 0;
    padding: 0;
    line-height: 1;
    font-size: 20px;
    line-height: 26px;
}

#hero .icon-box h3 a {
    color: #fff;
    transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
    color: #d0a14f;
}

#hero .icon-box:hover {
    border-color: #d0a14f;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 480px) {
    #hero {
        height: auto;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 36px;
        padding-bottom: 0px !important;
    }

    /*#hero h2 {*/
    /*  font-size: 20px;*/
    /*  line-height: 24px;*/
    /*}*/
    #hero h2 {
        font-size: 17px;
        line-height: 69px;
        padding-bottom: 59px !important;
        margin-top: -122px;
    }

    h3.hero3 {
        font-size: 30px;
        color: white;
        margin-top: -60px;
    }

    .hero-btn {
        width: 368px;
        margin-top: 22px;
    }

    .card.about-new-card.p-4 {
        border: none;
        width: 190px !important;
        border: 10px solid #f9f9f9;
        height: 201px;
        /* padding: 0px; */
    }

    .abt-new {
        margin-right: 23px;
    }
}

/* about start */
/*.card.about-new-card.p-4 {*/
/*  border: none;*/
/*}*/
.card.about-new-card.p-4 {
    border: none;
    width: 201px;

    border: 10px solid #f9f9f9;
    height: 201px;
}

.caimg {
    margin-top: 20px;
}

.caimg h6 {
    font-size: 20px;
    margin-top: 10px;
}

.abt-new img {
    /*width: 40px;*/
    width: 55px;
    padding-bottom: 15px;
}

#about {
    background-color: #F9F9F9 !important;
}

/* .about-img {
  border-radius: 50px;
  height: 531px;
  width: 498px;
  box-shadow: 10px 0px 0px 6px #e0e3e6;
} */

/* about end  */

/* services section  */

/* .icon i:hover {
  transform: rotate(45deg);
} */

#offer .icon-box:hover i {
    color: #d0a14f;
    transform: rotate(45deg);
}

#offer .icon-box:hover a {
    color: #d0a14f;
}

/* end */
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 90px 0;
    overflow: hidden;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    /* font-size: 35px;
    font-weight: 800;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d0a14f;
    font-family: "Poppins", sans-serif; */
    font-size: 25px;
    line-height: 50px;
    color: #d0a14f;
    font-weight: bold;
    text-align: center;
}

/* .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
} */
.section-title p {
    /* margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #07213a; */
    font-size: 45px;
    /* line-height: 315px; */
    color: #07213a;
    font-weight: bold;
    text-align: center;
}

.t1 {
    color: #d0a14f;
}

.t2 {
    color: #07213A;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.btn.btn-hover:hover {
    color: #fff;
    background-position: 90%;
    background-color: #07213A !important;

}

#about .content {
    margin-top: 100px !important;
}

#about h4 {
    text-align: right;
    font-size: 30px !important;
    padding-bottom: 10px;
    font-family: GulfMedium !important;
    color: #4a4a4a !important;
}

#about h4 span {
    font-size: 33px !important;
    /* font-size: 33px; */
    line-height: 55px;
    color: #4a4a4a;
    font-weight: 500;
}

#about h3 {
    text-align: right;
    font-size: 36px !important;
}

#about .btn {
    float: right;
    padding: 15px 50px 15px 50px;
    background-color: #d0a14f;
    border: none;
    margin-top: 40px;
    color: white;
    font-weight: 700;
    width: 350px;
    height: 75px;
    font-size: 20px;
    font-family: GulfBold !important;

}

#about {
    width: 100%;
    /* height: 100vh; */
    background: url('../img/Home.png') bottom center;
    background-size: cover;
    position: relative;
}

#about h5 {
    font-size: 45px;
    line-height: 105px;
    color: #d0a14f;
    font-weight: bold;
    /* font-family: "Gulf"; */
    text-align: right;
}

.about h3 span {
    font-weight: 700;
    font-size: 45px !important;
    font-family: GulfBold;
    line-height: 105px !important;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 0 0 8px 26px;
    position: relative;
}

.about .content ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: #d0a14f;
}

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding-top: 20px;
}

.clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
}

.clients .swiper-slide img:hover {
    filter: none;
    opacity: 1;
}

.clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #d0a14f;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features h4 {
    font-size: 45px;
    line-height: 120px;
    color: #d0a14f;
    font-weight: bold;

    text-align: right;
}

.features h5 {

    font-size: 25px;
    line-height: 55px;
    color: #07213a;
    font-weight: bold;

    text-align: right;
}

.features p {

    font-size: 24px;
    line-height: 45px;
    color: #4a4a4a;
    font-weight: 500;

    text-align: right;
}

.icon-img img {
    padding: 19px;
    /* padding-left: 8px; */
    background-color: #f5f5f5;
    margin-top: 8px;
    border-radius: 5px;
    width: 90%;
}

.features {
    padding-top: 60px;
}

.features .icon-box {
    padding-left: 15px;
}

/* .features .icon-box h4 {
  font-size: 27px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
  text-align: right;
} */
.features .icon-box h4 {

    font-size: 25px;
    line-height: 34px;
    color: #000000;
    font-weight: bold;

    text-align: right;
}

.features .icon-box h5 {
    font-size: 25px;
    font-weight: 500;
    margin: 5px 0 10px 60px;
    text-align: right;
}

.features .icon-box i {
    font-size: 50px;
    float: right;
    color: #d0a14f;
    padding-left: 18px;
}

.image img {
    width: 100%;
    margin-top: 150px;
}

/* .features .icon-box p {
  font-size: 16px;
  color: #848484;
  margin-left: 60px;
  text-align: right;
} */
.features .icon-box p {

    font-size: 20px;
    line-height: 40px;
    color: #4a4a4a;
    font-weight: 500;

    text-align: right;
}

.features .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/*.services .icon-box {*/
/*  text-align: center;*/
/* border: 1px solid #ebebeb; */
/*  padding: 80px 20px;*/
/*  transition: all ease-in-out 0.3s;*/
/*  background: #fff;*/
/*  width:325px;*/
/*  height:565px;*/
/*  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);*/
/*}*/
.services .icon-box {
    text-align: center;
    /* border: 1px solid #ebebeb; */
    padding: 35px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    width: 313px;
    height: 511px;
    box-shadow: 0px 0 25px 0 rgb(0 0 0 / 10%);
    border-radius: 5px;
}

.servinner p {
    font-size: 18px !important;
}

.services .icon-box .icon {
    margin: 0 auto;
    /*width: 64px;*/
    /*height: 64px;*/
    width: 114px;
    height: 114px;
    background: #d0a14f;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
    border-radius: 100px;
}

.services .icon-box .icon i {
    color: #07213a;
    font-size: 28px;
    transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

.services .icon-box h4 a {
    /* color: #07213a; */
    transition: ease-in-out 0.3s;
    font-size: 20px;
    color: #000000;
    font-weight: bold;
    text-align: center;
}

.services .icon-box h4 a:hover {
    color: #d0a14f;
}

.services .icon-box p {
    /* line-height: 33px;
    font-size: 18px;
    margin-bottom: 0; */
    font-size: 20px;
    line-height: 45px;
    color: #4a4a4a;
    font-weight: 500;
    font-family: GulfMedium;
    text-align: center;
}

/*.services .icon-box:hover {*/
/*  border-color: #fff;*/
/*  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);*/
/*  transform: translateY(-10px);*/
/*  border-radius: 10px;*/
/*}*/

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.counter {
    margin-top: -50px;
    padding: 30px 0px 30px 0px;
}

#cta h2 {
    text-align: right;
    font-size: 30px;
    font-weight: 700;
}

#cta p {
    /* color: white;
    font-size: 25px;
    font-weight: 600; */
    font-size: 22px;
    line-height: 67px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    font-family: GulfBold;
}

#cta span {
    font-size: 45px;
    letter-spacing: 5px;
    line-height: 82px;
    color: #d0a14f;
    font-weight: bold;
    font-family: Poppins;
    text-align: right;

}

.cta {
    background: url(../img/cta.png);
    background-size: auto;
    padding: 90px 0;
    background-position: bottom;
    background-color: #07213a;

}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: GulfMedium;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #d0a14f;
    border-color: #d0a14f;
    color: #151515;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
    color: #151515;
    background: #d0a14f;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(21, 21, 21, 0.6);
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(21, 21, 21, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap img {
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 5px 0 0;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #d0a14f;
}

.portfolio .portfolio-wrap:hover::before {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
    transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #d0a14f;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #d0a14f;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .content {
    padding: 30px 0;
}

.counts .content h3 {
    font-weight: 700;
    font-size: 34px;
    color: #151515;
}

.counts .content p {
    margin-bottom: 0;
}

.counts .content .count-box {
    padding: 20px 0;
    width: 100%;
}

.counts .content .count-box i {
    display: block;
    font-size: 36px;
    color: #d0a14f;
    float: left;
}

.counts .content .count-box span {
    font-size: 36px;
    line-height: 30px;
    display: block;
    font-weight: 700;
    color: #151515;
    margin-left: 50px;
}

.counts .content .count-box p {
    padding: 15px 0 0 0;
    margin: 0 0 0 50px;
    font-family: GulfMedium;
    font-size: 14px;
    color: #3b3b3b;
}

.counts .content .count-box a {
    font-weight: 600;
    display: block;
    margin-top: 20px;
    color: #3b3b3b;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
    color: #626262;
}

.counts .image {
    background: url("../img/counts-img.jpg") center center no-repeat;
    background-size: cover;
    min-height: 400px;
}

@media (max-width: 991px) {
    .counts .image {
        text-align: center;
    }

    .counts .image img {
        max-width: 80%;
    }
}

@media (max-width: 667px) {
    .counts .image img {
        max-width: 100%;
    }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    background: url("../img/testimonials-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
    color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #ddd;
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.6);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    color: #eee;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #d0a14f;
    opacity: 1;
}

@media (min-width: 1024px) {
    .testimonials {
        background-attachment: fixed;
    }
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.teamh {
    font-size: 45px !important;
}

/*p.tbox-p {*/
/*    line-height: 35px !important;*/
/*}*/
p.tbox-p {
    line-height: 35px !important;
    font-size: 16px !important;
}

.team-p {
    color: #07213a !important;
}

.team {
    background: #fff;
    padding: 60px 0;
}

.team .member {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
    position: relative;
    overflow: hidden;
}

.team .member .social {
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
}

.team .member .social a {
    transition: color 0.3s;
    color: #151515;
    margin: 0 3px;
    border-radius: 4px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.8);
    transition: ease-in-out 0.3s;
    color: #484848;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.team .member .social a:hover {
    color: #151515;
    background: #d0a14f;
}

.team .member .social i {
    font-size: 18px;
    line-height: 0;
}

.team .member .member-info {
    padding: 25px 15px;
}

.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #151515;
}

.team .member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
}

.team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #777777;
}

.team .member:hover .social {
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# blog
--------------------------------------------------------------*/
.head {
    /* font-size: 25px; */
    padding-top: 50px;
    font-size: 30px;
    line-height: 60px;
    color: #d0a14f;
    font-weight: bold;
    /* font-family: "Gulf"; */
    text-align: center;
    margin-top: -55px;
}

/* .mid {
  font-size: 20px;
  font-weight: 800;
  padding-bottom: 12px;
  padding-top: 12px;
} */
.mid {
    /* font-size: 20px; */
    /* font-weight: 800; */
    /* padding-bottom: 12px; */
    /* padding-top: 12px; */
    /* width: 784px; */
    /* height: 1568px; */
    font-size: 25px !important;
    line-height: 55px !important;
    color: #07213a;
    font-weight: bold;
    /* font-family: "Gulf"; */
    text-align: center;
    padding: 20px !important;
}

.bottom {
    /* padding-bottom: 12px;
    font-size: 18px; */


    font-size: 25px !important;
    line-height: 55px !important;
    color: #6d6f71 !important;
    font-weight: bold;
    /* font-family: "Gulf"; */
    text-align: center;

}

/* .rounded.formbtn {
  border-radius: 100px !important;
  padding: 15px 100px 15px 100px;
  margin-bottom: 20px;
  background-color: #dee2e6;
  color: #07213a;
  font-size: 16px;
  font-weight: 100;
} */
.rounded.formbtn {
    /* border-radius: 100px !important; */
    /* padding: 15px 100px 15px 100px; */
    /* margin-bottom: 20px; */
    background-color: #dee2e6;
    color: #07213a;
    font-size: 16px;
    font-weight: 100;
    font-size: 20px;
    /* line-height: 67px; */
    color: #07213a;
    font-weight: bold;
    /* font-family: "Gulf"; */
    text-align: center;
}

span.closetext {
    font-size: 14px;
    margin-left: 65px;
    /* margin-top: -10px !important; */
    position: relative;
    top: -31px;
    padding-left: 16px;
}

.modal-body label {
    float: right;
    font-size: 14px !important;
}

.done-img {
    width: 20%;
}

.b-2 {
    background-color: #f9f8f9;
    border-radius: 5px;
    color: #07213A;
}

.formbtn {
    background: #d0a14f;
    border: 0;
    color: #07213a;
    transition: 0.4s;
    border-radius: 100px !important;
    padding: 15px 100px 15px 100px;
    margin-bottom: 20px;
    color: white;
    height: 80px;
    font-size: 20px;
    /* line-height: 67px; */
    color: #ffffff;
    font-weight: bold;
    /* font-family: "Gulf"; */
    text-align: center;
    width: 425px;
    margin-top: 30px;
}

/* .b-2 button {
  background: #d0a14f;
  border: 0;
  padding: 10px 24px;
  color: #07213a;
  transition: 0.4s;
  border-radius: 4px;
  color: white;
} */
.b-2 button {
    background: #d0a14f;
    border: 0;
    padding: 10px 24px;
    color: #07213a;
    transition: 0.4s;
    border-radius: 4px;
    /* color: white; */
    font-size: 20px;
    /* line-height: 67px; */
    color: #ffffff;
    font-weight: bold;
    /* font-family: "Gulf"; */
    text-align: center;
    width: 267px;
    height: 60px;

}

.b-2:hover button {
    background: #07213a;

    color: white;
}

.b-2 h4 {
    font-size: 25px;
    color: #07213a;
    font-weight: bold;
    padding-bottom: 15px;
    padding-top: 15px;
    text-align: center;
}

.bbg img {
    padding: 10px;
    width: 100%;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.modal-body h5 {
    font-size: 30px;
    line-height: 60px;
    color: #d0a14f;
    font-weight: bold;
    text-align: center;
}

.modal-body p {
    font-size: 25px;
    line-height: 15px;
    color: #07213a;
    font-weight: bold;


    padding-bottom: 20px;
}

.close-btn {
    width: 60%;
}

.cta-head {
    margin-top: -70px;
    margin-right: 0;
    margin-left: 28px;
    width: 800px;
}

.modal-content {

    border-radius: 20px;
}

@media only screen and (max-width: 600px) {
    #about {
        width: 100%;
        height: 125vh;
        background: url(../img/Home.png) bottom center;
        background-size: cover;
        position: relative;
        /* padding-bottom: 60px !important; */
    }

    .msocialcta {
        background: url(../img/Stay-informed.png);
        background-size: cover;
        padding: 0 !important;
        background-position: bottom;
        /* width: 100%; */
        background-repeat: no-repeat;
    }

    .socialcta h2 {
        text-align: right;
        margin-right: 0px !important;
        /* margin-top: 12px; */
        position: relative;
        /*top: 0px !important;*/
    }

    .socialcta h3 {
        text-align: right;
        margin-right: 0px !important;
        /* margin-top: 12px; */
        position: relative;
        top: 30px !important;
    }

    .socialcta h2 {
        top: 70px !important;
    }

    .socialcta .social-links.mt-3 {
        text-align: right;
        margin-right: 0px !important;
        /* margin-top: 12px; */
        position: relative;
        top: 40px !important;
    }

    .socialcta {
        background: none !important;
        background-size: contain;
        padding: 272px 0;
        background-position: bottom;
        width: 100%;
        background-repeat: no-repeat;
    }
}

.socialcta {
    background: url(../img/Stay-informed.png);
    background-size: contain;
    padding: 250px 0;
    background-position: bottom;
    width: 100%;
    background-repeat: no-repeat;
}

/* .socialcta .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #07213a;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 100px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
} */
.socialcta .social-links a {
    font-size: 27px;
    display: inline-block;
    background: #07213a;
    color: #fff;
    /* line-height: 1; */
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 100px;
    text-align: center;
    width: 51px;
    height: 51px;
    transition: 0.3s;
}

/* .socialcta h2 {
  text-align: right;
  margin-right: 80px;

  position: relative;
  top: 80px;
} */
.socialcta h2 {
    text-align: right;
    margin-right: 80px;
    /* margin-top: 12px; */
    position: relative;
    top: 100px;
    line-height: 90px;
    font-size: 45px;
}

/* .socialcta h3 {
  text-align: right;
  margin-right: 80px;
  margin-top: 12px;
  position: relative;
  top: 80px;
} */
.socialcta h3 {
    text-align: right;
    margin-right: 80px;
    /* margin-top: 12px; */
    position: relative;
    top: 80px;
    font-size: 25px;
    line-height: 30px;
    color: #6d6f71;
    font-weight: bold;
    /* font-family: "Gulf"; */
    /* text-align: right; */
    padding-bottom: 5px;
}

.socialcta .social-links.mt-3 {
    text-align: right;
    margin-right: 80px;
    /* margin-top: 12px; */
    position: relative;
    top: 90px;
}

.contact .info {
    width: 100%;
    background: #fff;
}

/* .contact .info i {
  font-size: 18px;
  background: #F2F4F5;
  color: #07213a;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
  float: right;
  margin-left: 12px;
} */
.contact .info i {
    font-size: 29px;
    background: #F2F4F5;
    color: #07213a;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
    float: right;
    margin-left: 12px;
}

.contact .info h4 {
    /* padding: 0 0 0 60px; */
    /* font-size: 18px; */
    /* font-weight: 600; */
    /* margin-bottom: 5px; */
    /* color: #151515; */
    /* text-align: right; */
    font-size: 20px;
    line-height: 26px;
    color: #6d6f71;
    font-weight: bold;
    /* font-family: "Gulf"; */
    text-align: right;
}

.contact .info p {
    padding: 0px 0 0 0px;
    margin-bottom: 0;
    /* font-size: 17px; */
    /* color: #07213a; */
    /* text-align: right; */
    /* font-weight: 800; */
    font-size: 20px;
    letter-spacing: 2px;
    color: #000000;
    font-weight: bold;
    /* font-family: "Gulf"; */
    text-align: right;
}

.contact .info .email, .contact .info .phone, .address {
    margin-top: 40px;
}

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

.form-group label {
    font-size: 18px;
    line-height: 45px;
    color: #000000;
    font-weight: bold;
    font-family: GulfBold;
    text-align: right;
}

input.form-control {
    height: 60px;
    border-radius: 12px;
    border: 1px solid #d0d0d0;
    background-color: white;
}

.formbtn:hover {
    background: #07213a;
    border: 0;
    transition: 0.4s;
    border-radius: 100px !important;
    padding: 15px 100px 15px 100px;
    margin-bottom: 20px;
    color: white;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
    text-align: right;
}

/* webkit solution */
::-webkit-input-placeholder {
    text-align: right;
}

/* mozilla solution */
input:-moz-placeholder {
    text-align: right;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
    border-color: #d0a14f;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

/* .contact .php-email-form button[type=submit] {
  background: #d0a14f;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
  color: white;
} */
.contact .php-email-form button[type=submit] {
    /* background: #d0a14f; */
    border: 0;
    /* padding: 10px 24px; */
    /* color: #151515; */
    transition: 0.4s;
    /* border-radius: 4px; */
    color: white;
    width: 425px;
    height: 80px;
    border-radius: 40px;
    background-color: #d0a14f;
    font-size: 20px;
    line-height: 67px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
}

/* .contact .php-email-form button[type=submit]:hover {
  background: #ffcd6b;
} */
.contact .php-email-form button[type=submit]:hover {
    background: #07213a;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: whitesmoke;
    min-height: 40px;
    margin-top: 74px;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 400;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #2f2f2f;
    content: "/";
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 68px;
    }

    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*----------------------------------
team
---------------------------------*/
.team {
    padding: 90px 0px;

}

span.team-name {
    font-size: 25px;
    font-weight: 700;
}

span.teambio-name {
    font-size: 20px !important;
    line-height: 0.5;
}

.team p {
    font-size: 21px;
    line-height: 2.7;
    color: #07213a !important;
}

/*.team span {*/
/*  font-size: 16px;*/
/*}*/
.team span {
    font-size: 16px;
    /* margin-top: 19px !important; */
    position: relative !important;
    top: 19px !important;
}

h2.team-h.text-right.t2.pt-4 {
    font-size: 30px !important;
}

h5.tbox-sp2 span {
    font-size: 18px !important;
}

/* timeline css  */
@media only screen and (min-width: 600px) {
    #mtime {
        display: none;
    }
}

.timebg {
    margin-top: 43px;
}

.timebg h1 {
    background-color: #D0A14F;
    text-align: center;

    border-radius: 100px;
    color: white;
    padding: 20px;
    font-family: poppins;
}

.timebg2 {
    margin-top: 43px;
}

.timebg2 h1 {
    background-color: #D0A14F;
    text-align: center;

    border-radius: 100px;
    color: white;
    padding: 20px;
    font-family: poppins;
}

.timebg3 {
    margin-top: 43px;
}

.timebg3 h1 {
    background-color: #D0A14F;
    text-align: center;

    border-radius: 100px;
    color: white;
    padding: 20px;
    font-family: poppins;
}

.timeline-sec {
    padding: 90px;
}

.timeline {
    width: auto;
    height: 20px;
    list-style: none;
    text-align: justify;
    /* margin: 80px auto; */
    margin: 0px auto;
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(45%, rgba(255, 255, 255, 0)), color-stop(51%, #d6d6d6), color-stop(57%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 0)));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 45%, #d6d6d6 51%, rgba(255, 255, 255, 0) 57%, rgba(255, 255, 255, 0) 100%);
}

.timeline:after {
    display: inline-block;
    content: "";
    width: 100%;
}

/* .timeline li {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: #F2BB13;
	text-align: center;
	line-height: 1.2;
	position: relative;
	border-radius: 50%;
} */
.timeline li {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: white;
    text-align: center;
    line-height: 1.2;
    position: relative;
    border-radius: 50%;
    border: 3px solid #07213A;
}

.timeline li:before {
    display: inline-block;
    content: attr(data-year);
    font-size: 17px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 21px;
    width: 175px;
    color: #07213A;
    font-weight: 700px !important;
}

/* .timeline li:before {
	display: inline-block;
	content: attr(data-year);
	font-size: 26px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
} */
.timeline li:nth-child(odd):before {
    top: -40px;
}

.timeline li:nth-child(even):before {
    bottom: -40px;
}

.timeline li:after {
    display: inline-block;
    content: attr(data-text);
    font-size: 16px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* region sec  */
ul.reg-ul li {
    display: inline;
    padding: 10px;
}

ul.reg-ul {
    display: flex;
    padding: 20px;
    margin: 20px;
}

.regions {
    padding: 90px;
}

/* clients  */
.clients {
    padding: 90px;
}

/*.clients #client_image_2,#client_image_3,#client_image_4,#client_image_5{*/
/*    padding-left: 152px !important;*/
/*}*/
.clients .row {
    margin-right: -360px;
}

.clients img {
    width: 100%;
    padding-top: 50px;
}

.clients #client_image_4 img {
    width: 100%;
    padding-top: 13px !important;
}

.clients #client_image_5 img {
    width: 77%;
    padding-top: 30px !important;
}

ul.client-ul li {
    display: inline;
}

ul.client-ul {
    display: flex;
}

ul.client-ul li img {
    width: 100%;
    padding-top: 50px;
}

/* line  */
/* .border-bottom1 {
  border: 1px solid #d6d6d6;
  background-color: #d6d6d6;
  transform: rotate(90deg);
  position: absolute;
  left: 699px;
  width: 127px;
  margin-top: 49px;
} */
.border-bottom1 {
    border: 1px solid #07213a;
    background-color: #07213a;
    transform: rotate(90deg);
    position: absolute;
    left: 531px;
    width: 459px;
    margin-top: 217px;
}

/* .border-right1 {
  border: 1px solid #d6d6d6;
  background-color: #d6d6d6;
  position: absolute;
  width: 566px;
  margin-top: -54px;
  z-index: 0;
  left: 197px;
} */
.border-right1 {
    border: 1px solid #07213a;
    background-color: #07213a;
    /* position: absolute; */
    width: 435px;
    margin-top: 40px;
    z-index: 0;
    margin-left: -115px;
}

/* .border-left1 {
  border: 1px solid #07213a;
  background-color: #07213a;
  position: absolute;
  width: 563px;
  margin-top: -59px;
  z-index: 0;

  justify-content: right !important;
  text-align: right;
  right: 196px;
} */
.border-left1 {
    border: 1px solid #07213a;
    background-color: #07213a;
    position: relative;
    width: 326px;
    margin-top: 40px;
    z-index: 0;

    right: 11px;
}

/* .border-bottom-2 {
  border: 1px solid #d6d6d6;
  background-color: #d6d6d6;
  /* border-right: 1px solid black; */

.border-bottom-2 {
    border: 1px solid #07213a;
    background-color: #07213a;
    /* border-right: 1px solid black; */
    width: 1001px;
    margin-left: 114px;
}

.border-bottom3 {
    background-color: #07213a;
    /* border-right: 2px solid black; */
    border: 1px solid #07213a;
    transform: rotate(90deg);
    width: 100px;
    margin-left: 34px;
    z-index: 0;
}

ul.line1 li {
    display: inline;
}

ul.line1 {
    display: flex;
    justify-content: space-between;
}

li.line-sec2-li {
    position: relative;

    right: 134px;
}

li.line-sec3-li {
    position: relative;
    right: 130px;
}

li.line-sec4-li {
    position: relative;
    left: 89px;
}

.box4 {
    position: relative;
    width: 160px;
}

.box-btn {
    border: 1px solid #d0a14f;
    border-radius: 100px;
    padding: 16px 10px 0px 10px;
    z-index: 1;
    background-color: white;
    position: relative;
}

.box-btn p {
    font-size: 13px;
    color: #07213a;
}

.box1 {
    margin-right: 136px;
}

.box2 {
    position: relative;
    right: 25px;
}

ul.line1 li:last-child {
    margin-right: 14px;
}

/* ul.line-2-ul {
  display: flex;
  justify-content: space-between;
} */
ul.line-2-ul {
    display: flex;
    justify-content: space-between;
    position: relative;
    right: 89px;
    top: 60px;
}

ul.line-2-ul li:before {
    border: 1px solid #07213a;
    content: "";
    background-color: #07213a;
    position: absolute;
    margin-left: 58px;
    height: 73px;
    top: -13px;
    width: 3px;
}

ul.line-2-ul li:before {
    border: 1px solid #07213a;
    content: "";
    background-color: #07213a;
    position: absolute;
    margin-left: 57px;
    height: 70px;
    top: -13px;
}

ul.line-2-ul:before {
    border: 1px solid #07213a;
    background-color: #07213a;
    content: "";
    transform: rotate(90deg);
    position: absolute;
    left: 161px;
    top: -74px;
    height: 124px;
}

ul.line-2-ul.ul3:before {
    border: 1px solid #07213a;
    background-color: #07213a;
    content: "";
    transform: rotate(90deg);
    position: absolute;
    left: 170px;
    top: -83px;
    height: 142px;
}

ul.line-2-ul li {
    display: inline-flex;
    /* justify-content: space-around; */
    margin: 10px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: black;
    /* padding: 0 0 30px 0; */
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    background: #191919;
    border-bottom: 1px solid #222222;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 28px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-info a {
    font-size: 18px;
    line-height: 21px;
    color: #f8f8f8;
    font-weight: 500;

    margin-left: 14px;
}

#footer .footer-top .footer-info h3 span {
    color: #d0a14f;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: GulfMedium;
    color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: whitesmoke;
    color: #292929;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    border-radius: 100px;
}

#footer .footer-top .social-links a:hover {
    background: #d0a14f;
    color: #151515;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #d0a14f;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #d0a14f;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #d0a14f;
    color: #151515;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #ffcd6b;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

/* new css for slider team  */

h2 {
    text-align: center;
    padding: 20px;
}

/* Slider */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}
