@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");

body {
    font-family: "Montserrat", sans-serif;
    color: #555555;
}

html {
    scroll-behavior: smooth;
}
* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
a {
    color: #e03a3c;
    text-decoration: none;
}
a:hover {
    color: #7d9ba9;
    text-decoration: none;
}

p {
    line-height: 28px;
    font-size: 16px;
    font-weight: 400;
}
h2,
h3,
h4,
h5 {
    text-transform: uppercase;
    font-family: "Cinzel", serif;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 3;
    padding: 10px 0;
    background: #fff;
}
h1.logo img {
    width: auto;
    max-height: 90px;
}
#header.header-scrolled {
    background: #fff;
    padding: 5px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo {
    margin: 0;
    padding: 0;
}

#header .logo a {
    color: #111111;
}

#header .logo a span {
    color: #e03a3c;
}

#header .logo img {
    transition: 0.3s;
    width: 160px;
    object-fit: cover;
}
#header.header-scrolled img {
    transition: 0.3s;
}
#header.header-scrolled nav.nav-menu {
    margin-top: 0px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 8px 11px;
    margin: 0 2px;
    transition: all 0.3s ease;
}

.nav-menu a {
    font-size: 16px;
    color: #000;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Cinzel", serif;
}
li.clent-logBtn {
    margin: 0 10px !important;
    text-transform: uppercase;
    background: #c9ae5c;
    padding: 8px 18px !important;
}
li.clent-logBtn img {
    width: 15px;
    margin-top: -3px;
    margin-right: 3px;
}
li.clent-logBtn a {
    font-size: 14px;
    color: #fff;
}
.clent-logBtn.logicon{
    position: relative;
    padding: 8px 18px 8px 35px !important;
}
.logicon::after {
content: "";
content: "";
background: url("../img/login-icon.png") no-repeat 10px center !important;
position: absolute;
padding-right: 0;
left: 4px;
width: 31px;
height: 23px;
background-size: cover;
top: 10px;
}
li.clent-logBtn:hover {
    background: #1b1464;
}
.nav-menu li.clent-logBtn:hover a {
    color: #fff;
}
.nav-menu .menu-item-has-children ul {
    display: block;
    position: absolute;
    left: 0px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .menu-item-has-children:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .menu-item-has-children li {
    min-width: 180px;
    position: relative;
    border-left: 4px solid transparent;
}

.nav-menu .menu-item-has-children ul li:hover,
.nav-menu .menu-item-has-children ul .active,
.nav-menu .menu-item-has-children ul li:hover {
    border-left: 4px solid #1b1464;
}
.nav-menu .menu-item-has-children ul li:hover a,
.nav-menu .menu-item-has-children ul li a {
    color: #1b1464;
}
.nav-menu .menu-item-has-children ul li a {
    padding: 10px 20px;
    text-transform: none;
    line-height: 36px;
    font-size: 14px;
    color: #000000;
    text-transform: capitalize;
}
.nav-menu .menu-item-has-children .menu-item-has-children ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .menu-item-has-children .menu-item-has-children:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}
#header.header-scrolled .nav-menu > ul > li::after {
    height: 27px;
}
.nav-menu .menu-item-has-children .menu-item-has-children > a {
    padding-right: 35px;
}
nav.nav-menu {
    width: 100%;
    padding: 15px 0;
}
.nav-menu > ul {
    justify-content: flex-end;
}
li.space-logo {
    width: 220px;
}
.nav-menu li:hover a {
    color: #c9ae5c;
}
li .current-menu-item a {
    color: #1b1464;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 19px;
    top: 22px;
    z-index: 10000;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}
.mobile-nav-toggle i.icofont-close {
    margin: 0;
    display: block;
    position: absolute;
    top: -7px;
    right: 0;
}
.mobile-nav-toggle i {
    color: #1b1464;
}
.icofont-navigation-menu.icofont-close::before {
    content: "\f00d";
}
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    padding: 50px 0 0;
}
.mobile-nav::before {
    content: "";
    width: 100%;
    height: 50px;
    top: 0;
    background: #1b1464;
    position: absolute;
    right: 0;
}
.mobile-nav li:active {
    background: #7d9ba9;
}
.mobile-nav li.client-log {
    background: #7d9ba9;
    margin: 0px auto;
    display: table;
}
.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #111111;
    padding: 10px 20px;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
    color: #1b1464;
    text-decoration: none;
}

.mobile-nav .menu-item-has-children > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .menu-item-has-children > a:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 600;
    font-size: 24px;
}

.mobile-nav .menu-item-has-children > a {
    padding-right: 35px;
}

.mobile-nav .menu-item-has-children ul {
    display: none;
    overflow: hidden;
    background: #1b1464;
}
.mobile-nav .menu-item-has-children ul a {
    color: #fff;
}
.mobile-nav .menu-item-has-children li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}
.nav-menu {
    position: relative;
}
#header.header-scrolled nav.nav-menu::after {
    display: none;
}

