a:focus, .btn.focus, .btn:focus, input:focus {
    outline: none;
    box-shadow: none !important;
}

#jqcheck {
    background: #fff9d7;
    text-align: center;
    color: #333;
    padding: 10px 0px;
    font-size: 13px;
    font-weight: bold;
    position: fixed;
    z-index: 9991;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
}
.app-container {
    overflow: hidden;
}
* {
    margin: 0px;
    padding: 0px;
}

/* text selection color */

::-moz-selection {
    background: var(--primary-color);
    color: var(--theme-white);
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: var(--theme-white);
    text-shadow: none;
}

/* browser scroller style */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-button:start:decrement, ::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    background-color: #ecedf1;
    -webkit-border-radius: 0px;
    border-left: 1px solid #888;
}

::-webkit-scrollbar-thumb:vertical {
    -webkit-border-radius: 0px;
    background: var(--primary-color);
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    select {
        -webkit-appearance: none !important;
        line-height: 28px !important;
    }
}

body {
    font-size: var(--base-font-size);
    position: relative;
}
a {
    color: #0047C4;
}
a:focus {
    outline: none
}

/* font family */

.ff-primary {
    font-family: var(--primary-font-family);
}

.ff-secondary {
    font-family: var(--secondary-font-family);
}

/* font colors */

.fc-primary {
    color: var(--primary-color);
}

.fc-secondary {
    color: var(--secondary-color);
}

.fc-dark {
    color: var(--theme-dark);
}

.fc-lite {
    color: var(--theme-lite);
}

/* buttons */
.btn-primary {
    color: #fff;
    background: linear-gradient(55deg, #FF9D00, #FFA753);
    border: 1px solid #FF9D00;
}
.btn-secondary {
    background: linear-gradient(45deg, #012463, #004CD1);
    border-color: #004CD1;
    color: #fff;
}

.btn-secondary:hover {
    color: #fff;
}
.primary-btn, .secondary-btn {
    font-size: 13px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 8px 15px;
    position: relative;
    display: table;
    border-radius: 3px;
}

.primary-btn {
    background: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background: var(--primary-color-dark);
    color: white;
}

.secondary-btn {
    background: var(--secondary-color);
    color: white;
}

.secondary-btn:hover {
    background: var(--secondary-color-dark);
    color: white;
}

.banner-btn {
    text-transform: capitalize;
    display: inline-block;
    transform: translateY(0rem);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    color: #fff !important;
    background-color: transparent;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid #fff !important;
}

.sec-padding-60 {
    padding: 60px 0;
}

.sec-padding-100 {
    padding: 100px 0;
}

.sm-btn {
    font-size: 14px;
}

.md-btn {
    font-size: 16px;
}

.lg-btn {
    font-size: 18px;
}

.xl-btn {
    font-size: 20px;
}

/* headings */

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p {
    margin: 0;
    padding: 0;
}

h1, .h1, h2, .h2 {
    font-family: var(--heading-font-family);
}

h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: var(--heading-font-family);
    padding-bottom: 10px;
    color: #160c28;
}

h2, .h2 {
    font-size: 6.7vmin;
}

h3, .h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
}

h4, .h4 {
    font-size: var(--font-size-h4);
}

h5, .h5 {
    font-size: var(--font-size-h5);
}

h6, .h6 {
    font-size: var(--font-size-h6);
}

p {
    /*font-size: var(--base-font-size);*/
}

p {
    font-family: var(--primary-font-family);
    font-weight: 400;
    line-height: 1.4;
    padding: 0 0 0px;
    margin: 0px;
    color: #160c28;
    font-size: 16px;
}

/*** theme sections padding ***/

.sec-padding-100 {
    padding: 100px 0;
}

.sec-padding-90 {
    padding: 90px 0;
}

.sec-padding-80 {
    padding: 80px 0;
}

.sec-padding-70 {
    padding: 70px 0;
}

.sec-padding-60 {
    padding: 60px 0;
}

.sec-padding-xlarge {
    padding: 50px 0;
}

.sec-padding-large {
    padding: 40px 0;
}

.sec-padding-medium {
    padding: 30px 0;
}

.sec-padding-small {
    padding: 25px 0;
}

.sec-padding-xsmall {
    padding: 10px 0;
}

/*** theme sections margin ***/

.sec-margin-100 {
    margin: 100px 0;
}

.sec-margin-90 {
    margin: 90px 0;
}

.sec-margin-80 {
    margin: 80px 0;
}

.sec-margin-70 {
    margin: 70px 0;
}

.sec-margin-60 {
    margin: 60px 0;
}

.sec-margin-xlarge {
    margin: 50px 0;
}

.sec-margin-large {
    margin: 40px 0;
}

.sec-margin-medium {
    margin: 30px 0;
}

.sec-margin-small {
    margin: 25px 0;
}

.sec-margin-xsmall {
    margin: 10px 0;
}

/*** no padding, no marging ***/

.p-0 {
    padding: 0;
}

.pt-0 {
    padding-top: 0px;
}

.pb-0 {
    padding-bottom: 0px;
}

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

.pr-0 {
    padding-right: 0px;
}

.m-0 {
    margin: 0;
}

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

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

.ml-0 {
    margin-left: 0px;
}

.mr-0 {
    margin-right: 0px;
}

.tt-uppercase {
    text-transform: uppercase;
}

.tt-capitalize {
    text-transform: capitalize;
}

p strong {
    color: black;
}

