/* ====== general start ====== */
.spacer {
    height: 150px;
}

:root {
    --site-primary: #213981;
    --site-primary-hover: #28418f;
    --site-secondary: #007bff;
    --site-secondary-hover: #007bff;
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #007bff;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
}

@font-face {
    font-family: Inter;
    src: url("../fonts/inter/Inter-VariableFont_slnt,wght.ttf");
}

* {
    box-sizing: border-box;
    /* font-family: 'Times New Roman', serif; */
    /* font-family: 'Inter'; */
    font-family: 'Poppins';
}

.text-orange {
    color: rgba(221, 170, 63, 1);
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
    /* font-family: 'Gotham', sans-serif; */
    /* font-family: "Chronicle Display", serif; */
    /* font-family: 'Times New Roman', serif; */
    /* font-family: Tahoma, sans-serif; */
    /* font-weight: 500; */
    color: #000000;
    text-align: left;
    min-height: 100vh;
}

p {
    /* font-size: 1.25rem; */
    /* font-family: 'Gotham', sans-serif; */
    /* font-family: Tahoma, sans-serif; */
    /* font-weight: 400; */
    font-size: 1rem;
    /* line-height: 24px; */
    /* letter-spacing: 0.08px; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: 'Gotham', sans-serif; */
    /* font-family: "Chronicle Display"; */
    /* font-family: "Chronicle Display", serif; */
    /* font-weight: 400; */
    /* font-size: 32.2294px; */
    /* font-weight: 500; */
    /* line-height: 40.2867px; */
    /* font-family: 'Times New Roman', serif; */
    font-family: 'Inter';
    /* font-weight: 600;
    line-height: 2.5rem;
    font-size: 1.875rem; */
    /* letter-spacing: 0.04px; */
}

h1 {}

h2 {}

h3 {}

h4 {}

h5 {}

h6 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.625rem;
}

.title-blue {
    color: rgba(36, 61, 127, 1);
}

.title-black {
    color: rgb(0, 0, 0);
}

.bold {
    font-weight: bold;
}

.round,
.rounded {
    border-radius: 50%;
}

.justify-content-center {
    justify-content: center !important;
}

.border-radius-0 {
    border-radius: 0 !important;
}

.border-less {
    border: none;
}

.border-less-top {
    border-top: none;
}

.border-less-right {
    border-right: none;
}

.border-less-bottom {
    border-bottom: none;
}

.border-less-left {
    border-left: none;
}

.border-bottom-1 {
    border-bottom: 1px #000 solid;
}

.border-black {
    border: 2px #000 solid !important;
    border-radius: 0;
}

.border-orange {
    border: 2px #F6BD4A solid !important;
    border-radius: 0;
}

.border-primary {
    border: 2px var(--site-primary) solid !important;
    border-radius: 0;
}

.landing-hero-rocket {
    background-color: rgba(246, 189, 74, 1);
    border-radius: 20px;
    color: #fff !important;
}

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

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

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

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

/* .navbar li {
    font-size: 1.0625rem;
} */

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, .5);
    font-size: 0.9rem;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.2rem;
        padding-left: 0.2rem;
    }
}

/* 
@media screen and (max-width: 1019px) and (min-width: 992px) {
    .navbar li {
        font-size: 1.2vmin;
    }
}

@media screen and (max-width: 1039px) and (min-width: 1019px) {
    .navbar li {
        font-size: 1.27vmin;
    }
} */

.landing-hero-rocket h5,
.landing-hero-rocket h3,
.landing-hero-rocket p {
    color: #fff !important;
}

.landing-hero-rocket .btn-primary {
    background-color: #FFF;
    border-color: #FFF;
    color: rgba(246, 189, 74, 1);
}


.landing-card {
    transition: all 1s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border: 2px #C4C4C4 solid;
    border-radius: 8px;
}

.landing-card:hover {
    transition: all 1s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border: 2px #F6BD4A solid;
    border-radius: 8px;
}

.bg-primary {
    background-color: var(--site-primary);
}

.border-1 {
    border: 1px #C4C4C4 solid;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 10px;
}

.border-10 {
    border-radius: 10px;
}

.border-15 {
    border-radius: 15px;
}

.border-20 {
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 20px;
}

.border-blue {
    border-color: #143A9F;
}

.modal h6 {
    color: #143A9F;
}

.modal .table td {
    padding-top: 0;
    padding-bottom: 25px;
}

/* ====== general end ====== */

/* ====== auth start ====== */
#auth .btn {
    padding: 10px 50px 10px 50px;
    width: 100%;
    max-width: 300px;
}

.auth {
    height: 100%;
}

.auth-split {
    height: 100%;
    width: 50%;
    position: fixed;
    z-index: 1;
    top: 0;
    overflow-x: hidden;
    padding-top: 20px;
}

.auth-left {
    left: 0;
    background-color: #143A9F;
}

.auth-left img {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 40%;
}

.auth-right .btn-link {
    display: none;
}

@media (max-width: 768px) {
    .auth-left img {
        display: none;
    }

    .auth-split {
        height: auto;
        width: 100%;
        position: absolute;
        z-index: 1;
        top: 0;
        overflow-x: hidden;
        padding-top: 20px;
    }

    .auth-left {
        background-color: #143A9F;
    }

    .auth-right {
        background-color: #FFFFFF;
    }

    .auth-right .btn-link {
        display: inherit;
    }

}

/* @media (min-height: 768px) {
    .auth-left img {
        height: 22%;
    }
} */

/* 
.auth-left .auth-text {
    margin: 80px 20px 80px 20px;
} */

.auth-left .auth-text h1,
.auth-left .auth-text h2,
.auth-left .auth-text h3,
.auth-left .auth-text h4,
.auth-left .auth-text h5,
.auth-left .auth-text h6 {
    margin: 50px 20px 50px 20px;
}

.auth-left .auth-text .btn-outline-primary {
    padding: 10px 25px 10px 25px;
    color: #ffffff;
    border-color: #ffffff;
    transition: all 1s;
}

.auth-left .auth-text .btn-outline-primary:hover {
    color: #000000;
    border-color: #ffffff;
    background-color: #ffffff;
    transition: all 1s;
}

.auth-right {
    right: 0;
    background-color: white;
}

.auth-right img {
    margin: 20px 0px 0px 0px;
}

.auth-right h2 {
    color: #F6BD4A;
    margin: 20px 0px 20px 0px;
}

/* .auth-right p {
    margin: 40px 0px 40px 0px;
} */

.auth-right p {
    margin: 20px 0px 20px 0px;
}

.auth-right .form-check-label-main {
    margin: 0;
    padding: 0;
    margin-right: 20px;
}

.auth-right .form-group-check {
    float: left;
}

.auth-social i {
    margin: 10px;
}

.auth-centered {
    text-align: center;
    justify-content: center;
    margin: 0 auto;
}

/* ====== auth end ====== */

/* ====== steps start ====== */
#step-progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: #455A64;
    padding-left: 0px;
    margin-top: 30px
}

#step-progressbar li {
    list-style-type: none;
    /* width: 16.66%; */
    width: 33.33333%;
    float: left;
    position: relative;
    font-weight: 400
}

#step-progressbar #step1:before {
    content: "1";
}

#step-progressbar #step2:before {
    content: "2";
}

#step-progressbar #step3:before {
    content: "3";
}

#step-progressbar #step4:before {
    content: "4";
}

#step-progressbar #step5:before {
    content: "5";
}

#step-progressbar #step6:before {
    content: "6";
}