/* Bounce To Right */
.hvr-bounce-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.hvr-bounce-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1b1464;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
    color: white;
}
.hvr-bounce-to-right:hover:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
@-webkit-keyframes slide-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
}
@keyframes slide-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
}

.slide-right {
    -webkit-animation: slide-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
    animation: slide-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
}

@keyframes hvr-wobble-bottom {
    16.65% {
        -webkit-transform: skew(-5deg);
        transform: skew(-5deg);
    }
    33.3% {
        -webkit-transform: skew(4deg);
        transform: skew(4deg);
    }
    49.95% {
        -webkit-transform: skew(-3deg);
        transform: skew(-3deg);
    }
    66.6% {
        -webkit-transform: skew(2deg);
        transform: skew(2deg);
    }
    83.25% {
        -webkit-transform: skew(-1deg);
        transform: skew(-1deg);
    }
    100% {
        -webkit-transform: skew(0);
        transform: skew(0);
    }
}
.hvr-wobble-bottom {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
}
.hvr-wobble-bottom,
.hvr-wobble-bottom,
.hvr-wobble-bottom {
    -webkit-animation-name: hvr-wobble-bottom;
    animation-name: hvr-wobble-bottom;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes slide-left {
    0% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}
@keyframes slide-left {
    0% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.slide-left {
    -webkit-animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
/* Wobble Horizontal */
@-webkit-keyframes hvr-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }
    33.3% {
        -webkit-transform: translateX(-4px);
        transform: translateX(-4px);
    }
    49.95% {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes hvr-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }
    33.3% {
        -webkit-transform: translateX(-4px);
        transform: translateX(-4px);
    }
    49.95% {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.hvr-wobble-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-horizontal,
.hvr-wobble-horizontal,
.hvr-wobble-horizontal {
    -webkit-animation-name: hvr-wobble-horizontal;
    animation-name: hvr-wobble-horizontal;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@-webkit-keyframes top-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes top-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/*banner css*/

.banner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0;
    height: 650px;
}
.banner .carousel-item::before {
    content: "";
    background: rgba(0, 0, 0, 0.27);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-image: linear-gradient(rgb(0, 0, 0), rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.86));
}
.banner .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    object-position: top;
    height: 650px;
}

.carousel-item h1 {
    font-size: 50px;
    margin-bottom: 25px;
    line-height: 70px;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    padding-bottom: 25px;
}

.carousel-item h1:after {
    content: "";
    background: #c9ae5c;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100px;
    height: 2px;
    margin: 0 auto;
}
.carousel-item h1 span {
    font-weight: 300;
    display: block;
}
.carousel-item p {
    width: 60%;
    margin: 0 auto;
}
.carousel-caption {
    bottom: 20%;
    left: 0;
    right: 0;
}
.banner .get-started-btn {
    margin: 30px auto 20px auto;
    background-color: #c9ae5c;
    font-family: "Cinzel", serif;
    padding: 13px 22px;
}
.banner .get-started-btn img {
    width: 16px;
    height: 10px;
    padding: 0;
    margin-left: 10px;
}
.banner .arrow-banner img {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-animation: top-bottom 4s cubic-bezier(0.39, 0.575, 0.565, 1) 0.1s infinite;
    animation: top-bottom 4s cubic-bezier(0.39, 0.575, 0.565, 1) 0.1s infinite;
}

.banner .arrow-banner {
    position: absolute;
    right: 0;
    bottom: 8%;
    left: 0;
    z-index: 1;
    margin: 0 auto;
    max-width: max-content;
}
.banner .arrow-banner a {
    color: #fff;
    text-transform: uppercase;
    font-family: "Cinzel", serif;
}
.banner .arrow-banner span:after {
    content: "";
    background: #fff;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 1;
    width: 1px;
    height: 40px;
    margin: 0 auto;
    -webkit-animation: top-bottom 4s cubic-bezier(0.39, 0.575, 0.565, 1) 0.1s infinite;
    animation: top-bottom 4s cubic-bezier(0.39, 0.575, 0.565, 1) 0.1s infinite;
}
.banner .carousel-control-prev-icon {
    background-image: url("../img/left-arrow.png");
    width: 30px;
    height: 60px;
}
.banner .carousel-control-next-icon {
    background-image: url("../img/right-arrow.png");
    width: 30px;
    height: 60px;
}
.banner .carousel-control-prev {
    left: -30px;
    opacity: 1;
    width: 13%;
}
.banner .carousel-control-next {
    right: -30px;
    opacity: 1;
    width: 13%;
}

.get-started-btn {
    width: max-content;
    display: flex;
    margin: 30px auto 20px auto;
    font-size: 14px;
    letter-spacing: 0;
    color: #fff;
    font-weight: 500;
    align-items: center;
    padding: 13px 22px;
    overflow: hidden;
    text-transform: uppercase;
    background: #c9ae5c;
}
.get-started-btn img {
    width: 14px;
    height: 9px;
    margin-left: 10px;
    margin-top: -3px;
}
.get-started-btn1 {
    width: max-content;
    display: flex;
    font-size: 14px;
    letter-spacing: 0;
    color: #485d56;
    font-weight: normal;
    align-items: center;
    padding: 12px 35px;
    overflow: hidden;
    text-transform: uppercase;
    background: transparent;
    letter-spacing: 4px;
    background: #fff;
}
.get-started-btn2 {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #41574f;
    font-size: 14px;
}
section {
    padding: 80px 0;
    position: relative;
}
.commn-layout h2 {
    font-size: 43px;
    line-height: 55px;
    color: #1b1464;
    font-weight: 500;
    margin: 0 0 25px;
    text-transform: uppercase;
    font-family: "Cinzel", serif;
    position: relative;
    padding-bottom: 25px;
}
.commn-layout h2 span {
    display: block;
}
.commn-layout h2:after {
    content: "";
    background: #c9ae5c;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100px;
    height: 2px;
}
.commn-layout h6 {
    color: #2c2c2c;
}

.position-relative {
    position: relative !important;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}


.privacy-div{
    border-bottom: 1px solid #ccc;
  margin-bottom: 25px;
}
.privacy-div:last-child{
    border-bottom: 0px solid #ccc;
  margin-bottom: 0px;
}
.generic-content strong {
display: block;
font-size: 20px;
margin-bottom: 10px;
color: #c9ae5c;
}
.privacy{
    background: #f8f8f8;
}

/*about section css*/

#text, #text1, #text2{
display:none;
}
.btn-container button{
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
cursor: pointer;
border: none;
color: #c9ae5c;
background-color: transparent;
margin-top: 10px;
font-weight: 500;
}
.about-sec {
    padding: 80px 0 0;
}
.about-sec h5 {
    font-style: italic;
    font-weight: 400;
    line-height: 30px;
    font-family: "Montserrat", sans-serif;
    text-transform: capitalize;
    color: #2c2c2c;
}
.border-l {
    border-left: 1.5px solid #ccc;
    padding-left: 70px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.padding-cl {
    padding-right: 30px;
}
/*we do section css*/
.we-do-sec.commn-layout h2::after {
    margin: 0 auto;
}
.we-do-sec p b{
    display: block;
font-weight: 500;
color: #1b1464;
font-size: 20px;
margin-top: 8px;
}
.we-main {
    display: flex;
}
.we-box {
    box-shadow: 2px 2px 10px 4px rgba(111, 111, 111, 0.09);
    padding: 35px 25px 45px;
    transition: all 0.3s ease-in-out;
    width: 32%;
    background: #fff;
    margin-right: 20px;
}
.we-box a p{
    color: #555555;
}
.we-box:hover a p{
color: #fff;
}
.we-box:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
    z-index: 1;
    background: #1b1464;
    color: #fff;
}
.we-box:hover h5 {
    color: #fff;
    transition: all 0.5s ease-in-out;
}
.we-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
}
.client-login .we-box img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  max-width: 200px;
  border: 1px solid #ccc;
  padding: 5px;
}
.client-login .we-box:hover a p {
  color: #555;
}
.client-login .we-box:hover {
  transform: unset;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  background: #fff;
  color: #555;
}
.client-login .we-box {
  padding: 35px 25px 20px;
  }
