@charset "UTF-8";

/*  COMMON CSS  */
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800;900&family=Source+Sans+Pro:ital,wght@0,600;0,700;0,900;1,400&display=swap");

body {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #616161;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 575px) {
    body {
        font-size: 14px;
    }
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
.slick-initialized .slick-slide:focus,
.btn:focus,
select:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.table {
    font-size: 16px;
    background-color: #fff;
    text-align: center;
}

.table .thead-light th {
    color: #3F3B6C;
    background-color: #f4f3f3;
    border-color: #dee2e65e;
    font-weight: 600;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid #dee2e65e;
}

.table-bordered td {
    font-size: 14px;
}
input[type=number]:out-of-range {
    background-color: #dc35454a !important;
    border: 2px solid #dc3545 !important;
}

input[type=checkbox],
input[type=radio] {
    accent-color: #f0c929;
    height: 13px;
    width: auto;
}

.custom-control-input:checked~.custom-control-label::before {
    border-color: #f0c929;
    background-color: #f0c929b3;
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 0.2rem #f0c92961;
}

.fa-pencil-alt {
    color: #f0c929;
}

textarea {
    height: 140px;
    padding-top: 20px;
    resize: none;
}

textarea::placeholder {
    font-size: 13px;
    opacity: .8;
    line-height: 1.5;
}

textarea::-webkit-scrollbar {
    background-color: #ccc;
    width: 4px;
}

::-webkit-input-placeholder {
    opacity: 1;
}

::-moz-placeholder {
    opacity: 1;
}

:-ms-input-placeholder {
    opacity: 1;
}

::-ms-input-placeholder {
    opacity: 1;
}

::placeholder {
    opacity: 1;
}

::-webkit-scrollbar {
    /* background-color: #ccc; */
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #7fb2dc;
    border-radius: 0.25rem;
}

.input-group {
    position: relative;
}

/* .input-group input,
.input-group textarea,
.input-group select {
    padding-right: 50px;
} */

.input-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.input-group select::-ms-expand {
    display: none;
}

.input-group .icon {
    position: absolute;
    right: 25px;
    font-size: 14px;
    color: #f0c929;
    top: 35px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.input-group.textarea .icon {
    top: 20px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.slick-slide img {
    display: inline-block;
}

a:focus,
a:hover {
    text-decoration: none;
}

i,
span,
a {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
    margin: 0px;
}

h1,
h1 a,
h2,
h2 a,
h3,
h3 a,
h4,
h4 a,
h5,
h5 a,
h6,
h6 a {
    color: #14212b;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

p {
    margin: 0px;
}

a {
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a,
a:hover {
    color: #f0c929;
}

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

/*  Common Classes  */
.fm-logo {
    width: 100px;
}

.sticky-on .fm-logo {
    width: 60px;
}

.main-btn {
    line-height: 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    padding: 0 30px;
    background-color: #f0c929;
    color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    position: relative;
    z-index: 2;
}

@media (max-width: 1199px) {
    .main-btn {
        padding: 0 40px;
        font-size: 16px;
        line-height: 60px;
    }
}

@media (max-width: 575px) {
    .main-btn {
        padding: 0 35px;
        font-size: 14px;
        line-height: 40px;
    }
}

.main-btn::after {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    background-color: #14212b;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    content: "";
    z-index: -1;
    width: 0;
    border-radius: 7px;
}

.main-btn:hover {
    color: #fff;
}

.main-btn:hover::after {
    width: 102%;
    height: 107%;
    top: -1px;
    bottom: 0px;
    right: 0;
    left: -1px;
}

.main-btn-sqr {
    font-size: 14px;
    padding: 8px 22px;
    border-radius: 3px;
    border: 1px solid #f0c929;
    background-color: #f0c929;
    color: #fff;
    line-height: 1.5;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.second-btn-sqr {
    font-size: 14px;
    padding: 8px 22px;
    border-radius: 3px;
    border: 1px solid #f0c929;
    color: #f0c929;
    background-color: #fff;
    line-height: 1.5;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.second-btn-sqr:hover,
.main-btn-sqr:hover {
    background-color: #14212b;
    border-color: #14212b;
    color: #fff;
}

.third-btn {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: #14212b;
    border-radius: 5px;
    background: #fff;
    padding: 10px 30px;
    border: 1px solid #14212b;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.third-btn:hover {
    color: #fff;
    background: #14212b;
    border: 1px solid transparent;
}

@media (max-width: 991.98px) {
    .loginSignBtns li .main-btn::after {
        display: none;
    }
}

@media (min-width: 992px) {
    .sticky-on .loginSignBtns li:first-child .main-btn:hover {
        color: #121416 !important;
    }

    .loginSignBtns li:last-child .main-btn {
        color: #14212b !important;
    }
}

.sticky-on .loginSignBtns li:first-child .main-btn::after {
    background-color: #fff;
}

.main-btn.main-btn-2 {
    background-color: #fff;
    color: #14212b;
}

.main-btn.main-btn-2::after {
    background-color: #f0c929;
}

.main-btn.main-btn-2:hover {
    color: #fff;
}

.main-btn.main-btn-3 {
    background-color: #14212b;
    color: #fff;
}

.main-btn.main-btn-3::after {
    background-color: #f0c929;
}

.main-btn.main-btn-4:hover {
    color: #14212b;
}

.main-btn.main-btn-4:hover::after {
    background-color: #fff;
}

@media (max-width: 1199px) {
    .view-moore-btn .main-btn {
        padding: 0 35px;
    }
}

.bg-img-c {
    background-size: cover;
    background-position: center;
    /* background-color: #979797; */
}

.section-title .title-tag {
    font-size: 20px;
    font-weight: 700;
    color: #f0c929;
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}

.connection-section .section-title .title-tag,
.advanced-tab .section-title .title-tag {
    color: #277BC0;
}

.connection-section .section-title .title-tag::before,
.connection-section .section-title .title-tag::after,
.advanced-tab .section-title .title-tag::before,
.advanced-tab .section-title .title-tag::after {
    background-color: #277BC0;
}

@media (max-width: 575px) {
    .section-title .title-tag {
        font-size: 18px;
    }
}

.connection-section .service-box-three {
    margin-bottom: 30px;
}

.section-title .title-tag::before,
.section-title .title-tag::after {
    position: absolute;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: #f0c929;
    content: "";
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
}

.section-title .title-tag::after {
    left: auto;
    right: 0;
}

.section-title.left-border .title-tag {
    padding-left: 45px;
}

.section-title.left-border .title-tag::before {
    display: block;
}

.section-title.both-border .title-tag {
    padding: 0 45px;
}

.section-title.both-border .title-tag::before,
.section-title.both-border .title-tag::after {
    display: block;
}

.section-title .title {
    font-size: 50px;
    line-height: 1.1;
}

@media (max-width: 1199px) {
    .section-title .title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .section-title .title {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .section-title .title {
        font-size: 28px;
    }
}

@media (max-width: 399px) {
    .section-title .title {
        font-size: 24px;
    }
}

.section-gap {
    padding-top: 130px;
    padding-bottom: 130px;
}

@media (max-width: 991px) {
    .section-gap {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.section-gap-bottom {
    padding-bottom: 130px;
}

@media (max-width: 991px) {
    .section-gap-bottom {
        padding-bottom: 100px;
    }
}

.section-gap-top {
    padding-top: 130px;
}

@media (max-width: 991px) {
    .section-gap-top {
        padding-top: 100px;
    }
}

.grey-bg {
    background-color: #f5f5f5;
}

@media (min-width: 1600px) {
    .container-1600 {
        max-width: 1600px;
    }
}

@media (min-width: 1600px) {
    .container-fluid.p-70 {
        padding-left: 70px;
        padding-right: 70px;
    }
}

@media (max-width: 399px) {
    .row .col-tiny-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.line-bottom {
    border-bottom: 2px solid #e9e9e9;
}

.line-top {
    border-top: 2px solid #e9e9e9;
}

.client-slider .slick-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.location i {
    color: #f0c929;
    font-size: 1rem;
    line-height: unset;
}

.btn-soft-primary {
    background-color: rgba(85, 126, 248, .08) !important;
    color: #557ef8 !important;
}

.btn-soft-primary:hover {
    background-color: #557ef8 !important;
    color: #fff !important;
}

.btn-soft-info {
    background-color: rgba(65, 203, 216, .08) !important;
    color: #41cbd8 !important;
}

.btn-soft-info:hover {
    background-color: #41cbd8 !important;
    color: #fff !important;
}

.btn-soft-blue {
    background-color: rgba(10, 102, 194, .08) !important;
    color: #0A66C2 !important;
}

.btn-soft-blue:hover {
    background-color: #0A66C2 !important;
    color: #fff !important;
}

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

/* Preloader */
div#preloader {
    margin: auto;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

div#preloader .loader-cubes {
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    position: absolute;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

div#preloader .loader-cubes .loader-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

div#preloader .loader-cubes .loader-cube::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
    animation: sk-foldCubeAngle 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    background: #f0c929;
}

div#preloader .loader-cubes .loader-cube.loader-cube2 {
    -webkit-transform: scale(1.1) rotateZ(90deg);
    transform: scale(1.1) rotateZ(90deg);
}

div#preloader .loader-cubes .loader-cube.loader-cube2::before {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

div#preloader .loader-cubes .loader-cube .loader-cube4 {
    -webkit-transform: scale(1.1) rotateZ(270deg);
    transform: scale(1.1) rotateZ(270deg);
}

div#preloader .loader-cubes .loader-cube .loader-cube4::before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

div#preloader .loader-cubes .loader-cube .loader-cube3 {
    -webkit-transform: scale(1.1) rotateZ(180deg);
    transform: scale(1.1) rotateZ(180deg);
}

div#preloader .loader-cubes .loader-cube .loader-cube3::before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

/*  Utilities */
.mt-30 {
    margin-top: 30px;
}

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

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

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

.mt-80 {
    margin-top: 60px;
}

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

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

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

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

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

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

.lh-1 {
    line-height: 1;
}

/*  Animations  */
@-webkit-keyframes sticky {
    0% {
        top: -200px;
    }

    100% {
        top: 0;
    }
}

@keyframes sticky {
    0% {
        top: -200px;
    }

    100% {
        top: 0;
    }
}

@-webkit-keyframes sk-foldCubeAngle {

    0%,
    10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%,
    75% {
        -webkit-transform: perspective(140px) rotateX(0);
        transform: perspective(140px) rotateX(0);
        opacity: 1;
    }

    100%,
    90% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes sk-foldCubeAngle {

    0%,
    10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%,
    75% {
        -webkit-transform: perspective(140px) rotateX(0);
        transform: perspective(140px) rotateX(0);
        opacity: 1;
    }

    100%,
    90% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

/* Header */
header .header-nav {
    position: relative;
    background-color: #fff;
}

@media (max-width: 575px) {
    header .header-nav {
        top: 0;
    }
}

header .header-nav .nav-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    /* justify-content: space-between; */
}

header .header-nav .nav-container .navbar-toggler {
    /* border: 1px solid #f0c929; */
    background-color: transparent;
    cursor: pointer;
    display: none;
    padding: 15px;
    margin-left: 30px;
}

header .header-nav .nav-container .navbar-toggler span {
    position: relative;
    background-color: #f0c929;
    border-radius: 0;
    display: block;
    height: 3px;
    margin-top: 5px;
    padding: 0;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    width: 30px;
    cursor: pointer;
    display: block;
}

header .header-nav .nav-container .navbar-toggler span:first-child {
    margin-top: 0;
}

header .header-nav .nav-container .navbar-toggler span:nth-child(2) {
    margin-left: 10px;
}

/* header .header-nav .nav-container .navbar-toggler.active span:nth-of-type(1) {
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	transform: rotate3d(0, 0, 1, 45deg);
	top: 8px;
}
header .header-nav .nav-container .navbar-toggler.active span:nth-of-type(2) {
	opacity: 0;
}
header .header-nav .nav-container .navbar-toggler.active span:nth-of-type(3) {
	-webkit-transform: rotate3d(0, 0, 1, -45deg);
	transform: rotate3d(0, 0, 1, -45deg);
	top: -8px;
} */
header .header-nav .nav-container .navbar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 12;
    display: none;
}

header .header-nav .nav-container .navbar-close .cross-wrap {
    width: 26px;
    height: 26px;
    cursor: pointer;
    position: relative;
}

header .header-nav .nav-container .navbar-close .cross-wrap:hover span {
    background: #f0c929;
}

header .header-nav .nav-container .navbar-close .cross-wrap span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 6px;
    background: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

header .header-nav .nav-container .navbar-close .cross-wrap span:first-child {
    top: 12px;
    left: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

header .header-nav .nav-container .navbar-close .cross-wrap span:last-child {
    bottom: 12px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

header .header-nav .nav-container .menu-items {
    position: relative;
    display: flex;
    align-items: center;
}

header .header-nav .nav-container .menu-items ul {
    width: 100%;
}
@media (max-width: 991.99px) {
    header .header-nav .nav-container .menu-items ul{
        flex-direction: column;
    }
}

header .header-nav .nav-container .menu-items ul li {
    display: inline-block;
}

header .header-nav .nav-container .menu-items ul li.has-submemu {
    position: relative;
}

header .header-nav .nav-container .menu-items ul li.has-submemu::after {
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    content: "";
    position: absolute;
    right: 5px;
    top: 51%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 1599px) {
    header .header-nav .nav-container .menu-items ul li.has-submemu::after {
        right: -4px;
    }
}

header .header-nav .nav-container .menu-items ul li a {
    color: #14212b;
    padding: 0 20px;
    margin: 0 7px;
    line-height: 35px;
    /* line-height: 130px; */
    position: relative;
    font-weight: 700;
    font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 1599px) {
    header .header-nav .nav-container .menu-items ul li a {
        padding: 0 5px;
        margin: 0 5px;
    }
}

@media (max-width: 1199px) {
    header .header-nav .nav-container .menu-items ul li a {
        margin: 0 2px;
        padding: 0 6px;
        font-size: 14px;
    }
}

header .header-nav .nav-container .menu-items ul li a:hover {
    color: #f0c929;
}

header .header-nav .nav-container .menu-items ul li .submenu {
    position: absolute;
    left: 0;
    top: 110%;
    width: 200px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 99;
    height: auto;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

header .header-nav .nav-container .menu-items ul li .submenu li {
    display: block;
    position: relative;
}

header .header-nav .nav-container .menu-items ul li .submenu li a {
    display: block;
    padding: 8px 30px;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-radius: 0;
    margin: 0 0;
    line-height: 30px !important;
    color: #616161;
}

header .header-nav .nav-container .menu-items ul li .submenu li a:hover {
    background-color: #f0c929;
    color: #fff !important;
}

header .header-nav .nav-container .menu-items ul li .submenu li .submenu {
    left: 100%;
    top: 50%;
}

header .header-nav .nav-container .menu-items ul li .submenu li:hover .submenu {
    top: 0%;
}

header .header-nav .nav-container .menu-items ul li .submenu li:hover>a {
    background-color: #f0c929;
    color: #fff;
}

header .header-nav .nav-container .menu-items ul li:hover>.submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

header .header-nav .nav-container .menu-items ul li .dd-trigger {
    display: none;
}

header .header-nav .nav-container .language-selection {
    position: relative;
    margin-right: 15px;
}

@media (max-width: 575px) {
    header .header-nav .nav-container .language-selection {
        display: none;
    }
}

header .header-nav .nav-container .language-selection .language-btn {
    /* height: 65px; */
    display: block;
    border: 3px solid #819cb0;
    /* line-height: 60px;
    width: 100px; */
    text-align: center;
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
}

@media (max-width: 991px) {
    header .header-nav .nav-container .language-selection .language-btn {
        /* height: 52px;
        line-height: 48px; */
    }
}

header .header-nav .nav-container .language-selection .language-btn i {
    position: relative;
    top: 2px;
    margin-left: 8px;
}

header .header-nav .nav-container .language-selection .language-list {
    background-color: #fff;
    min-width: 70px;
}

header .header-nav .nav-container .language-selection .language-list .dropdown-item {
    display: block;
}

header .header-nav .nav-container .language-selection .language-list .dropdown-item {
    display: block;
    padding: 5px 0;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-radius: 0;
    margin: 0 0;
    color: #14212b;
    font-size: 14px;
    text-align: center;
}

header .header-nav .nav-container .language-selection .language-list .dropdown-item:hover {
    background-color: #277bc014;
}

header .header-nav .nav-container .language-selection:hover .language-list {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

header .header-nav .nav-container .menu-social-link {
    margin-right: 30px;
}

@media (max-width: 1199px) {
    header .header-nav .nav-container .menu-social-link {
        margin-right: 15px;
    }
}

header .header-nav .nav-container .menu-social-link a {
    color: #14212b;
    padding: 8px;
}

@media (max-width: 1199px) {
    header .header-nav .nav-container .menu-social-link a {
        padding: 5px;
    }
}

header .header-nav .nav-container .menu-social-link a:hover {
    color: #f0c929;
}

header .header-nav .nav-container.breakpoint-on {
    padding: 15px 0;
}

@media (max-width: 968px) {
    header .header-nav .nav-container.breakpoint-on {
        padding: 0;
    }
}

header .header-nav .nav-container.breakpoint-on .nav-menu {
    background-color: #14212b;
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 9999;
    width: 300px;
    height: 100%;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    padding: 0;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-top: 70px;
}

@media (min-width: 992px) {
    header .header-nav .nav-container .nav-menu {
        width: 100%;
    }

    .loginSignBtns .main-btn {
        padding: 0 30px !important;
    }
}

@media (max-width: 991.98px) {
    .loginSignBtns .main-btn {
        background-color: transparent;
        border-radius: unset;
    }

    .loginSignBtns .main-btn.main-btn-3::after {
        background-color: transparent;
    }
}

header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li {
    display: block;
    width: 100%;
}

header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li::after {
    display: none;
}

header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li a {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    line-height: 45px !important;
    font-size: 15px;
    margin: 0 0;
    padding: 0px 15px;
}

header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li .submenu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    display: none;
    -webkit-transition: none;
    transition: none;
    box-shadow: none;
}

header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li .submenu li a {
    color: #fff;
    padding: 0px 20px 0 40px;
    line-height: 45px !important;
}

header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li .submenu li a:hover {
    background-color: transparent;
}

header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li .submenu li .submenu li a {
    padding: 0px 20px 0 50px;
}

header .header-nav .nav-container.breakpoint-on .nav-menu .menu-items ul li .dd-trigger {
    display: block;
    position: absolute;
    right: 0;
    height: 45px;
    width: 45px;
    top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 2;
    background: transparent;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
}

header .header-nav .nav-container.breakpoint-on .nav-menu.menu-on {
    left: 0;
}

header .header-nav .nav-container.breakpoint-on .nav-pushed-item,
header .header-nav .nav-container.breakpoint-on .navbar-close,
header .header-nav .nav-container.breakpoint-on .navbar-toggler {
    display: block;
}

header .header-nav .nav-container.breakpoint-on .nav-pushed-item {
    /* text-align: center;
    margin-top: 40px; */
}

header .header-nav .nav-container.breakpoint-on .nav-pushed-item .main-btn {
    background-color: #fff;
    color: #14212b;
}

header .header-nav .nav-container.breakpoint-on .nav-pushed-item .main-btn::after {
    background-color: #f0c929;
}

header .header-nav .nav-container.breakpoint-on .nav-pushed-item .main-btn:hover {
    color: #fff;
}

header .header-nav .nav-container.breakpoint-on .nav-pushed-item .menu-social-link a {
    color: #fff;
    padding: 10px;
}

.nav-container .left-side .site-logo>a>img {
    margin-top: 2.4rem;
}

header .header-nav::before {
    content: "";
    left: 0;
    top: 0;
    background-color: #f0c929;
    width: 445px;
    height: 100%;
    position: absolute;
    -webkit-clip-path: polygon(0 0, 100% 0%, 345px 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 345px 100%, 0% 100%);
}

@media (max-width: 1599px) {
    header .header-nav::before {
        width: 265px;
        -webkit-clip-path: polygon(0 0, 100% 0%, 185px 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0%, 185px 100%, 0% 100%);
    }
}

@media (max-width: 1199px) {
    header .header-nav::before {
        width: 245px;
        -webkit-clip-path: polygon(0 0, 100% 0%, 165px 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0%, 165px 100%, 0% 100%);
    }
}

@media (max-width: 991px) {
    header .header-nav::before {
        width: 220px;
    }
}

header.sticky-header.sticky-on .header-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -webkit-animation: sticky 1.2s;
    animation: sticky 1.2s;
    background-color: #fff;
}

header.sticky-header.header-two.sticky-on .header-nav,
header .header-topbar {
    background-color: #14212b;
}

@media (max-width: 991px) {
    header .header-topbar {
        /* display: none; */
        border-bottom: 1px solid #fff;
    }
    header .header-topbar .contact-info{
        display: none;
    }
}

header .header-topbar .header-topbar-inner {
    padding: 20px 0;
}

@media (max-width: 767px) {

    header .header-topbar .contact-info,
    header .header-topbar .social-links {
        text-align: center;
    }
}

header .header-topbar .contact-info li,
header .header-topbar .social-links li {
    display: inline-block;
}

header .header-topbar .contact-info li,
header .header-topbar .contact-info li a,
header .header-topbar .social-links li,
header .header-topbar .social-links li a {
    color: #616161;
}

header .header-topbar .contact-info li a:hover,
header .header-topbar .social-links li a:hover {
    color: #f0c929;
}

header .header-topbar .contact-info li {
    margin-right: 50px;
    font-size: 14px;
}

@media (max-width: 1199px) {
    header .header-topbar .contact-info li {
        margin-right: 20px;
    }
}

@media (max-width: 991px) {
    header .header-topbar .contact-info li {
        margin-right: 10px;
        font-size: 15px;
    }
}

header .header-topbar .contact-info li i {
    margin-right: 15px;
    color: #f0c929;
}

header .header-topbar .social-links li {
    font-size: 15px;
}
header .header-topbar .social-links li:not(:first-child) {
    margin-left: 25px;
}
header.header-two {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 999;
}

@media (max-width: 991.98px) {
    header.header-two {
        position: relative;
        background-color: #14212b;
    }
}

header.header-two .header-nav {
    background-color: transparent;
}

header.header-two .header-nav::before {
    display: none;
}

header.header-two .header-nav .nav-container .menu-items ul li a {
    color: #fff;
    position: relative;
}

header.header-two .header-nav .nav-container .menu-items ul li a:hover,
header.header-two .header-nav .nav-container .menu-items ul li a.active {
    color: #f0c929;
}

header.header-two .header-nav .nav-container .menu-items.loginSignBtns ul li a:hover {
    color: #fff;
}

header.header-two .header-nav .nav-container .menu-items ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 2px;
    width: 0%;
    content: "";
    background-color: #f0c929;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

header.header-two .header-nav .nav-container .menu-items ul li a:hover::before,
header.header-two .header-nav .nav-container .menu-items ul li a.active::before {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

@media (min-width: 992px) {
    header.header-two .header-nav .nav-container .menu-items.loginSignBtns ul li a::before {
        display: none;
    }
}

header.header-two .header-nav .nav-container .menu-items ul li .submenu li a:hover {
    background-color: #14212b;
}

header.header-two .header-topbar .contact-info li,
header.header-two .header-topbar .contact-info li a,
header.header-two .header-topbar .social-links li,
header.header-two .header-topbar .social-links li a {
    color: #fff;
}

header.header-two .header-topbar .contact-info li a:hover,
header.header-two .header-topbar .social-links li a:hover {
    color: #f0c929;
}

header.header-two .header-topbar .social-links li a {
    color: #fff;
}

header.header-three {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 999;
}

@media (min-width: 1800px) {
    header.header-three .container-fluid {
        max-width: 1780px;
    }
}

header.header-three .header-nav {
    background-color: transparent;
}

header.header-three .header-nav::before {
    display: none;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #f0c929;
}

.switch-language .dropdown .dropdown-toggle {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #fff;
    padding: 0.375rem 0.2rem;
    font-size: 0.75rem;
}

.switch-language .dropdown .dropdown-toggle:hover {
    color: #f0c929;
}
.switch-language .dropdown .dropdown-menu{
    right: 0;
    left: auto;
    min-width: 80px
}
.nav-pushed-item .switch-language{
    line-height: 45px;
    font-size: 15px;
    padding: 0px 15px;
    margin-right: 0 !important;
}

.nav-pushed-item .switch-language .dropdown-menu{
    line-height: initial;
}

header.dashboard-header {
    position: fixed;
    left: 250px;
    right: 0;
    width: auto;
    z-index: 1001;
}

.page-layout.active header.dashboard-header {
    left: 65px;
}

@media (max-width: 991.98px) {

    .page-layout.active header.dashboard-header,
    .page-layout header.dashboard-header {
        left: 0;
    }
}

header.dashboard-header .header-nav {
    background-color: #fff;
    padding: 0 15px;
}

header.dashboard-header .header-nav::before {
    display: none;
}

header.dashboard-header .header-nav .nav-container {
    height: 60px;
}

header.dashboard-header .header-nav .nav-container .navbar-toggler {
    display: block;
    margin-left: 0;
    padding-left: 0;
}

.navbar-mobile-toggler span {
    position: relative;
    background-color: #f0c929;
    border-radius: 0;
    display: block;
    height: 3px;
    margin-top: 5px;
    padding: 0;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    width: 30px;
    cursor: pointer;
    display: block;
}

.navbar-mobile-toggler span:first-child {
    margin-top: 0;
}

.navbar-mobile-toggler span:nth-of-type(1) {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    top: 8px;
}

.navbar-mobile-toggler span:nth-of-type(2) {
    opacity: 0;
}

.navbar-mobile-toggler span:nth-of-type(3) {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    top: -8px;
}

.bg-soft-primary {
    background-color: rgba(85, 126, 248, .08) !important;
    color: #277BC0 !important;
}

.dropdown-menu {
    margin: 0;
    border: 0;
}

.dropdown-item-text {
    color: #000444;
    font-weight: 600;
    font-size: 15px;
}

.dropdown-item .media .media-body .notification-title {
    color: #000444;
    font-weight: 400;
    font-size: 14px;
}

.dropdown-item .media .media-body .notification-body {
    color: #8d93a1;
    font-size: 12.25px;
}

.dropdown-item .time-ago {
    color: #8d93a1;
    font-size: 12.25px;
}

.dropdown-item.view-all {
    color: #277BC0;
    padding: 0.5rem 0;
    font-size: 14px;
}

.notification-list .dropdown-menu .dropdown-item:focus,
.notification-list .dropdown-menu .dropdown-item:hover {
    background-color: #277bc014;
}

.notification-list .dropdown-toggle::after {
    display: none;
}

.notification-menu {
    max-height: 230px;
    overflow-y: scroll;
}

.dropdown-lg {
    width: 320px;
}

.notification-list .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-list .alert-badge::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 8px;
    right: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: #ef4d56;
}

header .header-nav .panel:not(.profile-panel) {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: #f5f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

header.dashboard-header .header-nav .nav-container .language-selection .language-btn {
    border: 0;
    color: #14212b;
    font-size: 14px;
}

/* header.dashboard-header .header-nav .nav-container .language-selection {
    margin-right: 0;
} */

header.dashboard-header .header-nav .nav-container .search-box input {
    background-color: #f5f5f5;
    padding: 0 25px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    height: 50px;
}

header.dashboard-header .navbar-extra .panel {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

header.dashboard-header .navbar-extra .profile-panel {
    position: relative;
    cursor: pointer;
    margin-right: 0;
}

header.dashboard-header .navbar-extra .profile-panel .profile-data img {
    width: 35px;
    border-radius: 5em;
}

header.dashboard-header .navbar-extra .profile-panel .profile-data {
    align-items: center;
}

@media (max-width: 1199.98px) {
    header.dashboard-header .navbar-extra .profile-panel .profile-data .user-info {
        display: none;
    }
}

header.dashboard-header .navbar-extra .profile-panel .profile-data .user-info .user-name p {
    font-size: 14px;
    font-weight: 700;
}

header.dashboard-header .navbar-extra .profile-panel .profile-data .user-info .user-jop p {
    font-size: 13px;
    font-weight: 700;
    color: #878a99;
}

header.dashboard-header .navbar-extra .profile-panel .profile-data-list .dropdown-item,
header .header-nav .nav-container .language-selection .language-list .dropdown-item {
    padding: 0.5rem 1rem;
    color: #14212b;
    font-size: 15px;
    font-weight: 600;
}

header.dashboard-header .navbar-extra .profile-panel .profile-data-list .dropdown-item:hover,
header .header-nav .nav-container .language-selection .language-list .dropdown-item:hover {
    background-color: #277bc014;
}

header.dashboard-header .navbar-extra .profile-panel .profile-data-list .dropdown-item i {
    margin-right: 0.75rem;
}

.app-menu .header-nav .nav-container .menu-items ul li {
    position: relative;
}

.app-menu .header-nav .nav-container .menu-items ul li .dd-trigger {
    position: absolute;
    top: 8px;
    right: 12px;
    color: #fff;
    cursor: pointer;
}

.app-menu .header-nav .nav-container .menu-items ul li .dd-trigger i {
    transition: 0.2s all ease-in-out;
}

.app-menu .header-nav .nav-container .menu-items ul li.active .dd-trigger i {
    transform: rotate(90deg);
}

.app-menu .header-nav .nav-container .menu-items ul li .menu-link {
    border: none;
    border-radius: 0;
    padding: 0.5rem 1.5rem;
    white-space: nowrap;
    color: #fff;
    display: block;
    font-size: 16px;
}

.app-menu .header-nav .nav-container .menu-items ul li .menu-link.active,
.app-menu .header-nav .nav-container .menu-items ul li .menu-link:hover {
    background-color: #f0c929;
}

.app-menu .header-nav .nav-container .menu-items ul li .menu-link i {
    margin-right: 1rem;
}

.app-menu .header-nav .nav-container .menu-items .menu-sub {
    border: 0;
    display: none;
}

.app-menu .header-nav .nav-container .menu-items .menu-sub .nav-item {
    width: 100%;
}

.app-menu .header-nav .nav-container .menu-items .menu-sub .nav-item .nav-link {
    border: 0 !important;
    border-radius: 0;
    font-size: 14px;
    padding-left: 2.5rem;
}

.app-menu .header-nav .nav-container .menu-items .menu-sub .nav-item .nav-link:hover {
    color: #14212b;
    background-color: #fff;
}

.app-menu .header-nav .nav-container .menu-items .menu-sub .nav-item .nav-link.active {
    color: #14212b;
}

.app-menu .header-nav .nav-container .menu-items .menu-sub .nav-item .nav-link .bullet {
    margin-right: 1rem;
}

.bullet.bullet-dot {
    background-color: #f0c929;
    width: 6px;
    height: 6px;
    border-radius: 100%;
}

.app-menu {
    width: 250px;
    z-index: 1002;
    top: 0;
    bottom: 0;
    position: fixed;
    background-color: #14212b;
    transition: 0.2s width ease-in-out;
    overflow: auto;
}

.page-layout.active .app-menu {
    width: 65px;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .page-layout .app-menu {
        transform: translateX(-300px);
        transition: transform 250ms ease-in-out;
        /* overflow: hidden; */
    }

    .page-layout.active .app-menu {
        width: 250px;
        overflow: hidden;
        transform: translateX(0);
    }
}

.page-layout.active .app-menu .site-logo a:nth-child(2),
.page-layout.active .app-menu .header-nav .nav-container .menu-items .menu-sub,
.page-layout.active .app-menu .dd-trigger,
.page-layout.active .app-menu .header-nav .nav-container .menu-items ul li .menu-link span {
    display: none;
}

.app-menu .site-logo {
    padding: 0 10px;
    align-items: center;
}

.app-menu .site-logo a img {
    width: 50px;
}

.app-menu .site-logo a:nth-child(2) {
    font-size: 20px;
    margin-bottom: 0;
}

.main-content {
    padding-left: 250px;
    background-color: #f3f3f9;
    padding-top: 60px;
}

.page-layout.active .main-content {
    padding-left: 65px;
}

@media (min-width: 992px) {
    .page-layout.active .app-menu .header-nav .nav-container .menu-items .menu-sub {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .app-menu .site-logo a:nth-child(2) {
        font-size: 15px;
    }

    .page-layout.active .app-menu .site-logo a:nth-child(2),
    .page-layout.active .app-menu .dd-trigger,
    .page-layout.active .app-menu .header-nav .nav-container .menu-items ul li .menu-link span {
        display: inline-block;
    }

    .page-layout .main-content,
    .page-layout.active .main-content {
        padding-left: 0;
    }
}

/* Dashboard Breadcrumb */
.dashboard-breadcrumb {
    display: flex;
    padding: 10px 15px;
    background-color: #fff;
    align-items: center;
    justify-content: space-between;
}

.dashboard-breadcrumb .breadcrumb {
    padding: 0;
    background-color: #fff;
    margin-bottom: 0;
}

.dashboard-breadcrumb .breadcrumb .breadcrumb-item {
    font-size: 14px;
    color: #878a99;
}

.dashboard-breadcrumb .breadcrumb .breadcrumb-item a {
    color: #495057;
}

.dashboard-breadcrumb .breadcrumb .breadcrumb-item.active {
    display: flex;
    align-items: center;
}

.dashboard-breadcrumb .breadcrumb .breadcrumb-item.active:before {
    display: none;
}

/* Breadcrumb */
.breadcrumb-section {
    position: relative;
    z-index: 1;
    padding: 220px 0 100px;
}

@media (max-width: 1599px) {
    .breadcrumb-section {
        padding: 200px 0 80px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-section {
        padding: 120px 0 60px;
    }
}

.breadcrumb-section::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #14212b;
    opacity: 0.65;
    z-index: -2;
}

.breadcrumb-section .breadcrumb-text .page-title {
    color: #fff;
    font-size: 100px;
    margin-bottom: 1rem;
}

@media (max-width: 1599px) {
    .breadcrumb-section .breadcrumb-text .page-title {
        font-size: 50px;
    }
}

@media (max-width: 1199px) {
    .breadcrumb-section .breadcrumb-text .page-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-section .breadcrumb-text .page-title {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .breadcrumb-section .breadcrumb-text .page-title {
        font-size: 20px;
    }
}

.breadcrumb-section .breadcrumb-text ul li {
    display: inline-block;
    font-weight: 600;
    margin-left: 25px;
    font-size: 16px;
    text-transform: uppercase;
}

.breadcrumb-section .breadcrumb-text ul li:first-child {
    margin-left: 0;
}

@media (max-width: 1199px) {
    .breadcrumb-section .breadcrumb-text ul li {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-section .breadcrumb-text ul li {
        font-size: 10px;
    }
}

.breadcrumb-section .breadcrumb-text ul li,
.breadcrumb-section .breadcrumb-text ul li a {
    color: #fff;
}

.breadcrumb-section .breadcrumb-text ul li a {
    position: relative;
    padding-right: 10px;
    color: #ffffffc9;
}

@media (max-width: 767px) {
    .breadcrumb-section .breadcrumb-text ul li a {
        padding-right: 5px;
    }
}

.breadcrumb-section .breadcrumb-text ul li a::after {
    content: "/";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -15px;
}

/*  Footer  */
footer {
    background-color: #14212b;
    position: relative;
    padding-top: 80px;
    z-index: 1;
}

footer .widget {
    margin-bottom: 80px;
}

@media (max-width: 991px) {
    footer .widget {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    footer .widget {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    footer .widget {
        margin-bottom: 45px;
    }
}

footer .widget,
footer .widget a {
    color: #7d91a0;
}

footer .widget a.active {
    color: #f0c929;
}

footer .widget a:hover {
    color: #fff;
}

footer .widget .widget-title,
footer .widget .footer-logo {
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {

    footer .widget .widget-title,
    footer .widget .footer-logo {
        font-size: 20px;
    }
}

footer .widget .social-links {
    margin-top: 25px;
}

footer .widget .social-links li {
    display: inline-block;
    margin-right: 15px;
    font-size: 15px;
}

footer .widget .social-links li a:hover {
    color: #f0c929;
}

footer .widget.nav-widget ul li {
    line-height: 42px;
}

footer .widget.nav-widget ul li a:hover {
    padding-left: 5px;
}

footer .widget.contact-widget .contact-infos {
    margin-top: 20px;
}

footer .widget.contact-widget .contact-infos li {
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    footer .widget.contact-widget .contact-infos li {
        font-size: 16px;
    }
}

footer .widget.contact-widget .contact-infos i {
    margin-right: 10px;
    color: #f0c929;
}

@media (max-width: 1199px) {
    footer .widget.contact-widget .contact-infos i {
        margin-right: 5px;
    }
}

footer .widget.insta-feed-widget {
    padding-left: 45px;
}

@media (max-width: 991px) {
    footer .widget.insta-feed-widget {
        padding-left: 0;
    }
}

footer .widget.insta-feed-widget .insta-images {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-gap: 10px;
}

footer .widget.insta-feed-widget .insta-images>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

footer .widget.insta-feed-widget .insta-images>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

footer .widget.insta-feed-widget .insta-images>*:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
}

@media (max-width: 575px) {
    footer .widget.insta-feed-widget .insta-images {
        -ms-grid-columns: 90px 10px 90px 10px 90px;
        grid-template-columns: repeat(3, 90px);
    }
}

footer .widget.insta-feed-widget .insta-images .insta-img {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100px;
    background-color: #ddd;
    z-index: 1;
    position: relative;
}

footer .widget.insta-feed-widget .insta-images .insta-img::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: "";
    background-color: #f0c929;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

footer .widget.insta-feed-widget .insta-images .insta-img a {
    opacity: 0;
    visibility: hidden;
    color: #fff;
    font-size: 26px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 100px;
    text-align: center;
}

footer .widget.insta-feed-widget .insta-images .insta-img:hover a {
    visibility: visible;
    opacity: 1;
}

footer .widget.insta-feed-widget .insta-images .insta-img:hover::before {
    opacity: 0.7;
    visibility: visible;
}

footer .footer-copyright {
    border-top: 2px solid #1d2d3a;
    padding: 30px 0;
    position: relative;
}

footer .footer-copyright .copyright-text {
    color: #7d91a0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    footer .footer-copyright .copyright-text span {
        width: 100%;
        text-align: center;
    }

    footer .footer-copyright .copyright-text span:first-child {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-top: 10px;
    }
}

footer .footer-copyright .back-to-top {
    position: absolute;
    left: 50%;
    top: 0;
    height: 75px;
    width: 75px;
    border-radius: 50%;
    border: 2px solid #1d2d3a;
    line-height: 75px;
    color: #f0c929;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #14212b;
}

@media (max-width: 767px) {
    footer .footer-copyright .back-to-top {
        height: 55px;
        width: 55px;
        line-height: 55px;
    }
}

footer .footer-copyright .back-to-top:hover {
    background-color: #f0c929;
    color: #fff;
}

footer .line-one,
footer .line-two,
footer .line-three,
footer .line-four {
    position: absolute;
    z-index: -1;
}

footer .line-one {
    left: 0;
    top: 40%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

footer .line-two {
    right: 0;
    top: 0;
}

footer .line-three {
    left: 0;
    top: 0;
}

footer .line-four {
    right: 0;
    bottom: 0;
}

footer.grey-bg-footer {
    background-color: #f5f5f5;
}

footer.grey-bg-footer .widget,
footer.grey-bg-footer .widget a {
    color: #616161;
}

footer.grey-bg-footer .widget a:hover {
    color: #f0c929;
}

footer.grey-bg-footer .widget .widget-title {
    color: #14212b;
}

footer.grey-bg-footer .widget.newsletter-widget,
footer.grey-bg-footer .widget.newsletter-widget .newsletter-form input {
    border-color: #dddddd;
}

footer.grey-bg-footer .footer-copyright {
    border-color: #dddddd;
}

footer.grey-bg-footer .footer-copyright .copyright-text {
    color: #616161;
}

footer.grey-bg-footer .footer-copyright .back-to-top {
    border-color: #dddddd;
    background-color: #fff;
}

footer.grey-bg-footer .footer-copyright .back-to-top:hover {
    background-color: #f0c929;
}

footer.footer-dashboard {
    padding-top: 0;
}

footer.footer-dashboard .footer-copyright {
    border-top: 0;
    padding: 10px 0;
}

/* Banner */
.banner-slider {
    background-image: url(../img/banner/01.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-section .single-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    font-size: 22px;
    line-height: 1.5;
    color: #fff;
    padding: 225px 0;
}

@media (max-width: 991px) {
    .banner-section .single-banner {
        padding: 200px 0;
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .banner-section .single-banner {
        padding: 150px 0;
    }
}

@media (max-width: 399px) {
    .banner-section .single-banner {
        padding: 130px 0;
    }
}

.banner-section .single-banner::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #14212b;
    opacity: 0.65;
    z-index: -2;
}

.banner-section .single-banner .banner-content h1 {
    color: #fff;
    font-size: 60px;
    line-height: 1.1;
}

@media (max-width: 1199px) {
    .banner-section .single-banner .banner-content h1 {
        font-size: 60px;
    }
}

@media (max-width: 991px) {
    .banner-section .single-banner .banner-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .banner-section .single-banner .banner-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .banner-section .single-banner .banner-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 399px) {
    .banner-section .single-banner .banner-content h1 {
        font-size: 28px;
    }
}

.banner-section .single-banner .banner-content .promo-text {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 12px;
    margin-bottom: 30px;
    position: relative;
    padding-left: 45px;
}

.banner-section .single-banner .banner-content .promo-text::before {
    position: absolute;
    left: 8px;
    top: 50%;
    -webkit-transform: rotate(-25deg) translateY(-50%);
    transform: rotate(-25deg) translateY(-50%);
    content: "";
    background-color: #fff;
    height: 20px;
    width: 20px;
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
    clip-path: polygon(0 0, 0 100%, 100% 0);
}

@media (max-width: 991px) {
    .banner-section .single-banner .banner-content .promo-text {
        font-size: 16px;
        letter-spacing: 10px;
    }
}

@media (max-width: 767px) {
    .banner-section .single-banner .banner-content .promo-text {
        font-size: 15px;
        letter-spacing: 8px;
    }
}

@media (max-width: 575px) {
    .banner-section .single-banner .banner-content .promo-text {
        font-size: 14px;
        letter-spacing: 4px;
        padding-left: 30px;
    }
}

@media (max-width: 399px) {
    .banner-section .single-banner .banner-content .promo-text {
        letter-spacing: 2px;
    }
}

.banner-section .single-banner .banner-content .btn-wrap {
    margin-top: 40px;
}

.banner-section .single-banner .banner-content .btn-wrap li {
    display: inline-block;
    margin-right: 10px;
    margin-top: 10px;
}

@media (max-width: 575px) {
    .banner-section .single-banner .banner-content .btn-wrap li {
        margin-right: 5px;
    }
}

.banner-section .single-banner .banner-content p {
    margin-top: 35px;
}

.banner-section .single-banner .banner-shapes>div {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #f0c929;
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
    clip-path: polygon(0 0, 0 100%, 100% 0);
    z-index: -1;
}

.banner-section .single-banner .banner-shapes .one {
    width: 345px;
    height: 425px;
    opacity: 0.57;
}

@media (max-width: 1599px) {
    .banner-section .single-banner .banner-shapes .one {
        width: 185px;
        height: 265px;
    }
}

@media (max-width: 1199px) {
    .banner-section .single-banner .banner-shapes .one {
        width: 165px;
        height: 245px;
    }
}

.banner-section .single-banner .banner-shapes .two {
    width: 520px;
    height: 650px;
    opacity: 0.37;
}

@media (max-width: 1599px) {
    .banner-section .single-banner .banner-shapes .two {
        width: 320px;
        height: 450px;
    }
}

@media (max-width: 991px) {
    .banner-section .single-banner .banner-shapes .two {
        width: 270px;
        height: 390px;
    }
}

@media (max-width: 399px) {
    .banner-section .single-banner .banner-shapes .two {
        display: none;
    }
}

.banner-section .single-banner .banner-shapes .three {
    width: 745px;
    height: 835px;
    opacity: 0.25;
}

@media (max-width: 1599px) {
    .banner-section .single-banner .banner-shapes .three {
        width: 450px;
        height: 615px;
    }
}

@media (max-width: 991px) {
    .banner-section .single-banner .banner-shapes .three {
        width: 365px;
        height: 540px;
    }
}

@media (max-width: 399px) {
    .banner-section .single-banner .banner-shapes .three {
        display: none;
    }
}

.banner-section .single-banner .banner-shapes .four {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
    height: 285px;
    width: 270px;
    -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    opacity: 0.65;
}

@media (max-width: 1599px) {
    .banner-section .single-banner .banner-shapes .four {
        height: 230px;
        width: 220px;
    }
}

@media (max-width: 575px) {
    .banner-section .single-banner .banner-shapes .four {
        height: 130px;
        width: 155px;
    }
}

.banner-section .search-wrap {
    position: absolute;
    right: 45px;
    z-index: 2;
    bottom: -35px;
}

@media (max-width: 575px) {
    .banner-section .search-wrap {
        right: 20px;
        bottom: -25px;
    }
}

.banner-section .search-wrap .search-icon {
    position: relative;
    width: 90px;
    height: 90px;
    line-height: 90px;
    color: #14212b;
    border-radius: 50%;
    background-color: #fff;
    font-size: 20px;
    text-align: center;
}

@media (max-width: 575px) {
    .banner-section .search-wrap .search-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}

.banner-section .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 70px;
    background-color: transparent;
    color: #fff;
    font-size: 50px;
    opacity: 0.3;
    line-height: 1;
    z-index: 2;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    visibility: hidden;
}

@media (max-width: 1199px) {
    .banner-section .slick-arrow {
        font-size: 40px;
        left: 40px;
    }
}

@media (max-width: 767px) {
    .banner-section .slick-arrow {
        font-size: 35px;
        left: 15px;
    }
}

.banner-section .slick-arrow.next-arrow {
    left: auto;
    right: 70px;
}

@media (max-width: 1199px) {
    .banner-section .slick-arrow.next-arrow {
        right: 40px;
    }
}

@media (max-width: 767px) {
    .banner-section .slick-arrow.next-arrow {
        right: 15px;
    }
}

.banner-section .slick-arrow:hover {
    opacity: 1;
}

.banner-section.banner-section-two .single-banner {
    padding-top: 270px;
    padding-bottom: 150px;
}

@media (max-width: 991px) {
    .banner-section.banner-section-two .single-banner {
        padding-top: 90px;
        padding-bottom: 100px;
    }
}

.banner-section.banner-section-two .single-banner::before {
    background: radial-gradient(circle,
            rgba(1, 12, 21, 0.5) 0%,
            rgba(1, 12, 21, 0.9) 88%);
    background: -webkit-radial-gradient(circle,
            rgba(1, 12, 21, 0.5) 0%,
            rgba(1, 12, 21, 0.9) 88%);
    opacity: 1;
}

.banner-section.banner-section-two .single-banner::after {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../img/lines/09.png);
    background-repeat: no-repeat;
    background-position: right bottom;
}

@media (max-width: 575px) {
    .banner-section.banner-section-two .single-banner::after {
        background-size: 300px;
    }
}

@media (max-width: 991px) {
    .banner-section.banner-section-two .single-banner p br {
        display: none;
    }
}

.banner-section.banner-section-two .slick-arrow {
    visibility: visible;
    border: 0;
}

.banner-section.banner-section-three .single-banner {
    padding-top: 230px;
    padding-bottom: 100px;
    /* background-color: #f5f5f5; */
    color: #616161;
}

@media (max-width: 991px) {
    .banner-section.banner-section-three .single-banner {
        padding-top: 90px;
    }
}

@media (max-width: 768px) {
    .banner-section.banner-section-three .single-banner {
        padding-top: 90px;
    }
}

.banner-section.banner-section-three .single-banner::before {
    display: none;
}

.banner-section.banner-section-three .single-banner .banner-content h1 {
    color: #fff;
}

@media (max-width: 1599px) {
    .banner-section.banner-section-three .single-banner .banner-content h1 {
        font-size: 66px;
    }
}

@media (max-width: 1199px) {
    .banner-section.banner-section-three .single-banner .banner-content h1 {
        font-size: 55px;
    }
}

@media (max-width: 991px) {
    .banner-section.banner-section-three .single-banner .banner-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .banner-section.banner-section-three .single-banner .banner-content .btn-wrap li {
        margin-right: 5px;
    }
}

@media (max-width: 1599px) {
    .banner-section.banner-section-three .single-banner .banner-content .btn-wrap li .main-btn {
        padding: 0 45px;
    }
}

@media (max-width: 1199px) {
    .banner-section.banner-section-three .single-banner .banner-content .btn-wrap li .main-btn {
        padding: 0 30px;
    }
}

@media (max-width: 991px) {
    .banner-section.banner-section-three .single-banner .banner-content .btn-wrap li .main-btn {
        padding: 0 20px;
        font-size: 14px;
    }
}

.banner-section.banner-section-three .single-banner .banner-content .promo-text {
    color: #f0c929;
    letter-spacing: 0;
    font-size: 24px;
    font-weight: 600;
    font-family: "Source Sans Pro", sans-serif;
    text-transform: capitalize;
    padding-left: 60px;
}

@media (max-width: 991px) {
    .banner-section.banner-section-three .single-banner .banner-content .promo-text {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

.banner-section.banner-section-three .single-banner .banner-content .promo-text::before {
    -webkit-clip-path: none;
    clip-path: none;
    -webkit-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0);
    width: 40px;
    height: 3px;
    background-color: #f0c929;
}

.banner-section.banner-section-three .single-banner .banner-shapes>div {
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    background-color: #f0c929;
    -webkit-clip-path: none;
    clip-path: none;
    z-index: -1;
    height: 1030px;
    width: 1030px;
    border-radius: 50%;
    opacity: 0.08;
}

@media (max-width: 1599px) {
    .banner-section.banner-section-three .single-banner .banner-shapes>div {
        width: 900px;
        height: 900px;
    }
}

@media (max-width: 1199px) {
    .banner-section.banner-section-three .single-banner .banner-shapes>div {
        height: 750px;
        width: 750px;
    }
}

@media (max-width: 991px) {
    .banner-section.banner-section-three .single-banner .banner-shapes>div {
        height: 650px;
        width: 650px;
    }
}

@media (max-width: 767px) {
    .banner-section.banner-section-three .single-banner .banner-shapes>div {
        height: 500px;
        width: 500px;
    }
}

.banner-section.banner-section-three .single-banner .banner-shapes .one {
    top: -147px;
    right: -34px;
}

.banner-section.banner-section-three .single-banner .banner-shapes .two {
    top: -134px;
    right: -174px;
}

.banner-section.banner-section-three .single-banner .banner-shapes .three {
    top: -185px;
    right: -335px;
}

.banner-section.banner-section-three .single-banner .banner-line {
    position: absolute;
    bottom: -50px;
    left: 0;
    z-index: -1;
}

@media (max-width: 1199px) {
    .banner-section.banner-section-three .single-banner .banner-line {
        max-width: 220px;
    }
}

@media (max-width: 767px) {
    .banner-section.banner-section-three .single-banner .banner-line {
        left: auto;
        right: 0;
    }
}

@media (max-width: 767px) {
    .banner-section.banner-section-three .single-banner .banner-line img {
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }
}

/*  Services  */
.service-section {
    position: relative;
    z-index: 1;
}

.service-section.shape-style-one::before,
.service-section.shape-style-one::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 180px;
    height: 180px;
    content: "";
    background-color: #277BC0;
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
    clip-path: polygon(0 0, 0 100%, 100% 0);
}

@media (max-width: 1599px) {

    .service-section.shape-style-one::before,
    .service-section.shape-style-one::after {
        height: 150px;
        width: 150px;
    }
}

@media (max-width: 991px) {

    .service-section.shape-style-one::before,
    .service-section.shape-style-one::after {
        display: none;
    }
}

.service-section.shape-style-one::after {
    width: 220px;
    height: 220px;
    opacity: 0.15;
}

@media (max-width: 1599px) {
    .service-section.shape-style-one::after {
        height: 190px;
        width: 190px;
    }
}

.service-section.shape-style-one .dots-line {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 5%;
    z-index: -1;
}

@media (max-width: 1599px) {
    .service-section.shape-style-one .dots-line {
        right: 1%;
    }
}

@media (max-width: 767px) {
    .service-section.shape-style-one .dots-line {
        max-width: 330px;
    }
}

.service-section.shape-style-two::before {
    position: absolute;
    left: 90px;
    top: 200px;
    content: "";
    z-index: -1;
    background-image: url(../img/icons/star.png);
    height: 50px;
    width: 50px;
    background-position: center;
    background-size: 50px 50px;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    .service-section.shape-style-two::before {
        left: 20px;
        top: 150px;
    }
}

@media (max-width: 767px) {
    .service-section.shape-style-two::before {
        background-size: 40px 40px;
    }
}

@media (max-width: 575px) {
    .service-section.shape-style-two::before {
        left: 15px;
        top: 50px;
        background-size: 30px 30px;
    }
}

.service-section.shape-style-two::after {
    position: absolute;
    right: 140px;
    top: 150px;
    content: "";
    z-index: -1;
    background-image: url(../img/icons/star.png);
    height: 40px;
    width: 40px;
    background-position: center;
    background-size: 40px 40px;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    .service-section.shape-style-two::after {
        right: 50px;
        top: 100px;
    }
}

@media (max-width: 767px) {
    .service-section.shape-style-two::after {
        background-size: 30px 30px;
    }
}

@media (max-width: 575px) {
    .service-section.shape-style-two::after {
        right: 20px;
        top: 20%;
        background-size: 25px 25px;
    }
}

.service-section.service-line-shape .line-one,
.service-section.service-line-shape .line-two {
    position: absolute;
    z-index: -1;
}

@media (max-width: 1199px) {

    .service-section.service-line-shape .line-one,
    .service-section.service-line-shape .line-two {
        max-width: 300px;
    }
}

@media (max-width: 991px) {

    .service-section.service-line-shape .line-one,
    .service-section.service-line-shape .line-two {
        max-width: 250px;
    }
}

@media (max-width: 767px) {

    .service-section.service-line-shape .line-one,
    .service-section.service-line-shape .line-two {
        max-width: 200px;
    }
}

.service-section.service-line-shape .line-one {
    left: 0;
    top: 0;
}

@media (max-width: 575px) {
    .service-section.service-line-shape .line-one {
        display: none;
    }
}

.service-section.service-line-shape .line-two {
    right: 0;
    bottom: 0;
}

.service-boxes .service-box {
    margin-top: 50px;
    background-color: #fff;
    padding: 50px;
    position: relative;
}

.service-boxes .service-box .icon {
    color: #277BC0;
    line-height: 1;
    font-size: 50px;
}

.connection-section .service-boxes .main-btn {
    background-color: #277BC0;
}

@media (max-width: 1199px) {
    .service-boxes .service-box {
        padding: 40px 20px;
    }
}

.service-boxes .service-box .icon {
    margin-bottom: 30px;
}

.service-boxes .service-box .icon img {
    max-width: 100px;
}

@media (max-width: 1199px) {
    .service-boxes .service-box .icon img {
        max-width: 80px;
    }
}

.service-boxes .service-box h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

@media (max-width: 399px) {
    .service-boxes .service-box h3 {
        font-size: 22px;
    }
}

.service-boxes .service-box .service-link {
    font-size: 16px;
    margin-top: 25px;
    line-height: 1;
    color: #f0c929;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-boxes .service-box::after {
    position: absolute;
    content: "";
    left: 15px;
    right: 15px;
    bottom: -10px;
    height: 10px;
    background-color: #eceded;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.service-boxes .service-box:hover::after {
    background-color: #277BC0;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(255, 74, 23, 0.3);
    box-shadow: 0px 10px 30px 0px rgba(255, 74, 23, 0.3);
}

.connection-section .service-boxes {
    justify-content: center;
}

.service-boxes .service-box-two {
    border-radius: 10px;
    padding: 30px;
    background-color: #fff;
    position: relative;
    margin-bottom: 28px;
    transition: 0.3s all ease-in-out;
}

@media (max-width: 767px) {
    .service-boxes .service-box-two {
        padding: 20px;
    }
}

.service-boxes .service-box-two:hover {
    background-color: #f0c929;
}

.service-boxes .service-box-two:hover .icon,
.service-boxes .service-box-two:hover .service-content h3,
.service-boxes .service-box-two:hover .service-content p {
    color: #fff;
}

.service-boxes .service-box-two .icon {
    font-size: 50px;
    color: #f0c929;
}

.connection-section .service-boxes .service-box-two .icon {
    color: #277BC0;
}

.connection-section .service-boxes .service-box-two:hover {
    background-color: #277BC0;
}

.connection-section .service-boxes .service-box-two:hover .icon {
    color: #fff;
}

.service-boxes .service-box-two h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .service-boxes .service-box-two h3 {
        font-size: 22px;
    }
}

.service-boxes .service-box-two .service-link {
    font-size: 14px;
    margin-top: auto;
    color: #616161;
    height: 45px;
    width: 45px;
    line-height: 45px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    z-index: 2;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-box-shadow: 0px 10px 32px 0px rgba(197, 197, 197, 0.4);
    box-shadow: 0px 10px 32px 0px rgba(197, 197, 197, 0.4);
}

.service-boxes .service-box-two:hover .service-link {
    color: #fff;
    background-color: #f0c929;
}

.service-boxes .service-box-three {
    /* border: 3px solid #f0c9294a; */
    background-color: #fff;
    text-align: center;
    border-radius: 0.25rem;
    padding: 40px 20px 20px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    /* margin-top: 30px; */
    -webkit-box-shadow: 0px 10px 32px 0px rgba(215, 215, 215, 0.4);
    box-shadow: 0px 10px 32px 0px rgba(215, 215, 215, 0.4);
    border-bottom: 4px solid transparent;
}

.service-boxes .service-box-three:hover {
    border-bottom: 4px solid #14212b;
}

@media (max-width: 1199px) {
    .service-boxes .service-box-three {
        padding: 40px 15px 20px;
        font-size: 16px;
    }
}

.service-boxes .service-box-three .icon {
    margin-bottom: 10px;
}

.service-boxes .service-box-three .icon i {
    font-size: 40px;
    color: #277BC0;
}

.service-boxes .service-box-three .icon .number {
    font-size: 12px;
    background-color: #f0c929;
    margin-top: -15px;
    color: #14212b;
    font-weight: bold;
}

.service-boxes .service-box-three .location {
    font-size: 16px;
}

.service-boxes .service-box-three .icon img {
    max-width: 60px;
}

@media (max-width: 1199px) {
    .service-boxes .service-box-three .icon img {
        max-width: 40px;
    }
}

.service-boxes .service-box-three h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    .service-boxes .service-box-three h3 {
        font-size: 22px;
    }
}

.service-boxes .service-box-three .service-link {
    color: #616161;
    margin-top: 15px;
    font-size: 24px;
}

.service-boxes .service-box-three ul {
    font-size: 14px;
    color: #14212b;
    text-align: left;
}

/*  Feature Box  */
.feature-boxes .feature-box {
    height: 450px;
    margin-top: 30px;
    position: relative;
    padding: 20px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .feature-boxes .feature-box {
        padding: 25px 20px;
    }
}

@media (max-width: 575px) {
    .feature-boxes .feature-box {
        height: 400px;
    }
}

.feature-boxes .feature-box .feature-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media (max-width: 575px) {
    .feature-boxes .feature-box .feature-bg {
        background-position: center top;
    }
}

.feature-boxes .feature-box .feature-desc a,
.feature-boxes .feature-box .feature-desc h4 {
    color: #fff;
}

.feature-boxes .feature-box .feature-desc h4 {
    font-size: 24px;
    letter-spacing: -1px;
    font-weight: 600;
    margin-bottom: 2rem;
}

@media (max-width: 1199px) {
    .feature-boxes .feature-box .feature-desc h4 {
        font-size: 22px;
    }
}

.feature-boxes .feature-box .feature-desc .feature-link {
    font-size: 40px;
    margin-bottom: 10px;
    line-height: 1;
}

.feature-boxes .feature-box .feature-desc ul li {
    color: #14212b;
    font-weight: bold;
}

.feature-boxes .feature-box .feature-desc ul li i {
    font-size: 0.75rem;
    margin-right: 0.25rem;
}

.feature-boxes .feature-box::before,
.feature-boxes .feature-box::after {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: calc(100% + 80px);
    height: 270px;
    background-color: #f0c929;
    opacity: 0.4;
    content: "";
    /* -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%);
	clip-path: polygon(0 0, 0 100%, 100% 100%); */
    z-index: -2;
}

.feature-boxes .feature-box::after {
    opacity: 0.8;
    height: 250px;
    z-index: -1;
    width: 100%;
}

.feature-boxes .feature-box:hover .feature-bg {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.feature-boxes .feature-box .feature-desc .location,
.feature-boxes .feature-box .feature-desc .location i,
.feature-boxes .feature-box .feature-desc .target {
    color: #fff;
}

.feature-boxes .feature-box .feature-desc .target h6 {
    margin-bottom: 0.5rem;
}

.feature-boxes .feature-box .feature-desc .post-link {
    display: flex;
    align-items: center;
}

.feature-boxes .feature-box .feature-desc .post-link i {
    margin-left: 1rem;
}

/* Fact Box */
.fact-section {
    padding-top: 550px;
    padding-bottom: 90px;
    position: relative;
    z-index: 1;
    margin-top: -450px;
}

.fact-section::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../img/lines/05.png);
    background-position: left top;
    background-size: auto;
    background-repeat: no-repeat;
}

.fact-boxes .fact-box .icon {
    color: #f0c929;
    line-height: 1;
    margin-bottom: 10px;
    font-size: 40px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.fact-boxes .fact-box .counter {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -1px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media (max-width: 575px) {
    .fact-boxes .fact-box .counter {
        font-size: 25px;
    }
}

.fact-boxes .fact-box p.title {
    line-height: 1.2;
    margin-top: 5px;
}

.fact-boxes .fact-box.fact-box-two .counter {
    color: #fff;
}

.fact-boxes .fact-box.fact-box-two .title {
    color: #6f8697;
}

.fact-boxes .fact-box.fact-box-three {
    background-color: #f5f5f5;
    border-radius: 15px;
    padding: 50px 20px;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 1;
}

@media (max-width: 575px) {
    .fact-boxes .fact-box.fact-box-three {
        padding: 40px 15px;
    }
}

@media (max-width: 1199px) {
    .fact-boxes .fact-box.fact-box-three .counter {
        font-size: 46px;
    }
}

@media (max-width: 575px) {
    .fact-boxes .fact-box.fact-box-three .counter {
        font-size: 35px;
    }
}

.fact-boxes .fact-box.fact-box-three::before {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/lines/15.png);
    background-size: cover;
    content: "";
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.fact-boxes .fact-box.fact-box-three:hover {
    background-color: #f0c929;
}

.fact-boxes .fact-box.fact-box-three:hover,
.fact-boxes .fact-box.fact-box-three:hover .icon,
.fact-boxes .fact-box.fact-box-three:hover .counter {
    color: #fff;
}

.fact-boxes .fact-box.fact-box-three:hover::before {
    visibility: visible;
    opacity: 1;
}

.facts {
    background-color: #14212b;
}

@media (max-width: 768px) {
    .facts {
        background-color: #14212b;
    }
}

.facts .fact-two-inner {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.fact-text {
    padding-right: 50px;
}

@media (max-width: 1199px) {
    .fact-text {
        padding-right: 0;
    }
}

@media (max-width: 991px) {
    .fact-text {
        margin-top: 50px;
    }
}

.fact-text .fact-list {
    margin-bottom: 40px;
}

.fact-text .fact-list li {
    padding-left: 70px;
    margin-top: 30px;
    position: relative;
}

@media (max-width: 575px) {
    .fact-text .fact-list li {
        padding-left: 60px;
    }
}

.fact-text .fact-list li i {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    line-height: 48px;
    text-align: center;
    color: #f0c929;
    border: 2px solid #f0c929;
    border-radius: 50%;
}

@media (max-width: 575px) {
    .fact-text .fact-list li i {
        height: 40px;
        width: 40px;
        line-height: 38px;
        font-size: 14px;
    }
}

.fact-section-three {
    position: relative;
    z-index: 1;
}

.fact-section-three::before {
    position: absolute;
    left: 100px;
    bottom: -45px;
    width: 385px;
    height: 385px;
    z-index: -1;
    border-radius: 50%;
    content: "";
    background-color: #f0c929;
    opacity: 0.05;
}

@media (max-width: 1199px) {
    .fact-section-three::before {
        left: 1%;
        bottom: -30px;
    }
}

@media (max-width: 575px) {
    .fact-section-three::before {
        width: 280px;
        height: 280px;
        bottom: -10px;
    }
}

/*  Testimonial Two  */
.testimonial-section-two {
    position: relative;
}

.testimonial-section-two .testimonial-quote-icon {
    position: absolute;
    left: 190px;
    top: 170px;
}

.testimonial-section-two .testimonial-quote-icon {
    position: absolute;
    left: 190px;
    top: 170px;
}

@media (max-width: 1599px) {
    .testimonial-section-two .testimonial-quote-icon {
        left: 140px;
        max-width: 250px;
    }
}

@media (max-width: 1199px) {
    .testimonial-section-two .testimonial-quote-icon {
        left: 100px;
    }
}

@media (max-width: 991px) {
    .testimonial-section-two .testimonial-quote-icon {
        max-width: 100px;
        left: 80px;
    }
}

.testimonial-section-two .testimonial-items .testimonial-item {
    font-size: 24px;
    line-height: 1.583;
    text-align: center;
}

@media (max-width: 991px) {
    .testimonial-section-two .testimonial-items .testimonial-item {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .testimonial-section-two .testimonial-items .testimonial-item {
        font-size: 18px;
    }
}

.testimonial-section-two .testimonial-items .testimonial-item .quote-top,
.testimonial-section-two .testimonial-items .testimonial-item .quote-bottom {
    color: #f0c929;
    font-size: 16px;
    position: relative;
}

.testimonial-section-two .testimonial-items .testimonial-item .quote-top {
    margin-right: 10px;
    top: -5px;
}

.testimonial-section-two .testimonial-items .testimonial-item .quote-bottom {
    margin-left: 10px;
    bottom: -5px;
}

.testimonial-section-two .testimonial-items .testimonial-item .author-img {
    margin-bottom: 50px;
}

.testimonial-section-two .testimonial-items .testimonial-item .author-img img {
    border-radius: 15px;
    height: 100px;
    width: 100px;
}

.testimonial-section-two .testimonial-items .testimonial-item .author-name {
    margin-top: 40px;
}

.testimonial-section-two .testimonial-items .testimonial-item .author-name h4 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -1px;
}

.testimonial-section-two .testimonial-items .testimonial-item .author-name span {
    font-weight: 600;
    color: #f0c929;
    font-size: 16px;
}

.testimonial-section-two .testimonial-items .slick-arrow {
    position: absolute;
    left: -18%;
    top: 50%;
    font-size: 50px;
    line-height: 1;
    background-color: transparent;
    color: #14212b;
    z-index: 2;
    opacity: 0.3;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border: none;
}

@media (max-width: 1599px) {
    .testimonial-section-two .testimonial-items .slick-arrow {
        left: -15%;
    }
}

@media (max-width: 991px) {
    .testimonial-section-two .testimonial-items .slick-arrow {
        left: -8%;
        font-size: 35px;
    }
}

.testimonial-section-two .testimonial-items .slick-arrow.next-arrow {
    left: auto;
    right: -18%;
}

@media (max-width: 1599px) {
    .testimonial-section-two .testimonial-items .slick-arrow.next-arrow {
        right: -15%;
    }
}

@media (max-width: 991px) {
    .testimonial-section-two .testimonial-items .slick-arrow.next-arrow {
        right: -8%;
    }
}

.testimonial-section-two .testimonial-items .slick-arrow:hover {
    opacity: 1;
    color: #f0c929;
}

.testimonial-section-two .testimonial-dots {
    text-align: center;
    margin-top: 55px;
}

@media (max-width: 575px) {
    .testimonial-section-two .testimonial-dots {
        display: none;
    }
}

.testimonial-section-two .testimonial-dots li {
    display: inline-block;
    margin: 0 10px;
    position: relative;
    transition: 0.3s all ease-in-out;
}

.testimonial-section-two .testimonial-dots li::after {
    content: "";
    width: 13px;
    height: 13px;
    background-color: #f0c929;
    border-radius: 5em;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}

.testimonial-section-two .testimonial-dots li.slick-active::after {
    display: block;
}

.testimonial-section-two .testimonial-dots li.slick-active,
.testimonial-section-two .testimonial-dots li:hover {
    transform: scale(1.1);
}

.testimonial-section-two .testimonial-dots li img {
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* Newsletter */
.newsletter {
    padding: 150px 0;
}

.newsletter .widget.newsletter-widget {
    padding: 50px;
    border: 2px solid #1d2d3a;
}

@media (max-width: 991px) {
    .newsletter .widget.newsletter-widget {
        padding: 30px;
    }
}

.newsletter .widget.newsletter-widget .widget-title {
    margin-bottom: 15px;
}

.newsletter .widget.newsletter-widget .newsletter-form {
    position: relative;
    padding-right: 280px;
}

@media (max-width: 991px) {
    .newsletter .widget.newsletter-widget .newsletter-form {
        padding-right: 0;
    }
}

.newsletter .widget.newsletter-widget .newsletter-form input {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid #33495b;
    line-height: 70px;
    padding: 0;
    height: 70px;
}

.newsletter .widget.newsletter-widget .newsletter-form input,
.newsletter .widget.newsletter-widget .newsletter-form ::placeholder,
.newsletter .widget.newsletter-widget .newsletter-form::-webkit-input-placeholder,
.newsletter .widget.newsletter-widget .newsletter-form ::-ms-input-placeholder,
.newsletter .widget.newsletter-widget .newsletter-form :-ms-input-placeholder,
.newsletter .widget.newsletter-widget .newsletter-form ::-moz-placeholder {
    color: #7d91a0;
}

.newsletter .widget.newsletter-widget .newsletter-form button {
    position: absolute;
    right: 0;
    top: 0;
}

@media (max-width: 991px) {
    .newsletter .widget.newsletter-widget .newsletter-form button {
        position: relative;
        margin-top: 20px;
    }
}

/*  Project CSS  */
.project-nav {
    text-align: center;
    padding: 15px 0;
}

@media (max-width: 767px) {
    .project-nav {
        border-bottom: none;
        padding: 0;
    }
}

.project-nav li {
    display: inline-block;
    color: #14212b;
    font-weight: 700;
    font-size: 18px;
    font-family: "Source Sans Pro", sans-serif;
    position: relative;
    padding: 15px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .project-nav li {
        padding: 10px;
    }
}

.project-nav li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0%;
    content: "";
    background-color: #f0c929;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.project-nav li:hover::before,
.project-nav li.active::before {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

.project-section {
    padding-top: 130px;
    padding-bottom: 95px;
}

/*  Quote Css  */
.quote {
    background-color: #f0c929;
    background-image: url(../img/lines/16.png);
}

.quote .cta-wrap {
    position: relative;
    padding: 60px 0;
    z-index: 2;
}

.quote .cta-wrap.mt-negative {
    margin-top: -60px;
}

.quote .cta-wrap .section-title .title-tag {
    color: #fff;
}

.quote .cta-wrap .section-title .title-tag::before,
.quote .cta-wrap .section-title .title-tag::after {
    background-color: #fff;
}

.quote .cta-wrap .section-title .title {
    color: #fff;
}

.quote .cta-wrap .main-btn.main-btn-3:hover {
    color: #14212b;
}

.quote .cta-wrap .main-btn.main-btn-3:hover::after {
    background-color: #fff;
}

/* Mission */
.mission {
    padding: 120px 0;
}

.mission-lists {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

@media (max-width: 767px) {
    .mission-lists {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
    }
}

.mission-lists .single-mission {
    background-color: #fff;
    padding: 40px 25px;
    font-size: 15px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    display: flex;
}

.mission-lists .single-mission .icon {
    color: #277BC0;
    line-height: 1;
    font-size: 40px;
}

.mission-lists .single-mission:hover .icon {
    color: #fff;
}

@media (max-width: 991px) {
    .mission-lists .single-mission {
        padding: 40px 25px;
    }
}

.mission-lists .single-mission .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media (max-width: 991px) {
    .mission-lists .single-mission .title {
        font-size: 22px;
    }
}

.mission-lists .single-mission .apply-btn {
    margin-top: 30px;
    /* text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: #f0c929;
    border: 2px solid #f0c929;
    border-radius: 5px;
    padding: 10px 30px; */
}

@media (max-width: 575px) {
    .mission-lists .single-mission .apply-btn {
        padding: 8px 25px;
    }
}

.mission-lists .single-mission .apply-btn i {
    margin-left: 8px;
}

.mission-lists .single-mission:hover {
    background-color: #f0c929;
}

.mission-lists .single-mission:hover .title,
.mission-lists .single-mission:hover {
    color: #fff;
}

.mission-lists .single-mission:hover .apply-btn {
    border-color: #fff;
    background-color: #fff;
    color: #14212b;
}

/*  Advanced Tabs  */
.advanced-tab .tab-buttons .nav-tabs {
    border: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.advanced-tab .tab-buttons .nav-tabs a {
    font-size: 18px;
    font-weight: 700;
    font-family: "Source Sans Pro", sans-serif;
    color: #14212b;
    background-color: #f5f5f5;
    text-transform: uppercase;
    padding: 10px 40px;
    border-right: 1px solid #e7e8e9;
}

.advanced-tab .tab-buttons .nav-tabs a:last-child {
    border-right: 0;
}

@media (max-width: 1199px) {
    .advanced-tab .tab-buttons .nav-tabs a {
        font-size: 16px;
        padding: 10px 30px;
    }
}

@media (max-width: 991px) {
    .advanced-tab .tab-buttons .nav-tabs a {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .advanced-tab .tab-buttons .nav-tabs a {
        font-size: 15px;
        padding: 8px 10px;
        display: block;
        text-align: center;
        width: 50%;
    }
}

@media (max-width: 399px) {
    .advanced-tab .tab-buttons .nav-tabs a {
        text-align: left;
    }
}

.advanced-tab .tab-buttons .nav-tabs a:hover,
.advanced-tab .tab-buttons .nav-tabs a.active {
    background-color: #f0c929;
    color: #fff;
    border-right-color: #f0c929;
}

.advanced-tab .tab-content {
    padding-top: 60px;
}

@media (max-width: 991px) {
    .advanced-tab .tab-content .tab-text-block .block-text {
        margin-top: 50px;
    }
}

.advanced-tab .tab-content .tab-text-block .block-text .title {
    font-size: 50px;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .advanced-tab .tab-content .tab-text-block .block-text .title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .advanced-tab .tab-content .tab-text-block .block-text .title {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .advanced-tab .tab-content .tab-text-block .block-text .title {
        font-size: 28px;
    }
}

.advanced-tab .tab-content .tab-text-block .block-text .icon span {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #f0c929;
    border: 2px solid #f0c929;
    border-radius: 50%;
    font-weight: bold;
}

.advanced-tab .tab-content .tab-text-block .block-text ul li {
    padding-left: 70px;
    position: relative;
    margin-top: 30px;
}

.advanced-tab .tab-content .tab-text-block .block-text ul li i {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #f0c929;
    border: 2px solid #f0c929;
    border-radius: 50%;
}

.advanced-tab .tab-content .tab-text-block.with-left-circle,
.advanced-tab .tab-content .tab-text-block.with-right-circle {
    position: relative;
    z-index: 1;
}

.advanced-tab .tab-content .tab-text-block.with-left-circle::before,
.advanced-tab .tab-content .tab-text-block.with-right-circle::before {
    position: absolute;
    left: -150px;
    bottom: -130px;
    height: 300px;
    width: 300px;
    background-color: transparent;
    border: 50px solid #f0c929;
    z-index: -1;
    content: "";
    border-radius: 50%;
}

@media (max-width: 1599px) {

    .advanced-tab .tab-content .tab-text-block.with-left-circle::before,
    .advanced-tab .tab-content .tab-text-block.with-right-circle::before {
        left: -100px;
        bottom: -80px;
        width: 200px;
        height: 200px;
        border-width: 20px;
    }
}

@media (max-width: 991px) {

    .advanced-tab .tab-content .tab-text-block.with-left-circle::before,
    .advanced-tab .tab-content .tab-text-block.with-right-circle::before {
        display: none;
    }
}

.advanced-tab .tab-content .tab-text-block.with-right-circle::before {
    left: auto;
    right: -150px;
}

@media (max-width: 1599px) {
    .advanced-tab .tab-content .tab-text-block.with-right-circle::before {
        left: auto;
        right: -100px;
    }
}

/* About CSS */
.about-text {
    padding-left: 80px;
}

@media (max-width: 1199px) {
    .about-text {
        padding-left: 60px;
    }
}

@media (max-width: 991px) {
    .about-text {
        padding-left: 0;
    }
}

.about-text .about-list {
    margin-top: 30px;
    margin-bottom: 30px;
}

.about-text .about-list li {
    color: #14212b;
}

.about-text .about-list li i {
    color: #f0c929;
    margin-right: 10px;
    position: relative;
    top: 2px;
}

.about-text-two {
    padding-left: 45px;
}

@media (max-width: 991px) {
    .about-text-two {
        padding-left: 0;
        margin-top: 50px;
    }
}

.about-text-two .about-list {
    margin-bottom: 40px;
}

.about-text-two .about-list li {
    padding-left: 70px;
    margin-top: 30px;
    position: relative;
}

.about-text-two .about-list li i {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #f0c929;
    border: 2px solid #f0c929;
    border-radius: 50%;
}

.about-illustration-img {
    position: relative;
    min-height: 550px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-illustration-img .illustration-img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 50%;
    max-width: 655px;
}

@media (max-width: 991px) {
    .about-illustration-img .illustration-img {
        position: unset;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        margin: 0 auto 50px;
        max-width: 550px;
    }
}

@media (max-width: 767px) {
    .about-illustration-img .illustration-img {
        max-width: 450px;
    }
}

/* Team Members */
.team-members .team-member {
    margin-top: 40px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.team-members .team-member .member-picture-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 35px;
}

.team-members .team-member .member-picture-wrap .member-picture {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.team-members .team-member .member-picture-wrap .member-picture img {
    width: 250px;
}

.team-members .team-member .member-picture-wrap .member-picture::before {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: #277BC0;
    width: 90px;
    height: 80px;
    -webkit-clip-path: polygon(100% 0, 0 100%, 0 0);
    clip-path: polygon(100% 0, 0 100%, 0 0);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    content: "";
    opacity: 1;
}

.team-members .team-member .member-picture-wrap .member-picture::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
}

.team-members .team-member .member-picture-wrap .member-picture .social-icons {
    position: absolute;
    z-index: 3;
    top: 5px;
    left: 15px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-align: center;
}

.team-members .team-member .member-picture-wrap .member-picture .social-icons::before {
    position: absolute;
    content: "";
    left: -15px;
    top: -5px;
    width: 105px;
    height: 95px;
    z-index: -1;
    background-color: #277BC0;
    -webkit-clip-path: polygon(100% 0, 0 100%, 0 0);
    clip-path: polygon(100% 0, 0 100%, 0 0);
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.team-members .team-member .member-picture-wrap .member-picture .social-icons a {
    color: #fff;
    font-size: 20px;
    padding: 5px;
    visibility: hidden;
    opacity: 0;
}

@media (max-width: 575px) {
    .team-members .team-member .member-picture-wrap .member-picture .social-icons a {
        font-size: 16px;
    }
}

.team-members .team-member .member-picture-wrap .member-picture .social-icons a:first-child {
    opacity: 1;
    visibility: visible;
}

.team-members .team-member .member-picture-wrap::after {
    position: absolute;
    content: "";
    right: -10px;
    bottom: -10px;
    width: 80px;
    height: 70px;
    background-color: #277BC0;
    -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    z-index: -1;
}

.team-members .team-member .member-desc .name {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -1px;
}

@media (max-width: 1199px) {
    .team-members .team-member .member-desc .name {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .team-members .team-member .member-desc .name {
        font-size: 22px;
    }
}

.team-members .team-member .member-desc .pro {
    font-size: 15px;
    font-weight: 600;
}

@media (max-width: 575px) {
    .team-members .team-member .member-desc .pro {
        font-size: 14px;
    }
}

.team-members .team-member:hover .member-picture::before {
    width: 100%;
    height: 100%;
    opacity: 0.5;
    -webkit-clip-path: none;
    clip-path: none;
}

.team-section .section-title .title-tag {
    color: #277BC0;
}

.team-section .section-title .title-tag::before,
.team-section .section-title .title-tag::after {
    background-color: #277BC0;
}

.team-members .team-member:hover .member-picture .social-icons {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.team-members .team-member:hover .member-picture .social-icons a {
    visibility: visible;
    opacity: 1;
    margin: 5px;
}

.team-members-two .team-member {
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.team-members-two .team-member .member-desc {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    padding: 35px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 2;
}

@media (max-width: 1199px) {
    .team-members-two .team-member .member-desc {
        padding: 20px;
    }
}

.team-members-two .team-member .member-desc .name {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
}

.team-members-two .team-member .member-desc .name a {
    color: #fff;
}

@media (max-width: 1199px) {
    .team-members-two .team-member .member-desc .name {
        font-size: 22px;
    }
}

.team-members-two .team-member .member-desc .pro {
    font-weight: 600;
    line-height: 1;
}

@media (max-width: 1199px) {
    .team-members-two .team-member .member-desc .pro {
        font-size: 15px;
    }
}

.team-members-two .team-member .member-desc .social-icons {
    margin-top: 15px;
}

@media (max-width: 1199px) {
    .team-members-two .team-member .member-desc .social-icons {
        margin-top: 5px;
    }
}

.team-members-two .team-member .member-desc .social-icons li {
    display: inline-block;
    margin-right: 15px;
}

.team-members-two .team-member .member-desc .social-icons li a {
    font-size: 15px;
    color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.team-members-two .team-member .member-desc .social-icons li a:hover {
    color: #f0c929;
}

.team-members-two .team-member .member-picture {
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.team-members-two .team-member .member-picture img {
    width: 100%;
    border-radius: 0.25rem;
}

.team-members-two .team-member::before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    content: "";
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    background: linear-gradient(15deg,
            #277BC0 0%,
            rgba(9, 21, 30, 0.5) 58%,
            rgba(1, 12, 21, 0.01) 99%,
            #277BC0 100%);
}

.team-members-two .team-member:hover {
    padding: 10px;
}

@media (max-width: 1199px) {
    .team-members-two .team-member:hover {
        padding: 5px;
    }
}

.team-members-two .team-member:hover .member-desc {
    visibility: visible;
    opacity: 1;
}

.team-members-two .team-member:hover::before {
    opacity: 1;
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
    visibility: visible;
}

@media (max-width: 1199px) {
    .team-members-two .team-member:hover::before {
        left: 5px;
        top: 5px;
        right: 5px;
        bottom: 5px;
    }
}

.team-members-two .team-member:hover::after {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1599px) {
    .team-members-two.row {
        margin-left: -10px;
        padding-right: -10px;
    }
}

@media (max-width: 1599px) {
    .team-members-two.row .col {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Team Members Details */

.member-details-wrapper .member-details .member-picture-wrap .member-picture {
    display: inline-block;
}

.member-details-wrapper .member-details .member-picture-wrap .member-picture img {
    border-radius: 5em;
    max-width: 100px;
}

.member-details-wrapper .member-details .member-desc,
.member-details-wrapper .member-details .member-contact-info {
    padding: 35px;
    /* border: 1px solid #e9e9e9; */
    font-size: 15px;
    height: 100%;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

@media (max-width: 1199px) {

    .member-details-wrapper .member-details .member-desc,
    .member-details-wrapper .member-details .member-contact-info {
        padding: 25px;
    }
}

.member-details-wrapper .member-details .member-desc .title,
.member-details-wrapper .member-details .member-desc .name,
.member-details-wrapper .member-details .member-contact-info .title,
.member-details-wrapper .member-details .member-contact-info .name {
    font-size: 26px;
    margin-bottom: 5px;
}

@media (max-width: 1199px) {

    .member-details-wrapper .member-details .member-desc .title,
    .member-details-wrapper .member-details .member-desc .name,
    .member-details-wrapper .member-details .member-contact-info .title,
    .member-details-wrapper .member-details .member-contact-info .name {
        font-size: 20px;
    }
}

.member-details-wrapper .member-details .member-desc span.title-tag,
.member-details-wrapper .member-details .member-desc span.pro,
.member-details-wrapper .member-details .member-contact-info span.title-tag,
.member-details-wrapper .member-details .member-contact-info span.pro {
    color: #f0c929;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1;
}

.member-details-wrapper .member-details .member-desc p:not(:last-child) {
    margin-bottom: 15px;
}

.member-details-wrapper .member-details .member-contact-info .social-links {
    margin-top: 20px;
}

.member-details-wrapper .member-details .member-contact-info .social-links li {
    display: inline-block;
    margin-right: 10px;
}

.member-details-wrapper .member-details .member-contact-info .social-links li a {
    color: #616161;
}

.member-details-wrapper .member-details .member-contact-info .social-links li a:hover {
    color: #f0c929;
}

.member-details-wrapper .member-details .member-contact-info .contact-info li:not(:last-child) {
    margin-bottom: 10px;
}

.member-details-wrapper .member-details .member-contact-info .contact-info li i {
    margin-right: 10px;
    color: #f0c929;
}

.member-details-wrapper .member-details .member-contact-info .contact-info li,
.member-details-wrapper .member-details .member-contact-info .contact-info li a {
    color: #616161;
}

/* Team Members Modal */
.modal-footer button {
    padding: 0 30px;
    line-height: 40px;
    font-size: 14px;
    border-radius: 0;
}

.modal-footer button::after {
    display: none;
}

.modal-footer button.btn-secondary {
    border: 0;
}

/* Gallery */
.cms-gallery {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    overflow: hidden;
}

.cms-gallery img {
    width: 61.8%;
    height: auto;
    cursor: pointer;
}

.cms-gallery img:hover {
    transform: scale(1.1);
}

.cms-gallery .flex-style {
    position: relative;
    -ms-flex: 1;
    overflow: hidden;
    flex: 1;
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.cms-gallery .flex-style img {
    position: absolute;
    width: 100%;
    height: auto;
    padding-right: 0;
}

.cms-gallery .flex-style img+img {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
    padding-right: 0;
}

/* What You Get */
.advanced-tab.what-you-get .tab-buttons .nav-tabs {
    border-radius: 50rem;
    background-color: #f5f5f5;
    justify-content: space-between;
    border: 2px solid #277BC0;
}

.advanced-tab.what-you-get .tab-buttons .nav-tabs a {
    border-radius: 50rem;
    width: 20%;
    text-align: center;
    border-right: 0;
    background-color: transparent;
    margin: 0;
    padding: 10px;
    white-space: nowrap;
}

.advanced-tab.what-you-get .tab-buttons .nav-tabs a:hover,
.advanced-tab.what-you-get .tab-buttons .nav-tabs a.active {
    border-radius: 50rem;
    background-color: #277BC0;
    color: #fff;
}

@media (max-width: 991.98px) {
    .advanced-tab.what-you-get .tab-buttons .nav-tabs {
        display: flex;
        border-radius: 4px;
        border: none;
    }

    .advanced-tab.what-you-get .tab-buttons .nav-tabs a {
        width: 50%;
    }

    .advanced-tab.what-you-get .tab-buttons .nav-tabs a,
    .advanced-tab.what-you-get .tab-buttons .nav-tabs a.active,
    .advanced-tab.what-you-get .tab-buttons .nav-tabs a:hover {
        border-radius: 4px;
    }
}

@media (max-width: 500px) {
    .advanced-tab.what-you-get .tab-buttons .nav-tabs a {
        font-size: 14px;
    }
}

.what-you-get .mission-lists {
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}

@media (max-width: 991px) {
    .what-you-get .mission-lists {
        -ms-grid-columns: 2fr;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .what-you-get .mission-lists {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
    }
}

.what-you-get .mission-lists .single-mission {
    padding: 2rem;
    border-radius: 0.2rem;
    background-color: #f5f5f5;
}

.what-you-get .mission-lists .single-mission .title {
    font-size: 22px;
}

/* .what-you-get .mission-lists .single-mission .content p {
    font-size: 18px;
} */

.what-you-get .mission-lists .single-mission .icon {
    font-size: 24px;
}

.what-you-get .mission-lists .single-mission:hover {
    background-color: #277BC0;
}

/* Blog and Pitches */
.blog-loop.standard-blog .single-post-box {
    margin-bottom: 50px;
}

.blog-loop.standard-blog .single-post-box .post-thumb {
    margin-bottom: 40px;
}

.blog-loop.standard-blog .single-post-box .post-meta {
    margin-bottom: 15px;
}

.blog-loop.standard-blog .single-post-box .post-meta ul li {
    display: inline-block;
    margin-right: 30px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .blog-loop.standard-blog .single-post-box .post-meta ul li {
        margin-right: 15px;
    }
}

.blog-loop.standard-blog .single-post-box .post-meta ul li,
.blog-loop.standard-blog .single-post-box .post-meta ul li a {
    color: #616161;
}

.blog-loop.standard-blog .single-post-box .post-meta ul li:hover,
.blog-loop.standard-blog .single-post-box .post-meta ul li a:hover {
    color: #f0c929;
}

.blog-loop.standard-blog .single-post-box .post-meta ul li i {
    color: #f0c929;
    margin-right: 10px;
}

.blog-loop.standard-blog .single-post-box .post-content {
    font-size: 15px;
}

.blog-loop.standard-blog .single-post-box .post-content .title {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .blog-loop.standard-blog .single-post-box .post-content .title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .blog-loop.standard-blog .single-post-box .post-content .title {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .blog-loop.standard-blog .single-post-box .post-content .title {
        font-size: 20px;
    }
}

.blog-loop.standard-blog .single-post-box .post-content .main-btn {
    margin-top: 40px;
}

.blog-loop.standard-blog .single-post-box.video-post .post-video {
    position: relative;
    margin-bottom: 40px;
}

.blog-loop.standard-blog .single-post-box.video-post .post-video .popup-video {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 130px;
    width: 130px;
    border-radius: 50%;
    background-color: #fff;
    color: #f0c929;
    font-size: 18px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 130px;
}

@media (max-width: 767px) {
    .blog-loop.standard-blog .single-post-box.video-post .post-video .popup-video {
        height: 80px;
        width: 80px;
        line-height: 80px;
    }
}

.blog-loop.standard-blog .single-post-box.no-thumb {
    padding: 40px;
    border: 2px solid #eeeeee;
}

@media (max-width: 575px) {
    .blog-loop.standard-blog .single-post-box.no-thumb {
        padding: 35px 20px;
    }
}

.blog-loop.standard-blog .single-post-box.quote-post {
    padding: 50px 40px;
    background-color: #14212b;
    position: relative;
    z-index: 1;
}

@media (max-width: 575px) {
    .blog-loop.standard-blog .single-post-box.quote-post {
        padding: 40px 20px;
    }
}

.blog-loop.standard-blog .single-post-box.quote-post::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: "";
    background-image: url(../img/icons/quote-line.png);
    opacity: 0.06;
    background-size: auto;
    background-position: 38% 50%;
    background-repeat: no-repeat;
}

.blog-loop.standard-blog .single-post-box.quote-post .post-meta ul li a {
    color: #8394a2;
}

.blog-loop.standard-blog .single-post-box.quote-post .post-content .title {
    margin-bottom: 0;
}

.blog-loop.standard-blog .single-post-box.quote-post .post-content .title a {
    color: #fff;
}

.pitches-section .blog-loop.grid-blog .single-post-box .post-thumb {
    max-height: 200px;
}

@media (max-width: 767px) {
    .blog-loop.grid-blog .single-post-box .post-thumb img {
        width: 100%;
    }
}

.blog-loop.grid-blog .single-post-box .post-content {
    background-color: #f5f5f5;
    padding: 30px 25px;
    border-bottom: 4px solid transparent;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media (max-width: 1199px) {
    .blog-loop.grid-blog .single-post-box .post-content {
        padding: 30px 20px;
    }
}

.blog-loop.grid-blog .single-post-box .post-content .post-date {
    color: #f0c929;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.single-post-box .post-content .post-date .post-day {
    color: #14212b;
    font-size: 15px;
}

.single-post-box .post-content .post-content-details {
    padding-left: 20px;
}

.blog-loop.grid-blog .single-post-box.single-event .post-content .title {
    margin-bottom: 5px;
    font-size: 22px;
}

.blog-loop.grid-blog .single-post-box.single-event .post-content .post-link {
    margin-top: 5px;
}

.blog-loop.grid-blog .single-post-box.single-event .post-content {
    position: relative;
    padding: 20px;
}

.blog-loop.grid-blog .single-post-box.single-event .post-content .event-like {
    position: absolute;
    top: -14px;
    right: 14px;
    cursor: pointer;
}

.single-post-box.single-event .post-content .event-like i {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 5em;
}

.single-post-box.single-event .post-content .event-like i.liked {
    font-weight: bold;
    color: #fd1d1d;
}

@media (max-width: 1199px) {
    .blog-loop.grid-blog .single-post-box .post-content .post-date {
        font-size: 16px;
    }
}

.blog-loop.grid-blog .single-post-box .post-content .post-date i {
    margin-right: 10px;
}

.blog-loop.grid-blog .single-post-box .post-content .title {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

@media (max-width: 1199px) {
    .blog-loop.grid-blog .single-post-box .post-content .title {
        font-size: 22px;
    }
}

.blog-loop.grid-blog .single-post-box .post-content .post-link {
    font-weight: 700;
    color: #14212b;
    margin-top: 25px;
}

.blog-loop.grid-blog .single-post-box .post-content .post-link i {
    margin-left: 10px;
    position: relative;
    top: 2px;
}

.blog-loop.grid-blog .single-post-box .post-content .post-link:hover {
    color: #f0c929;
}

.blog-loop.grid-blog .single-post-box:hover .post-thumb img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-loop.grid-blog .single-post-box:hover .post-content {
    border-color: #f0c929;
}

.application-form input {
    width: 100%;
    background-color: #fff;
    padding: 0 25px;
    height: 70px;
    font-weight: 700;
    font-size: 15px;
    color: #616161;
    border: 0;
}

/* pitches section */
.pitches-section ul {
    font-size: 14px;
    color: #14212b;
}

.pitches-section p {
    font-size: 16px;
    line-height: 1.5;
}

.pitches-section .location {
    font-size: 16px;
}

/* Base Visual */
.base-visual .base-visual-text {
    color: #616161;
}

@media (max-width: 991px) {
    .base-visual .base-visual-text {
        margin-top: 40px;
    }
}

.base-visual .base-visual-text .section-title h2 {
    color: #14212b;
}

.base-visual .base-visual-image {
    position: relative;
}

.base-visual .base-visual-image .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.base-visual .base-visual-image .play-btn .popup-video {
    position: relative;
    display: inline-block;
}

.base-visual .base-visual-image .play-btn .popup-video i {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    font-size: 24px;
    color: #f0c929;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.base-visual .base-visual-image img {
    border-radius: 0.5rem;
}

.base-visual .base-visual-image img:hover {
    transform: scale(1.1);
}

/* Video Section */
.video-section {
    position: relative;
    z-index: 1;
}

.video-section .video-text .section-title .title-tag,
.video-section .video-text .section-title .title {
    color: #fff;
}

.video-section .video-text .section-title .title-tag::before {
    background-color: #fff;
}

.video-section .video-text p {
    color: #fff;
}

.video-section .video-text .main-btn {
    margin-top: 40px;
}

.video-section .play-btn {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .video-section .play-btn {
        max-width: 100px;
        margin-bottom: 30px;
    }
}

.video-section .play-btn i {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    font-size: 24px;
    color: #f0c929;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.video-section::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: #14212b;
    content: "";
    opacity: 0.8;
}

.video-section .line-shape {
    position: absolute;
    left: 2%;
    top: 0;
    bottom: 0;
    opacity: 0.15;
    z-index: -1;
}

.video-section .line-shape img {
    height: 100%;
}

/* How To Join */
.join-section {
    background-color: #14212b;
    position: relative;
    z-index: 1;
    counter-reset: myCounter;
}

.join-section::before {
    z-index: -1;
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    background-color: #f5f5f5;
}

@media (max-width: 991px) {
    .join-section::before {
        width: 100%;
        height: 50%;
    }
}

.join-text {
    color: #c2d9eb;
    padding-left: 0;
    padding-right: 60px;
}

@media (max-width: 1199px) {
    .join-text {
        padding-right: 0;
    }
}

.join-text .section-title .title {
    color: #fff;
}

.join-text .join-list {
    margin-bottom: 50px;
}

.join-text .join-list li {
    color: #c2d9eb;
    font-weight: 600;
    padding-left: 55px;
    margin-top: 12px;
    position: relative;
}

.join-text .join-list li i {
    position: absolute;
    left: 0;
    top: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    line-height: 32px;
    text-align: center;
    color: #f0c929;
    border: 2px solid #f0c929;
    border-radius: 50%;
}

.join-steps {
    padding-left: 60px;
}

@media (max-width: 991px) {
    .join-steps {
        padding-left: 0;
    }
}

.join-steps .steps-list li {
    display: flex;
    align-items: center;
}

.join-steps .steps-list li::before {
    counter-increment: myCounter;
    content: "0" counter(myCounter);
    list-style-type: decimal-leading-zero;
    padding-right: 35px;
    font-size: 5rem;
    font-weight: 700;
    line-height: 0.93;
    color: #f0c929;
}

.join-steps .steps-list li .list-content {
    padding-left: 2rem;
    border-left: 4px solid #f0c929;
}

.join-steps .steps-list li:not(:first-child) .list-content {
    padding-top: 42px;
}

.join-steps .steps-list .icon {
    color: #f0c929;
}

.join-steps .steps-list .icon i {
    font-size: 50px;
}

/* Contact Section */
.contact-section.contact-page .contact-info .contact-info-content {
    margin-bottom: 50px;
}

.contact-section.contact-page .contact-info .contact-info-content ul {
    margin-top: 30px;
}

.contact-section.contact-page .contact-info .contact-info-content ul li {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-section.contact-page .contact-info .contact-info-content ul li,
.contact-section.contact-page .contact-info .contact-info-content ul li a {
    color: #616161;
    font-size: 14px;
}

.contact-section.contact-page .contact-info .contact-info-content ul li i,
.contact-section.contact-page .contact-info .contact-info-content ul li a i {
    font-size: 18px;
    color: #f0c929;
    margin-right: 10px;
}

.contact-section.contact-page .contact-info .contact-info-content ul li.phone,
.contact-section.contact-page .contact-info .contact-info-content ul li.phone a {
    color: #14212b;
    font-weight: 700;
    font-size: 30px;
}

.contact-section.contact-page .contact-info .contact-info-content ul li.phone i {
    font-size: 30px;
}

.contact-section.contact-page .contact-form {
    padding: 70px 0;
    margin-bottom: -170px;
    position: relative;
}

.contact-section.contact-page .contact-form input {
    width: 100%;
    background-color: #fff;
    padding: 0 25px;
    height: 70px;
    font-weight: 700;
    font-size: 15px;
    color: #616161;
    border: 0;
}

.contact-section.contact-page .contact-form textarea {
    width: 100%;
    border: 0;
    background-color: #fff;
    padding: 20px 25px 0;
    font-weight: 700;
    font-size: 15px;
    color: #616161;
}

.contact-section.contact-page .contact-map {
    height: 650px;
    width: 100%;
    background-color: #b7b7b7;
}

.contact-section.contact-page .contact-map iframe {
    width: 100%;
    height: 100%;
}

/* Blogs */
.blog-loop.grid-blog .single-post-box {
    margin-bottom: 30px;
}

.blog-loop.grid-blog .single-post-box .post-thumb {
    overflow: hidden;
}

@media (max-width: 767px) {
    .blog-loop.grid-blog .single-post-box .post-thumb img {
        width: 100%;
    }
}

.blog-loop.grid-blog .single-post-box .post-content {
    background-color: #f5f5f5;
    padding: 40px 35px;
    border-bottom: 4px solid transparent;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media (max-width: 1199px) {
    .blog-loop.grid-blog .single-post-box .post-content {
        padding: 30px 20px;
    }
}

.blog-loop.grid-blog .single-post-box .post-content .post-date {
    color: #f0c929;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    .blog-loop.grid-blog .single-post-box .post-content .post-date {
        font-size: 16px;
    }
}

.blog-loop.grid-blog .single-post-box .post-content .post-date i {
    margin-right: 10px;
}

.blog-loop.grid-blog .single-post-box .post-content .title {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

@media (max-width: 1199px) {
    .blog-loop.grid-blog .single-post-box .post-content .title {
        font-size: 22px;
    }
}

.blog-loop.grid-blog .single-post-box .post-content .post-link {
    font-weight: 700;
    color: #14212b;
    margin-top: 25px;
}

.blog-loop.grid-blog .single-post-box .post-content .post-link i {
    margin-left: 10px;
    position: relative;
    top: 2px;
}

.blog-loop.grid-blog .single-post-box .post-content .post-link:hover {
    color: #f0c929;
}

.blog-loop.grid-blog .single-post-box:hover .post-thumb img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-loop.grid-blog .single-post-box:hover .post-content {
    border-color: #f0c929;
}

.pagination-wrap {
    margin-top: 30px;
}

.pagination-wrap li {
    display: inline-block;
    margin-right: 5px;
}

.pagination-wrap li a {
    height: 60px;
    width: 60px;
    display: block;
    line-height: 60px;
    border: 2px solid #eaeaea;
    text-align: center;
    border-radius: 50%;
    color: #616161;
    font-weight: 600;
    font-size: 16px;
}

@media (max-width: 575px) {
    .pagination-wrap li a {
        height: 50px;
        width: 50px;
        line-height: 50px;
        font-size: 15px;
    }
}

.pagination-wrap li.active a,
.pagination-wrap li:hover a {
    background-color: #f0c929;
    color: #fff;
    border-color: #f0c929;
}

/* Blog Details */
.post-details-wrap .post-thumb {
    margin-bottom: 40px;
}

.post-details-wrap .post-meta {
    margin-bottom: 15px;
}

.post-details-wrap .post-meta ul li {
    display: inline-block;
    margin-right: 30px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .post-details-wrap .post-meta ul li {
        margin-right: 15px;
    }
}

.post-details-wrap .post-meta ul li,
.post-details-wrap .post-meta ul li a {
    color: #616161;
}

.post-details-wrap .post-meta ul li:hover,
.post-details-wrap .post-meta ul li a:hover {
    color: #f0c929;
}

.post-details-wrap .post-meta ul li i {
    color: #f0c929;
    margin-right: 10px;
}

.post-details-wrap .post-content {
    font-size: 15px;
}

.post-details-wrap .post-content .title {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .post-details-wrap .post-content .title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .post-details-wrap .post-content .title {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .post-details-wrap .post-content .title {
        font-size: 20px;
    }
}

.post-details-wrap .post-content blockquote {
    padding: 50px 40px;
    background-color: #14212b;
    position: relative;
    z-index: 1;
    font-size: 35px;
    line-height: 1.2;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 600;
    color: #fff;
    margin: 40px 0;
}

@media (max-width: 1199px) {
    .post-details-wrap .post-content blockquote {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .post-details-wrap .post-content blockquote {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .post-details-wrap .post-content blockquote {
        padding: 40px 30px;
        font-size: 20px;
    }
}

.post-details-wrap .post-content blockquote::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: "";
    background-image: url(../img/icons/quote-line.png);
    opacity: 0.06;
    background-size: auto;
    background-position: 38% 50%;
    background-repeat: no-repeat;
}

.post-details-wrap .post-content blockquote .author {
    font-size: 18px;
    position: relative;
    display: block;
    padding-left: 70px;
    margin-top: 25px;
    line-height: 1;
}

@media (max-width: 575px) {
    .post-details-wrap .post-content blockquote .author {
        padding-left: 50px;
    }
}

.post-details-wrap .post-content blockquote .author::before {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 3px;
    width: 40px;
    background-color: #fff;
    content: "";
}

@media (max-width: 575px) {
    .post-details-wrap .post-content blockquote .author::before {
        width: 30px;
    }
}

.post-details-wrap .post-content h4.with-check {
    margin-bottom: 20px;
    font-size: 24px;
}

@media (max-width: 1199px) {
    .post-details-wrap .post-content h4.with-check {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .post-details-wrap .post-content h4.with-check {
        font-size: 20px;
    }
}

.post-details-wrap .post-content h4.with-check i {
    margin-right: 15px;
}

@media (max-width: 1199px) {
    .post-details-wrap .post-content h4.with-check i {
        margin-right: 10px;
    }
}

.post-details-wrap .post-footer {
    margin-top: 40px;
}

.post-details-wrap .post-footer ul li {
    display: inline-block;
}

.post-details-wrap .post-footer ul li a {
    color: #616161;
}

.post-details-wrap .post-footer ul li a:hover {
    color: #f0c929;
}

.post-details-wrap .post-footer ul li.title {
    font-weight: 700;
    color: #14212b;
    font-family: "Source Sans Pro", sans-serif;
}

.post-details-wrap .post-footer .post-share a {
    padding: 5px;
    margin-left: 5px;
}

.post-details-wrap .post-footer .post-share a i {
    font-size: 15px;
}

.post-author-info {
    background-color: #f5f5f5;
    padding: 40px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 230px 25px 1fr;
    grid-template-columns: 230px 1fr;
    grid-column-gap: 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 80px;
}

@media (max-width: 1199px) {
    .post-author-info {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .post-author-info {
        display: block;
    }
}

.post-author-info .author-desc {
    font-size: 15px;
}

@media (max-width: 767px) {
    .post-author-info .author-desc {
        margin-top: 30px;
    }
}

.post-author-info .author-desc h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .post-author-info .author-desc h4 {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

.post-author-info .author-desc ul.social-links {
    margin-top: 15px;
}

@media (max-width: 1199px) {
    .post-author-info .author-desc ul.social-links {
        margin-top: 10px;
    }
}

.post-author-info .author-desc ul.social-links li {
    display: inline-block;
    margin-right: 15px;
}

.post-author-info .author-desc ul.social-links li a {
    color: #616161;
}

.post-author-info .author-desc ul.social-links li a:hover {
    color: #f0c929;
}

.post-nav {
    margin: 80px 0;
}

.post-nav .prev-post,
.post-nav .next-post {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 75px 15px 1fr;
    grid-template-columns: 75px 1fr;
    grid-column-gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.post-nav .prev-post .date,
.post-nav .next-post .date {
    font-size: 15px;
}

.post-nav .prev-post .date i {
    margin-right: 10px;
    color: #f0c929;
}

.post-nav .next-post .date i {
    margin-left: 10px;
    color: #f0c929;
}

.post-nav .next-post {
    -ms-grid-columns: 1fr 75px;
    grid-template-columns: 1fr 75px;
    text-align: right;
}

@media (max-width: 767px) {
    .post-nav .next-post {
        text-align: left;
        -ms-grid-columns: 75px 1fr;
        grid-template-columns: 75px 1fr;
        margin-top: 30px;
    }

    .post-nav .next-post .content {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .post-nav .next-post .img {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

.related-post {
    margin-bottom: 80px;
}

.related-post .title {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 40px;
}

@media (max-width: 1199px) {
    .related-post .title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .related-post .title {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .related-post .title {
        font-size: 20px;
    }
}

.latest-post-loop .latest-post-box-two {
    margin-bottom: 30px;
}

.latest-post-loop .latest-post-box-two .post-thumb-wrap {
    width: 100%;
    height: 270px;
    overflow: hidden;
    position: relative;
}

.latest-post-loop .latest-post-box-two .post-thumb-wrap .post-thumb {
    height: 100%;
    width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.latest-post-loop .latest-post-box-two .post-thumb-wrap .post-date {
    position: absolute;
    left: 30px;
    bottom: 30px;
    height: 40px;
    width: 150px;
    line-height: 40px;
    text-align: center;
    border-radius: 30px;
    background-color: #f0c929;
    z-index: 2;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.latest-post-loop .latest-post-box-two .post-thumb-wrap .post-date i {
    margin-right: 10px;
}

.latest-post-loop .latest-post-box-two .post-desc {
    background-color: #f5f5f5;
    padding: 40px 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media (max-width: 1199px) {
    .latest-post-loop .latest-post-box-two .post-desc {
        padding: 35px 25px;
    }
}

.latest-post-loop .latest-post-box-two .post-desc .title {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 33px;
}

@media (max-width: 1199px) {
    .latest-post-loop .latest-post-box-two .post-desc .title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .latest-post-loop .latest-post-box-two .post-desc .title {
        font-size: 20px;
    }
}

.latest-post-loop .latest-post-box-two .post-desc .post-link {
    font-weight: 700;
    color: #14212b;
}

.latest-post-loop .latest-post-box-two .post-desc .post-link i {
    margin-left: 10px;
    position: relative;
    top: 2px;
}

.latest-post-loop .latest-post-box-two .post-desc .post-link:hover {
    color: #f0c929;
}

.latest-post-loop .latest-post-box-two:hover .post-thumb {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.latest-post-loop .latest-post-box-two:hover .post-desc {
    background-color: #fff;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(203, 203, 203, 0.3);
    box-shadow: 0px 10px 30px 0px rgba(203, 203, 203, 0.3);
}

/* Sidebar */
@media (max-width: 991px) {
    .sidebar {
        margin-top: 60px;
    }
}

.sidebar .widget {
    border: 2px solid #eaeaea;
    padding: 40px;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .sidebar .widget {
        padding: 40px 30px;
    }
}

.sidebar .widget .widget-title {
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #eaeaea;
}

.sidebar .widget.search-widget {
    padding: 0;
    border: none;
}

.sidebar .widget.search-widget form {
    position: relative;
}

.sidebar .widget.search-widget form input {
    border: 2px solid #eaeaea;
    width: 100%;
    padding-left: 40px;
    padding-right: 100px;
    height: 80px;
    color: #616161;
}

.sidebar .widget.search-widget form button {
    position: absolute;
    right: 0;
    height: 80px;
    width: 80px;
    background-color: #f0c929;
    color: #fff;
    font-size: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 0;
}

.sidebar .widget.search-widget form button:hover {
    background-color: #14212b;
}

.sidebar .widget.cat-widget ul li {
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.sidebar .widget.cat-widget ul li a {
    color: #616161;
    font-weight: 700;
    font-family: "Source Sans Pro", sans-serif;
    display: block;
}

.sidebar .widget.cat-widget ul li a span {
    float: right;
}

.sidebar .widget.cat-widget ul li a:hover {
    color: #f0c929;
}

.sidebar .widget.cat-widget ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.sidebar .widget.recent-post-widget .single-post {
    margin-bottom: 20px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 75px 15px 1fr;
    grid-template-columns: 75px 1fr;
    grid-column-gap: 15px;
}

.sidebar .widget.recent-post-widget .single-post a {
    font-size: 18px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 600;
    color: #14212b;
    line-height: 1.2;
}

.sidebar .widget.recent-post-widget .single-post .date {
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.sidebar .widget.recent-post-widget .single-post .date i {
    color: #f0c929;
    margin-right: 10px;
}

.sidebar .widget.recent-post-widget .single-post:last-child {
    margin-bottom: 0;
}

.sidebar .widget.popular-tag-widget .tags-loop {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}

.sidebar .widget.popular-tag-widget .tags-loop a {
    background-color: #f5f5f5;
    font-size: 15px;
    color: #616161;
    display: block;
    padding: 5px;
    text-align: center;
}

.sidebar .widget.popular-tag-widget .tags-loop a:hover {
    background-color: #f0c929;
    color: #fff;
}

.sidebar .widget.author-widget {
    text-align: center;
}

.sidebar .widget.author-widget img.author-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 25px;
}

.sidebar .widget.author-widget .name {
    font-size: 24px;
}

.sidebar .widget.author-widget .role {
    margin-bottom: 20px;
    line-height: 1;
}

.sidebar .widget.author-widget .social-icons {
    margin-top: 20px;
}

.sidebar .widget.author-widget .social-icons li {
    display: inline-block;
}

.sidebar .widget.author-widget .social-icons li a {
    color: #616161;
    font-size: 15px;
    padding: 5px;
}

.sidebar .widget.author-widget .social-icons li a:hover {
    color: #f0c929;
}

.sidebar .widget.cta-widget {
    position: relative;
    z-index: 1;
    padding: 130px 40px;
    border: none;
    text-align: center;
}

.sidebar .widget.cta-widget::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #14212b;
    opacity: 0.75;
    content: "";
}

.sidebar .widget.cta-widget .title {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .sidebar .widget.cta-widget .title {
        font-size: 35px;
    }
}

.sidebar .widget.contact-widget input,
.sidebar .widget.contact-widget textarea {
    background-color: #ededed;
    margin-bottom: 10px;
}

.sidebar .widget.contact-widget textarea {
    height: 150px;
}

.sidebar .widget.contact-widget .main-btn {
    padding: 0 40px;
}

/* Careers */
.job-categories {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}

@media (max-width: 991px) {
    .job-categories {
        -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .job-categories {
        -ms-grid-columns: 1fr 30px 1fr;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 399px) {
    .job-categories {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
    }
}

.job-categories .single-cat {
    text-align: center;
}

.job-categories .single-cat a {
    display: block;
    color: #14212b;
    padding: 40px;
    font-size: 24px;
    font-weight: 600;
    font-family: "Source Sans Pro", sans-serif;
    background-color: #f5f5f5;
    border-radius: 7px;
    line-height: 1;
}

@media (max-width: 1199px) {
    .job-categories .single-cat a {
        padding: 40px 20px;
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .job-categories .single-cat a {
        font-size: 18px;
    }
}

.job-categories .single-cat a i {
    font-size: 55px;
    margin-bottom: 20px;
    font-weight: 400;
}

@media (max-width: 575px) {
    .job-categories .single-cat a i {
        font-size: 40px;
    }
}

.job-categories .single-cat a span {
    display: block;
    line-height: 1.2;
}

.job-categories .single-cat a:hover {
    color: #fff;
    background-color: #f0c929;
}

.job-lists {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

@media (max-width: 767px) {
    .job-lists {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
    }
}

.job-lists .single-job {
    background-color: #fff;
    padding: 40px;
    font-size: 15px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media (max-width: 991px) {
    .job-lists .single-job {
        padding: 40px 25px;
    }
}

.job-lists .single-job .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    color: #14212b;
}

@media (max-width: 991px) {
    .job-lists .single-job .title {
        font-size: 22px;
    }
}

.job-lists .single-job .title .job-time {
    font-size: 16px;
    color: #616161;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.job-lists .single-job .apply-btn {
    margin-top: 30px;
    /* text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: #14212b;
    border: 2px solid #d0d0d0;
    border-radius: 5px;
    padding: 10px 30px; */
}

@media (max-width: 575px) {
    .job-lists .single-job .apply-btn {
        padding: 8px 25px;
    }
}

.job-lists .single-job .apply-btn i {
    margin-left: 8px;
}

.job-lists .single-job:hover {
    background-color: #f0c929;
}

.job-lists .single-job:hover .title,
.job-lists .single-job:hover,
.job-lists .single-job:hover .job-time {
    color: #fff;
}

.job-lists .single-job:hover .apply-btn {
    border-color: #fff;
    background-color: #fff;
    color: #14212b;
}

.search-box .search-form {
    position: relative;
}

.search-box input {
    height: 45px;
    padding-left: 25px;
    padding-right: 50px;
    border: 2px solid #eaedf4;
    font-size: 16px;
    width: 100%;
}

.search-box .search-form>button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: none;
    font-size: 16px;
    color: #f0c929;
    width: 50px;
    text-align: center;
    border: none;
}

.job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #fff4dc;
    box-shadow: 0px 10px 40px 0px rgb(10 30 52 / 4%);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.apply-btn,
.submit-btn {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    border-radius: 5px;
    background: #14212b;
    padding: 10px 30px;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.apply-btn:hover,
.submit-btn:hover {
    color: #14212b;
    background: #fff;
    border: 1px solid #14212b;
}

.job-header .apply-btn>i {
    margin-left: 5px;
}

.job-details {
    padding: 50px;
    background-color: #fff;
    box-shadow: 0px 10px 40px 0px rgb(10 30 52 / 4%);
}

.job-details .jop-list li {
    color: #333;
    font-weight: 600;
    padding-left: 40px;
    margin-top: 12px;
    position: relative;
    font-size: 17px;
}

.job-details .jop-list li i {
    position: absolute;
    left: 0;
    top: 14px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    color: #f0c929;
    border: 2px solid #f0c929;
    border-radius: 50%;
}

.job-details p {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.apply-form {
    padding: 50px;
    position: relative;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top: 1px solid #0a1e3414;
}

.apply-form input {
    width: 100%;
    background-color: #f5f5f5;
    padding: 0 25px;
    height: 70px;
    font-weight: 700;
    font-size: 15px;
    color: #616161;
    border: 0;
    border-radius: 0.25rem;
}

.apply-form textarea {
    width: 100%;
    border: 0;
    background-color: #f5f5f5;
    padding: 20px 25px 0;
    font-weight: 700;
    font-size: 15px;
    color: #616161;
    border-radius: 0.25rem;
}

.upload-document {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    width: 100%;
    color: #14212b;
    border: 2px dashed #ced4da73;
    background-color: #fff;
}

.upload-document .fa-file {
    font-size: 2em;
}

.upload-document .fa-file,
.upload-document p {
    /* color: #14212b; */
}

.apply-form .browse-file {
    color: #fff;
    background-color: #f0c929;
    border-radius: 50px;
    transition: 0.3s all ease-in-out;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    border-radius: 35px;
    cursor: pointer;
    padding: 0 30px;
}

.apply-form .browse-file:hover {
    background-color: #fff;
}

.browse-file i {
    margin-left: 0.5rem;
}

/* Knowledge Base */
.faq-section .faq-list {
    margin-bottom: 30px;
}

.faq-section .faq-list .questions-title {
    position: relative;
    padding-bottom: 1rem;
}

.faq-section .faq-list .questions-title::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #cecece;
    position: absolute;
    bottom: 0;
}

.faq-section .faq-list .questions-title::before {
    content: "";
    width: 30%;
    height: 2px;
    background-color: #f0c929;
    position: absolute;
    bottom: 0;
    z-index: 1;
}

.faq-section .faq-list .questions-title i {
    margin-right: 0.5rem;
}

.faq-section .faq-list .questions-title .questions-number {
    font-size: 16px;
    color: #999999;
}

.faq-section .faq-list .questions-list li {
    margin-bottom: 1rem;
}

.faq-section .faq-list .questions-list li i {
    margin-right: 0.5rem;
    color: #14212b;
}

.faq-section .faq-list .questions-list li a {
    /* font-size: 16px; */
    color: #14212b;
}

.faq-section .faq-list .questions-list li a:hover {
    color: #f0c929;
}

.faq-section .faq-list .questions-list li p {
    font-size: 16px;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.faq-section .faq-list .questions-list.all-questions li {
    background-color: #f5f5f5;
    padding: 2rem;
}

.faq-section .faq-list .questions-list.all-questions li a.main-btn {
    color: #fff;
    margin-top: 1rem;
    margin-left: 1.5rem;
}

.faq-section .faq-list .questions-list.all-questions li a,
.faq-section .faq-list .questions-list.all-questions li a:after {
    border-radius: 0;
}

.faq-section .faq-loop.accordion .card {
    border: none;
    margin-top: 10px;
    border-radius: 0;
}

.faq-section .faq-loop.accordion .card .card-header {
    padding: 0;
    border: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    margin-bottom: 0;
}

.faq-section .faq-loop.accordion .card .card-header h6 {
    font-size: 18px;
    padding: 20px 40px 20px 30px;
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    position: relative;
}

@media (max-width: 575px) {
    .faq-section .faq-loop.accordion .card .card-header h6 {
        padding: 20px 30px 20px 20px;
    }
}

.faq-section .faq-loop.accordion .card .card-header h6 span.icons {
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 575px) {
    .faq-section .faq-loop.accordion .card .card-header h6 span.icons {
        right: 20px;
    }
}

.faq-section .faq-loop.accordion .card .card-header.active-header,
.faq-section .faq-loop.accordion .card .card-header:hover {
    background-color: #f0c929;
}

.faq-section .faq-loop.accordion .card .card-header.active-header h6,
.faq-section .faq-loop.accordion .card .card-header:hover h6 {
    color: #fff;
}

.faq-section .faq-loop.accordion .card .card-body {
    padding: 0 40px 20px 30px;
    font-size: 15px;
    line-height: 1.4;
    background-color: #f0c929;
    color: #fff;
}

@media (max-width: 575px) {
    .faq-section .faq-loop.accordion .card .card-body {
        padding: 0 30px 20px 20px;
    }
}

.faq-section .faq-loop.accordion.grey-header .card .card-header.active-header,
.faq-section .faq-loop.accordion.grey-header .card .card-header:hover {
    background-color: #f0c929;
}

.faq-section .faq-loop.accordion.border-style .card .card-header {
    background-color: #fff;
    border: 2px solid #eaeaea;
}

.faq-section .faq-loop.accordion.border-style .card .card-header.active-header,
.faq-section .faq-loop.accordion.border-style .card .card-header:hover {
    background-color: #fff;
}

.faq-section .faq-loop.accordion.border-style .card .card-header.active-header h6,
.faq-section .faq-loop.accordion.border-style .card .card-header:hover h6 {
    color: #14212b;
}

.faq-section .faq-loop.accordion.border-style .card .card-header.active-header {
    border-color: #f0c929;
    border-bottom-color: transparent;
}

.faq-section .faq-loop.accordion.border-style .card .card-body {
    background-color: #fff;
    color: #616161;
    border-left: 2px solid #f0c929;
    border-right: 2px solid #f0c929;
    border-bottom: 2px solid #f0c929;
}

/* Registration Form */
.registration-form .input-group input,
.registration-form .input-group select,
.registration-form .input-group textarea {
    width: 100%;
    background-color: #f5f5f5;
    padding: 0 25px;
    height: 40px;
    font-weight: 700;
    font-size: 14px;
    color: #616161;
    border: none;
}

.registration-form .input-group textarea {
    height: 80px;
    padding: 10px 25px;
}

.registration-form .form-check-label {
    font-size: 13px;
}

.registration-form .form-check-input {
    margin-top: 0;
    position: unset;
    margin-right: 0.5rem;
}

.registration-form .form-group.form-check {
    display: flex;
    align-items: center;
}

.registration-form button.new-account::after {
    border-radius: unset;
}

.registration-form p {
    font-size: 14px;
}

.registration-form .nav-tabs .nav-item.show .nav-link,
.registration-form .nav-tabs .nav-link.active,
.registration-form .nav-tabs .nav-link:focus,
.registration-form .nav-tabs .nav-link:hover {
    border-color: transparent;
}

.registration-form .nav-tabs .nav-link {
    border-radius: 0;
    background-color: #eee;
    color: #14212b;
}

.registration-form .nav-tabs .nav-link.active {
    background-color: #f0c929;
    color: #fff;
}

.social-media-group {
    display: flex;
    justify-content: center;
}

.social-media-group li:not(:last-child) {
    margin-right: 2rem;
}

.social-media-group li a {
    background-color: #f0c9291f;
    color: #f0c929;
    border-radius: 5em;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s all ease-in-out;
}

.social-media-group li a:hover {
    background-color: #14212b;
    color: #fff;
}

.registration-form .continue-line {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.registration-form .continue-line p {
    z-index: 1;
    background-color: #fff;
}

.registration-form .continue-line .line {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #616161;
}

.registration-form .main-label {
    font-size: 14px;
}

/* WCU */
.registration-form .registration-inner {
    position: relative;
    background-color: #14212b;
    padding: 110px 100px;
    z-index: 2;
}

@media (max-width: 1199px) {
    .registration-form .registration-inner {
        padding: 90px 60px;
    }
}

@media (max-width: 575px) {
    .registration-form .registration-inner {
        padding: 60px 30px;
    }
}

.registration-form .registration-inner .registration-title {
    color: #fff;
}
.registration-title{
    margin-bottom: 1.5rem;
}
.registration-form .registration-inner .registration-description,
.registration-form .registration-inner .form-check-label,
.registration-form .registration-inner .register-panel {
    color: #c2d9eb;
}

.registration-form .registration-inner .social-media-group li a:hover {
    background-color: #fff;
    color: #14212b;
}

.registration-form .registration-inner .continue-line p {
    background-color: #14212b;
    color: #fff;
}

.registration-form .registration-inner .continue-line .line {
    background-color: #fff;
}

.registration-form .registration-inner .input-group input,
.registration-form .registration-inner .input-group select {
    background-color: #fff;
    height: 80px;
    color: #616161;
}

.registration-form .registration-inner .input-group input::placeholder {
    color: #616161;
}

.registration-form .registration-inner .main-btn::after {
    background-color: #ffffff;
}

.registration-form .registration-inner .main-btn:hover {
    color: #14212b;
}

.registration-form .registration-inner::before,
.registration-form .registration-inner::after {
    position: absolute;
    background-color: #14212b;
    z-index: -2;
    content: "";
    opacity: 0.07;
}

.registration-form .registration-inner::before {
    left: -20px;
    right: -20px;
    bottom: -20px;
    top: 20px;
}

.registration-form .registration-inner::after {
    left: -40px;
    right: -40px;
    bottom: -40px;
    top: 40px;
}

.registration-form .registration-inner .line-shape-one {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.registration-form .registration-inner .line-shape-two {
    position: absolute;
    z-index: -1;
    right: 60px;
    bottom: 50px;
}

/* Stories */
.blog-loop.grid-blog .single-post-box.single-story .post-content {
    padding: 20px 15px;
}

.single-story .post-thumb {
    position: relative;
}

.single-story .play-duration {
    background-color: #fff;
    padding: 5px 10px;
    position: absolute;
    bottom: 0;
    right: 0;
    border-right: 1px solid #f5f5f5;
}

.single-story .play-story {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    width: 60px;
    height: 60px;
}

.single-story .play-story i {
    color: #fff;
}

.single-story .story-author,
.single-story .story-category {
    font-size: 16px;
    color: #f0c929;
}

.single-story .story-footer {
    font-size: 16px;
    display: flex;
    margin-top: 15px;
}

.single-story .story-footer .like-story {
    margin-left: 1rem;
}

.single-post-box.single-story .post-content .title.story-title {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.blog-loop.grid-blog .single-post-box.single-story .post-content .post-date {
    color: #616161;
    margin-left: 1rem;
}

.blog-loop.grid-blog .single-post-box.single-story .post-content .post-date .post-day {
    color: #616161;
}

.single-post-box.single-story .post-content .like-story {
    font-size: 16px;
    cursor: pointer;
    color: #616161;
}

.single-post-box.single-story .post-content .like-story.liked {
    color: #0a00ff;
}

.single-post-box.single-story .post-content .like-story.liked i {
    font-weight: bold;
}

/* profile sections */
.profile-section.option-two .profile-tabs {
    display: flex;
    position: relative;
    min-height: 535px;
}

.profile-section.option-two .profile-tabs .nav-tabs {
    flex-direction: column;
    justify-content: start;
    margin-right: 1rem;
    position: absolute;
    z-index: 1;
}

.profile-section.option-two .profile-tabs .nav-tabs .nav-link {
    white-space: nowrap;
    text-align: left;
    padding: 0;
    margin-right: 0;
    background-color: transparent;
    display: flex;
}

.profile-section.option-two .profile-tabs .nav-tabs .nav-link i {
    background-color: #14212b;
    border-radius: 0.35rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-section.option-two .profile-tabs .nav-tabs .nav-link.active {
    background-color: transparent;
}

.profile-section.option-two .profile-tabs .nav-tabs .nav-link.active i,
.profile-section.option-two .profile-tabs .nav-tabs .nav-link.active span {
    background-color: #f0c929;
}

.profile-section.option-two .profile-tabs .nav-tabs .nav-link span {
    /* text-transform: lowercase; */
    width: calc(100% - 50px);
    height: 50px;
    display: flex;
    align-items: center;
    background-color: #14212b;
    padding-right: 1rem;
    border-top-right-radius: 0.35rem;
    border-bottom-right-radius: 0.35rem;
    opacity: 0;
    transition: opacity .2s ease-in-out;
    /* visibility: hidden; */
    position: absolute;
    left: -1000%;
}

.profile-section.option-two .profile-tabs .nav-tabs:hover span {
    opacity: 1;
    /* visibility: visible; */
    position: relative;
    left: 0;
}

.profile-section.option-two .profile-tabs .nav-tabs:hover .nav-link i {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.profile-section.option-two .profile-tabs .nav-tabs:hover {
    background-color: #fff;
}

.profile-section.option-two .profile-tabs .nav-tabs .nav-link span::first-letter {
    text-transform: capitalize;
}

/* @media (max-width: 768px) {
    .profile-section.option-two .profile-tabs .nav-tabs .nav-link span {
        display: none;
    }
} */

.profile-section .profile-tabs .nav-tabs {
    /* flex-direction: column; */
    border: none;
    /* background-color: #14212b; */
    /* border-radius: 0.35rem; */
    justify-content: center;
    text-align: center;
    margin: 0;
    margin-bottom: 1rem;
}

.profile-section .profile-tabs .nav-tabs .nav-item {
    margin-bottom: 5px;
    padding: 0;
}

.profile-section .profile-tabs .nav-tabs .nav-link {
    border: none;
    border-radius: 0.35rem;
    padding: 0.75rem 0.5rem;
    color: #fff;
    background-color: #14212b;
    margin-right: 5px;
    font-size: 16px;
}

.profile-section .profile-tabs .tab-content {
    width: 100%;
}

.profile-section.option-two .profile-tabs .tab-content {
    padding-left: 65px;
}

.profile-section .profile-tabs .nav-tabs .nav-item.show .nav-link,
.profile-section .profile-tabs .nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #f0c929;
    border-radius: 0.25rem;
}

.profile-section .profile-tabs .nav-tabs .nav-link i {
    /* margin-right: 1rem; */
    /* display: none; */
}

input,
select,
textarea,
.bootstrap-select>.dropdown-toggle {
    height: 40px;
    color: #616161;
    width: 100%;
    background-color: #fff;
    padding: 0 25px;
    font-size: 14px;
    border: 1px solid #ced4da73;
}

.profile-section form .input-group textarea {
    height: 80px;
    padding: 10px 25px;
}

.profile-section form .input-group textarea.post-textarea {
    min-height: 150px;
}

.profile-section form .input-group-2 .input-group>.input-group-prepend+input {
    width: 94%;
}

.bootstrap-select {
    width: 100% !important;
}

.bootstrap-select .dropdown-toggle .filter-option {
    display: flex;
    align-items: center;
}

@media (max-width: 575.98px) {}

@media (max-width: 767.98px) {}

@media (max-width: 991.98px) {
    .profile-section form .input-group-2 .input-group>.input-group-prepend+input {
        width: 88%;
    }
}

@media (max-width: 1199.98px) {
    .profile-section form .input-group-2 .input-group>.input-group-prepend+input {
        width: 91%;
    }
}

@media (max-width: 1450px) {
    .profile-section form .input-group-2 .input-group>.input-group-prepend+input {
        width: 94%;
    }
}

.profile-section form .input-group-2 .input-group .input-group-prepend .input-group-text {
    width: 40px;
    height: 40px;
    justify-content: center;
    color: #616161;
    background-color: #f5f5f5;
    border: none;
    border-right: 3px solid #6161614f;
}

.profile-section form .input-group-2 .input-group {
    flex-wrap: nowrap;
}

.profile-section form .input-group-2 .input-group:not(:last-child) {
    margin-bottom: 1rem;
}

.profile-section form .input-group label {
    font-weight: 700;
    color: #14212b;
    margin-bottom: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.profile-section form {
    margin-bottom: 1.5rem;
}

.profile-section form .form-row {
    background: #fafafa;
    padding: 1rem;
    border-radius: 0.25rem;
    height: 100%;
}

.profile-section form .form-row .form-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: .75rem;
    margin-bottom: .75rem;
    border-bottom: 1px solid #7d91a0;
}

.profile-section form .form-row .form-row-header h4 {
    font-size: 20px;
}

.profile-section form .form-row .form-row-header i {
    /* color: #14212b; */
    /* font-size: 13px; */
    cursor: pointer;
}

.profile-section form .form-row .form-row-header .add-btn {
    border: 2px solid #f0c929;
    border-radius: 5em;
    padding: 0.25rem;
}

.profile-section form .form-row .form-row-header h4 span {
    font-size: 13px;
    color: red;
}

.profile-section form .form-row .main-btn,
.profile-section form .form-row .main-btn::after {
    border-radius: 0;
}

.profile-section form .form-row .main-btn {
    display: flex;
    margin-left: auto;
    /* padding: 0 50px; */
}

.profile-section form .form-row label .fa-star {
    margin-left: 0.5rem;
    font-size: 9px;
    color: red;
}

.profile-section form .form-row label+* {
    width: 100%;
}

.profile-section form .form-row label~p {
    font-size: 14px;
    color: #277BC0;
    font-weight: 500;
}

.profile-section form .form-row .social-edits {
    justify-content: center;
}

.profile-section form .form-row .social-edits a:not(:last-child) {
    margin-right: 1rem;
    font-size: 16px;
}

.profile-section form .form-row .social-edits a {
    color: #277BC0;
}

.upload-document>i {
    color: #277BC0;
    background-color: #277BC017;
    padding: 1.5rem;
    font-size: 22px;
    border-radius: 5px;
    margin-right: 2rem;
}

.upload-document .browse-file {
    font-weight: 700;
    color: #14212b;
    border-radius: 5px;
    background: #fff;
    padding: 10px 30px;
    border: 1px solid #ced4da73;
    margin-left: auto;
}

.upload-document .browse-file:only-child {
    margin: auto;
}

.upload-document .browse-file:hover {
    color: #fff;
    background-color: #14212b;
}

@media (max-width: 575px) {
    .upload-document {
        flex-direction: column;
        align-items: center !important;
    }

    .upload-document .browse-file {
        margin-left: 0;
    }

    .upload-document>i {
        margin-right: 0;
    }
}

/* For Startups */

.customized-service.box-style .customized-inner {
    position: relative;
    background-color: #14212b;
    padding: 110px 100px;
    z-index: 2;
}

@media (max-width: 1199px) {
    .customized-service.box-style .customized-inner {
        padding: 90px 60px;
    }
}

@media (max-width: 575px) {
    .customized-service.box-style .customized-inner {
        padding: 60px 30px;
    }
}

.customized-service.box-style .customized-inner::before,
.customized-service.box-style .customized-inner::after {
    position: absolute;
    background-color: #14212b;
    z-index: -2;
    content: "";
    opacity: 0.07;
}

.customized-service.box-style .customized-inner::before {
    left: -20px;
    right: -20px;
    bottom: -20px;
    top: 20px;
}

.customized-service.box-style .customized-inner::after {
    left: -40px;
    right: -40px;
    bottom: -40px;
    top: 40px;
}

.customized-service.box-style .customized-inner .line-shape-one {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.customized-service.box-style .customized-inner .line-shape-two {
    position: absolute;
    z-index: -1;
    right: 60px;
    bottom: 50px;
}

.customized-service .customized-text {
    color: #c2d9eb;
}

@media (max-width: 991px) {
    .customized-service .customized-text {
        margin-top: 40px;
    }
}

.customized-service .customized-text ul {
    margin: 40px 0;
}

.customized-service .customized-text ul li:not(:last-child) {
    margin-bottom: 10px;
}

.customized-service .customized-text ul li i {
    margin-right: 10px;
}

.customized-service .customized-text .section-title h2 {
    color: #fff;
}

.customized-service .customized-text-two {
    padding-left: 45px;
}

@media (max-width: 1199px) {
    .customized-service .customized-text-two {
        padding-left: 20px;
    }
}

@media (max-width: 991px) {
    .customized-service .customized-text-two {
        padding-left: 0;
        margin-top: 50px;
    }
}

.customized-service .customized-text-two ul {
    margin: 40px 0;
}

.customized-service .customized-text-two ul::before {
    content: "";
    display: block;
    clear: both;
}

.customized-service .customized-text-two ul li {
    font-weight: 600;
    margin-bottom: 10px;
    float: left;
    width: 50%;
}

.customized-service .customized-text-two ul li:not(:last-child) {
    margin-bottom: 10px;
}

.customized-service .customized-text-two ul li i {
    margin-right: 10px;
    color: #f0c929;
}

.customized-service .customized-text-two ul li::before {
    content: "";
    display: block;
    clear: both;
}

.for-startups-illustration-img {
    position: relative;
    min-height: 550px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.for-startups-illustration-img .illustration-img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 50%;
    max-width: 655px;
}

@media (max-width: 991px) {
    .for-startups-illustration-img .illustration-img {
        position: unset;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        margin: 0 auto 50px;
        max-width: 550px;
    }
}

.for-startups-list li {
    color: #14212b;
    position: relative;
    padding-left: 30px;
}

.for-startups-list li i {
    margin-right: 8px;
    position: absolute;
    left: 0;
    padding-top: 7px;
}

.for-startups-text {
    padding-right: 80px;
}

/* Service Form */
.service-form .section-title {
    background-color: #14212b;
    color: #fff;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.service-form form .form-row .form-row-header {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #7d91a0;
}

.service-form form .form-row .fa-star {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 15px; */
    margin-left: 0.5rem;
    font-size: 9px;
    color: red;
}

.service-form form .input-group label {
    font-weight: 600;
    color: #14212b;
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
}

.service-form form .main-btn,
.service-form form .main-btn::after {
    border-radius: 0;
}

.connectLinkedin a {
    background-color: #0077b5;
    color: #fff;
    text-align: center;
    line-height: 40px;
}

.connectLinkedin a:hover {
    background-color: #075e8b;
}

.connectLinkedin a::after {
    display: none;
}

.input-group .or {
    margin-bottom: 15px;
    text-align: center;
    font-size: 16px;
}

/* Idea Hub */
.idea-loop .single-post-box {
    display: flex;
}

@media (max-width: 991px) {
    .idea-loop .single-post-box {
        display: flex;
        flex-direction: column;
    }
}

.idea-loop .details li {
    color: #14212b;
    font-size: 16px;
    font-weight: bold;
}

.idea-loop .details li span {
    font-weight: 100;
}

.idea-loop .ideas-category-section {
    background-color: #14212b;
    padding: 2rem;
    border-radius: 5px;
}

.idea-loop .ideas-category-section h4 {
    color: #fff;
    margin-bottom: 2rem;
}

.idea-loop .ideas-category-section .ideas-category .single-category {
    background-color: #fff;
    border-radius: 5em;
    padding: 0.25rem 1rem;
    margin-right: 4px;
    margin-bottom: 10px;
    color: #14212b;
    font-size: 16px;
}

.idea-loop .ideas-category-section .ideas-category .single-category:hover {
    background-color: #f0c929;
    color: #fff;
}

/* Pricing  */
.upgrade-premium .pricing-plans {
    background: #fff;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    border-radius: 25px;
    display: flex;
}

@media(max-width: 767px) {
    .upgrade-premium .pricing-plans {
        flex-direction: column
    }
}

.upgrade-premium .pricing-plans .plan {
    padding: 60px 36px;
    flex: 1 1 25%;
    width: 25%;
    position: relative
}

.upgrade-premium .pricing-plans .plan .stretch-link {
    position: absolute;
    inset: 0;
    z-index: 10
}

@media(min-width: 992px)and (max-width: 1200px) {
    .upgrade-premium .pricing-plans .plan {
        padding: 50px 24px 30px
    }
}

@media(min-width: 768px)and (max-width: 991px) {
    .upgrade-premium .pricing-plans .plan {
        padding: 40px 16px 30px;
        flex: 1 1 50%;
        width: 50%;
    }
}

@media(max-width: 767px) {
    .upgrade-premium .pricing-plans .plan {
        padding: 20px;
        flex: 1 1 100%;
        width: 100%
    }
}

.upgrade-premium .pricing-plans .plan.main-plan {
    /* box-shadow: 0px 33px 90px rgba(76, 76, 108, .1); */
    position: relative
}

.upgrade-premium .pricing-plans .plan.main-plan .recommended {
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    color: #fff;
    padding: 12px 24px;
    background: #f0c929;
    border-radius: 76px
}

.upgrade-premium .pricing-plans .plan.main-plan .recommended svg {
    margin-right: 5px !important
}

@media(min-width: 992px)and (max-width: 1200px) {
    .upgrade-premium .pricing-plans .plan.main-plan .recommended {
        font-size: 16px
    }
}

@media(min-width: 768px)and (max-width: 991px) {
    .upgrade-premium .pricing-plans .plan.main-plan .recommended {
        padding: 8px 12px;
        top: -16px;
        font-size: 12px;
        line-height: 14px
    }
}

@media(max-width: 767px) {
    .upgrade-premium .pricing-plans .plan.main-plan .recommended {
        position: static;
        transform: translateX(0);
        margin-bottom: 6px;
        padding: 5px 10px;
        font-size: 13px
    }

    .upgrade-premium .pricing-plans .plan.main-plan .recommended svg {
        width: 12px;
        height: auto;
        margin-right: 5px !important
    }
}

.upgrade-premium .pricing-plans .plan:not(:last-child) {
    border-right: 1px solid #eeeef5
}

@media(max-width: 767px) {
    .upgrade-premium .pricing-plans .plan:not(:last-child) {
        border-bottom: 1px solid #eeeef5;
        border-right: 0
    }
}

.upgrade-premium .pricing-plans .plan.seven-days-plan {
    color: #2c2ffe
}

.upgrade-premium .pricing-plans .plan.seven-days-plan .subscribe-btn {
    color: #2c2ffe;
    background: #dfe0ff
}

.upgrade-premium .pricing-plans .plan.seven-days-plan .subscribe-btn:hover {
    background: #d3d4fb
}

.upgrade-premium .pricing-plans .plan.seven-days-plan .subscribe-btn:active {
    background: #edeeff
}

.upgrade-premium .pricing-plans .plan.six-months-plan {
    color: #277BC0
}

.upgrade-premium .pricing-plans .plan.six-months-plan .subscribe-btn {
    color: #277BC0;
    background: #277bc045;
}

.upgrade-premium .pricing-plans .plan.six-months-plan .subscribe-btn:hover {
    background: #277bc070;
}

.upgrade-premium .pricing-plans .plan.six-months-plan .subscribe-btn:active {
    background: #277bc070;
}

.upgrade-premium .pricing-plans .plan.month-plan {
    color: #ff9c00
}

.upgrade-premium .pricing-plans .plan.month-plan .subscribe-btn {
    color: #ff9c00;
    background: #ffeac8
}

.upgrade-premium .pricing-plans .plan.month-plan .subscribe-btn:hover {
    background: #fadeb3
}

.upgrade-premium .pricing-plans .plan.month-plan .subscribe-btn:active {
    background: #fff1da
}

.upgrade-premium .pricing-plans .plan.year-plan {
    color: #f0c929
}

.upgrade-premium .pricing-plans .plan.year-plan .subscribe-btn {
    color: #f0c929;
    background: #f0c92938
}

.upgrade-premium .pricing-plans .plan.year-plan .subscribe-btn:hover {
    background: #f0c92966
}

.upgrade-premium .pricing-plans .plan.year-plan .subscribe-btn:active {
    background: #f0c92966
}

.upgrade-premium .pricing-plans .plan-period {
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
    color: #14212b;
    margin-bottom: 32px
}

@media(min-width: 992px)and (max-width: 1200px) {
    .upgrade-premium .pricing-plans .plan-period {
        font-size: 22px
    }
}

@media(min-width: 768px)and (max-width: 991px) {
    .upgrade-premium .pricing-plans .plan-period {
        font-size: 16px;
        margin-bottom: 20px
    }
}

@media(max-width: 767px) {
    .upgrade-premium .pricing-plans .plan-period {
        font-size: 17px;
        line-height: 27px;
        margin: 0 0 16px
    }
}

.upgrade-premium .pricing-plans .plan-period .off {
    font-weight: 600;
    font-size: 14px;
    line-height: 38px;
    color: #474c4d
}

@media(min-width: 768px)and (max-width: 991px) {
    .upgrade-premium .pricing-plans .plan-period .off {
        font-size: 12px
    }
}

@media(max-width: 767px) {
    .upgrade-premium .pricing-plans .plan-period .off {
        font-size: 15px
    }
}

.upgrade-premium .pricing-plans .plan-price {
    font-weight: 700;
    font-size: 64px;
    line-height: 58px;
    position: relative;
    display: inline-flex !important
}

@media(min-width: 768px)and (max-width: 991px) {
    .upgrade-premium .pricing-plans .plan-price {
        font-size: 44px;
        line-height: 50px
    }
}

@media(max-width: 767px) {
    .upgrade-premium .pricing-plans .plan-price {
        font-size: 34px;
        line-height: 44px
    }
}

.upgrade-premium .pricing-plans .plan-price .cent {
    font-size: 28px;
    line-height: 15px;
    position: relative;
    top: 10px;
    right: -5px
}

@media(min-width: 768px)and (max-width: 991px) {
    .upgrade-premium .pricing-plans .plan-price .cent {
        font-size: 20px
    }
}

@media(max-width: 767px) {
    .upgrade-premium .pricing-plans .plan-price .cent {
        font-size: 17px;
        line-height: 15px
    }
}

.upgrade-premium .pricing-plans .plan-autorenewal-text {
    font-size: 20px;
    text-align: center;
    color: #474c4d;
    margin: 15px 16px 40px;
    line-height: 30px
}

@media(min-width: 1400px) {
    .upgrade-premium .pricing-plans .plan-autorenewal-text {
        margin: 15px 40px 40px
    }
}

@media(min-width: 992px)and (max-width: 1200px) {
    .upgrade-premium .pricing-plans .plan-autorenewal-text {
        font-size: 18px
    }
}

@media(min-width: 768px)and (max-width: 991px) {
    .upgrade-premium .pricing-plans .plan-autorenewal-text {
        font-size: 17px;
        margin: 15px 0 30px
    }
}

@media(max-width: 767px) {
    .upgrade-premium .pricing-plans .plan-autorenewal-text {
        margin: 0 0 12px;
        font-size: 15px
    }
}

.upgrade-premium .pricing-plans .subscribe-btn {
    font-weight: 700;
    font-size: 15px;
    line-height: 28px;
    display: block;
    padding: 14px;
    text-align: center;
    border-radius: 7px;
    transition: .2s ease-in-out
}

@media(max-width: 991px) {
    .upgrade-premium .pricing-plans .subscribe-btn {
        padding: 10px
    }
}

.plan-features {
    margin-top: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    text-align: left;
    margin-bottom: .75rem;
}

.plan-features li>i {
    margin-right: 10px;
}

.plan-features li p {
    color: #14212b;
}

/* Dashboard Profile */
.profile-section .card {
    border: 0;
    background: #fafafa;
    border-radius: 0.25rem;
}

.met-profile {
    background: #fafafa;
}

.met-profile .met-profile-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.met-profile .met-profile-main .met-profile-main-pic {
    position: relative;
    max-width: 128px;
    max-height: 128px;
    margin-right: 24px;
}

.met-profile .met-profile-main .met-profile_user-detail {
    margin-right: 24px;
}

.met-profile .met-profile-main .met-profile-main-pic .met-profile_main-pic-change {
    cursor: pointer;
    background-color: #f0c929;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    position: absolute;
    bottom: 4px;
    right: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-shadow: 0 0 20px 0 rgba(249, 250, 251, 0.05);
    box-shadow: 0 0 20px 0 rgba(249, 250, 251, 0.05);
    border: 3px solid #fff;
}

.met-profile .met-profile-main .met-profile-main-pic .met-profile_main-pic-change i {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
    font-size: 14px;
}

.met-profile .met-profile-main .met-profile_user-detail .met-user-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 6px;
}

.met-profile .met-profile-main .met-profile_user-detail .met-user-name-post {
    color: #8d93a1;
    font-size: 14px;
}

.met-profile .personal-detail {
    font-size: 16px;
}

.met-profile .personal-detail li {
    color: #14212b;
}

.met-profile .personal-detail li i {
    color: #277BC0;
}

.icons-wrapper .btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #277BC0;
    border-radius: 5em;
    margin-right: 0.5rem;
    background-color: #277BC0;
    color: #fff;
    padding: 12px 9px 13px 13px;
}

.icons-wrapper .btn:hover {
    background-color: #fff;
    color: #277BC0;
}

.icons-connect-wrapper {
    display: flex;
}

.icons-connect-wrapper .btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #277BC0;
    border-radius: 5em;
    margin-right: .5rem;
    background-color: #277BC0;
}

.icons-connect-wrapper i {
    color: #fff;
}

.icons-connect-wrapper .btn:hover {
    background-color: #fff;
}

.icons-connect-wrapper .btn:hover i {
    color: #277BC0;
}

/* .file-uploaded .file-wrapper {
    text-align: center;
    height: 100px;
    padding: 1.5rem;
    background-color: #f1f1f1;
    border-radius: 5px;
    margin: auto;
    margin-bottom: 1rem;
} */

.file-uploaded p {
    font-size: 14px;
    margin-top: 1rem;
    /* text-align: center; */
}

.file-uploaded .file-wrapper {
    display: inline-block;
}

.file-uploaded .file-wrapper img {
    width: 55px;
}

.file-uploaded>span {
    font-size: 14px;
}

/* Companies Page  */
.companies-page-wrapper .nav-tabs {
    justify-content: end;
}

.companies-page-wrapper .nav-tabs>.nav-item>.nav-link {
    color: #277bc0;
    border-radius: 0;
    border: 1px solid #277bc0;
    font-size: 14px;
    line-height: 1.5;
    background-color: #fff;
    transition: .2s all ease-in-out;
}

.companies-page-wrapper .nav-tabs>.nav-item>.nav-link.active,
.companies-page-wrapper .nav-tabs>.nav-item>.nav-link:hover {
    color: #fff;
    background-color: #277bc0;
}

.companies-page-wrapper .nav-tabs>.nav-item:first-child>.nav-link {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem
}

.companies-page-wrapper .nav-tabs>.nav-item:last-child>.nav-link {
    border-bottom-right-radius: 0.25rem;
    border-top-right-radius: 0.25rem
}

.filter-search .filters-list ul li>a {
    border-radius: 100px;
    font-size: 12px;
    padding: 6px 10px;
    /* border: 1px solid #277BC0; */
    color: #fff;
    background-color: #277BC0;
    display: inline-flex;
    white-space: nowrap;
    text-align: center;
}

.filter-search .filters-list ul li>a:hover {
    background-color: #1b5789;
}

.filter-search .filters-list ul li>a>span {
    font-size: 11px;
    margin-left: 8px;
    border-left: 1px solid #e5e5e5;
    padding-left: 8px;
    padding-right: 2px;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-search .filters-list ul li:not(:last-child) {
    margin-right: 7px;
    max-height: 55px;
}

.filter-search .filters-list ul {
    display: flex;
    padding: 8px;
    height: 45px;
    overflow-x: hidden;
    background-color: #fff;
    border-radius: 100px;
}

.filter-search .filters-list ul:hover {
    overflow-x: scroll;
}

.filter-search .filters-list ul::-webkit-scrollbar {
    height: 10px;
    background: #fff;
}

.search-filter .search-box .search-input {
    background: transparent;
    border: none;
    padding-left: 10px;
}

.search-filter .search-box .select-actions .btn-group .main-btn-sqr {
    white-space: nowrap;
    margin-right: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.search-filter .search-box .select-actions .btn-group .second-btn-sqr {
    white-space: nowrap;
    margin-right: 5px;
    display: inline-flex;
    align-items: center;
}

.search-filter .search-box {
    /* background: #fff; */
    margin-bottom: -48px;
}
@media (max-width: 576px) { 
    .search-filter .search-box {
        margin-bottom: 0;
        justify-content: center;
    }
    .companies-page-wrapper .nav-tabs{
        justify-content: center;
    }
}
.search-badge {
    background-color: #f0c929;
    color: #fff;
    margin: .5rem;
    cursor: pointer;
}

.search-badge:hover {
    background-color: #d4b122;
}

.search-badge:not(:first-child) {
    margin-left: 0;
}

.search-badge>span {
    font-size: 11px;
    margin-left: 8px;
    border-left: 1px solid #e5e5e5;
    padding-left: 8px;
    padding-right: 2px;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.companies-table {
    background-color: #fff;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    position: relative;
}

.companies-table>thead {
    top: 60px !important;
    background: white;
}

.companies-table::-webkit-scrollbar {
    height: 10px;
    background: #fff;
}

.profile-table-wrapper::-webkit-scrollbar {
    height: 10px;
    background: transparent;
}

.companies-table * {
    line-height: 1;
}

.companies-table thead th {
    font-size: 12px;
    padding: 15px;
    text-transform: uppercase;
}

.companies-table tbody td span,
.companies-table tbody td li>a,
.companies-table tbody td time,
.companies-table tbody td li,
.companies-table tbody td p {
    font-size: 13px;
    color: #5d5d5d;
}

.companies-table .company-details-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 14px;
    color: #f0c929;
}

.companies-table tbody td ul {
    list-style-type: disc;
    padding-left: 1rem;

}

.companies-table tbody td li {
    line-height: 1.4;
}

.companies-table thead th,
.companies-table td,
.profile-table thead th,
.profile-table td {
    border: none;
}

.companies-table>thead>tr,
.profile-table>thead>tr {
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%);
}

.profile-table td {
    padding: .3rem 15px;
    font-size: 14px;
    color: #5d5d5d;
}

.profile-table thead th {
    font-size: 16px;
    padding: 15px;
}

.entity-name .entity-name-info .entity-name-name a {
    color: #222;
    font-weight: bold;
    font-size: 18px;
}

.entity-name .entity-name-info .entity-name-tagline {
    font-size: 13px;
    color: #5d5d5d;
    margin-top: .5rem;
}

.entity-name .company-avatar img {
    max-width: 55px;
}

.entity-name {
    padding: 15px;
    height: 100%;
    align-items: center;
}

.companies-table tr {
    /* height: 1px; */
}
@media(min-width: 767.98px) {
    .companies-table tr>td {
        height: 1px;
    }   
}
@media(max-width: 768px) {
    .entity-name .company-avatar {
        display: none;
    }   
}

.profile-table {
    white-space: nowrap;
    display: block;
}

.td-long-text {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-table-wrapper {
    overflow-x: auto;
    background-color: #fff;
}

/* .special-table {
    margin-right: 15rem;
}

@media (max-width: 991px) {
    .special-table {
        margin-right: 14rem;
    }
}

@media (max-width: 767.98px) {
    .special-table {
        margin-right: 3rem;
    }
} */
/* Company Details Modal */
.company-details-card {
    padding: 20px;
    position: relative;
}

.company-details-card .close {
    position: absolute;
    right: 0;
    top: 0;
}

.company-details-card .card-text {
    font-size: 14px;
    color: #869aa9;
}

.company-details-card .list-group {
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    text-align: center;
    padding: 0.75rem 0;
}

.company-details-card .list-group>li>i {
    color: #277BC0;
}

.company-details-card .details-list {
    font-size: 13px;
    font-weight: 600;
    text-align: left;
}

.company-details-card .details-list>li {
    position: relative;
    padding-left: 25px;
}

.company-details-card .details-list>li>i {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    top: 0;
    bottom: 0;
}

.company-details-card .list-group-item {
    line-height: 1;
    font-size: 13px;
    font-weight: 600;
    border-width: 0;
    padding: 0.5rem 0;
    color: #4e555b;
}

/* Advanced Filters Modal */
.filter-modal .nav-pills {
    font-size: 14px;
    background-color: #277bc014;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-right: 1px solid #eee;
    height: 100%;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
}

.filter-modal .nav-pills::-webkit-scrollbar {
    height: 10px;
    background: #fff;
}

.filter-modal .nav-pills .nav-link {
    background-color: transparent;
    border: 0;
    text-align: right;
    border-radius: 0;
    font-weight: bold;
}

.filter-modal .nav-pills .nav-link.active,
.filter-modal .nav-pills .show>.nav-link {
    color: #14212b;
    background-color: #fff !important;
}

.filter-modal .tab-content {
    /* height: calc(100% - 72px); */
    padding-right: 1rem;
}

.filter-modal .tab-content .tab-pane {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.filter-inputs-group {
    padding: 0 1rem;
}

.filter-inputs-group .form-row label {
    font-weight: 600;
    color: #14212b;
    font-size: 16px;
}

.filter-inputs-group fieldset {
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.filter-inputs-group fieldset legend {
    font-size: 14px;
    border-bottom: 1px solid #eee;
    margin-bottom: .5rem;
    text-transform: uppercase;
    font-weight: 500;
    color: #14212b;
}

.filter-inputs-group .filter-inputs-values .checkbox-filter .form-check {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.filter-inputs-group .filter-inputs-values .checkbox-filter .form-check>.form-check-input {
    margin-top: 0;
}

.filter-inputs-group .filter-inputs-values .checkbox-filter .form-check>.form-check-label {
    font-size: 14px;
    line-height: 1;
}

.filter-inputs-group .filter-inputs-values .checkbox-filter select {
    height: 40px;
    color: #616161;
    width: 100%;
    background-color: #f5f5f5;
    padding: 0 25px;
    font-size: 14px;
    border: none;
}

.slider-mark .slider-mark-text {
    font-size: 12px;
    white-space: nowrap;
}

.form-control-range::-webkit-slider-thumb {
    background: #f0c929;
}

.form-control-range::-moz-range-thumb {
    background: #f0c929;
}

.form-control-range::-ms-thumb {
    background: #f0c929;
}

/* Signed In Modal */
.signed-in .profile-panel {
    position: relative;
    cursor: pointer;
    margin-right: 0;
}

.signed-in .profile-panel.shadow {
    box-shadow: none !important;
}

.signed-in .panel {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.signed-in .profile-panel .profile-data {
    align-items: center;
    /* background-color: #f0c929;
    padding: 0.75rem 1rem;
    border-radius: 3px; */
}

/* 
.signed-in .profile-panel .profile-data-list {
    opacity: 0;
    position: absolute;
    background-color: #fff;
    width: 100%;
    right: 0;
    top: 120%;
    z-index: 99;
    height: auto;
    transition: all 0.3s ease-out 0s;
    visibility: hidden;
    display: flex;
    flex-direction: column;
} */

.signed-in .profile-panel .profile-data img {
    width: 50px;
    border-radius: 5em;
    background: #fff;
    padding: 0.25rem;
}

.signed-in .profile-panel .profile-data .user-info .user-jop p {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.signed-in .profile-panel .profile-data .user-info .user-name p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    margin-bottom: 0.25rem;
    text-transform: capitalize;
}

.signed-in .profile-panel .profile-data-list .dropdown-item {
    padding: 0.5rem 1rem;
    color: #14212b;
    font-size: 15px;
    font-weight: 600;

}

.signed-in ul li a::before {
    background-color: transparent !important;
}

.signed-in .profile-panel .profile-data-list .dropdown-item i {
    margin-right: 0.75rem;
}

.signed-in .profile-panel .profile-data-list .dropdown-item:hover {
    background-color: #277bc014;
    color: #14212b;
}

header .header-nav .signed-in .panel:not(.profile-panel) {
    background-color: transparent;
}

.signed-in .notification-list .dropdown-toggle {
    color: #f5f5f9;
}

/* 404 Page */
.error-page,
.bubble-wrapper {
    height: 100vh;
}

.error-page:before,
.error-page:after,
.bubble-wrapper:before,
.bubble-wrapper:after {
    content: "";
    background: #11181d;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.error-page:before,
.bubble-wrapper:before {
    background: #14212b;
}

.error-page:before {
    height: 105vmax;
    width: 105vmax;
    z-index: -4;
}

.error-page:after {
    height: 80vmax;
    width: 80vmax;
    z-index: -3;
}

.bubble-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: "Varela Round", Sans-serif;
    text-shadow: 0 30px 10px rgba(0, 0, 0, 0.15);
}

.bubble-wrapper:before {
    height: 60vmax;
    width: 60vmax;
    z-index: -2;
}

.bubble-wrapper:after {
    height: 40vmax;
    width: 40vmax;
    z-index: -1;
}

.main {
    text-align: center;
    z-index: 5;
}

.bubble {
    background: #f0c929;
    border-radius: 50%;
    box-shadow: 0 30px 15px rgba(0, 0, 0, 0.15);
    position: absolute;
}

.bubble:before,
.bubble:after {
    content: "";
    background: #f0c929;
    border-radius: 50%;
    box-shadow: 0 30px 15px rgba(0, 0, 0, 0.15);
    position: absolute;
}

.bubble:nth-child(1) {
    top: 15vh;
    left: 15vw;
    height: 22vmin;
    width: 22vmin;
}

.bubble:nth-child(1):before {
    width: 13vmin;
    height: 13vmin;
    bottom: -25vh;
    right: -10vmin;
}

.bubble:nth-child(2) {
    top: 20vh;
    left: 38vw;
    height: 10vmin;
    width: 10vmin;
}

.bubble:nth-child(2):before {
    width: 5vmin;
    height: 5vmin;
    bottom: -10vh;
    left: -8vmin;
}

.bubble:nth-child(3) {
    top: 12vh;
    right: 30vw;
    height: 13vmin;
    width: 13vmin;
}

.bubble:nth-child(3):before {
    width: 3vmin;
    height: 3vmin;
    bottom: -15vh;
    left: -18vmin;
    z-index: 6;
}

.bubble:nth-child(4) {
    top: 25vh;
    right: 18vw;
    height: 18vmin;
    width: 18vmin;
}

.bubble:nth-child(4):before {
    width: 7vmin;
    height: 7vmin;
    bottom: -10vmin;
    left: -15vmin;
}

.bubble:nth-child(5) {
    top: 60vh;
    right: 18vw;
    height: 28vmin;
    width: 28vmin;
}

.bubble:nth-child(5):before {
    width: 10vmin;
    height: 10vmin;
    bottom: 5vmin;
    left: -25vmin;
}

/* Table Mobile View */
.table.table-mobile-view{
    display: table;
    margin-bottom: 0;
}
.table-mobile-view td, .table-mobile-view tr { 
    display: block; 
}
.table-mobile-view thead tr { 
    position: absolute;
    top: -9999px;
    left: -9999px;
}
.table-mobile-view tr {
    border: 1px solid #f0c929; 
}
.table-mobile-view tr + tr{
    margin-top: 1.5em;
}
.table-mobile-view td { 
    /* make like a "row" */
    border: none;
    border-bottom: 1px solid #eee; 
    position: relative;
    padding-left: 50%; 
    background-color: #f0c92914;
    text-align: left !important;
    display: flex;
    align-items: center;
}
.table-mobile-view td:before { 
    content: attr(data-label);
    display: inline-block;
    line-height: 2;
    margin-left: -100%;
    width: 100%;
    white-space: initial;
    font-weight: 800;
    font-size: 14px;
    padding-left: 0.5rem;
}
.table-mobile-view tbody td li{
    white-space: normal;
}
.table-mobile-view .entity-name .entity-name-info{
    white-space: normal;
}
/* MHaggag */
.upload-document>img {
    border-radius: 5px;
    margin: 0 2rem;
}

.signed-in .profile-panel .profile-data-list {
    min-width: 200px;
}

header.dashboard-header .navbar-extra .profile-panel .profile-data-list {
    min-width: 185px;
}

.profile-section form .form-row label~a,
.profile-section form .form-row label~ul {
    font-size: 14px;
    color: #277BC0;
    font-weight: 500;
}

/* End MHaggag */