#step-progressbar li:before {
    width: 30px;
    height: 30px;
    line-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: #DDAA3F;
    border-radius: 50%;
    margin: auto;
    color: #fff;
}

#step-progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #DDAA3F;
    position: absolute;
    left: 0;
    top: 15px;
    z-index: -1
}

#step-progressbar li:last-child:after {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    left: -50%;
}

#step-progressbar li:first-child:after {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: absolute;
    left: 50%
}

#step-progressbar li:last-child:after {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px
}

#step-progressbar li:first-child:after {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px
}

#step-progressbar li.active:before,
#step-progressbar li.active:after {
    background: #143A9F;
}

/* ====== steps end ====== */

/* ====== buttons start ====== */
.btn-primary {
    background-color: var(--site-primary);
}

.btn-primary:focus,
.btn-primary:hover {
    background-color: var(--site-primary-hover);
}

.btn-outline-primary {
    color: var(--site-primary);
    border-color: var(--site-primary);
}

.btn-outline-primary:focus,
.btn-outline-primary:hover {
    border-color: var(--site-primary-hover);
    background-color: var(--site-primary-hover);
}

.btn-info {
    background-color: #DDAA3F;
    border-color: #DDAA3F;
}

.btn-info:focus,
.btn-info:hover {
    border-color: #DDAA3F;
    background-color: #DDAA3F;
}

.btn-outline-info {
    color: #DDAA3F;
    border-color: #DDAA3F;
}

.btn-outline-info:focus,
.btn-outline-info:hover {
    border-color: #DDAA3F;
    background-color: #DDAA3F;
}

/* ====== buttons end ====== */

/* ====== table start ====== */

.table .table-stripe {
    background-color: rgba(20, 58, 159, 0.05);
}

.table td {
    padding-top: 25px;
    padding-bottom: 25px;
}

.thead-primary thead {
    border-radius: 10px !important;
    margin-bottom: 5px;
    color: #fff;
    background-color: var(--site-primary) !important;
}

.thead-primary thead tr th:first-child {
    border-top-left-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
}

.thead-primary thead tr th:last-child {
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

@media only screen and (max-width: 800px) {

    /* Force table to not be like tables anymore */
    #table-responsives table,
    #table-responsives thead,
    #table-responsives tbody,
    #table-responsives th,
    #table-responsives td,
    #table-responsives tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    #table-responsives thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    #table-responsives tr {
        border: 1px solid #ccc;
    }

    #table-responsives td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align: left;
    }

    #table-responsives td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }

    /*
	Label the data
	*/
    #table-responsives td:before {
        content: attr(data-title);
    }
}

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

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

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

    100% {
        transform: rotate(360deg);
    }
}

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

    100% {
        transform: rotate(360deg);
    }
}

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

.back-to-top i {
    /* font-size: 14px; */
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #298ce5;
    color: #fff;
}

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

.datepicker-dropdown {
    padding: 20px !important;
}

/*--------------------------------------------------------------
  # Top Bar If Required
  --------------------------------------------------------------*/
#topbar {
    background: #fff;
    height: 55px;
    /* font-size: 14px; */
    transition: all 0.5s;
    z-index: 996;
}

#topbar.topbar-scrolled {
    top: -40px;
}

#topbar .contact-info a {
    line-height: 1;
    color: #444444;
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: #1977cc;
}

#topbar .contact-info i {
    color: #1977cc;
    padding-right: 4px;
    margin-left: 15px;
    line-height: 0;
}

#topbar .contact-info i:first-child {
    margin-left: 0;
}

#topbar .social-links a {
    color: #437099;
    padding-left: 15px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: #1977cc;
}

#topbar .social-links a:first-child {
    border-left: 0;
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem;
    margin-bottom: 0;
    list-style: none;
    background-color: #fff;
    border-radius: 0;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.breadcrumb i {
    color: rgb(126, 125, 125);
}

.text-grey {
    color: rgba(126, 125, 125, .7);
}

#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    /* padding: 15px 0; */
    /* top: 40px; change if topbar is used */
    top: 0px;
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
    /* box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px; */
}

#header.header-scrolled {
    top: 0;
}

#header .logo {
    font-size: 1.875rem;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .0313rem;
    /* font-family: "Poppins", sans-serif; */
}

#header .logo a {
    color: #2c4964;
}

#header .logo img {
    height: auto;
    /* max-height: 70px; */
}

@media (min-width: 963px) {
    .logo-container {
        /* visibility: none !important; */
        /* display:unset !important; */
    }
    .logo-li {
        display:none !important;
    }

}


@media (max-width: 991px) {
    .logo-container {
        /* visibility: none !important; */
        display:none !important;
    }
    .logo-li {
        display:unset !important;
    }

}

/**
  * Search Button *
  **/

.btn-primary {
    background-color: #143A9F;
}

.btn-primary:focus,
.btn-primary:hover {
    background-color: #193fa8;
}

.btn-outline-primary {
    color: #143A9F;
    border-color: #5F7EFF;
}

.btn-outline-primary:focus,
.btn-outline-primary:hover {
    border-color: var(--site-primary-hover);
    background-color: var(--site-primary-hover);
}

.has-search .form-control {
    padding-left: 2.375rem;
    border-color: #5F7EFF;
    border-radius: 15px;
}

@media (max-width: 998) {
    .has-search {
        display: none;
        visibility: hidden;
    }
}

.form-control-feedback {
    /* font-size: 14px; */
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 1.5rem;
    height: 2.0rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
    padding: 4px;
}

::-webkit-input-placeholde,
:-ms-input-placeholder,
::placeholder,
.has-search::-webkit-input-placeholde,
.has-search:-ms-input-placeholder,
.has-search::placeholder,
input::-webkit-input-placeholde,
input:-ms-input-placeholder,
input::placeholder {
    color: #5F7EFF;
}

.input-group .input-group-text {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-right: 0px;
}

/* .input-group .form-control {
    border: 1px solid #ced4da;
    border-left: 0px;
} */

.search-header {
    margin-left: 25px;
    background: var(--site-primary);
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    /* font-size: 14px; */
    display: inline-block;
}

.search-header:hover {
    background: #166ab5;
    color: #fff;
}

@media (max-width: 768px) {
    .search-header {
        margin: 0 15px 0 0;
        padding: 6px 18px;
    }
}


#header img {
    max-width: 50vw;
}

@media (max-width: 795px) {
    #header .side {
        visibility: none;
        display: none;
    }
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 70vh;
    background: url("../images/bg-forex.jpg") top center rgba(0, 0, 0, 0.7);
    background-size: cover;
    background-blend-mode: multiply;
    margin-bottom: -150px;
}

#hero .container {
    position: relative;
}

#hero h1,
#hero h2,
#hero h3,
#hero h4,
#hero h5,
#hero h6 {
    /* margin: 0; */
    /* font-weight: 700; */
    color: #FFF;
}

#hero h2 {
    color: #FFF;
    margin: 10px 0 0 0;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
        margin-bottom: -120px;
        height: 60vh;
    }
}


@media (max-width: 992px) {
    #hero {
        margin-bottom: -90px;
        height: 40vh;
    }

    /* #hero .container {
        padding-bottom: 63px;
    } */

    #hero h1 {
        /* font-size: 14px; 
        line-height: 36px; */
    }

    #hero h2 {
        /* font-size: 1.125rem;
        line-height: 24px; */
        margin-bottom: 30px;
    }
}

@media (max-width: 800px) {
    #hero {
        height: 45vh;
    }
}