.we-box h5 {
    color: #1b1464;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.5s ease-in-out;
}
.we-box:hover .wedoBGicon {
    opacity: 1;
    transition: all 0.5s ease-in-out;
}
.wedoBGicon {
    position: absolute;
    right: 3px;
    bottom: -26px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.wedoBGicon img {
    width: 145px;
    height: 145px;
    opacity: 0.1;
}

/*who-we-serve css*/
.serve-sec {
    color: #fff;
    position: relative;
}
.serve-sec::before {
    content: "";
    background: rgba(27, 20, 100, 0.51);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
.serve-sec h2 {
    color: #fff;
}
.serve-sec.commn-layout h2::after {
    margin: 0 auto;
}
.serve-box {
    text-align: center;
    padding: 40px 11px 0;
}
.serve-box h3 {
    font-size: 19px;
    line-height: 30px;
    color: #c9ae5c;
    font-weight: 600;
    margin: 20px 0 10px;
}
.serve-box p {
    margin-bottom: 0;
    color: #fff;
}
.serve-imgbox {
    position: relative;
    margin: 0 0 35px;
    padding: 6px 0;
}
.serve-imgbox img {
    width: 35px;
    height: 35px;
}
span.rotate {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 1px solid #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0px auto;
    top: -13px;
}
.serve-box:hover span.rotate {
    -webkit-animation: rotation 2s infinite linear;
}
span.rotate::before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #c9ae5c;
    position: absolute;
    content: "";
    top: -5px;
}
.serve-box:hover .serve-link {
    color: #05612c;
    font-weight: normal;
}
.serve-box:hover .serve-link i {
    display: none;
}

footer {
    padding: 50px 0 5px 0;
    color: #000;
}
footer p {
    color: #595959;
}
footer .footer-btm a {
    color: #595959;
    text-decoration: underline;
}
.bottom-footer p a {
    color: #c9ae5c;
}
footer ul li a:hover {
    color: #c9ae5c;
}

footer img {
    width: 230px;
    object-fit: cover;
    margin-bottom: 20px;
}

.footer-top ul {
    padding: 0;
    margin: 20px 0;
}
.footer-top li a {
    line-height: 30px;
    color: #595757;
    text-transform: uppercase;
    font-family: "Cinzel", serif;
    font-weight: 500;
}
.footer-top ul li {
    list-style: none;
    display: inline-block;
    padding: 0 15px;
}

footer .bottom-footer {
    border-top: 1px solid #cccccc;
    margin-top: 35px;
    padding-top: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #cccccc;
}
.cpflogo a:nth-child(2) img{
  max-width: 134px;
margin-left: 15px;
}
.footer-btm {
    margin-top: 10px;
}
.footer-btm .d-flex p {
    margin: 10px 0;
    font-size: 13px;
    line-height: 23px;
}
.footer-btm .d-flex {
    justify-content: space-between;
}
.align-right {
    text-align: right;
}

@keyframes mymove {
    50% {
        background-position: center;
    }
}

@keyframes type {
    from {
        width: 0;
    }
}

@keyframes type2 {
    0% {
        width: 0;
    }
    50% {
        width: 0;
    }
    100% {
        width: 100;
    }
}

@keyframes blink {
    to {
        opacity: 0;
    }
}


.banner.inner-banner, .banner.inner-banner .carousel-item img{
  height: 450px;
  z-index: 2;
}
.banner.inner-banner .carousel-item::before {
  background: rgba(0, 0, 0, 0.42);
}
.banner.inner-banner .carousel-item h1::after {
  display: none;
}
.banner.inner-banner .carousel-item h1 {
  padding-bottom: 0;
}

/*contact page css*/
.commn-layout.contact-pg h2::after {
  margin: 0 auto;
}
.contact-pg{
    background-color: #f8f8f8;
}
.contact-pg h5 {
  font-style: italic;
  font-weight: 500;
  line-height: 30px;
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  color: #2c2c2c;
  margin-bottom: 20px;
  font-size: 21px;
}
.map-box iframe {
  filter: grayscale(1);
}
#contact .border-l {
padding-left: 0px;
border-left: 0;
}
#contact .address-box{
    border-left: 1px solid #c9ae5c;