p span {
    color: black;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

img {
    border: 0px;
    outline: none;
}

/*img { max-width: 100%;  }*/

ul, li {
    list-style-type: none;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

h2, .h2 {
    color: #160c28;
    line-height: 1.2;
    font-weight: 700;
    padding: 0 0 15px 0;
    position: relative;
    letter-spacing: -1px;
}

h2 span, .h2 span {
    color: var(--primary-color);
}

a {
    text-decoration: none;
}

.list-simple {
    list-style: none;
    margin: 0 0 15px 0;
    width: 100%;
    display: inline-block;
}

.list-simple li {
    color: var(--default-color);
    padding: 0 0 10px 16px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

.list-simple li:before {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 13px;
    color: var(--secondary-color);
    content: "\e93a";
    font-family: 'icomoon' !important;
}

/*** morefull block link ***/

.moreFull {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-indent: -9999px;
}

/*** transition ***/

.transition {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*** scale with transition ***/

.scale-with-transition {
    -webkit-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

/* header
------------------------------------*/

.topbar{
    background-color:#ff9f0d;
    padding:8px 10px;
    margin-bottom:10px;
}
.topbar a,.topbar li{
    color:#fff;
}

.topbar li img{
    width: 24px;
}
.topbar .social{
    width:auto;
    margin-top:0px;
}
.topbar .d-flex{
    gap:2px;
}
.topbar .social a {
    background-color: #fff;
    border-radius: 3px;
    padding: 2px 6px;
    border-radius: 4px;
}
.topbar .social li{
    padding:0px;
}

.header-main {
    position: fixed;
    padding: 0 0 0 0;
    z-index: 99;
    width: 100%;
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    top: 0;
}

.header-main.fixed {
    box-shadow: 0px 5px 20px #00000012;
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    position: fixed;
    background: #fff;
}

.header-main.fixed .main-menu>ul>li>a {
    text-transform: capitalize;
    color: #223235;
}

.header-main.fixed .logo {
    width: 100%;
}

.top-bar {
    position: fixed;
    background: #f5f8fa;
    padding: 0;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid #cbd6e2;
    z-index: 99;
}

.top-info-list {
    float: right;
    margin: 25px 0;
}

.top-info-list li {
    float: left;
    color: #171717;
    font-size: 14px;
    padding: 0 10px;
}

.top-info-list li:first-child {
    padding-left: 0px;
}

.top-info-list li:last-child {
    padding-right: 0px;
}

.top-info-list li span {
    margin-right: 8px;
    color: #171717;
    font-size: 13px;
    line-height: 20px;
}

.top-info-list li span.icon-phone2 {
    font-size: 15px;
    top: 1px;
    position: relative;
}

.top-info-list li+li {
    /* border-left: 1px solid #171717; */
}

.top-info-list li a {
    color: #171717;
}

.top-info-list li a:hover {
    color: #223235;
}

.nav-area-full {
    padding: 0px 0;
    width: 100%;
    /*margin-top: 72px;*/
    position: fixed;
    background: #fff;
    top: 0px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    box-shadow: 0px 10px 23px #0000000d;
}
.logo-area {
    text-align: center;
}
.logo-area .logo {
    margin-bottom: -75px;
}
.logo {
    width: 100%;
    margin: 0;
    float: left;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.logo img {
    width: 140px;
}

.logo a {
    display: block;
}

.top-area {
    display: inline-block;
    width: 100%;
}

.main-menu {
    width: 100%;
    display: inline-block;
    /* float: right; */
}

.main-menu>ul {
    /* float: right; */
    margin: 0px;
    font-family: var(--heading-font-family);
}

.main-menu>ul>li {
    padding: 0px;
    /* float: left; */
    display: inline-block;
    position: relative;
    line-height: 1;
    margin-top: 2px;
    vertical-align: middle;
}

.main-menu>ul>li:last-child {
    padding-right: 0px;
    /* margin-top: -14px; */
}

.main-menu>ul>li:before {
    position: absolute;
    width: 1px;
    height: 12px;
    background: #71787e;
    left: 0px;
    top: 30%;
}

.main-menu>ul>li:first-child:before {
    display: none;
}

.main-menu>ul>li>a {
    padding: 30px 14px;
    font-size: 16px;
    color: #343434;
    font-weight: 500;
    text-transform: capitalize;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.main-menu>ul>li.book-call>a {
    border: 2px solid #ffffff;
    border-radius: 10px;
    padding: 11px 20px;
    margin: 0 20px 0 10px;
    color: #fff;
}

.header-main .has-submenu.progmenu {
    font-size: 16px;
    color: #171717;
    font-weight: 400;
    margin: 0;
    padding: 3px 0 4px;
    font-family: var(--primary-font-family);
}

.main-menu>ul>li>a>i {
    font-size: 16px;
    padding-left: 3px;
}

.main-menu>ul>li.head-no>a {
    border-radius: 30px;
    padding: 16px 20px;
    font-size: 14px;
    background-color: #FFA22D;
    color: #fff;
    font-weight: 700;
}

.main-menu>ul>li.head-no>a:hover {
    color: #fff;
}

.main-menu>ul>li.active>a, .main-menu>ul>li>a:hover, .main-menu>ul>li>a.active, .main-menu>ul>li>a:focus {
    color: #FFA22D;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.cstn-column {
    display: inline-block;
    width: 100%;
    font-size: 0;
}
.dropdown-menu {
    min-width: 220px;
    padding: 0;
    margin-top: 0px;
}

.dropdown-menu .dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
}
ul.list {
    padding-left: 18px;
    margin: 14px 0;
    font-size: 18px;
    color: #4E4E4E;
    line-height: 1.4;
}

ul.list li {
    list-style-type: disc;
}
/* .dropdown {
    width: 270px;
    position: absolute;
    top: 160%;
    left: 0%;
    visibility: hidden;
    opacity: 0;
    padding: 0px;
    background-color: #fff;
    border: 1px solid #cbd6e2;
    border-radius: .1875rem;
    box-shadow: 0 1px 24px rgba(45, 62, 80, 0.12);
    z-index: 95;
} */

.main-menu>ul>li:hover .dropdown {
    visibility: visible;
    /* shows sub-menu */
    opacity: 1;
    left: 18px;
}

.main-menu>ul>li:hover .progmenu .dropdown {
    left: 0;
}

.dropdown>ul {
    padding: 10px 0;
    list-style: none;
}

.dropdown>ul>li {}

.dropdown>ul>li:before {
    display: none;
}

.dropdown>ul>li+li {}

.dropdown>ul>li>a {
    color: #171717 !important;
    font-size: 15px;
    text-decoration: none;
    padding: 8px 10px 8px 15px;
    display: block;
}

.dropdown>ul>li>a:hover {
    color: black;
    background: none;
}

.dropdown>ul>li>a:hover:before {
    display: none;
}

.double-drop {
    width: 400px!important;
}

.dropdown>ul>li>ul {
    display: none;
}

.dropdown>ul>li.level2:hover>ul {
    display: block;
}

.stickyheader {
    position: fixed;
    z-index: 9999;
    min-height: auto;
}

.stickyheader .logo img {
    width: 80px;
}

.stickyheader .logo {
    margin: 5px 0;
}

.stickyheader .navbar-inverse {
    margin: 10px 0 0 0;
}

.stickyheader .top-info-list ul {
    margin: 5px 0;
}

/* sticky social icons
------------------------------------*/

.sticky-container {
    padding: 0px;
    margin: 0px;
    position: fixed;
    right: -155px;
    top: 180px;
    width: 200px;
    display: none;
    z-index: 999;
}

.sticky li {
    border-radius: 5px;
    list-style-type: none;
    background-color: #333;
    color: #efefef;
    height: 45px;
    padding: 0px;
    margin: 0px 0px 0px 0px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

.sticky li:hover {
    margin-left: -115px;
}

.sticky li img {
    float: left;
    border-radius: 5px 0 0px 5px;
    margin: 0;
    margin-right: 10px;
}

.sticky li p {
    padding: 0px;
    margin: 0px;
    text-transform: capitalize;
    line-height: 45px;
    color: white;
}

.sticky li a {
    border-radius: 5px;
    color: white;
}

.main-menu>ul>li.book-call {
    margin-top: 0;
}

.main-menu>ul>li.book-call a {
    position: relative;
    color: #4c4c4c;
    font-size: 16px;
    font-weight: 600;
}

.main-menu>ul>li.book-call a i {
    position: absolute;
    margin-right: 6px;
    padding-left: 0;
    font-size: 16px;
    left: 0px;
}

.home-banner {
    background-size: cover;
    background-position: top center;
    height: 800px;
    width: 100%;
    margin-top: 90px;
    border-radius: 170px 0 170px 0;
}

.home-banner .bannertext {}

.home-banner .bannertext .banner-heading {
    color: #fff;
    font-weight: 700;
    font-size: 44px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.home-banner .bannertext .banner-paragraph {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 40px;
}

.mheading {
    line-height: 1.1;
    /* text-align: center; */
    color: #191919;
    font-size: 50px;
    font-weight: 700;
}

.mparagraph {
    font-size: 18px;
    color: #4E4E4E;
    line-height: 1.4;
    /* text-align: center; */
}
.subtitle {
    color: #0047C4;
    letter-spacing: 10px;
    font-weight: 500;
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    display: block;
}

.subtitle:before {
    content: '';
    width: 30px;
    height: 1px;
    position: absolute;
    left: 0;
    background: #0047C4;
    top: 50%;
    transform: translate(0px, -50%);
}
.section-padding {
    padding: 80px 0;
}
.clientelesec {
    padding: 60px 0;
}

.clientlogos {
    display: inline-block;
    width: 100%;
    font-size: 0;
    margin-bottom: 0;
    margin-top: 40px;
    text-align: center;
}

.clientlogos li {
    display: inline-block;
    width: 20%;
}

.clientlogos li .clientss {
    width: 182px;
    height: 50px;
    background: url(../images/sprite.png);
    display: inline-block;
}

.clientlogos li .clientss.one {
    background-position: 0 0;
}

.clientlogos li .clientss.two {
    background-position: -182px 0;
}

.clientlogos li .clientss.three {
    background-position: -364px 0;
}

.clientlogos li .clientss.four {
    background-position: -546px 0;
}

.clientlogos li .clientss.five {
    background-position: -728px 0;
}

.logotypes {
    padding: 60px 0;
    background: #f3f3f3;
}

.logotypes .mheading {}

.logotypes .mparagraph {}

.logotypes .tab-custom {
    font-size: 0;
    margin-top: 50px;
}

.logotypes .tab-custom .tabbing-links {
    width: 23%;
    margin: 0 1%;
    /* padding: 0 15px; */
    overflow: hidden;
    vertical-align: top;
    border-radius: 15px;
    margin-bottom: 0;
    display: inline-block;
    box-shadow: 0px 0px 40px #00000020;
}

.logotypes .tab-custom .tabbing-links li:hover {
    background: #fff;
    color: #4c4c4c;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.logotypes .tab-custom .tabbing-links li:hover::after {
    display: none;
}

.logotypes .tab-custom .tabbing-links li {
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    background: #FFA22D;
    line-height: 1;
    padding: 20px 40px;
    position: relative;
}

.logotypes .tab-custom .tabbing-links li.current:after {
    content: "";
    display: none;
}

.logotypes .tab-custom .tabbing-links li:after {
    content: "";
    border-bottom: 1px solid #4dc9c9;
    position: absolute;
    width: 80%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.logotypes .tab-custom .tabbing-links li.current {
    background: #fff;
    color: #4c4c4c;
}

.logotypes .tab-custom .tabs {
    display: none;
}

.logotypes .tab-custom .tabs.current {
    width: 75%;
    padding: 0 15px;
    display: inline-block;
}

.logotypes .designarea {
    position: relative;
}

.logotypes .designarea figure {
    box-shadow: 0px 0px 40px #00000020;
    position: absolute;
    margin-bottom: 0;
    border-radius: 10px;
    display: inline-block;
    overflow: hidden;
    top: 98px;
    margin: auto;
    left: 0;
    z-index: 9;
    width: 370px;
}

.logotypes .designarea figure img {
    width: 100%;
}

.logotypes .designarea .textwrap {
    box-shadow: 0px 0px 40px #00000020;
    width: 70%;
    background: #FFA22D;
    border-radius: 15px;
    padding: 80px 100px 80px 150px;
    text-align: left;
    float: right;
    height: 500px;
}

.logotypes .designarea .textwrap .subheading {
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    text-align: left;
}

.logotypes .designarea .textwrap .mparagraph {
    text-align: left;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
}

/*--------------------------------------------------------------
# Destination Section
--------------------------------------------------------------*/

.portfolio .portfolio-item {
    margin-bottom: 0px;
    padding: 10px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0px auto 30px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
    padding: 2px 15px;
}

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

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
    color: #2487ce;
}

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

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 10px;
}

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

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

.portfolio .portfolio-wrap .portfolio-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

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

.portfolio .portfolio-wrap .portfolio-info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

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

.portfolio .portfolio-wrap .portfolio-links a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

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

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

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

.portfolio .portfolio-wrap:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
}

.no-pad {
    padding: 0px;
}

.destination-sec h2 {}

.destination-sec #portfolio-flters li {
    line-height: 1;
    text-align: center;
    border-radius: 30px;
    text-transform: capitalize;
    font-size: 16px;
    padding: 16px 30px;
    font-weight: 600;
    color: #6c6c6c;
}

.portfolio #portfolio-flters li.filter-active {
    background-color: #FFA22D;
    color: #fff;
}

.portfolio #portfolio-flters li:hover {
    background-color: #FFA22D;
    color: #fff;
}

.destination-location {
    text-align: center;
    position: absolute;
    bottom: 28px;
    right: 0;
    left: 0;
}

.destination-location h6 {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
}

.destination-location h4 {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
}

.destination-sec {
    padding: 60px 0;
}

@media (max-width: 768px) {
    .destination-sec {
        padding: 90px 0 50px;
    }
    .destination-sec h2 {
        font-size: 28px;
        margin: 0 0 30px;
    }
    .no-pad-right {
        padding-right: 15px;
    }
    .destination-sec #portfolio-flters li {
        width: 40%;
        height: 46px;
        line-height: 46px;
        font-size: 16px;
    }
    .portfolio #portfolio-flters {
        margin: 0 auto 15px auto;
    }
    .destination-location h4 {
        font-size: 30px;
    }
    .portfolio-wrap img {
        width: 100%;
        height: 460px;
    }
}

.ctasec {
    padding: 60px 0;
}

.ctasec .ctawrap {
    background: #f3f3f3;
    border-radius: 10px;
    padding: 50px 60px;
}

.ctasec .ctawrap .textwrap {
    width: 50%;
    text-align: left;
}

.ctasec .ctawrap .textwrap .mheading {
    line-height: 1.1;
    text-align: left;
    font-weight: 700;
}

.ctasec .ctawrap .textwrap .mparagraph {
    text-align: left;
}

.ctasec .ctawrap .textwrap .btn-wrap {
    display: inline-block;
    margin-top: 30px;
}

.ctasec .ctawrap .textwrap .btn-wrap a {
    margin-right: 10px;
}

.ctasec .ctawrap .figcta {
    position: absolute;
    bottom: -40px;
    right: -75px;
}

.ctasec .ctawrap .figcta img {}

.packagesec {
    padding: 60px 0;
    background: #f3f3f3;
}

.packagesec .mheading {}

.packagesec .mparagraph {
    margin-bottom: 30px;
}

.packagesec .packagewrap {}

.packagesec .packagewrap .tab-custom {}

.packagesec .packagewrap .tab-custom .tabbing-links {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: 0px 0 45px;
}

.packagesec .packagewrap .tab-custom .tabbing-links li:hover {
    background-color: #FFA22D;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.packagesec .packagewrap .tab-custom .tabbing-links li {
    transition: all 0.3s ease-in-out;
    display: inline-block;
    cursor: pointer;
    line-height: 1;
    text-align: center;
    border-radius: 30px;
    text-transform: capitalize;
    font-size: 16px;
    padding: 16px 30px;
    font-weight: 600;
    color: #6c6c6c;
}

.packagesec .packagewrap .tab-custom .tabbing-links li.current {
    background-color: #FFA22D;
    color: #fff;
}

.packagesec .packagewrap .tab-custom .tabs.current {
    display: inline-block;
    width: 100%
}

.packagesec .packagewrap .tab-custom .tabs {
    display: none;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap {
    display: inline-block;
    width: 100%;
    font-size: 0;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item {
    width: 31%;
    margin: 0px 12px;
    display: inline-block;
    text-align: center;
    padding: 30px 30px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 40px -5px #00000020;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item figure {
    text-align: center;
    margin-bottom: 15px;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item figure img {}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item h3 {
    color: #2c2c2c;
    padding-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item .stars {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item .stars i {
    color: #00b1b1;
    font-size: 16px;
    margin: 0 4px;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item .pricing {
    text-align: center;
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item .pricing:after {
    position: absolute;
    width: 60%;
    height: 1px;
    background: #dedede60;
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0 auto;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item .pricing .cross {
    position: relative;
    color: #2c2c2c;
    font-size: 24px;
    font-weight: 400;
    margin-right: 10px;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item .pricing .cross:before {
    transform: skewY(-20deg);
    content: "";
    position: absolute;
    border-bottom: 2px solid #2c2c2c;
    height: 20px;
    width: 120%;
    top: -3px;
    right: -5px;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item .pricing .cross:after {
    content: "";
    position: absolute;
    border-right: 1px solid #2c2c2c;
    height: 20px;
    top: 5px;
    right: -12px
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item .pricing .discounted {
    margin-left: 10px;
    color: #2c2c2c;
    font-size: 40px;
    font-weight: 700;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item .ticklist {
    height: 215px;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item .ticklist li {
    color: #6c6c6c;
    position: relative;
    font-size: 15px;
    line-height: 1.4;
    text-align: left;
    padding: 7px 0;
    font-weight: 500;
    padding-left: 35px;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item .ticklist li:before {
    color: #FFA22D;
    content: "\e916";
    font-size: 16px;
    position: absolute;
    font-family: 'icomoon' !important;
    left: 5px;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item .ticklist li.heading:before {
    display: none;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item .ticklist li.heading {
    padding: 10px 0 10px;
    padding-left: 0px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item .btn-wrap {
    text-align: center;
    margin: 25px 0 15px;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item .btn-wrap .btn-pack {
    color: #fff;
    background-color: #FFA22D;
    border: 1px solid #FFA22D;
    text-transform: capitalize;
    font-family: 'Muli', sans-serif;
    border-radius: 30px;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item .viewdetails span {
    margin-right: 10px
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item .viewdetails {
    color: #2c2c2c;
    font-size: 14px;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item.popular {
    background: #FFA22D;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item.popular h3 {
    color: #fff;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item.popular .stars i {
    color: #fff;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item.popular .pricing .cross {
    color: #fff;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item.popular .pricing .cross:before {
    border-color: #fdfdfd;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item.popular .pricing .cross:after {
    border-color: #fdfdfd;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item.popular .pricing .discounted {
    color: #fff;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item.popular .ticklist li {
    color: #fff;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item.popular .ticklist li:before {
    color: #fff;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item.popular {
    position: relative;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item.popular:after {
    content: "";
    background: url(../images/popularbadge.png);
    width: 45px;
    height: 94px;
    left: 40px;
    top: 0;
    position: absolute;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item.popular .btn-wrap .btn-pack {
    color: #FFA22D;
    background-color: #ffffff;
    border: 1px solid #ffffff;
}

.packagesec .packagewrap .tab-custom .tabs .packwrap .item.popular .viewdetails {
    color: #fff;
}

.aboutsec {
    padding: 60px 0;
}

.aboutsec .textwrap {
    padding-right: 20px;
}

.aboutsec .textwrap .mheading {
    text-transform: capitalize;
    text-align: left;
}

.aboutsec .textwrap .mparagraph {
    padding-bottom: 40px;
    text-align: left;
    font-size: 18px;
}

.aboutsec figure {
    margin-bottom: 0;
}

.aboutsec figure.vid {
    margin-top: -40px;
}

.aboutsec figure img {}

.processsec {
    background: #ffffff;
    padding: 60px 0;
}

.processsec .mheading {}

.processsec .mheading p {}

.processsec .boxeswrap {
    display: inline-block;
    width: 100%;
    font-size: 0;
    margin-bottom: 0;
    margin-top: 40px;
}

.processsec .boxeswrap .box {
    display: inline-block;
    width: 23%;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 30px #0000001f;
    margin: 0 10px;
    background: #fff;
}

.processsec .boxeswrap .box figure {}

.processsec .boxeswrap .box figure img {}

.processsec .boxeswrap .box h3 {
    color: #2e2e2e;
    font-size: 18px;
    font-weight: 700;
}

.processsec .boxeswrap .box p {
    color: #4f4f4f;
    font-size: 14px;
    line-height: 1.4;
}

.testimonialsec {
    background: #f3f3f3;
    padding: 60px 0;
}

.testimonialsec .mheading {}

.testimonialsec .mparagraph {}

.testimonialsec .testmain {}

.testimonialsec .testmain .testwrap {
    display: inline-block;
    width: 100%;
    font-size: 0;
    margin: 40px 0 0;
}

.testimonialsec .testmain .testwrap .item {
    display: inline-block;
    width: 25%;
    padding: 0 20px;
    text-align: center;
    vertical-align: top;
}

.testimonialsec .testmain .testwrap .item figure {}

.testimonialsec .testmain .testwrap .item figure img {}

.testimonialsec .testmain .testwrap .item .info {
    font-size: 22px;
    color: #2c2c2c;
    font-weight: 700;
    padding-bottom: 0;
}

.testimonialsec .testmain .testwrap .item .info span {
    display: block;
    font-size: 12px;
    /* font-weight: 400; */
    color: #4f4f4f;
    margin-top: 5px;
}

.testimonialsec .testmain .testwrap .item .truststars {
    padding: 15px 0;
    position: relative;
}

.testimonialsec .testmain .testwrap .item .truststars:after {
    content: "";
    position: absolute;
    width: 40%;
    height: 1px;
    background: #FFA22D;
    bottom: 0;
    left: 0px;
    right: 0;
    margin: 0 auto;
}

.testimonialsec .testmain .testwrap .item .truststars i {
    font-size: 18px;
}

.testimonialsec .testmain .testwrap .item blockquote {
    margin-bottom: 0;
    padding-top: 20px;
    color: #4f4f4f;
    font-size: 14px;
}

.consultancysec h6 {
    font-size: 21px;
    text-align: center;
    color: #e67a3f;
    text-transform: capitalize;
    padding: 0;
}

.consultancysec h2 {
    /* padding: 6px 0 0; */
    /* text-transform: capitalize; */
    text-align: center;
}

.consultancysec p {
    padding: 15px 120px 0;
    text-align: center;
}

.consultancysec {
    width: 100%;
    padding: 60px 0;
    position: relative;
    overflow-x: hidden;
}

.consultancysec:after {
    content: "";
    position: absolute;
    background: url(../images/footer1.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    height: 500px;
    bottom: 0;
    display: block;
    right: -40px;
    z-index: -1;
    width: 27%;
}

.consultancysec .form {
    width: 75%;
    margin: 0 auto;
    padding: 50px 0 0 0;
}

.form input {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: none;
    background-color: #fff;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.09);
    text-decoration: none;
    padding: 0 0 0 10px;
    margin: 0 0 20px;
    font-size: 15px;
    border: 1px solid #d4d4d4;
}

.form input:focus, .form select:focus, .form textarea:focus {
    box-shadow: 0px 0px 12px 0px rgba(0, 178, 178, 0.26);
}

.bform input:focus, .bform select:focus, .bform textarea:focus {
    border: 1px solid #FFA22D52;
    box-shadow: 0px 0px 22px 0px rgb(0, 178, 178, 0.2) !important;
}

.form label {
    font-size: 14px;
    color: #444;
    width: 100%;
    text-align: left;
    margin: 0;
    padding: 0 0 5px 5px;
    display: inline-block;
    text-transform: capitalize;
}

.form select {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 0 0 20px;
    border-radius: 10px;
    padding: 0 20px;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.09);
    position: relative;
    font-size: 15px;
    color: #aba9a9;
    background: white;
    border: 1px solid #d4d4d4;
    -webkit-appearance: none;
}

.form .fa-caret-down {
    position: absolute;
    top: 45px;
    right: 35px;
    display: inline-block;
    z-index: 1;
    color: #aba9a9;
}

.consultancysec .form select:after {
    content: "\f107";
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    display: block;
    background: #080808;
    font-size: 15px;
}

.intl-tel-input.separate-dial-code .selected-dial-code {
    font-size: 12px;
}

.form textarea {
    width: 100%;
    height: 160px;
    padding: 10px 0 0 10px;
    resize: unset;
    margin: 0 0 20px;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.09);
    border-radius: 7px;
    font-size: 13px;
    border: 1px solid #d4d4d4;
}

.consultancysec .form .frmbtn [type=submit] {}

.consultancysec .form .frmbtn [type=submit]:hover {}

.consultancysec .form .frmbtn {
    text-align: center;
    width: 100%;
    padding: 0;
}

.consultancysec.bannerform .form .frmbtn [type=submit] {
    width: 100%;
}

.main-banner-from-sec .consultancysec:after, .consultancysec.bannerform:after {
    display: none;
}

.consultancysec .intl-tel-input.allow-dropdown.separate-dial-code {
    width: 100%;
}

.bform textarea:focus, .bform select:focus {
    outline: 0;
}

.form input#phone-country {}

.form input[type=number]::-webkit-inner-spin-button, .form input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

header .main-menu ul li.hasmenu:hover .dropDown {
    height: auto;
    padding: 30px 40px 40px;
    opacity: 1;
}

header .dropDown {
    /* background-image: url(../images/navigation-background.png); */
    position: fixed;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    top: 98px;
    width: 100%;
    background-color: #ffffff;
    z-index: 9;
    padding: 0px 40px;
    border-top: solid 1px #dedede;
    height: 0;
    overflow: hidden;
    -moz-transition: height 1s ease;
    -webkit-transition: height 1s ease;
    -o-transition: height 1s ease;
    transition: height 1s ease;
    opacity: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat;
    box-shadow: 0px 10px 23px #0000000d;
}

header .dropDown ul {}

header .dropDown ul li {
    width: 16%;
    display: inline-block;
    padding: 0 30px;
    vertical-align: top;
}

header .dropDown ul li a {
    color: #333;
    display: block;
    line-height: 17px;
}

header .dropDown ul li a img {
    width: 120px;
}

header .dropDown ul li a span.head {
    font-size: 14px;
    font-weight: 700;
    display: block;
    /* padding-left: 10px; */
    color: #2e2e2e;
    margin: 15px 0 10px;
}

header .dropDown ul li a span.discp {
    font-size: 12px;
    /* padding-left: 10px; */
}

header .dropDown ul li a.link {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #2e2e2e;
}

header .dropDown ul li.last {
    padding: 5px 0px 0;
}

.main-menu>ul>li.hasmenu span {
    font-size: 10px;
    /* margin-left: 5px; */
}

/*Footer start*/

.footer-container {
    padding: 60px 0;
}

.footer-info {
    margin-top: 52px;
}

.footer-info img {
    width: 150px;
}

.footer-info p {
    color: #000;
    font-size: 15px;
    line-height: 30px;
    padding-bottom: 0;
}

.para-info {
    margin: 18px 0;
}

.contact-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.contact-info span {
    margin-right: 18px;
}

.contact-info span a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-family: var(--primary-font-family);
    transition: .15s all ease-in-out;
}

.footer-column {
    width: 100%;
    display: inline-flex;
    padding-top: 120px;
    /* padding-left: 50px; */
}


.menu-column span {
    font-family   :'Muli', sans-serif;
    margin-bottom: 0;
    padding-bottom: 9px;
    display: block;
    color: #292929;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.5;
    text-align: left;
    border-bottom: solid 2px #ffffff57;
}

.menu-column .menu li {
    padding: 6px 0;
}

.menu-column .menu li a {
    display: inline-block;
    color: #000;
    font-family: var(--primary-font-family);
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: .15s all ease-in-out;
}

.btm-footer {
    background: #ff9f0d;
    padding: 14px;
    text-align: center;
}

.btm-footer hr {
    border-top: 1px solid #ffffff4f;
    width: 100%;
}

.btm-footer .item {
    margin-right: 30px;
    margin-top: 10px;
    display: inline-block;
}

.btm-footer .item.c-plus {
    /* width:20%; */
}

.btm-footer .item.gold-500 {
    /* width:10%; */
}

.btm-footer .item.social {
    width: 40%;
    margin-top: 20px;
}

.btm-footer .item img {
    width: auto;
}

.btm-footer .item.social span {
    background: #000;
    border-radius: 50%;
    font-size: 20px;
    padding: 5px 10px;
    text-align: center;
    margin: auto 5px;
}

.btm-footer .item.social span a {
    color: #3b50e4;
}

.nobanner {
    margin-top: 98px;
}

.home-banner .btn-secondary {
    margin-left: 10px;
    color: #fff;
    border-color: #fff;
}

.inner-banner {
    background-size: cover;
    background-position: top center;
    height: auto;
    width: 100%;
    margin-top: 102px;
    padding: 100px 0;
    border-radius: 140px 0 140px 0;
}

.inner-banner .bannertext {
    position: relative;
    z-index: 9;
}

.inner-banner .bannertext .banner-heading {
    color: #fff;
    font-weight: 900;
    font-size: 50px;
    margin-bottom: 0;
    line-height: 1.2;
}

.breadcrumb-item.active {
    color: #DEDEDE;
}
.breadcrumb {display: inline-flex;background: transparent;font-size: 16px;font-weight: 500;margin-bottom: 0;}

.breadcrumb a {
    color: #FFA22D;
    text-decoration: underline;
}


.mycount {
    padding: 60px 0;
    background: url(../images/background-numbers.jpg);
    width: 100%;
    background-size: cover;
    background-position: top center;
}

.mycount .countwrap {}

.mycount .countwrap .countlist {
    margin-bottom: 0;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 0;
}

.mycount .countwrap .countlist li {
    width: 33.33%;
    display: inline-block;
    padding: 0 40px;
}

.mycount .countwrap .countlist li h3 {
    color: #fff;
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 3.2px;
}

.mycount .countwrap .countlist li p {
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 500;
}

.ourStory {
    background: #f3f3f3;
    padding: 60px 0;
}

.ourStory .mheading {}

.ourStory .mparagraph {
    padding-bottom: 50px;
}

.ourStory .figpart {}

.ourStory .figpart li {}

.ourStory .figpart li figure {}

.ourStory .figpart li figure img {
    width: 100%;
}

.ourStory .textwrap {}

.ourStory .textwrap .mheading {
    text-align: left;
}

.ourStory .textwrap .mparagraph {
    text-align: left;
    padding-bottom: 20px;
}

.ourStory .textwrap .mparagraph strong {
    display: block;
    margin-top: 20px;
    color: #FFA22D;
}

.ourStory .textwrap blockquote {
    font-style: italic;
    font-size: 24px;
    font-weight: 500;
    color: #FFA22D;
    margin-bottom: 30px;
    margin-top: 10px;
}

.service-banner {
    background-size: cover;
    background-position: top center;
    height: 700px;
    width: 100%;
    margin-top: 98px;
    background-repeat: no-repeat;
}

.service-banner .bannertext {}

.service-banner .bannertext .banner-heading {
    color: #fff;
    font-weight: 700;
    font-size: 44px;
    margin-bottom: 20px;
    text-transform: capitalize;
    line-height: 1.2;
}

.service-banner .bannertext .banner-paragraph {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.service-banner .bannertext .bannerlist {}

.service-banner .bannertext .bannerlist li {
    position: relative;
    color: #fff;
    font-size: 18px;
    padding-left: 33px;
    padding-bottom: 5px;
}

.service-banner .bannertext .bannerlist li:before {
    color: #FFA22D;
    content: "\e916";
    font-size: 18px;
    position: absolute;
    font-family: 'icomoon' !important;
    left: 5px;
}

.service-banner .bannertext .trustlogos {
    margin-bottom: 0;
    font-size: 0;
    padding-top: 20px;
}

.service-banner .bannertext .trustlogos li {
    padding: 0 5px;
    display: inline-block;
}

.service-banner .bannertext .trustlogos li .tlogos {
    width: 150px;
    height: 50px;
    background: url(../images/sprite.png);
    display: inline-block;
}

.service-banner .bannertext .trustlogos li .tlogos.one {
    background-position: -6px 62px;
}

.service-banner .bannertext .trustlogos li .tlogos.two {
    background-position: -208px 61px;
    width: 125px;
}

.service-banner .bannertext .trustlogos li .tlogos.three {
    background-position: -378px 61px;
    width: 144px;
}

.service-banner .bannertext .trustlogos li .tlogos.four {
    background-position: -596px 61px;
    width: 69px;
}

.mybanform {}

.mybanform form {}

.mybanform form .wrap {}

.mybanform form .wrap h2 {
    font-size: 26px;
    color: #fff;
    font-weight: 400;
    text-align: center;
}

.mybanform form .wrap h2 span {
    display: block;
    font-size: 38px;
    font-weight: 700;
    color: #fff;
}

.mybanform form .wrap .dtf {
    text-align: center;
    margin-bottom: 20px;
}

.mybanform form .wrap .dtf input[type="text"], .mybanform form .wrap .dtf input[type="email"], .mybanform form .wrap .dtf textarea, .mybanform form .wrap .dtf input[type="number"] {
    width: 100%;
    margin: 0 0 0 0;
    border: 1px solid #e5e5e5;
    background: white;
    padding: 10px 15px;
    color: gray;
    font-size: 14px;
    border-radius: 10px;
    height: 50px;
    font-weight: 400;
    outline: none !important;
    /* margin: 0 0 15px 0; */
}

.mybanform form .wrap .dtf textarea {
    height: 120px;
}

.mybanform form .wrap .dtf input[type="submit"] {
    color: #fff;
    background-color: #FFA22D;
    border: 1px solid #FFA22D;
    text-transform: capitalize;
    font-family: 'Muli', sans-serif;
    border-radius: 30px;
    padding: 16px 30px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

input.error {
    border: 1px solid red !important;
}

label.error {
    display: none!important;
}

.service-banner .bannertext .btnwrap {}

.service-banner .bannertext .btnwrap .banneranchor {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-left: 15px;
}

.service-banner .bannertext .btnwrap .banneranchor span {
    margin-right: 5px;
    color: #f8be4a;
    font-weight: 600;
}

.servicespg .aboutsec {
    background: #f3f3f3;
}

.clientlogos.inner {
    margin-top: 0px;
}

.clientelesec.inner {
    padding: 40px 0;
}

.hompg .processsec {
    background: #fff;
}

.hompg .testimonialsec {
    background: #f3f3f3;
}

.portfolio-item {}

.fpayment {
    text-align: right;
    margin-bottom: 0;
}

.social {
    margin-bottom: 0;
    display: inline-block;
    width: 100%;
    margin-top: 15px;
    text-align: center;
    padding-right: 12px;
}

.social li {
    display: inline-block;
    padding: 0 10px;
}

.social li a {
    color: #012463;
    font-size: 18px;
}

.social li a i {}

.portfolio .mparagraph {
    margin-bottom: 35px;
}

.copy {}

.copy p {
    margin-bottom: 0;
    color: #000;
    font-size: 12px;
}

.copy p span {
    color: #000;
}

.policyanchors {
    text-align: right;
    display: inline-block;
    width: 100%;
    margin-bottom: 0;
}

.policyanchors li {
    display: inline-block;
    /* padding: 0 15px; */
}

.policyanchors li a {
    color: #fff;
    font-size: 14px;
}

.policyanchors li.terms {
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
}

.policyanchors li.terms:after {
    position: absolute;
    content: "";
    border-right: 1px solid #ffffff4f;
    right: 0;
    top: 4px;
    height: 14px;
}

.testlist {
    height: 170px;
}

.mainvideo {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -100;
    background-size: cover;
    transform: scale(1.8);
}

.service-banner .video-overlay {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background: url(../images/video-overlay.png) rgba(0, 0, 0, 0.65);
    width: 100%;
    height: 100%;
}

.service-banner {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.animatedpg.servicespg .aboutsec {
    background: #fff;
}

.videopg.servicespg .aboutsec {
    background: #fff;
}

.inner-banner {
    position: relative;
}

.inner-banner .overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background: url(../images/video-overlay.png) rgba(0, 0, 0, 0.65);
    width: 100%;
    height: 100%;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}

.curve-card {
    border-color: #ffa22d26;
    border-radius: 80px 0px 80px 0px;
    margin-bottom: 20px;
    min-height: 330px;
    position: relative;
}

.curve-card .card-body {
    padding: 30px 30px;
}

.curve-card img.icon {
    width: 40px;
    margin-bottom: 20px;
}

.curve-card h4 {
    color: #191919;
    font-size: 22px;
    font-weight: 700;
}

.curve-card p {
    color: #4E4E4E;
    margin-bottom: 0px;
    font-size: 14px;
}

.curve-card .btn {
    margin-bottom: -60px;
}

.curve-card .btn {
    padding: 8px 20px;
}

.curve-card:hover {
    box-shadow: 0px 0px 46px #d6d6d67a;
}

.curve-card:hover .btn-primary {
    background: linear-gradient(55deg, #012463, #0045BE);
    border-color: #0045BE;
}

.curve-card.hover-spot:hover .card-body:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(322deg, #012463, #004CD133);
    opacity: .5;
    left: 46px;
    filter: blur(2px);
    top: 45px;
    border-radius: 50%;
}
.bg-sec {
    position: relative;
}

.bg-sec:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #003da90d;
    border-radius: 170px 0 170px 0;
}
.faq-sec {
    background-position: bottom left;
    background-size: 80%;
    background-repeat: no-repeat;
    background-color: #f5f7fc;
    border-radius: 170px 0 170px 0;
}
.count {
    margin-top: 20px;
    margin-bottom: 10px;
}

.count h4 {
    color: #0047C4;
    font-weight: 700;
    font-size: 34px;
    padding-bottom: 0;
}

.count>div {
    margin-right: 20px;
}

.count p {
    color: #292929;
}

.testi-sec .card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.testi-sec .card h4 {
    font-size: 20px;
    padding-bottom: 2px;
    color: #292929;
}

.testi-sec .card h4+p {
    color: #0047C4;
    font-weight: 500;
    margin: 0;
}

.testi-sec .card p {
    margin-top: 10px;
    color: #555555;
    margin-bottom: 10px;
}

.stars {
    color: #FF9D00;
    letter-spacing: 1px;
    font-size: 16px;
}

.card-img-top {
    border-radius: 60px 0px 60px 0px;
    height: 200px;
    object-fit: cover;
}

.card .shadule {
    position: absolute;
    bottom: 0;
    background: #fff;
    padding: 6px 20px;
    border-radius: 0px 20px 0px 0px;
}

.card .shadule span {
    font-size: 14px;
    color: #4E4E4E;
    font-weight: 500;
    margin-right: 10px;
}

.card .shadule span i {
    color: #FF9D00;
}
.curve-card label.btn {
    position: absolute;
    right: 0;
    top: 10px;
    right: 10px;
    font-size: 14px;
}

.contact-sec {
    border-radius: 160px 0 160px 0;
    padding: 140px 0;
    position: relative;
    background-size: cover;
    background-repeat: repeat;
}

.contact-sec .subtitle {
    color: #FFA22D;
}

.contact-sec .subtitle:before {
    background-color: #FFA22D;
}

.contact-sec .mheading {
    color: #fff;
    margin-bottom: 20px;
}

.contact-sec label {
    color: #fff;
    margin-bottom: 0;
}

.contact-sec .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ffffff78;
    border-radius: 0;
    color: #fff;
}

.contact-sec .form-group {
    margin-bottom: 40px;
}
.contact-sec button {
    background: transparent;
    border: none;
    color: #FFA22D;
    display: inline-flex;
    align-items: end;
}

.contact-sec button img {
    width: 35px;
    margin-left: 20px;
}

button:focus {
    outline: none;
}
.special-sec {
    background: linear-gradient(23deg, #012463, #004CD1);
    padding-top: 240px;
    /*margin-top: -160px;*/
    
}

.special-sec .special {
}

.special-sec .special img {
    height: 60px;
    margin-bottom: 10px;
}

.special-sec .special h5 {
    color: #fff;
    padding-bottom: 0;
}


.instagram-sec ul {
    display: flex;
}

.instagram-sec ul img {height: 100%;width: 100%;object-fit: cover;}

.instagram-sec ul li {
    height: auto;
    width: 100%;
    position: relative;
}

.instagram-sec ul li:after {
    content: "\e963";
    font-family: 'icomoon';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000a3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 60px;
    opacity: 0;
}

.instagram-sec ul li:hover:after {
    opacity: 1;
}


form.form-inline {
    margin-top: 10px;
}

form.form-inline button {
    margin-bottom: 0;
    padding: 10px 20px;
}

form.form-inline .form-control {
    padding: 10px 20px;
    border-color: #DDDDDD;
    border-radius: 30px 0 30px 0;
}

.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .home-banner .swiper-slide {
    background-size: cover;
    background-position: top center;
    border-radius: 170px 0 170px 0;
}
.swiper-pagination {
    position: relative;
    bottom: 100px;
    color: #fff;
    text-align: left;
    font-size: 0;
    display: inline-block;
    width: auto;
}

.swiper-pagination span {
    font-size: 28px;
    padding-right: 70px;
}

.swiper-pagination span:first-child:after {
    content: '';
    width: 50px;
    height: 1px;
    margin-left: 12px;
    position: absolute;
    background: #ffffff6b;
    top: 50%;
    transform: translate(0px, -50%);
}

.swiper-button-next, .swiper-button-prev {
    position: relative;
    bottom: 60px;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-left: auto;
    background: #FF9D00;
    z-index: 11;
    color: #fff;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    background: transparent;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
}

.swiper-button-next {
    right: 0;
}
span.swiper-pagination-current {
    color: #ff9d00;
}
.swiper-button-prev {
    left: -80px;
    margin-top: -50px;
}


/* sidebar */
.backdrop {
    background: #000000cc;
    position: absolute;
    z-index: 99;
    height: 100%;
    width: 100%;
    display: none;
    top: 0;
    bottom: 0;
}

.backdrop .logo {
    width: 20%;
    position: absolute;
    left: 75%;
    top: 50%;
    transform: translate(-50%, -50%) scaleX(-1);
    opacity: 0;
    transition: all 1.5s ease;
    -webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
}

.backdrop.rotate .logo {
    transform: translate(-50%, -50%) scaleX(1);
    opacity: 1;
}

.navbar-toggler {
    display: none;
}

.burger-click-region {
    /* position: absolute;
    left: 76px;
    top: 80px;
    width: 40px; */
    height: 22px;
    z-index: 11;
    margin-left: 20px;
    margin-top: -12px;
    cursor: pointer;
}

.nav-area-full .burger-click-region {

    border-color: #343434;
}

.burger-menu-piece {
    display: block;
    position: relative;
    width: 30px;
    border-top: 3px solid #343434;
    transform-origin: 50% 50%;
    margin-top: 8px;
}

.sidebar-wrapper .sidebar {
    top: 0;
    width: 100%;
    max-width: 800px;
    margin-top: 0;
    right: -800px;
    height: 100%;
    position: fixed;
    z-index: 999;
    background: #000000;
}
body.menu-open:after {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #18192380;
    z-index: 99 ;
    backdrop-filter: blur(2px);
    overflow: hidden;
    pointer-events: none;
}
.sidebar-wrapper .sidebar .logo {
    /*position: absolute;*/
    /*top: 60px;*/
    margin-bottom: 60px;
    width: 200px;
    float: none;
}

.sidebar-wrapper .sidemenu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100vh;
}

.sidebar-wrapper .sidemenu .menu-body {
    /* display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: grid; */
    /*-webkit-box-align: center;*/
    /*-webkit-align-items: center;*/
    /*-moz-box-align: center;*/
    /*-ms-flex-align: center;*/
    /*align-items: center;*/
    height: 100%;
    width: 100%;
    padding: 40px;
    overflow: auto;
}

.sidebar-wrapper .sidemenu .menu-body::-webkit-scrollbar {
    width: 0;
}

.sidebar-wrapper .sidemenu .menu-footer {
    padding: 0 0 80px 60px;
}

/* .sidebar-wrapper .sidemenu {
      height: 100%;
  } */
.sidebar-wrapper .sidebar li {
    list-style-type: none;
    font-size: 50px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    min-width: 100%;
}


.sidebar-wrapper .sidebar .sidetext {
    opacity: 1;
    color: #fff;
}

.sidebar .burger-click-region {
    top: 40px;
    right: 40px;
    position: absolute;
}


.menu-title {
    display: none;
    padding: 0 0 30px 0;
    color: rgba(0, 0, 0, .3);
    font-size: 16px;
    line-height: 100%
}

.menu-nav {
    margin: -4px 0
}

.menu-nav-item {
    position: relative;
    display: block;
    padding: 10px 0;
    overflow: hidden;
}

.menu-nav-item a,
.menu-nav-item .nav-item {
    display: inline-block;
    position: relative;
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    line-height: 100%;
    /* top: 80px; */
    transition: all 1s;
}

.openside .menu-nav-item a {
    top: 0;
}

.menu-nav-item .inner-menu {
    display: none;
    padding: 12px 0;
}

.menu-nav-item .inner-menu li {
    text-align: left;
    font-size: inherit;
    margin-bottom: 6px;
}

.menu-nav-item .inner-menu li a {
    font-size: 24px;
    padding-left: 20px;
}

.menu-nav-item a em i {
    position: relative;
    top: 4px;
    /* font-size: 34px; */
    margin-left: 10px;
}

.menu-nav-item a em {
    display: block;
    position: relative;
    /* overflow: hidden; */
    padding: 0 .01em 0 0;
    font-style: normal;
}


.menu-social {
    display: inline-block;
    margin: -6px 0
}


.menu-social-item {
    position: relative;
    display: block;
    padding: 12px 0;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: .00464286em;
    text-transform: capitalize;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
}

.menu-social-item:hover {
    color: #fff;
}


.menu-social-item em {
    display: block;
    position: relative;
    overflow: hidden;
    font-style: normal;
    transition: all 1s;
    top: 20px;
}

.openside .menu-social-item em {
    top: 0;
}

.menu-social-item em span {
    display: block;


}

/* .menu-nav-item.dropdown-nav-item .nav-item:after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
} */

.menu-nav-item.dropdown-nav-item .nav-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.team-inner {
    margin: 10px;
}
.team-inner img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    border-bottom-right-radius: 160px;
}
.team-inner:hover {
    box-shadow: 0px 0px 46px #d6d6d67a;
}
.team-inner .social {
    position: absolute;
    bottom: 10px;
    font-size: 16px;
    width: auto;
    left: 10px;
    display: none;
}
.team-inner:hover .social {
    display: block;
}

.team-inner .social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    background: #012463;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin: 0 6px;
    position: relative;
}

.team-inner .social a:hover {
    background: #FF9D00;
}

.team-inner .social a:nth-child(2) {
    top: -10px;
}

.team-inner .social a:nth-child(3) {top: -30px;}

.team-inner h5 {
    color: #191919;
    font-weight: 700;
    padding-bottom: 4px;
    margin-top: 10px;
    font-size: 24px;
}

.team-inner p {
    color: #000;
    font-weight:600;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    outline: none;
    background: linear-gradient(45deg, #004CD1, #012463);
}
.slick-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #555555;
    width: 40px;
    height: 40px;
    border: 1px solid #DDDDDD;
    border-radius: 50%;
    left: auto;
    top: auto;
    z-index: 1;
    background: #fff;
}

.slick-arrow:before {
    font-family: 'icomoon';
    color: #555555;
}

.slick-prev:before {
    content: "\e958";
}

.slick-next:before {
    content: "\e957";
}


.slick-prev {
    right: 50px;
}
.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
    color: #fff;
}

#accordion .card {
    border: none;
    margin-bottom: 10px;
    background: transparent;
}

#accordion .card .card-header {
    background: transparent;
    padding: 0;
    border: none;
}

#accordion .card .card-header h5 {
    padding-bottom: 0;
}

#accordion .card .card-header h5 .btn-link {
    width: 100%;
    text-align: left;
    background: #fff;
    padding: 20px 30px;
    border: 1px solid #B5B5B5;
    color: #6D6F74;
    font-size: 18px;
    font-weight: 700;
}


#accordion .card .card-body {
    background-color: #fff;
    color: #6D6F74;
    font-size: 16px;
}
#accordion .card .card-header h5 .btn-link[aria-expanded=true] {
    background: linear-gradient(45deg, #012463, #004CD1);
    border-color: #012463;
    color: #fff;
}

.curve-card.member-card h2 {
    font-size: 40px;
}
.card.curve-card.member-card {
    background: #F5F7FC;
}
.card.curve-card.member-card:hover {
    background: #fff;
}
.curve-card.member-card .card-body {
    padding: 50px;
}

.curve-card.member-card .card-body .btn {
    margin: 0;
}
.curve-card.member-card a[data-toggle=collapse] {
    color: #4E4E4E;
    font-size: 20px;
    font-weight: 700;
    display: block;
    border-bottom: 1px solid #DFDFDF;
    padding: 10px;
}

.curve-card.member-card .card.card-body{
    padding: 16px;
    border: none;
}

.price {display: inline-flex;align-items: baseline;color: #0047C4;font-size: 50px;font-weight: 700;line-height: 1;margin-bottom: 30px;}

.price sub {
    font-size: 20px;
    bottom: 0;
}

.withoutimg {
    background: #F5F7FC;
}

.withoutimg .mheading {
    color: #000;
}

.withoutimg label {
    color: #000;
}

.withoutimg .form-control {
    color: #000;
    border-color: #000;
}


ul.menu-list li {
    font-size: 16px;
    margin-bottom: 14px;
    color: #343434;
}

ul.menu-list li a {
    color: #343434;
}
iframe.map {
    border-radius: 80px 0px 80px 0;
}

.form-control:focus {
    box-shadow: none;
}

select.form-control {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center !important;
    background-size: 8px 10px !important;
}
.custom-service-section .table-responsive {
    border-right: 1px solid #eee;
}

/*Updates*/

section.section-padding figure img {
    width: 100%;
   
}

@media (max-width: 1199px) {
    form.form-inline {
        display: flex;
        flex-wrap: unset;
    }
    .social li {
        padding: 0 6px;
    }
    .footer-info img {
        width: 120px;
    }
    .instagram-sec ul li {
        height: 180px;
    }
    .main-menu>ul>li>a {
        padding: 20px 5px;
    }
}
@media (max-width: 991px) {
    .inner-banner {
        margin-top: 70px;
        padding: 80px 0 40px;
        border-radius: 40px 0 40px 0;
    }
    .mparagraph {
        font-size: 16px;
    }
    .mheading {
        font-size: 28px;
    }
    .home-banner {
        height: 600px;
        margin-top: 70px;
    }
    .main-menu>ul>li.humburger {
        top: -13px;
    }
    .logo img {
        width: 100px;
    }
    .main-menu>ul>li:not(.humburger) {
        display: none;
    }
    .contact-sec {
        border-radius: 40px 0 40px 0;
    }
    .contact-sec button {
        margin-top: 20px;
    }
    .contact-sec button img {
        width: 22px;
    }
    .instagram-sec ul li:after {
        font-size: 30px;
    }
    iframe.map {
        border-radius: 20px 0px 20px 0;
        margin-bottom: 20px;
    }
    .contact-sec {
        padding: 60px 0;
    }
    ul.list {
        font-size: 16px;
    }
     .curve-card .btn {
               margin-bottom: -42px;
        position: absolute;
        bottom: 20px;
    }
    .curve-card{
            min-height: 380px;
    }
}
@media (max-width: 767px) {
    .social {
        text-align: left;
    }
    .home-banner {
        border-radius: 40px 0 40px 0;
    }
    iframe.map {
        height: 260px;
    }
    .inner-banner {
        padding: 60px 0 40px;
        border-radius: 40px 0 40px 0;
    }
    .inner-banner .bannertext .banner-heading {
        font-size: 30px;
    }
    .footer-info {
        margin-top: 0px;
    }
    .footer-container {
        padding: 40px 0;
    }
    .instagram-sec ul li {
        height: 120px;
    }
    .contact-sec .form-group {
        margin-bottom: 20px;
    }
    
    .special-sec .special img {
        height: 40px;
    }
    .special-sec .special h5 {
        font-size: 16px;
    }
    .card .shadule span {
        font-size: 8px;
    }
    .card .shadule {
        padding: 2px 8px;
        border-radius: 0px 10px 0px 0px;
    }
    .card-img-top {
        border-radius: 30px 0px 30px 0px;
        height: 120px;
    }
    .curve-card label.btn {
        top: 6px;
        right: 6px;
        font-size: 10px;
        padding: 2px 12px;
    }
    .count {
        display: flex;
    }
    .count>div {
        margin-right: 10px;
    }
    .curve-card .btn {
               margin-bottom: -42px;
        position: absolute;
        bottom: 20px;
    }
    .curve-card {
        border-radius: 20px 0px 20px 0px;
    }
    .curve-card .card-body {
        padding: 16px;
    }
    .bg-sec:before {
        border-radius: 40px 0 40px 0;
    }
    .curve-card h4 {
        font-size: 16px;
    }
    .section-padding {
        padding: 40px 0;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 12px;
    }
    .swiper-button-prev {
        left: -60px;
        margin-top: -35px;
    }
    .swiper-button-next, .swiper-button-prev {
        width: 34px;
        height: 34px;
    }
    .home-banner .bannertext .banner-paragraph {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .home-banner .bannertext .banner-heading {
        font-size: 24px;
    }
    .btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    .home-banner {
        height: 440px;
    }
    .home-banner .swiper-slide {
        border-radius: 40px 0 40px 0;
    }
    .special-sec {
        padding-top: 100px;
        /*margin-top: -60px;*/
    }
    .swiper-pagination span {
        font-size: 18px;
        padding-right: 40px;
    }
    .swiper-pagination span:first-child:after {
        width: 20px;
    }
    .menu-nav-item a, .menu-nav-item .nav-item {
        font-size: 22px;
    }
    .team-inner img {
        height: 240px;
        border-bottom-right-radius: 60px;
    }
    .slick-arrow {
        bottom: -20px;
    }
    .team-inner h5 {
        font-size: 18px;
    }
    .faq-sec {
        background-size: 100%;
        border-radius: 40px 0 40px 0;
    }
    #accordion .card .card-header h5 .btn-link {
        padding: 12px 20px;
        font-size: 16px;
    }
    #accordion .card .card-body {
        font-size: 14px;
    }
    .curve-card.member-card .card-body {
        padding: 20px;
    }
    .curve-card.member-card h2 {
        font-size: 28px;
    }
    .price {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .topbar .d-flex {
    justify-content: center !important;
    }
   .topbar li{
       margin:0px 5px;
   }
   
}
}
@media (max-width: 480px) {
    .instagram-sec ul li {
        height: 80px;
    }
}


/* Digillex Added Services CSS */
.service-title{
    font-size:var(--heading-font-family);
    font-weight:700;
    display: block;
}

.special-services{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.special-services img{
    width:50px;
}

.align-right{
    text-align: right !important;
    padding-right:25px !important;
  }

  .custom-service-section{
    padding:80px 00px !important;
  }
  

  .tableTitle{
    font-size:22px;
    font-weight: 700;
    text-transform: capitalize;
  }

  .digillex-table{
    font-size:18px;
    letter-spacing:1px;
  }
  
  
  
  
  


.profiles-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.section-intro {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.profile-cards {
  display: flex;
  width: max-content;
  position: relative;
  gap: 20px;
  animation: slide 30s linear infinite;
  will-change: transform; /* Optimizes animation */
}

.profile-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  width: 262px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.profile-card img {
  width: 100%;
  height: 233px;
  margin-bottom: 1rem;
  border: 3px solid rgba(255, 193, 7, 1);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  max-height: 233px;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}







.profile-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333;
}

.profile-card .role {
    font-size: 1rem;
    font-weight: bold;
    color: #f4c542; /* Golden text for the role */
    margin-bottom: 10px;
}

.profile-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}
.contact-sec button:hover {
    color: #ffa22d;
}

.ani-slider{
    animation: slide 30s linear infinite;
    animation-play-state: running;
}
.ani-slider:hover {
  /* Pause the animation on hover */
  animation-play-state: paused;
}
.mobile-sec{
    display:none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-main,.nav-area-full {
    position: sticky;
     }
        .home-banner,.inner-banner {
        margin-top: 0px;
    }
    
     
    .table-responsive table{
        margin-bottom:0px;
    }
   
    .breadcrumb{
        justify-content: center;
    }
    .curve-card {
        min-height: 390px;
    }
    
     
    
}
@media (max-width: 768px) {
    .profile-cards {
        flex-direction: column;
        align-items: center;
        animation:none;
        width:100%;
    }

    .profile-card {
        width: 100%;
        max-width: 400px;
                margin: 0 auto;
    }
   .profile-card img {
    height: 333px;
    max-height: 333px;
    }
     .mobile-sec{
    display:block;
}
    .pc-sec{
        display:none;
    }
}

@media (max-width: 767px) {
     
   
    .table-responsive table{
        margin-bottom:0px;
    }
   
    .breadcrumb{
        justify-content: center;
    }
   
    .curve-card {
        min-height: 290px;
    }
}


/* Experience Section */
.experience-section {
    background-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    text-align: center;
    background-image: url("../images/succed-years.png");
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    background-size: cover;
    max-width: 1100px;
    box-shadow: none;
    padding: 53px 20px;
    border-radius: 10px;
    margin: 3rem auto;
}

.experience-section p {
    margin: 0;
    color: #fff;
    text-shadow: 0px 0px 8px #000000d4;
    font-size: 30px;
    font-weight: 700;
}

.section-padding{
    padding : 30px 0;
}
 
/*03-02-2025*/

 @media (min-width: 300px) and (max-width: 767px){
     ul.instagram-slider {
        display: block !important;
     }
         .instagram-sec ul li {
        height: auto !important;
    }
 }
 