@media (max-height: 600px) {
    #hero {
        height: 60vh;
    }
}

/*--------------------------------------------------------------
  # Hero 2 Section
  --------------------------------------------------------------*/
#hero-two {
    width: 100%;
    height: 33vh;
    background-color: rgba(33, 57, 127, 1);
    color: #fff;
    background-size: cover;
    background-blend-mode: multiply;
    /* margin-bottom: -100px; */
}


@media (min-width: 1024px) {
    #hero-two {
        height: 33vh;
    }
}


@media (max-width: 992px) {
    #hero-two {
        height: 20vh;
    }

    #hero-two h1 {
        /* font-size: 14px; 
        line-height: 36px; */
    }

    #hero-two h2 {
        /* font-size: 1.125rem;
        line-height: 24px; */
        margin-bottom: 30px;
    }
}

@media (max-width: 800px) {
    #hero-two {
        height: 55vh;
    }
}

.table-input .input-group {
    max-width: 400px;
}

.table-input-two .form-control {
    max-width: 300px;
}

/*--------------------------------------------------------------
  # Hero Three Section
  --------------------------------------------------------------*/
#hero-three {
    width: 100%;
    height: 70vh;
    background: url("../images/banking/hero.svg") top center rgba(0, 0, 0, 0.7);
    background-size: cover;
    background-blend-mode: multiply;
    margin-bottom: -150px;
}

#hero-three .container {
    position: relative;
}

#hero-three h1,
#hero-three h2,
#hero-three h3,
#hero-three h4,
#hero-three h5,
#hero-three h6 {
    /* margin: 0; */
    /* font-weight: 700; */
    color: #FFF;
}

#hero-three h2 {
    color: #FFF;
    margin: 10px 0 0 0;
}

@media (min-width: 1024px) {
    #hero-three {
        background-attachment: fixed;
        margin-bottom: -120px;
        height: 60vh;
    }
}


@media (max-width: 992px) {
    #hero-three {
        margin-bottom: -90px;
        height: 40vh;
    }

    /* #hero-three .container {
        padding-bottom: 63px;
    } */

    #hero-three h1 {
        /* font-size: 14px;  */
        /* line-height: 36px; */
    }

    #hero-three h2 {
        /* font-size: 1.125rem;
        line-height: 24px; */
        margin-bottom: 30px;
    }
}

@media (max-width: 800px) {
    #hero-three {
        height: 45vh;
    }
}

@media (max-height: 600px) {
    #hero-three {
        height: 60vh;
    }
}


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

.section-bg {
    background-color: #f1f7fd;
}

.section-title {
    text-align: left;
}

.section-title h2 {
    /* font-size: 1.5625rem; */
    /* font-weight: bold; */
    /* margin-bottom: 20px; */
    padding-bottom: 20px;
    position: relative;
    color: #000;
}

.section-title h3 {
    /* font-size: 1.5625rem; */
}

/* .section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    /* background: #1977cc; */
/* bottom: 0;
left: calc(50% - 20px);
} */

*/ .section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #f1f7fd;
    min-height: 40px;
    margin-top: 120px;
}

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

.breadcrumbs h2 {
    /* font-size: 1.5rem;
    font-weight: 300; */
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    /* font-size: 14px;  */
}

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

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

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

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

/*--------------------------------------------------------------
  # Why Us
  --------------------------------------------------------------*/
.why-us .content {
    padding: 30px;
    background: #1977cc;
    border-radius: 4px;
    color: #fff;
}

.why-us .content h3 {
    /* font-weight: 700;
    font-size: 34px; */
    margin-bottom: 30px;
}

.why-us .content p {
    margin-bottom: 30px;
}

.why-us .content .more-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 30px 8px 30px;
    color: #fff;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
    /* font-size: 14px;  */
}

.why-us .content .more-btn:hover {
    color: #1977cc;
    background: #fff;
}

.why-us .card {
    width: 100%;
}

.why-us .card-body {
    padding: 0;
}

.why-us .tab-content {
    margin: 20px;
}

.why-us .icon-boxes .icon-box {
    text-align: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    width: 100%;
}

.why-us .icon-boxes .icon-box i {
    /* font-size: 40px; */
    color: #1977cc;
    margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
    /* font-size: 1.25rem; */
    /* font-weight: 700; */
    margin: 0 0 30px 0;
}

.why-us .icon-boxes .icon-box p {
    /* font-size: .9375rem; */
    color: #848484;
}

.why-us nav>.nav.nav-tabs {
    color: #000;
    background: #C4C4C4;
}

.why-us nav>div a.nav-item.nav-link {
    color: #000;
}

.why-us nav>div a.nav-item.nav-link.active,
.why-us nav>div a.nav-item.nav-link:hover,
.why-us nav>div a.nav-item.nav-link:focus {
    color: rgba(20, 58, 159, 1);
    background-color: rgba(20, 58, 159, 0.2) !important;
    transition: all 0.5s ease-out;
    margin: -1px;
}

@media (max-width: 769px) {
    .why-us nav>div a.nav-item.nav-link {
        /* font-size: .9375rem; */
        width: 33.3333%;
        display: flex;
        align-items: center;
        text-align: center;
        white-space: pre-line;
        padding: 8px;
    }
}

.why-us {
    text-align: left !important;
}


/*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
.about-section {
    border-radius: 20px;
    margin-top: -400px;
    margin-bottom: 100px !important;
    z-index: 100;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.about-section-height-one {
    height: 340px !important;
}

.about-section-height-two {
    height: 700px !important;
}

#hero-about {
    height: 520px;
}

/* #hero-about {
    height: 80vh;
} */
/* 
@media (min-height: 1224px) {
    #hero-about {
        height: 40vh;
    }
}

@media (min-height: 1000px) {
    #hero-about {
        height: 43vh;
    }
} */

@media (max-width: 1199px) {
    .about-section-height-one {
        height: 420px !important;
    }

    .about-section-height-two {
        height: 704px !important;
    }
}

@media (max-width: 991px) {
    .about-section-height-one {
        height: 420px !important;
    }

    .about-section-height-two {
        height: 904px !important;
    }
}

@media (max-width: 504px) {
    .about-section-height-one {
        height: 460px !important;
    }

    .about-section-height-two {
        height: 900px !important;
    }
}

@media (max-width: 471px) {
    .about-section-height-one {
        height: 500px !important;
    }

    .about-section-height-two {
        height: 1000px !important;
    }
}

@media (max-width: 363px) {
    .about-section-height-one {
        height: 550px !important;
    }

    .about-section-height-two {
        height: 1000px !important;
    }
}

@media (max-width: 350px) {
    .about-section-height-one {
        height: 620px !important;
    }

    .about-section-height-two {
        height: 1000px !important;
    }
}

@media (max-width: 346px) {
    .about-section-height-one {
        height: 700px !important;
    }

    .about-section-height-two {
        height: 1000px !important;
    }
}

@media (max-width: 320px) {
    .about-section-height-one {
        height: 750px !important;
    }

    .about-section-height-two {
        height: 1000px !important;
    }
}

@media (max-width: 293px) {
    .about-section-height-one {
        height: 800px !important;
    }

    .about-section-height-two {
        height: 1000px !important;
    }
}

.about .icon-boxes h4 {
    /* font-size: 1.125rem; */
    color: #4b7dab;
    margin-bottom: 15px;
}

.about .icon-boxes h3 {
    /* font-size: 14px;  */
    /* font-weight: 700; */
    color: #2c4964;
    margin-bottom: 15px;
}