padding-left: 51px;
}
#contact .address-box p {
  font-size: 16px;
font-weight: 400;
line-height: 30px;
}


.contact-main{
  background-color: #c9ae5c;
    padding: 28px 15px 20px 0;  
    height: max-content;
}
.contact-pg .row {
    align-items: center;
}
.contact-box{ 
    display: flex;
    margin-bottom: 2rem;
    align-items: center;
}
.contact-pg .contact-box p{
  display: block;
}
.contact-pg .contact-box p a {
    color: #fff;
}
.img-icon{
    background-color: #fff;
    padding: 5px 20px;
    box-shadow: 6px 2px 4px -1px rgba(0, 0, 0, 0.49);
    display: flex;
align-items: center;
height: 50px;
margin-left: -25px;
box-shadow: 2px 2px 12px -1px rgba(0, 0, 0, 0.27);
border-radius: 5px;
border: 1px solid #1b1464;
}
.img-icon1{
   background-color: #2962ff;
  padding: 5px 20px;
  box-shadow: 6px 2px 4px -1px rgba(0, 0, 0, 0.49);
  display: flex;
  align-items: center;
  height: 50px;
  margin-left: -25px;
  box-shadow: 2px 2px 12px -1px rgba(0, 0, 0, 0.27);
  border-radius: 5px;
  border: 1px solid #2962ff;
  justify-content: center;
  max-width: max-content;
  margin: 0 auto;
  color: #fff;
}
.img-icon1 a{
  color: #fff;
text-decoration: none;
font-size: 22px;
}
.contact-box p{
    color: #fff;
padding-left: 20px;
margin-bottom: 0;
display: flex;
flex-direction: column;
justify-content: center;
}
.contact-box p span{
    display: block;
}



.frm-box{
    background-color: #1b1464;
    padding: 30px;
}
.frm-box .gform_wrapper.gravity-theme .gfield input.large, .frm-box .gform_wrapper.gravity-theme .gfield select.large, .frm-box .gform_wrapper.gravity-theme .gfield textarea.large {
  width: 100%;
  background-color: transparent;
  color: #fff;
  border: 1px solid #c9ae5c;
  padding: 15px 20px;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
}
.frm-box .gform_wrapper.gravity-theme .gfield textarea.large{
    height: 150px;
}

.frm-box #gform_submit_button_2{
   width: max-content;
display: flex;
font-size: 14px;
letter-spacing: 0;
color: #fff;
font-weight: 500;
align-items: center;
padding: 13px 46px 13px 22px;
overflow: hidden;
text-transform: uppercase;
background: #c9ae5c; 
border: 0;
margin: 0 auto;
cursor: pointer;
font-family: "Cinzel", serif;
}
.frm-box .gform_footer {
  position: relative;
}
.frm-box .gform_footer::after {
content: '';
width: 16px;
height: 10px;
position: absolute;
right: -105px;
top: 34px;
background: url(../img/btn-icon.png) no-repeat;
left: 0;
margin: 0 auto;
}

 .commn-layout ul li {
font-size: 16px;
line-height: 28px;
font-weight: 400;
list-style: none;
position: relative;
padding-left: 21px;
text-align: left;
}
 .commn-layout ul li:before {
content: '';
width: 9px;
height: 15px;
position: absolute;
left: 0;
background: url(../img/dot.png) no-repeat;
background-size: contain;
top: 10px;
}


/*aboutpg-sec css*/

.aboutpg-sec.commn-layout h2::after, .abt-mid.commn-layout h2::after {
  margin: 0 auto;
}
.aboutpg-sec .about-imgbox {
border-radius: 50%;
border: 1px dashed #aca6a6;
width: 120px;
height: 120px;
margin: 0 auto 30px auto;
display: flex;
justify-content: center;
align-items: center;
}

.aboutpg-sec .about-imgbox img{
text-align: center;
width: 45px;
}
.aboutpg-sec p {
  min-height: 115px;
  margin: 0;
  display: inline;
}
.aboutpg-sec a{
  color: #c9ae5c
}
.aboutpg-sec .about-imgbox{
  position: relative;
}
.aboutpg-sec .about-imgbox:before{
content: "";
position: absolute;
right: -260px;
z-index: 1;
width: 260px;
top: 61px;
border: 1px dashed #ccc;
}
.about-imgbox.last:before{
display: none;
}
.abt-mid .team-member-card {
  width: 100%;
  color: #000;
  max-width: 360px;
  margin: 0 47px 35px 0px;
  float: left;
}
.abt-mid .team-member-card .team-img {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  padding-top: 6px;
  text-align: center;
}
.abt-mid .team-member-card .team-img img {
width: 100%;
object-fit: cover;
height: 100%;
max-width: 400px;
min-height: 300px;
object-position: top;
z-index: 1;
position: relative;
padding-left: 18px;
}
.abt-mid .team-member-card .team-img{
  position: relative;
}
.abt-mid .team-member-card .team-img::before {
  content: "";
  position: absolute;
  left: 0px;
width: 300px;
height: 300px;
bottom: -18px;
background-image: url(../img/bg-abt.png);
background-repeat: no-repeat;
z-index: 0;
}
.abt-mid{
  padding-top: 20px;
}
.abt-mid h5{
  color: #c9ae5c;
margin-bottom: 12px;
}
.serve-sec.abt-last::before {
  content: "";
  background: rgba(26, 20, 100, 0.71);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}



/*services pg css*/
.commn-layout.srv-last h2::after {
  margin: 0;
}
.srv-sec1.half{
  padding: 60px 0px;
  margin: 0 0 40px;
  background: #f3f3f3;
}
.srv-sec2.half1 {
   padding: 60px 0px;
  margin: 0 0 40px;
  background: #1b1464;
  color: #fff;
}
.srv-sec2 .srv-img1 img {
  min-height: 470px;
}
.commn-layout.srv-sec2 h2{
  color: #fff;
}
.services-d ul li {
margin-bottom: 7px;
line-height: 25px;
list-style: none;
position: relative;
list-style-image: url(../img/dot.png);
right: -17px;
padding-left: 10px;
}
.commn-layout.services-d ul li::before {
display:none;
}