.about .icon-box {
    margin-top: 40px;
}

.about .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid #8dc2f1;
    border-radius: 50px;
    transition: 0.5s;
}

.about .icon-box .icon i {
    color: #1977cc;
    /* font-size: 2rem; */
}

.about .icon-box:hover .icon {
    background: #1977cc;
    border-color: #1977cc;
}

.about .icon-box:hover .icon i {
    color: #fff;
}

.about .icon-box .title {
    margin-left: 85px;
    font-weight: 700;
    margin-bottom: 10px;
    /* font-size: 1.125rem; */
}

.about .icon-box .title a {
    color: #343a40;
    transition: 0.3s;
}

.about .icon-box .title a:hover {
    color: #1977cc;
}

.about .icon-box .description {
    margin-left: 85px;
    /* line-height: 24px; */
    /* font-size: 14px;  */
}

.about .video-box {
    background: url("../img/about.jpg") center center no-repeat;
    background-size: cover;
    min-height: 500px;
}

.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#1977cc 50%, rgba(25, 119, 204, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.about .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(25, 119, 204, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
    border-left: 15px solid #1977cc;
    transform: scale(20);
}

.about .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
  # Counts
  --------------------------------------------------------------*/
.counts {
    background: #f1f7fd;
    padding: 70px 0 60px;
}

.counts .count-box {
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    background: #fff;
}

.counts .count-box i {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    /* font-size: 1.25rem; */
    background: #1977cc;
    color: #fff;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.counts .count-box span {
    /* font-size: 36px; */
    display: block;
    /* font-weight: 600; */
    color: #082744;
}

.counts .count-box p {
    padding: 0;
    margin: 0;
    /* font-family: "Raleway", sans-serif; */
    /* font-size: 14px;  */
}

/*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    border: 1px solid #d5e1ed;
    padding: 80px 20px;
    transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: #1977cc;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
}

.services .icon-box .icon i {
    color: #fff;
    /* font-size: 14px;  */
}

.services .icon-box .icon::before {
    position: absolute;
    content: "";
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: #badaf7;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
}

.services .icon-box h4 {
    /* font-weight: 700; */
    margin-bottom: 15px;
    /* font-size: 1.5rem; */
}

.services .icon-box h4 a {
    color: #2c4964;
}

.services .icon-box p {
    /* line-height: 24px; */
    /* font-size: 14px;  */
    margin-bottom: 0;
}

.services .icon-box:hover {
    background: #1977cc;
    border-color: #1977cc;
}

.services .icon-box:hover .icon {
    background: #fff;
}

.services .icon-box:hover .icon i {
    color: #1977cc;
}

.services .icon-box:hover .icon::before {
    background: #3291e6;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
    color: #fff;
}

/*--------------------------------------------------------------
  # Services One
  --------------------------------------------------------------*/
.services-one .icon-box {
    text-align: center;
    /* border: 0.5px solid #d5e1ed; */
    padding: 60px 20px;
    margin: 20px 0px 0px 0px;
    /* box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1); */
    transition: all ease-in-out 0.3s;
    color: #000;
}

.services-one .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: #1977cc;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
}

.services-one .icon-box .icon i {
    color: #fff;
    /* font-size: 14px;  */
}

.services-one .icon-box .icon::before {
    position: absolute;
    content: "";
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: #badaf7;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
}

.services-one .icon-box h1,
.services-one .icon-box h2,
.services-one .icon-box h3,
.services-one .icon-box h4,
.services-one .icon-box h5,
.services-one .icon-box h6,
.services-one .icon-box h1 a,
.services-one .icon-box h2 a,
.services-one .icon-box h3 a,
.services-one .icon-box h4 a,
.services-one .icon-box h5 a,
.services-one .icon-box h6 a {
    color: #000;
    /* font-weight: 700; */
    margin-bottom: 15px;
    text-decoration: none;
}

.services-one .icon-box p {
    /* line-height: 24px; */
    /* font-size: 14px; */
    margin-bottom: 0;
}

.services-one .icon-box:hover {
    background: #ffffffda;
    border-color: #ffffffda;
}

.services-one .icon-box:hover .icon {
    background: #fff;
}

.services-one .icon-box:hover .icon i {
    color: #1977cc;
}

.services-one .icon-box:hover .icon::before {
    background: #3291e6;
}

.services-one .icon-box:hover h4 a,
.services-one .icon-box:hover p {
    color: #000;
    background: #ffffffda;
}


/*--------------------------------------------------------------
  # Services One
  --------------------------------------------------------------*/
.services-two .icon-box {
    text-align: center;
    /* border: 0.5px solid #d5e1ed; */
    padding: 30px 20px;
    margin: 10px 0px 0px 0px;
    /* box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1); */
    transition: all ease-in-out 0.3s;
    color: #000;
}

.services-two .icon-box img {
    margin: 0 auto;
    width: 84px;
    height: 84px;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
}

.services-two .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: #1977cc;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
}

.services-two .icon-box .icon i {
    color: #fff;
    /* font-size: 14px; */
}

.services-two .icon-box .icon::before {
    position: absolute;
    content: "";
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: #badaf7;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
}

.services-two .icon-box h1,
.services-two .icon-box h2,
.services-two .icon-box h3,
.services-two .icon-box h4,
.services-two .icon-box h5,
.services-two .icon-box h6,
.services-two .icon-box h1 a,
.services-two .icon-box h2 a,
.services-two .icon-box h3 a,
.services-two .icon-box h4 a,
.services-two .icon-box h5 a,
.services-two .icon-box h6 a {
    color: #000;
    /* font-weight: 700; */
    margin-bottom: 15px;
    text-decoration: none;
}

.services-two .icon-box p {
    /* line-height: 24px; */
    /* font-size: 14px; */
    margin-bottom: 0;
}

.services-two .icon-box:hover,
.services-two .icon-box:hover .icon,
.services-two .icon-box:hover .icon i,
.services-two .icon-box:hover .icon::before,
.services-two .icon-box:hover h4 a,
.services-two .icon-box:hover p {
    background-color: rgb(243, 241, 241);
    transition: all 0.3s ease-out 0s;
}


/*--------------------------------------------------------------
  # Services Three
  --------------------------------------------------------------*/
.services-three .icon-box {
    text-align: center;
    /* border: 0.5px solid #d5e1ed; */
    padding: 30px 20px;
    margin: 10px 0px 0px 0px;
    /* box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1); */
    transition: all ease-in-out 0.3s;
    color: #000;
}

.services-three .section-title {
    padding-bottom: 20px;
}

.services-three .has-text .form-control {
    padding-left: 8.375rem;
    margin-right: 4px;
    padding-right: 4px;
    border-color: #5F7EFF;
}

.services-three .has-text .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    padding-left: 0.5rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #000;
}

.services-three .icon-box img {
    margin: 0 auto;
    width: 84px;
    height: 84px;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
}

.services-three .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: #1977cc;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
}

.services-three .icon-box .icon i {
    color: #fff;
    /* font-size: 14px; */
}

.services-three .icon-box .icon::before {
    position: absolute;
    content: "";
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: #badaf7;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
}

.services-three .icon-box h1,
.services-three .icon-box h2,
.services-three .icon-box h3,
.services-three .icon-box h4,
.services-three .icon-box h5,
.services-three .icon-box h6,
.services-three .icon-box h1 a,
.services-three .icon-box h2 a,
.services-three .icon-box h3 a,
.services-three .icon-box h4 a,
.services-three .icon-box h5 a,
.services-three .icon-box h6 a {
    color: #000;
    /* font-weight: 700; */
    margin-bottom: 15px;
    text-decoration: none;
}