.srv-sec2 .srv-img1::before {
  content: '';
  width: 67%;
  background: #c9ae5c;
  height: 104%;
  position: absolute;
  bottom: 8px;
  right: 0;
  z-index: -1;
  left: unset;
}
.srv-sec1.half::before {
  content: '';
  width: 30%;
  background: #fff;
  height: 100%;
  position: absolute;
  top: 0;
}
.srv-sec2.half1::before {
  content: '';
  width: 30%;
  background: #fff;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.srv-pg .get-started-btn {
  margin: 20px 0;
}
.srv-img1{
  position: relative;
}
.srv-img1 img{
  min-height: 465px;
object-fit: cover;
margin-top: -7px;
max-width: 100%;
}
.srv-img1:before{
 content: '';
width: 67%;
background: #c9ae5c;
height: 108%;
position: absolute;
bottom: -15px;
left: 0;
z-index: -1;
}
.srv-top h6 {
font-size: 24px;
font-style: italic;
font-weight: normal;
text-align: center;
line-height: 34px;
}
.abt-mid.services-d{
  padding-top: 80px;
  background: #f8f8f8;
}
.abt-mid.services-d .team-member-card .team-img img {
  min-height: 246px;
}
.abt-mid.services-d .team-member-card .team-img::before {
  content: "";
  position: absolute;
  left: 0px;
  width: 254px;
  height: 253px;
  bottom: -18px;
  background-image: url(../img/bg-abt.png);
  background-repeat: no-repeat;
  z-index: 0;
}


/*client-login pg css*/
.client-login{
  background: #f3f3f3;
}
.client-login .client-logo img{
border: 1px solid #dec477;
padding: 5px;
background: #fff;
}


.clientvpg-sec, .single-vault-inner{
  background: #f5f5f5;    
}
.clientvpg-sec .about-box {
 width: 100%;
background: #fff;
padding: 40px 15px;
margin: 0 0 25px 0;
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.10);   
text-align: center;
}
.single-vault-inner .content-widget {
  width: 100%;
  background: #fff;
  padding: 30px 15px 20px;
  margin: 0 0 25px 0;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.10);
  text-align: center;
}
.single-vault-inner .content-widget p a {
background: #c9ae5c;
border: 1px solid #c9ae5c;
color: #fff;
transition: all 0.5s ease-in-out 0s;
display: inline-block;
width: 168px;
max-width: 100%;
text-align: center;
padding: 8px 8px 8px 34px;
position: relative;
}
.single-vault-inner .content-widget p a:hover {
background: #d8af38;
}
.single-vault-inner .content-widget p a::before {
 content: "";
background: url("../img/download.png") no-repeat 10px center !important;
position: absolute;
padding-right: 0;
left: 4px;
width: 31px;
height: 23px;
background-size: cover;
top: 10px;
}
.single-vault-inner .content-widget p a {
  color: #fff;
  text-align: center;
}

.clientvpg-sec .about-imgbox img {
  width: 100px;
  margin-bottom: 12px;
}
.clientvpg-sec #text-sec{
    color: #000;
}

.page-id-396 .aboutpg-sec p {
  min-height: unset;
  margin: unset;
  display: block;
}
.page-id-396 .aboutpg-sec .col-xl-12 {
max-width: 60%;
margin: 0 auto;
background: #fff;
padding: 40px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.page-id-396 .aboutpg-sec #wppb-login-wrap .login-password {
  margin: 15px 0;
}
.page-id-396 .aboutpg-sec{
  background: #f5f5f5;  
}
.page-id-396 .aboutpg-sec #wppb-login-wrap .login-password label, .page-id-396 .aboutpg-sec #wppb-login-wrap .login-username label {
  text-align: left;
  font-size: 15px;
}
.page-id-396 .aboutpg-sec #wppb-login-wrap .login-remember {
  float: left;
  margin-left: 27%;
}
.page-id-396 .aboutpg-sec .login-submit{
    width: 23%;
}
.page-id-396 .aboutpg-sec #wppb-submit{
    margin: 0 10px !important;
text-transform: uppercase;
background: #c9ae5c;
padding: 2px 15px !important;
border: 0;
color: #fff;
font-size: 14px;
cursor: pointer;
font-family: "Cinzel", serif;
}

/*client-pg css*/
.client-pg{
  background-color: #f8f8f8;
}
.main-box-c{
  display: flex;
align-items: center;
padding-right: 55px;
}

.main-box-c .box-c{
width: 53.6%;
margin-left: -15px;
}
.main-box-c .box-c1{
width: 46%;
}
.client-sec .client-box{
  background-color: #fff;
  padding: 35px;
margin-left: -115px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.client-sec{
  padding-bottom: 0;
  padding-top: 0;
}
.client-sec:last-child{
  padding-top: 0;
}
.client-sec11 h6{
font-size: 25px;
font-style: italic;
font-weight: normal;
}
.client-sec1 .main-box-c{
flex-direction: row-reverse;
padding-right: 0;
padding-left: 55px;
}
.client-sec1 .main-box-c .box-c{
margin-right: -15px;
}
.client-sec1 .client-box{
  background-color: #fff;
  padding: 35px;
margin-right: -115px;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
z-index: 1;
    position: relative;
}
.client-sec1{
  padding: 0;
}
.client-sec1 .box-c img{
  min-height: 650px;
object-fit: cover;
max-width: 100%;
}
.client-sec .box-c img{
  min-height: 450px;
object-fit: cover;
max-width: 100%;
}
.client-sec1.last-c{
  padding-bottom: 60px;
}
.client-sec1.last-c .box-c img{
  min-height: 450px;
}


/* Responsive   */
@media (max-width: 1366px) {
    .nav-menu .menu-item-has-children .menu-item-has-children ul {
        left: -90%;
    }
    .nav-menu .menu-item-has-children .menu-item-has-children:hover > ul {
        left: -82%;
    }
}
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

@media (min-width: 1250px) and (max-width: 5400px) {
    #header .container-fluid {
        width: 1200px;
    }
}
@media (max-width: 1199px) {
.aboutpg-sec p br{
  display: none;
}
.client-sec1 {
  padding: 0 0 20px;
}
.about-box{
  margin-top: 20px;
}
.we-box {
  padding: 35px 21px 45px;
}
.abt-mid.services-d {
  padding-top: 40px;
}
.srv-img1 img, .srv-sec2 .srv-img1 img {
  min-height: auto;
  object-fit: cover;
  margin-top: 0;
  max-width: 400px;
  margin-bottom: 20px;
  width: 100%;
}
.commn-layout.srv-last h2::after {
  margin: 0 auto;
}
.srv-pg .get-started-btn {
  margin: 20px auto;
}
.srv-img1::before, .srv-sec1.half::before, .srv-sec2.half1::before {
  display: none;
}
.aboutpg-sec .about-imgbox::before, .abt-mid .team-member-card .team-img::before {
  display: none;
}
.abt-mid .team-member-card .team-img img {
  padding-left: 0;
}
.abt-mid .team-member-card {
  max-width: 360px;
  margin: 0 auto 0px auto;
  float: none;
}
.main-box-c {
  display: block;
  padding-right: 0;
}
.main-box-c .box-c1 {
  width: 100%;
}
.main-box-c .box-c {
  width: 100%;
  margin-left: 0px;
}
.client-sec .box-c img, .client-sec1 .box-c img, .client-sec1.last-c .box-c img {
  min-height: auto;
  object-fit: cover;
  max-width: 400px;
  margin-bottom: 20px;
}
.client-sec1 .client-box {
  margin-right: 0;
  margin-bottom: 20px;
}
.client-sec1 .main-box-c {
  padding-left: 0;
}
.client-sec .client-box {
  margin-left: 0;
  margin-bottom: 20px;
}
.banner.inner-banner, .banner.inner-banner .carousel-item img {
  height: 350px;
}
.banner.inner-banner .carousel-item h1 {
  line-height: 50px;
  padding-bottom: 0;
  margin: 0;
}
    section {
        padding: 40px 0;
        position: relative;
        text-align: center;
    }
    .banner .banner-txt {
        width: calc(100% - 80px);
        text-align: center;
    }
    .banner .banner-txt .get-started-btn {
        margin: 30px auto 20px auto;
    }
    h2 {
        margin: 0 0 28px;
        font-size: 30px;
    }
    .nav-menu > ul > li {
        padding: 8px 8px;
    }
    li.clent-logBtn {
        margin: 0 5px !important;
    }
    .nav-menu a {
        font-size: 13px;
    }
    .about-sec {
        text-align: center;
        padding: 50px 0 0;
    }
    .commn-layout h2 span {
        display: inline-block;
    }
    .commn-layout h2::after {
        margin: 0 auto;
    }
    .border-l {
        border-left: 0;
        padding-left: 15px;
    }
    .padding-cl {
        padding-right: 0;
    }
    .we-box h5 {
        min-height: 50px;
    }
    .contact-main {
  padding: 30px 20px 20px 20px;
}
.contact-box p {
  padding-left: 0;
}
.contact-box {
  display: block;
  margin-bottom: 2rem;
}
.contact-box .img-icon {
  display: flex;
  align-items: center;
  height: 50px;
  max-width: max-content;
  margin: 0 auto 15px auto;
  text-align: center;
}
}
@media (max-width: 991px) {

.client-sec1 .client-box {
  padding: 35px 20px;
}
.contact-pg h5 {
  font-size: 20px;
}
.client-sec .box-c img, .client-sec1 .box-c img, .client-sec1.last-c .box-c img {
  width: 100%;
}
.client-sec1 {
  padding: 0 0 20px;
}
.abt-last p{
  font-size: 15px;
}
.page-id-396 .aboutpg-sec .col-xl-12 {
  max-width: 100%;
}
.client-login .client-logo img {
  margin-bottom: 20px;
}
#contact .address-box h5 {
  margin-top: 20px;
  margin-bottom: 10px;
}
#contact p {
  font-size: 15px;
  line-height: 22px;
}
.aboutpg-sec p {
  min-height: auto;
}
.about-box{
    margin-top: 20px;
}
.frm-box .gform_wrapper.gravity-theme .gfield.gfield--width-half {
  -ms-grid-column-span: 6;
  grid-column: span 12;
}
.frm-box .gform_wrapper .gform_validation_errors > h2 .gform-icon {
  left: -34px;
}
.banner.inner-banner, .banner.inner-banner .carousel-item img {
  height: 250px;
}
   .sub-menu-toggle {
    display: block !important;
  }
  .mobile-nav ul li {
    position: relative;
}
.mobile-nav .current-menu-item {
    background-image: unset;
}
    .mobile-nav .menu-item-has-children > a:after{
        display: none;
    }
    button.sub-menu-toggle {
    position: absolute;
    width: 30px;
    height: 30px;
    overflow: hidden;
    border: 1px solid #ddd;
    background: #fff;
    line-height: 37px;
    top: 8px;
    right: 10px;
}
    .banner .carousel-item::before {
        background: rgba(0, 0, 0, 0.26);
        background-image: unset;
    }
    .banner h1 {
        font-size: 30px;
        line-height: 36px;
    }
    .banner .carousel-caption {
        right: 0;
        left: 0;
    }
    .banner,
    .banner .carousel-item img {
        height: 500px;
    }
    .banner .arrow-banner img {
        width: 50px;
        height: 50px;
    }
    .banner .carousel-control-prev-icon,
    .banner .carousel-control-next-icon {
        width: 15px;
        height: 30px;
    }
    #header .logo img {
        width: 130px;
    }
    li.clent-logBtn img {
        display: none;
    }
    .banner .get-started-btn img {
        width: 16px;
        height: 10px;
    }
    .carousel-item p {
        font-size: 16px;
        width: 100%;
        margin: 0 auto;
    }
    .carousel-caption {
        padding: 0;
    }
    .banner .get-started-btn {
        margin: 25px auto 28px auto;
        padding: 10px 18px;
    }
    .commn-layout h2 {
        font-size: 30px;
        margin: 0 0 25px;
        line-height: 45px;
        padding-bottom: 12px;
    }
    .mobile-nav li.log-btn a {
        color: #fff;
    }
    .we-main {
        display: block;
    }
    .we-box h5 {
        min-height: auto;
    }
    .we-box {
        padding: 20px;
        width: 100%;
        margin-bottom: 30px;
        margin-right: 0;
    }

    .footer-top ul li {
        list-style: none;
        display: block;
    }
    footer {
        text-align: center;
    }
    .footer-btm .d-flex {
        display: block !important;
        text-align: center;
    }
    footer .bottom-footer {
        padding-bottom: 15px;
    }
    li.clent-logBtn, .clent-logBtn.logicon {
        border-radius: 0;
        margin: 0 !important;
        text-transform: capitalize;
        background: transparent;
        padding: 0 !important;
    }
    .logicon::after{
    display: none;
    }
    li.clent-logBtn a {
        font-size: 16px;
        color: #111;
    }
    .commn-layout h6 {
        margin-bottom: 10px;
    }

    footer h5 {
        text-align: center;
    }

    .footer-btm {
        padding: 10px 0;
        margin-top: 20px;
    }
    .footer-btm .d-flex p {
        margin: 10px 0 0;
    }
}