.services-three .icon-box p {
    /* line-height: 24px; */
    /* font-size: 14px; */
    margin-bottom: 0;
}

.services-three .icon-box:hover,
.services-three .icon-box:hover .icon,
.services-three .icon-box:hover .icon i,
.services-three .icon-box:hover .icon::before,
.services-three .icon-box:hover h4 a,
.services-three .icon-box:hover p {
    background-color: rgb(243, 241, 241);
    transition: all 0.3s ease-out 0s;
}

#services-three .btn {
    padding: 10px 30px;
}


@media (max-width: 769px) {
    #services-three {
        text-align: center;
    }

    #services-three img {
        margin-bottom: 20px;
    }

}


/*--------------------------------------------------------------
  # Services Four
  --------------------------------------------------------------*/
.services-four .icon-box {
    text-align: center;
    /* border: 0.5px solid #d5e1ed; */
    padding: 30px 20px;
    margin: 10px 0px 0px 0px;
    /* box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1); */
    transition: all ease-in-out 0.3s;
    color: #000;
}

.services-four .section-title {
    padding-bottom: 20px;
}

.services-four .has-text .form-control {
    padding-left: 8.375rem;
    margin-right: 4px;
    padding-right: 4px;
    border-color: #5F7EFF;
}

.services-four .has-text .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    padding-left: 0.5rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #000;
}

.services-four .icon-box img {
    margin: 0 auto;
    width: 84px;
    height: 84px;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
}

.services-four .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: #1977cc;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
}

.services-four .icon-box .icon i {
    color: #fff;
    /* font-size: 14px; */
}

.services-four .icon-box .icon::before {
    position: absolute;
    content: "";
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: #badaf7;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
}

.services-four .icon-box h1,
.services-four .icon-box h2,
.services-four .icon-box h3,
.services-four .icon-box h4,
.services-four .icon-box h5,
.services-four .icon-box h6,
.services-four .icon-box h1 a,
.services-four .icon-box h2 a,
.services-four .icon-box h3 a,
.services-four .icon-box h4 a,
.services-four .icon-box h5 a,
.services-four .icon-box h6 a {
    color: #000;
    /* font-weight: 700; */
    margin-bottom: 15px;
    text-decoration: none;
}

.services-four .icon-box p {
    /* line-height: 24px; */
    /* font-size: 14px; */
    margin-bottom: 0;
}

.services-four .icon-box:hover,
.services-four .icon-box:hover .icon,
.services-four .icon-box:hover .icon i,
.services-four .icon-box:hover .icon::before,
.services-four .icon-box:hover h4 a,
.services-four .icon-box:hover p {
    background-color: rgb(243, 241, 241);
    transition: all 0.3s ease-out 0s;
}

/*--------------------------------------------------------------
  # Appointments
  --------------------------------------------------------------*/
.appointment .php-email-form {
    width: 100%;
}

.appointment .php-email-form .form-group {
    padding-bottom: 8px;
}

.appointment .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    /* font-size: .8125rem; */
}

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

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

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

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

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

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
    border-radius: 0;
    box-shadow: none;
    /* font-size: 14px; */
    padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
    border-color: #1977cc;
}

.appointment .php-email-form input,
.appointment .php-email-form select {
    height: 44px;
}

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

.appointment .php-email-form button[type=submit] {
    background: #1977cc;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.appointment .php-email-form button[type=submit]:hover {
    background: #1c84e3;
}

/*--------------------------------------------------------------
  # Departments
  --------------------------------------------------------------*/
.departments {
    overflow: hidden;
}

.departments .nav-tabs {
    border: 0;
}

.departments .nav-link {
    border: 0;
    padding: 12px 15px 12px 0;
    transition: 0.3s;
    color: #2c4964;
    border-radius: 0;
    border-right: 2px solid #ebf1f6;
    font-weight: 600;
    font-size: .9375rem;
}

.departments .nav-link:hover {
    color: #1977cc;
}

.departments .nav-link.active {
    color: #1977cc;
    border-color: #1977cc;
}

.departments .tab-pane.active {
    -webkit-animation: fadeIn 0.5s ease-out;
    animation: fadeIn 0.5s ease-out;
}

.departments .details h3 {
    /* font-size: 1.625rem; */
    /* font-weight: 600; */
    margin-bottom: 20px;
    color: #2c4964;
}

.departments .details p {
    color: #777777;
}

.departments .details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .departments .nav-link {
        border: 0;
        padding: 15px;
    }

    .departments .nav-link.active {
        color: #fff;
        background: #1977cc;
    }
}

/*--------------------------------------------------------------
  # news
  --------------------------------------------------------------*/
.news {
    background: #fff;
}

.news .news-card {
    position: relative;
    /* box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08); */
    padding: 15px;
}

.news .news-card .pic {
    overflow: hidden;
    max-width: 30%;
    align-self: center
}

.news .news-card .pic img {
    transition: ease-in-out 0.4s;
}

.news .news-card .pic img {
    transition: ease-in-out 0.4s;
}

.news .news-card:hover img {
    transform: scale(1.1);
}

.news .news-card .news-card-info {
    padding-left: 30px;
}


@media (max-width: 630px) {
    #news .d-flex {
        display: unset !important
    }

    .news .news-card {
        padding: 0;
    }

    .news .news-card .pic {
        overflow: hidden;
        max-width: 100%;
    }

    .news .news-card span {
        display: inline !important;
    }

    .news .news-card .news-card-info {
        padding: 20px 0px 20px 0px;
    }

}

/* .news .news-card .footer {
    display: -webkit-inline-flex;
display: -moz-inline-flex;
display: inline-flex;

-webkit-flex-flow: row nowrap;
-moz-flex-flow: row nowrap;
flex-flow: row nowrap;

-webkit-align-items: flex-end;
-moz-align-items: flex-end;
align-items: flex-end;
    background-color: red;
} */

.news .news-card h4 {
    font-weight: 700;
    margin-bottom: 5px;
    /* font-size: 1.25rem; */
    color: #000;
}

.news .news-card span {
    display: block;
    font-size: .9375rem;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

/* .news .news-card span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #b2c8dd;
    bottom: 0;
    left: 0;
} */

.news .news-card p {
    margin: 10px 0 0 0;
    /* font-size: 14px; */
}

.news .news-card .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.news .news-card .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    background: #a0bcd5;
}

.news .news-card .social a i {
    color: #fff;
    font-size: 1rem;
    margin: 0 2px;
}

.news .news-card .social a:hover {
    background: #1977cc;
}

.news .news-card .social a+a {
    margin-left: 8px;
}

/*--------------------------------------------------------------
  # Frequently Asked Questions
  --------------------------------------------------------------*/
.faq {
    background-color: #FAFAFA;
}

.faq .accordion {
    margin-top: 60px;
    /* Add space above accordion */
}


.faq .accordion .card {
    border-radius: 10px !important;
    border: 1px solid #143A9F !important;
    margin-bottom: 10px !important;
}

.faq .accordion .card-header .btn {
    font-size: 1.04rem;
    font-weight: 500;
    width: 100%;
    text-align: left;
    position: relative;
    top: -2px;
}

.faq .accordion .card-header i {
    float: right;
    color: #979797;
    font-size: .625rem;
    border: 1px solid #979797 !important;
    padding: 5px;
    border-radius: 50%;
}

.faq .accordion .card-header button:hover {
    color: #FFF;
    margin-top: 19px;
    padding-top: 19px;
}

.faq .accordion .card-body {
    color: #000 !important;
    background: #FFF !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.faq .card-body::before {
    content: '';
    display: block;
    border-bottom: 1px solid #979797;
}

.faq .accordion .card-header,
.faq .accordion .highlight {
    color: #143A9F !important;
    background: #FFF !important;
}


/*--------------------------------------------------------------
  # Testimonials
  --------------------------------------------------------------*/
.testimonials .testimonial-wrap {
    padding-left: 50px;
}

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

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px 30px 30px 60px;
    margin: 30px 15px;
    min-height: 200px;
    box-shadow: 0px 2px 12px rgba(44, 73, 100, 0.08);
    position: relative;
    background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 10px;
    border: 6px solid #fff;
    position: absolute;
    left: -45px;
}

.testimonials .testimonial-item h3 {
    /* font-size: 1.125rem; */
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

.testimonials .testimonial-item h4 {
    /* font-size: 14px; */
    color: #999;
    margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #badaf7;
    font-size: 1.625rem;
}

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

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

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #1977cc;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #1977cc;
}

@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

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

    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }

    .testimonials .testimonial-item .testimonial-img {
        position: static;
        left: auto;
    }
}

/*--------------------------------------------------------------
  # Gallery
  --------------------------------------------------------------*/
.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

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

/*--------------------------------------------------------------
  # Contact
  --------------------------------------------------------------*/
.contact .info {
    width: 100%;
    background: #fff;
}

.contact .info i {
    /* font-size: 1.25rem; */
    color: #1977cc;
    float: left;
    width: 44px;
    height: 44px;
    background: #d6e9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c4964;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    /* font-size: 14px; */
    color: #4b7dab;
}

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

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #1977cc;
    color: #fff;
}

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

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

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

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

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

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

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

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

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

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

.contact .php-email-form button[type=submit] {
    background: #1977cc;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #1c84e3;
}

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

    100% {
        transform: rotate(360deg);
    }
}

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

    100% {
        transform: rotate(360deg);
    }
}


.bs-callout {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 3px;
}


*.bs-callout:empty {
    padding: 20px;
    margin: 0px;
    border: none;
}


.bs-callout h4 {
    margin-top: 0;
    margin-bottom: 5px;
}

.bs-callout p:last-child {
    margin-bottom: 0;
}

.bs-callout code {
    border-radius: 3px;
}

.bs-callout+.bs-callout {
    margin-top: -5px;
}

.bs-callout-default {
    border-left-color: #777;
}

.bs-callout-default h4 {
    color: #777;
}

.bs-callout-primary {
    border-left-color: #428bca;
}

.bs-callout-primary h4 {
    color: #428bca;
}

.bs-callout-success {
    border-left-color: #5cb85c;
}

.bs-callout-success h4 {
    color: #5cb85c;
}

.bs-callout-danger {
    border-left-color: #d9534f;
}

.bs-callout-danger h4 {
    color: #d9534f;
}

.bs-callout-warning {
    border-left-color: #f0ad4e;
}

.bs-callout-warning h4 {
    color: #f0ad4e;
}

.bs-callout-info {
    border-left-color: #5bc0de;
}

.bs-callout-info h4 {
    color: #5bc0de;
}

.serv-section-2 {
    position: relative;
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0px 10px 30px 0px rgba(50, 50, 50, 0.16);
    border-color: rgba(20, 58, 159, 1);
    border-radius: 5px;
    overflow: hidden;
}

.serv-section-2:before {
    position: absolute;
    top: 0;
    right: 0px;
    z-index: 0;
    content: " ";
    width: 90px;
    height: 90px;
    background: #f5f5f5;
    border-bottom-left-radius: 136px;
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
}

.serv-section-2-icon {
    position: absolute;
    top: 7px;
    right: 8px;
    max-width: 100px;
    z-index: 1;
    text-align: center;
    font-size: 2.5rem;
    color: rgba(20, 58, 159, 1);
}

.serv-section-2-icon i {
    color: rgba(20, 58, 159, 1);
    font-size: 48px;
    line-height: 65px;
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
}

.serv-section-desc {
    position: relative;
}

.section-heading-line-left {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: rgba(20, 58, 159, 1);
    border-radius: 25%;
    margin-top: 15px;
    margin-bottom: 5px;
}

/* .serv-section-2 p {
  margin-top: 25px;
  padding-right: 50px;
} */

.serv-section-2:hover .serv-section-2-icon i {
    color: #fff;
}

.serv-section-2:hover:before {
    background: rgba(20, 58, 159, 1);
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
#footer {
    border-top: 1px #4C6FFF solid;
    color: #243D7F;
    font-size: .75rem;
    background: #f1f7fd;
}

#footer .disclaimer {
    color: #21397F;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

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

#footer .footer-top .footer-contact h4 {
    /* font-size: 1.375rem; */
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact p {
    /* font-size: 14px; */
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #243D7F;
}

#footer h4 {
    font-size: 1.125rem;
}

#footer p {
    font-size: .75rem;
}

#footer .footer-text {
    font-size: .75rem;
}

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

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

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #243D7F;
    font-size: 1.125rem;
    line-height: 1;
}

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

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

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

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #2d468b;
}


#footer-two {
    color: #000000;
    background: rgba(20, 58, 159, 0.1);
    height: 149px;
    display: flex;
    align-items: center;
    height: 149px;
    width: 100%;
}

#footer-two p {
    margin: 50px;
}

/* //front */
/* #landing-hero {
      background:radial-gradient(circle at 47% 55%, rgba(229, 229, 229, 1) 0%, rgba(230, 230, 233, 0.25) 100%, rgba(229, 229, 229, 1) 100%);
} */

/* #landing-section h5 { */
    /* color: rgba(36, 61, 127, 1); */
    /* line-height: 27px; */
    /* font-size: 1.125rem; */
/* } */

#landing-section h3 {
    color: rgb(0, 0, 0);
    /* line-height: 45px; */
    /* font-size: 1.875rem; */
    /* font-size: 1.5625rem; */
}

/* #landing-section h3 {
    color: rgba(36, 61, 127, 1);
    line-height: 27px;
} */

#landing-section p {
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.875rem;
    /* font-size: 1.25rem; */
    /* font-size: 1.125rem; */
}

#landing-section .offer p:before {
    content: "-";
    padding-right: 5px;
    font-weight: bolder;
    font-size: x-large;
    color: rgba(76, 111, 255, 1);
}

/* .text-primary {
    background: rgba(76, 111, 255, 1);
} */

#landing-section .btn {
    padding-right: 50px;
    padding-left: 50px;
}

#landing-section img {
    text-align: center;
    max-width: 200px;
}

#landing-section .col-lg-3,
#landing-section .col-lg-4 {
    text-align: center;
}

.cursor-pointer {
    cursor: pointer;
}

#landing-section .blue .container {
    color: #fff !important;
    background-color: rgba(20, 58, 159, 1);
    border-radius: 20px;
}


#landing-section .blue h5 {
    color: rgb(255, 255, 255) !important;
    /* line-height: 1.6875rem; */
    /* font-size: 1.125rem; */
    /* margin: 20px 10px 20px 10px; */
}

#landing-section .blue h3 {
    color: rgb(255, 255, 255) !important;
    /* line-height: 45px; */
    /* font-size: 1.875rem; */
    margin: 20px 10px 20px 10px;
}