@media (max-width: 767px) {
.banner.inner-banner .carousel-caption {
  bottom: 26%;
}
.banner.inner-banner .carousel-item h1 {
  line-height: 39px;
}
.abt-mid.services-d .team-member-card .team-img img {
  min-height: auto;
}
    .carousel-item p {
        width: 100%;
        font-size: 17px;
    }
    .banner h1 {
        font-size: 25px;
    }
    .banner .arrow-banner {
        bottom: 5%;
    }
    .carousel-caption {
        bottom: 14%;
    }
    .banner .bg-arrow {
        padding: 9px 8px;
    }
    .banner .carousel-control-prev,
    .banner .carousel-control-next {
        width: 8%;
    }
    .banner .arrow-banner span::after {
        height: 30px;
        -webkit-animation: unset;
        animation: unset;
    }
    .client-sec .client-box {
  padding: 20px;
  }
  .page-id-396 .aboutpg-sec #wppb-login-wrap .login-remember {
  margin-left: 0%;
  margin: 0 auto;
text-align: center;
justify-content: center;
float: none;
}
.page-id-396 .aboutpg-sec .login-submit {
  width: 100%;
  margin: 0 auto;
}
.page-id-396 .aboutpg-sec #wppb-login-wrap .login-password label, .page-id-396 .aboutpg-sec #wppb-login-wrap .login-username label {
  text-align: center;
  font-size: 15px;
}
.aboutpg-sec p {
  font-size: 15px;
}
.aboutpg-sec .col-lg-6.mt-5{
  margin-top: 1rem !important;
}
.abt-mid h5 {
  font-size: 16px;
}
h3, h4 {
  font-size: 23px;
}
.commn-layout h2 {
  font-size: 23px;
  line-height: 34px;
}
}