#landing-section .blue p {
    color: rgb(255, 255, 255) !important;
    /* line-height: 1.875rem; */
    /* font-size: 1.25rem; */
    /* font-size: 1.125rem; */
    margin: 20px 10px 20px 10px;
}

#landing-section .blue .btn {
    margin-top: 20px;
    padding-right: 50px;
    padding-left: 50px;
    color: rgba(95, 126, 255, 1);
    background-color: #FFF;
    background-color: #FFF;
    border-color: #FFF;
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
}

#landing-section .blue .btn:hover {
    color: #FFF;
    background-color: rgba(95, 126, 255, 1);
    border-color: rgba(95, 126, 255, 1);
    transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
}

#landing-section .blue .form-control {
    border-color: #FFF;
    color: #fff;
    background-color: transparent;
    margin-top: 20px;
    margin-right: 20px;
}

#landing-section .blue .form-control::placeholder,
#landing-section .blue .form-control:-ms-input-placeholder,
#landing-section .blue .form-control::-ms-input-placeholder {
    color: #fff;
    opacity: 1;
}

#landing-section .blue .blue-top {
    color: #fff;
    /* background-color: rgba(20, 58, 159, 1); */
    border-radius: 20px;
    position: absolute;
    margin-top: -3rem !important;
    width: 100%;
}

.my-n5 {
    position: absolute;
    margin-top: -5rem !important;
}

/* @media (max-width: 768px) {
    #landing-section .blue .blue-top {
        color: #fff;
        background-color: rgba(20, 58, 159, 1);
        border-radius: 20px;
        margin-left: 8%;
        margin-top: -120px;
        position: absolute;
        z-index: 999;
    }
} */

#landing-section .brown {
    padding: 50px 50px 50px 50px;
    /* color: #fff !important; */
    /* background-color: #E5E5E5; */
    background: rgba(221, 170, 63, 0.15);
    border-radius: 0px;
}

#landing-section .brown img {
    text-align: center;
    max-width: 500px;
}

#landing-section .light-brown {
    padding: 50px 50px 50px 50px;
    /* color: #fff !important; */
    background: -moz-linear-gradient(90deg, rgba(246, 189, 74, 0.2) 1%, #E5E5E5 98%, rgba(95, 126, 255, 0.2) 99%);
    background: -webkit-linear-gradient(90deg, rgba(246, 189, 74, 0.2) 1%, #E5E5E5 98%, rgba(95, 126, 255, 0.2) 99%);
    background: -o-linear-gradient(90deg, rgba(246, 189, 74, 0.2) 1%, #E5E5E5 98%, rgba(95, 126, 255, 0.2) 99%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EE82EE', endColorstr='#FFFF00', GradientType=0);
    background: -ms-linear-gradient(90deg, rgba(246, 189, 74, 0.2) 1%, #E5E5E5 98%, rgba(95, 126, 255, 0.2) 99%);
    background: linear-gradient(90deg, rgba(246, 189, 74, 0.2) 1%, #E5E5E5 98%, rgba(95, 126, 255, 0.2) 99%);
    border-radius: 0px;
}

#landing-section .light-brown img {
    text-align: center;
    /* max-width: 500px; */
}

#landing-section .light-brown .mt-5 {
    padding-top: 50px;
}

#landing-section .card-body {
    text-align: left !important;
}

#landing-section .card {
    font-size: unset;
}

#landing-section .card img {
    text-align: center;
    max-width: unset;
}

#landing-section .card .btn {
    padding-right: unset;
    padding-left: unset;
}

#landing-section .split .start {
    background-color: rgba(221, 170, 63, 1);
    color: #fff;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 40px;
}

#landing-section .split .start h5,
#landing-section .split .start h3,
#landing-section .split .start p {
    color: rgb(255, 255, 255) !important;
    /* line-height: 30px; */
    /* font-size: 1.25rem; */
    /* font-size: 1.125rem; */
    margin: 20px 10px 20px 10px;
}

#landing-section .split .start .form-control {
    border-color: #FFF;
    color: #fff;
    background-color: transparent;
}

#landing-section .split .start .btn {
    border-color: #FFF;
    border-radius: 20px;
    color: rgba(20, 58, 159, 1);
    background-color: #fff;
}

#landing-section .split .end {
    background-color: rgba(20, 58, 159, 1);
    color: #FFF !important;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 20px;
}

#landing-section .split .end h5,
#landing-section .split .end p {
    color: #FFF !important;
    line-height: 55px;
}

#landing-section .split .end img {
    object-fit: contain;
    position: absolute;
    right: 0;
    bottom: 0;
    /* height: 60%;
    width: 80%; */
    min-width: 65%;
}

#landing-section .split .social-links,
#landing-section .split .social-links a,
#landing-section .split .social-links i,
#landing-section .split .social-links .fa-brands {
    color: #FFF !important;
}

.parent-ribbon {
    overflow: hidden;
    /* required */
    width: 50%;
    /* for demo only */
    height: 250px
        /* some non-zero number */
    ;
    margin: 25px auto;
    /* for demo only */
    border: 1px solid grey;
    /* for demo only */
    position: relative;
    /* required  for demo*/
}

.ribbon {
    margin: 0;
    padding: 0;
    background: rgba(221, 170, 63, 1);
    color: white;
    padding: 1em 0;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(30%) translateY(0%) rotate(45deg);
    transform-origin: top left;
}

.ribbon:before,
.ribbon:after {
    content: '';
    position: absolute;
    top: 0;
    margin: 0 -1px;
    /* tweak */
    width: 100%;
    height: 100%;
    background: rgba(221, 170, 63, 1);
}

.ribbon:before {
    right: 100%;
}

.ribbon:after {
    left: 100%;
}

.basics .card-body {
    color: #FFF;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    margin-top: -3.2rem;
    padding-top: 6px;
    border-radius: calc(0.25rem - 1px);
}

.basics .card,
.basics .card-img-top,
.basics .card-body {
    border-radius: calc(0.25rem - 1px);
}

#map-autocomplete {
    display: flex;
    background-color: #fff;
    align-items: center;
    /* font-size: .8125rem; */
    z-index: 20;
    overflow-x: hidden;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

@media only screen and (min-width: 768px) {
    #map-autocomplete {
        position: absolute;
        left: 15px;
        top: 10px;
        width: 300px;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    }
}

#map-autocomplete .icon {
    padding: 10px 15px;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

#map-autocomplete #thefield {
    flex-grow: 1;
}

#map-autocomplete #autocompleteField {
    border: none !important;
    padding: 10px 15px;
    width: 100%;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1) inset;
    color: #131313;
}

#autocompleteField:focus {
    border: none !important;
    outline: none !important;
    box-shadow: 0px 0px 5px rgba(68, 36, 36, 0.05) inset;
}

#map-holder {
    height: 500px !important;
    transition: all 500ms ease-in-out;
    position: relative;
    margin: 20px 0px 40px;
}

#map-holder.slider {
    height: 0px !important;
    transition: all 500ms ease-in-out;
    overflow-y: hidden;
    margin: 0px 0px 20px;
}

#calculators-list {
    justify-content: space-around;
}

#calculators-list .calculator-card {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 10px;
    padding: 10px;
    align-content: center;
    align-items: center;
    width: 250px;
    background-color: white;
    border: 1px solid #e8cdac;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
}

#calculators-list .calculator-card:hover {
    cursor: pointer;
    box-shadow: 0px 0px 10px #c9781660;
}

#calculators-list .calculator-card span {
    font-size: .9rem;
    margin-bottom: 10px;
}

#calculators-list .calculator-card h6 {
    font-size: .951rem;
    flex-wrap: wrap;
    text-align: center;
}

#filter-calculators {
    border-radius: 25px;
}

.bg-blue {
    background: rgba(20, 58, 159, 0.9);
    color: #FFF;
}

.bg-blue-2 {
    background: rgba(44, 78, 169, 0.1);
    color: #FFF;
}

.text-blue {
    color: rgba(20, 58, 159, 0.9);
}

.bg-blue select,
.bg-blue select option,
.bg-blue select:valid {
    color: #FFF;
    background-color: #2B4DA8 !important;
}

.input-round {
    border-radius: 15px;
}

.btn-border-only {
    border-radius: 15px;
}

.vertical,
.verticaly,
.vertically {
    display: flex;
    align-items: center;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-div {
    background: rgba(20, 58, 159, 0.9);
    width: 100%;
    min-width: 100%;
}

.hero-tabs {
    padding: 0 !important;
}

.hero-tabs .nav-tabs .nav-link {
    color: #000;
}

.hero-tabs .nav-tabs .nav-link.active {
    color: #000;
    /* background-color: #fff; */
    background-color: rgba(76, 111, 255, 0.4) !important;
    border-color: #dee2e6 #dee2e6 #fff;
}

.table-bordered-center th {
    border: 1px solid #dee2e6;
    border-left: none;
}

.table-bordered-center td {
    border: 1px solid #dee2e6;
    border-right: none;
}

.fin-product {
    height: 112px;
    border-radius: 10px;
    border: 2px solid;
    margin: 15px;
}

.fin-product .one {
    height: 112px;
    border-radius: 10px;
    border: 2px solid;
    margin: 15px;
    border-color: rgba(76, 111, 255, 1);
    background-color: rgba(76, 111, 255, 0.4);
}

.fin-product_two {
    height: 112px;
    border-radius: 10px;
    border: 2px solid;
    margin: 15px;
    border-color: rgba(245, 189, 70, 1);
    background-color: rgba(245, 189, 70, 0.4);
}

.fin-product_three {
    height: 112px;
    border-radius: 10px;
    border: 2px solid;
    margin: 15px;
    border-color: rgba(235, 0, 27, 0.6);
    background-color: rgba(235, 0, 27, 0.2);
}

.fin-product_four {
    height: 112px;
    border-radius: 10px;
    border: 2px solid;
    margin: 15px;
    border-color: rgba(125, 225, 22, 1);
    background-color: rgba(125, 225, 22, 0.4);
}

.fin-product_five {
    height: 112px;
    border-radius: 10px;
    border: 2px solid;
    margin: 15px;
    border-color: rgba(196, 196, 196, 1);
    background-color: rgba(196, 196, 196, 0.4);
}

.fin-product_six {
    height: 112px;
    border-radius: 10px;
    border: 2px solid;
    margin: 15px;
    border-color: rgba(4, 194, 145, 1);
    background-color: rgba(4, 194, 145, 0.4);
}

.nav-vertical .nav {
    display: unset;
    width: 100%;
    min-width: 100%;
    border: 0;
}

.nav-vertical .nav-tabs .nav-link {
    color: #FFF;
    background-color: transparent !important;
    border-color: #fff;
    margin: 5px;
    border-radius: 10px;
}

.nav-vertical .nav-tabs .nav-link.active {
    color: rgb(238, 227, 227);
    /* background-color: #fff; */
    background-color: transparent !important;
    border-color: #fff;
}

/* .sticky .one {
    position: fixed;
    right: 50%;
    margin-right: -50%;
    border-color: unset;
    background-color: unset;
} */

.comparison_measure {
    border: 1px rgba(20, 58, 159, 1) solid;
}

.comparison_measure .card-header {
    background-color: rgba(20, 58, 159, 0.1);
    border-bottom: none;
}

.comparison_measure .card-body,
.comparison_measure .row {
    padding: 0;
    margin: 0;
}

.comparison_measure .box {
    border: none;
    border-right: 1px rgba(20, 58, 159, 1) solid;
    padding: 20px 10px 20px 10px;
}

/* .comparison_measure .box:first-child {
    border-left: none;
} */

.comparison_measure .box:last-child {
    border: none;
}

.comparison_measure_two {
    border: 1px rgba(20, 58, 159, 1) solid;
    background-color: rgba(231, 235, 245, 1);
}

.comparison_measure_two .box {
    height: 100px;
    width: 100px;
    background-color: rgba(95, 126, 255, 1);
}

.text-black {
    color: #000000 !important;
}

#table-to-columns .cf {
    width: 100%;
}


@media only screen and (max-width: 800px) {

    /* Force table to not be like tables anymore */
    #table-to-columns table,
    #table-to-columns thead,
    #table-to-columns tbody,
    #table-to-columns th,
    #table-to-columns td,
    #table-to-columns tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    #table-to-columns thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    #table-to-columns tr {
        border: 1px solid #ccc;
    }

    #table-to-columns td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align: left;
    }

    #table-to-columns td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }

    /*
	Label the data
	*/
    #table-to-columns td:before {
        content: attr(data-title);
    }
}

.rating {
    color: rgba(221, 170, 63, 1);
}

.rating .checked {
    color: rgb(124, 87, 6);
}


.bs-callout {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 3px;
}


*.bs-callout:empty {
    padding: 20px;
    margin: 0px;
    border: none;
}


.bs-callout h4 {
    margin-top: 0;
    margin-bottom: 5px;
}

.bs-callout p:last-child {
    margin-bottom: 0;
}

.bs-callout code {
    border-radius: 3px;
}

.bs-callout+.bs-callout {
    margin-top: -5px;
}

.bs-callout-default {
    border-left-color: #777;
}

.bs-callout-default h4 {
    color: #777;
}

.bs-callout-primary {
    border-left-color: #428bca;
}

.bs-callout-primary h4 {
    color: #428bca;
}

.bs-callout-success {
    border-left-color: #5cb85c;
}

.bs-callout-success h4 {
    color: #5cb85c;
}

.bs-callout-danger {
    border-left-color: #d9534f;
}

.bs-callout-danger h4 {
    color: #d9534f;
}

.bs-callout-warning {
    border-left-color: #f0ad4e;
}

.bs-callout-warning h4 {
    color: #f0ad4e;
}

.bs-callout-info {
    border-left-color: #5bc0de;
}

.bs-callout-info h4 {
    color: #5bc0de;
}

.flex-container {
    display: flex;
    align-items: stretch;
    /* align-items: center; */
    justify-items: center;
    /* background-color: #f1f1f1; */
}

.flex-container>div {
    /* background-color: DodgerBlue; */
    /* color: white; */
    /* margin: 10px; */
    text-align: center;
    /* line-height: 75px; */
    /* font-size: 1.875rem; */
}

.card-img-left .card {
    flex-direction: row;
    align-items: center;
}

.card-img-left .card-title {
    font-weight: bold;
}

.card-img-left .card img {
    width: 30%;
    border-top-right-radius: 0;
    border-bottom-left-radius: calc(0.25rem - 1px);
}

@media only screen and (max-width: 768px) {
    a {
        display: none;
    }

    .card-img-left .card-body {
        padding: 0.5em 1.2em;
    }

    .card-img-left .card-body .card-img-left .card-text {
        margin: 0;
    }

    .card-img-left .card img {
        width: 50%;
    }
}

@media only screen and (max-width: 1200px) {
    .card-img-left .card img {
        width: 40%;
    }
}