body,
html {}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: var(--primary-gray);
    line-height: var(--line-height-normal);
    -webkit-transition: .3s all linear;
    -moz-transition: .3s all linear;
    -o-transition: .3s all linear;
    -ms-transition: .3s all linear;
    transition: .3s all linear;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    -webkit-transition: .3s all linear;
    -moz-transition: .3s all linear;
    -o-transition: .3s all linear;
    -ms-transition: .3s all linear;
    transition: .3s all linear;
}

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

.main-header {
    position: relative;
    z-index: 9;
    background: #fff;
    box-shadow: 0 1px 6px 1px rgba(0, 41, 243, 0.2);
    -webkit-box-shadow: 0 1px 6px 1px rgba(0, 41, 243, 0.2);
    -webkit-transition: .3s all linear;
    -moz-transition: .3s all linear;
    -o-transition: .3s all linear;
    -ms-transition: .3s all linear;
    transition: .3s all linear;
}

.main-header .navbar {
    padding: 10px 0;
    -webkit-transition: .3s all linear;
    -moz-transition: .3s all linear;
    -o-transition: .3s all linear;
    -ms-transition: .3s all linear;
    transition: .3s all linear;
}

.main-header.sticky-nav .navbar {
    padding: 10px 0;
}

.main-header .navbar-brand {
    padding: 0 0;
    max-width: 130px;
}

.main-header .nav-item {
    border-bottom: rgba(0, 31, 255, 0.08) 1px solid;
}

.main-header .navbar-expand-lg .navbar-nav .nav-link {
    color: #030303;
    padding: 13px 0;
    font-size: 12px;
    position: relative;
}

.login-btn  {
    display: inline-block;
    padding: 6px 16px;
    border: #fff 1px solid;
    text-align: center;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.login-btn:hover {
    background: #fff;
    color: #F68C3D;
}

.main-header .dropdown-toggle::after {
    display: none;
}

.main-header .navbar-expand-lg .navbar-nav .nav-link:hover,
.main-header .navbar-expand-lg .navbar-nav .nav-item .nav-link.active {
    color: #F68C3D;
}

.main-header .navbar-nav .dropdown-menu {
    box-shadow: 0 1px 6px 1px rgba(44, 0, 255, 0.16);
    -webkit-box-shadow: 0 1px 6px 1px rgba(44, 0, 255, 0.16);
    border: none;
    min-width: 270px;
    -webkit-transition: .3s all linear;
    -moz-transition: .3s all linear;
    -o-transition: .3s all linear;
    -ms-transition: .3s all linear;
    transition: .3s all linear;
}

.main-header.sticky-nav .navbar-nav .dropdown-menu {
    margin: 15px 0 0;
}

.main-header .dropdown-item {
    color: #000;
    border: 0;
    font-size: 12px;
    padding: 10px 15px;
}

.main-header .dropdown-item.active,
.main-header .dropdown-item:active {
    background-color: #005aab;
    color: #fff;
}

.custom-toggler-icon {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #0071bc;
    margin: 6px 0;
    transition: all .5s;
}

.custom-toggler-icon:nth-of-type(1) {
    transform: rotate(-45deg) translate(-7px, 5px);
}

.custom-toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.custom-toggler-icon:nth-of-type(3) {
    transform: rotate(45deg) translate(-7px, -5px);
}

.collapsed .custom-toggler-icon {
    transform: none;
    opacity: 1;
}

.alert-box {
    background: #FFCD00;
    color: #000000;
    padding: 5px 0;
    font-size: 10px;
    line-height: 20px;
    padding-right: 20px;
}

.alert-box.alert-dismissible .btn-close {
    padding: 10px;
}

.banner-block {
    position: relative;
}

.banner-img {
    position: relative;
}

.banner-img img {
    width: 100%;
}

.banner-desc {
    background: #F68C3D;
    padding: 15px;
}

.banner-desc h2,
.banner-desc h1 {
    margin: 0;
    font-size: 24px;
    line-height: 28px;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.banner-desc p {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    font-family: 'Nunito', sans-serif;
}

.white-btn {
    display: inline-block;
    background: #fff;
    text-align: center;
    color: #005aab;
    padding: 10px 20px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    box-shadow: 0 0px 20px 0px rgba(0, 41, 243, 0.1);
    -webkit-box-shadow: 0 0px 20px 0px rgba(0, 41, 243, 0.1);
}

.white-btn:hover {
    background: #005aab;
    color: #fff;
}

.banner-content-wrap {}

.slider-wrap {}

.slick-slide {
    position: relative;
}

.slider-wrap .slick-next,
.slider-wrap .slick-prev,
.testimonial-carousel .slick-next,
.testimonial-carousel .slick-prev {
    position: absolute;
    width: 30px;
    height: 30px;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    text-align: center;
    line-height: 30px;
    z-index: 9;
    left: 15px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.slider-wrap .slick-next,
.testimonial-carousel .slick-next {
    left: auto;
    right: 15px;
}

.slider-wrap .slick-next:before,
.slider-wrap .slick-prev:before,
.testimonial-carousel .slick-next:before,
.testimonial-carousel .slick-prev:before {
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    opacity: 1;
    color: #fff;
    font-weight: 700;
    content: "\f053";
    line-height: 30px;
}

.slider-wrap .slick-next:before,
.testimonial-carousel .slick-next:before {
    content: "\f054";
}

.mission-block {
    padding: 30px 0;
}

.mission-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-wrap h4 {
    font-size: 12px;
    color: #ACACAC;
    text-transform: uppercase;
    margin: 0;
    font-weight: 300;
}

.mission-wrap h2 {
    font-size: 20px;
    line-height: 30px;
    color: #585858;
    margin: 20px 0 30px;
    font-weight: 700;
    /* font-family: 'Dancing Script', cursive; */
}

.mission-wrap p {
    font-size: 12px;
    line-height: 22px;
    color: #9D9D9D;
    margin: 0;
}

.carousel-wrap {
    margin: 20px 0 0;
}

.imaged-col-wrap {
    position: relative;
    background: #fff;
    box-shadow: 0 0px 6px 0px rgba(0, 41, 243, 0.2);
    -webkit-box-shadow: 0 0px 6px 0px rgba(0, 41, 243, 0.2);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.slick-slide:focus,
.positioned-tag:focus {
    outline: none;
}

.company-logo-wrap {
    width: 60px;
    height: 60px;
    padding: 2px;
    margin: 15px auto;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.company-logo-wrap img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.company-name-wrap {
    padding: 40px 0 0 90px;
}

.company-name-wrap p {
    color: #585858;
    font-weight: 500;
}

.positioned-tag {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.carousel-wrap .slick-next,
.carousel-wrap .slick-prev {
    width: auto;
    height: auto;
    color: #A0A0A0;
    background: none;
    border: none;
    z-index: 9;
    left: -10px;
}

.carousel-wrap .slick-next {
    left: auto;
    right: -10px;
}

.carousel-wrap .slick-next:before,
.carousel-wrap .slick-prev:before {
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    opacity: 1;
    color: #A0A0A0;
    font-weight: 700;
    content: "\f053";
    line-height: 30px;
}

.carousel-wrap .slick-next:before {
    content: "\f054";
}

.blog-block {
    background: #F7F7F5;
    padding: 30px 0;
}

.blog-box {
    border: #EDEDED 1px solid;
    margin: 0 0 15px;
}

.fig-wrap {
    max-height: 230px;
    overflow: hidden;
    position: relative;
}

.no-img.fig-holder {
    min-height: 396px;
    background: #fff;
}

.fig-wrap img {
    width: 100%;
}

.fig-desc {
    padding: 15px;
}

.fig-desc p small {
    color: #909090;
    font-size: 10px;
}

.fig-desc h3 {
    color: #222222;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 24px;
}

.fig-desc h3 a {
    color: #222222;
    margin: 0;
}

.fig-desc h3 a:hover {
    color: #F68C3D;
}

.fig-desc p {
    color: #222222;
    font-size: 12px;
    margin: 0;
    line-height: 22px;
}

.post-url {
    color: #0072FF;
    position: relative;
    display: inline-block;
    font-weight: 500;
}

.post-url:hover {
    color: #000;
    transform: translate(5px, 0px);
    -webkit-transform: translate(5px, 0px);
    -moz-transform: translate(5px, 0px);
    -ms-transform: translate(5px, 0px);
    -o-transform: translate(5px, 0px);
}

.block-title {}

.block-title h2 {
    color: #222222;
    font-size: 26px;
    line-height: 36px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    margin: 0;
}

.block-title h3 {
    color: #222222;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    line-height: 26px;
}

.crm-block {
    position: relative;
    padding: 20px 0;
    background: url(../img/Wave_grey_bottom_left_shape.png)center -2px no-repeat;
}

.dash-img {
    margin-bottom: 20px;
}

.crm-content {}

.crm-content p {
    color: #6F6F6F;
    font-size: 12px;
    line-height: 22px;
    margin: 10px 0;
}

.crm-content .block-title h2 {
    font-size: 16px;
    line-height: 24px;
}

.block-wrap {
    margin: 30px 0;
}

.square-icon-wrap {
    width: 66px;
    height: 56px;
    line-height: 56px;
    background: #E7EEFE;
    text-align: center;
    border-radius: 10px;
    margin: 0 0 10px;
}

.block-wrap p {
    font-size: 12px;
    line-height: 24px;
    color: #000;
}

.square-icon-wrap.red-icon {
    background: #FFEAEB;
}

.blue-btn {
    display: inline-block;
    background: #005aab;
    color: #fff;
    text-align: center;
    padding: 15px 40px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    box-shadow: 0 0px 20px 0px rgba(0, 41, 243, 0.1);
    -webkit-box-shadow: 0 0px 20px 0px rgba(0, 41, 243, 0.1);
}

.blue-btn:hover {
    background: #044681;
    color: #fff;
}

.news-block {}

.block-title p {
    color: #A5A5A5;
    font-size: 12px;
    line-height: 18px;
}

.news-block .fig-wrap {
    margin: 20px 0 0;
}

.date-wrap {
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    padding: 3px;
    text-align: right;
    z-index: 1;
}

.date-wrap:before {
    position: absolute;
    content: '';
    top: 0;
    border-top: 70px solid rgba(255, 255, 255, 0.7);
    border-left: 90px solid transparent;
    right: 0;
    z-index: -1;
}

.date-wrap p {
    margin: 3px;
    font-size: 16px;
}

.fig-over {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.fig-over {
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
}

.bottomed-wrap {
    position: absolute;
    bottom: 0;
}

.fig-over .fig-desc p {
    color: #ffffff;
    font-size: 12px;
    margin: 0;
    line-height: 18px;
}

.fig-type {
    padding-left: 30px;
    position: relative;
}

.fig-type:before {
    position: absolute;
    content: '';
    left: 0;
    top: 5px;
    background: #000;
    width: 20px;
    height: 2px;
}

.fig-type h6 {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fig-desc a {
    display: inline-block;
    font-weight: 500;
}

.fig-over .fig-desc a {
    color: #fff;
}

.fig-over .fig-desc a:hover {
    color: #2184FF;
}

.fig-over .fig-type:before {
    background: #fff;
}

.grey-box {
    background: #F7F7F5;
    position: relative;
    margin: 20px 0;
    border: rgba(0, 0, 0, 0.02) 1px solid;
}

.fig-wrap .fig-desc,
.grey-box .fig-desc {
    padding: 15px;
    line-height: 24px;
}

.fig-desc h5 {
    font-size: 14px;
    line-height: 24px;
}

.no-fig-box .fig-desc h5 {
    padding-top: 30px;
}

.fig-desc h5 a {
    color: #000;
    margin: 0;
}

.fig-desc h5 a:hover {
    color: #F68C3D;
}

.quote-block {
    background: #E7EEFE;
    padding: 30px 0;
}

.quote-block .block-title p {
    letter-spacing: 1px;
    margin: 0 0 10px;
}

.quote-block .block-title h2 {
    font-size: 20px;
    line-height: 32px;
}

.quote-btn,
.submit-btn {
    display: block;
    width: 100%;
    border: none;
    outline: none;
    min-width: 200px;
    background: #005aab;
    color: #fff;
    padding: 15px 30px;
    text-align: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0 0px 20px 0px rgba(0, 41, 243, 0.15);
    -webkit-box-shadow: 0 0px 20px 0px rgba(0, 41, 243, 0.15);
    transition: .2s all linear;
    -webkit-transition: .2s all linear;
    -moz-transition: .2s all linear;
    -ms-transition: .2s all linear;
    -o-transition: .2s all linear;
}

.quote-btn:hover,
.submit-btn:hover {
    background: #004eae;
    color: #fff;
}

.testimonial-block {
    padding: 30px 0;
}

.testimonial-block .block-title p {
    margin: 5px 0 0;
}

.testimonial-carousel {
    padding: 50px 0;
}

.testimonial-contents {}

.round-img-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 15px auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.3);
}

.round-img-wrap img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.round-img-wrap {}

.testimonial-contents p {
    margin: 0 0;
    line-height: 24px;
}

.av-icon {
    display: inline-block;
    position: absolute;
    color: #005aab;
    top: 0;
    left: 0;
}

.testimonial-comments {}

.testimonial-carousel .slick-prev {
    left: 0;
}

.testimonial-carousel .slick-next {
    right: 0;
}

.shadowed-box {
    box-shadow: 0 1px 6px 1px rgba(44, 0, 255, 0.16);
    -webkit-box-shadow: 0 1px 6px 1px rgba(44, 0, 255, 0.16);
}

.option-cols {
    padding: 15px;
    margin: 0 0 20px;
    position: relative;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    text-align: center;
}

.option-img {
    max-width: 120px;
    margin: 0 auto;
}

.option-desc {}

.option-desc h6 {
    font-size: 16px;
    color: #222222;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    margin: 15px 0 0;
}

.option-desc p {
    line-height: 24px;
}

.touch-block {
    background: url(../img/Wave_grey_bottom_left_shape_01.png)center bottom no-repeat;
    padding-bottom: 50px;
    position: relative;
}

.left-shape-wrap {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 50%;
    z-index: -1;
}

.contact-block {
    padding: 80px 0 0;
}

.contact-form-wrap {
    padding: 25px 0 0;
}

.contact-form-wrap .form-control {
    height: 54px;
    border: 1px solid transparent;
    padding: 15px 20px;
    background: #F7F7F5;
    color: #5F5F5F;
    font-size: 12px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.form-group {
    margin: 0 0 20px;
    position: relative;
}

.contact-form-wrap textarea.form-control {
    min-height: 185px;
}

.contacts-list {
    margin: 30px 0;
}

.contacts-list ul {
    margin: 0;
    padding: 0;
}

.contacts-list ul li {
    list-style-type: none;
    display: block;
}

.contacts-list ul li a {
    color: #393939;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    display: inline-block;
}

.contacts-list ul li a:hover {
    color: #005aab;
}

.captcha-wrap {
    margin: 0 0 15px;
}

.social-icons-list {}

.social-icons-list ul {
    margin: 0;
    padding: 0;
}

.social-icons-list ul li {
    list-style-type: none;
    display: inline-block;
    margin: 0 10px;
    font-size: 18px;
}

.social-icons-list ul li a {
    color: #393939;
}

.social-icons-list ul li a:hover {}

.main-footer {}

.top-footer {
    background: #005AAB;
    padding: 30px 0;
    color: #fff;
}

.top-footer h5 {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    margin: 0 0 15px;
}

.main-footer p {
    margin: 0;
    line-height: 20px;
}

.main-footer p a {
    color: #fff;
}

.footer-nav {}

.footer-nav ul {
    margin: 0;
    padding: 0;
}

.footer-nav ul li {
    list-style-type: none;
    display: inline-block;
    margin: 0 5px 10px 0;
    line-height: 20px;
}

.footer-nav ul li a {
    color: #fff;
    display: inline-block;
    position: relative;
}

.footer-nav ul li a:hover {
    transform: translate(5px, 0px);
    -webkit-transform: translate(5px, 0px);
    -moz-transform: translate(5px, 0px);
    -ms-transform: translate(5px, 0px);
    -o-transform: translate(5px, 0px);
}

.subscribe-form-wrap {}

.subscribe-form-wrap p {
    margin: 0 0 20px;
}

.subscribe-form-wrap .form-control {
    background: none;
    font-size: 12px;
    height: 36px;
    color: #fff;
}

.subscribe-form-wrap ::-webkit-input-placeholder {
    color: #fff;
}

.subscribe-form-wrap :-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
}

.subscribe-form-wrap ::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
}

.subscribe-form-wrap :-ms-input-placeholder {
    color: #fff;
}

.white-submit-btn {
    width: 100%;
    display: block;
    background: #fff;
    color: #3C3C3C;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    text-align: center;
    padding: 12px 10px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transition: .2s all linear;
    -webkit-transition: .2s all linear;
    -moz-transition: .2s all linear;
    -ms-transition: .2s all linear;
    -o-transition: .2s all linear;
}

.white-submit-btn:hover {
    background: #3C3C3C;
    color: #fff;
}

.copyright-block {
    background: #044d8f;
    color: #fff;
    padding: 15px 0;
}

.scroll-to-top {
    width: 25px;
    height: 25px;
    color: #fff;
    background: #F68C3D;
    line-height: 25px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 12px;
    border-radius: 4px;
    z-index: 99;
    text-align: center;
    cursor: pointer;
    -webkit-transition: 1s ease;
    transition: 1s ease;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.scroll-to-top:after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-to-top:hover {
    color: #fff;
    background: #c2590b;
}

.animated-shape-wrap {
    position: absolute;
    top: 0px;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.animated-shape-wrap .animated-shape-item {
    position: absolute;
    z-index: 9;
}

.animated-shape-wrap .animated-shape-item:nth-child(1) {
    background: rgba(0, 201, 157, 0.6);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 12%;
    left: 15%;
    -webkit-animation: animTwo 13s infinite linear;
    animation: animTwo 13s infinite linear;
}

.animated-shape-wrap .animated-shape-item:nth-child(2) {
    border: 5px solid rgba(0, 153, 229, 0.3);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    top: 15%;
    left: 45%;
    -webkit-animation: animOne 15s infinite linear;
    animation: animOne 15s infinite linear;
}

.animated-shape-wrap .animated-shape-item:nth-child(3) {
    border: 5px solid rgba(244, 34, 104, 0.3);
    width: 25px;
    height: 25px;
    bottom: 20%;
    left: 30%;
    -webkit-animation: animFour 15s infinite linear alternate;
    animation: animFour 15s infinite linear alternate;
}

.animated-shape-wrap .animated-shape-item:nth-child(4) {
    background: rgba(252, 162, 73, 0.8);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    bottom: 15%;
    right: 25%;
    -webkit-animation: animFive 15s infinite linear alternate;
    animation: animFive 15s infinite linear alternate;
}

.animated-shape-wrap .animated-shape-item:nth-child(5) {
    background: rgba(100, 45, 250, 0.4);
    width: 3px;
    height: 20px;
    top: 18%;
    right: 25%;
    -webkit-animation: animFour 15s infinite linear alternate;
    animation: animFour 15s infinite linear alternate;
}

.animated-shape-wrap .animated-shape-item:nth-child(5):before,
.animated-shape-wrap .animated-shape-item:nth-child(5):after {
    content: "";
    display: block;
    width: 100%;
    height: calc(50% - 2px);
    top: 6px;
    background: inherit;
    position: absolute;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.animated-shape-wrap .animated-shape-item:nth-child(5):before {
    right: -6px;
}

.animated-shape-wrap .animated-shape-item:nth-child(5):after {
    left: -6px;
}

@keyframes animOne {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(35deg);
        transform: translate(73px, -1px) rotate(35deg);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(75deg);
        transform: translate(141px, 72px) rotate(75deg);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(110deg);
        transform: translate(83px, 122px) rotate(110deg);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(145deg);
        transform: translate(-40px, 72px) rotate(145deg);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
}

@-webkit-keyframes animOne {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(35deg);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(75deg);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(110deg);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(145deg);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
}

@keyframes animTwo {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
        transform: translate(73px, -1px) rotate(36deg) scale(0.9);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
        transform: translate(141px, 72px) rotate(72deg) scale(1);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
        transform: translate(83px, 122px) rotate(108deg) scale(1.2);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
        transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
}

@-webkit-keyframes animTwo {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
}

@keyframes animThree {
    0% {
        -webkit-transform: translate(165px, -179px);
        transform: translate(165px, -179px);
    }

    100% {
        -webkit-transform: translate(-346px, 617px);
        transform: translate(-346px, 617px);
    }
}

@-webkit-keyframes animThree {
    0% {
        -webkit-transform: translate(165px, -179px);
    }

    100% {
        -webkit-transform: translate(-346px, 617px);
    }
}

@keyframes animFour {
    0% {
        -webkit-transform: translate(-300px, 151px) rotate(0deg);
        transform: translate(-300px, 151px) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(251px, -200px) rotate(180deg);
        transform: translate(251px, -200px) rotate(180deg);
    }
}

@-webkit-keyframes animFour {
    0% {
        -webkit-transform: translate(-300px, 151px) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(251px, -200px) rotate(180deg);
    }
}

@keyframes animFive {
    0% {
        -webkit-transform: translate(61px, -99px) rotate(0deg);
        transform: translate(61px, -99px) rotate(0deg);
    }

    21% {
        -webkit-transform: translate(4px, -190px) rotate(38deg);
        transform: translate(4px, -190px) rotate(38deg);
    }

    41% {
        -webkit-transform: translate(-139px, -200px) rotate(74deg);
        transform: translate(-139px, -200px) rotate(74deg);
    }

    60% {
        -webkit-transform: translate(-263px, -164px) rotate(108deg);
        transform: translate(-263px, -164px) rotate(108deg);
    }

    80% {
        -webkit-transform: translate(-195px, -49px) rotate(144deg);
        transform: translate(-195px, -49px) rotate(144deg);
    }

    100% {
        -webkit-transform: translate(-1px, 0px) rotate(180deg);
        transform: translate(-1px, 0px) rotate(180deg);
    }
}

@-webkit-keyframes animFive {
    0% {
        -webkit-transform: translate(61px, -99px) rotate(0deg);
    }

    21% {
        -webkit-transform: translate(4px, -190px) rotate(38deg);
    }

    41% {
        -webkit-transform: translate(-139px, -200px) rotate(74deg);
    }

    60% {
        -webkit-transform: translate(-263px, -164px) rotate(108deg);
    }

    80% {
        -webkit-transform: translate(-195px, -49px) rotate(144deg);
    }

    100% {
        -webkit-transform: translate(-1px, 0px) rotate(180deg);
    }
}

.inner-banner-block {
    position: relative;
    padding: 50px 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: rgba(0, 0, 0, 0.4);
}

.parallax {
    position: relative;
    background-repeat: no-repeat;
    background-color: transparent;
    background-attachment: initial;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50% 0;
}

.inner-banner-content {
    position: relative;
}

.inner-banner-content h2 {
    margin: 0;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.breadcrumb-wrap {
    margin: 20px 0;
}

.breadcrumb-wrap .breadcrumb-item,
.breadcrumb-wrap .breadcrumb-item a,
.breadcrumb-wrap .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
    font-size: 12px;
}

.breadcrumb-wrap .breadcrumb-item a:hover {
    color: #F68C3D;
}

.side-menu-wrap {
    padding: 20px 0;
}

.side-menu-wrap ul {
    margin: 0;
    padding: 0;
}

.side-menu-wrap ul li {
    list-style-type: none;
    display: block;
    margin: 0;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    border-bottom: rgba(0, 34, 252, 0.06) 1px solid;
}

.side-menu-wrap ul li:last-child {
    border: none;
}

.side-menu-wrap ul li a {
    color: #000;
    display: block;
    padding: 15px 15px;
    position: relative;
}

.side-menu-wrap ul li a.active,
.side-menu-wrap ul li a:hover {
    color: #F68C3D;
}

.side-menu-wrap ul li a:after {
    position: absolute;
    content: '';
    top: 0;
    left: 100%;
    background: #F68C3D;
    height: 100%;
    width: 2px;
    opacity: 0;
    visibility: hidden;
    margin-left: -2px;
}

.side-menu-wrap ul li a.active:after {
    opacity: 1;
    visibility: visible;
}

.about-block {
    padding: 60px 0;
    background-color: #f6fbff;
}

.box-wrap {
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.about-content-wrap {
    line-height: 20px;
    padding: 15px;
}

.about-content-wrap h2 {
    font-size: 30px;
    line-height: 36px;
    color: #585858;
    margin: 0px 0 10px;
    font-weight: 700;
}

.blogs-block {
    padding: 50px 0;
}

.big-img-wrap {
    position: relative;
}

.big-img-wrap img {
    width: 100%;
}

.post-desc {
    padding: 15px;
}

.date-text {
    color: #909090;
}

.date-text h6 {
    font-size: 12px;
}

.post-desc h5 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    color: #222222;
}

.post-desc p {
    line-height: 24px;
}

.blockquote-wrap {
    border-left: #BFBFBF 2px solid;
    padding-left: 20px;
    margin: 35px 0;
}

.blockquote-wrap .blockquote {
    font-weight: 300;
    font-size: 18px;
    line-height: 32px;
    margin: 0;
}

.search-form-wrap {}

.search-form-wrap .form-control {
    padding: 0px 20px 0 15px;
    border: rgba(0, 0, 0, 0.10) 1px solid;
    font-size: 12px;
    height: 40px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.search-btn {
    position: absolute;
    top: 14px;
    right: 15px;
    color: #005aab;
    padding: 0;
    border: none;
    background: none;
    font-size: 14px;
}

.post-list {}

.post-list ul {
    margin: 0;
    padding: 0;
}

.post-list ul li {
    display: block;
    position: relative;
    padding-left: 120px;
    min-height: 70px;
    margin: 0 0 20px;
}

.thumb-wrap {
    max-width: 100px;
    border: rgba(0, 8, 255, 0.10) 1px solid;
    padding: 2px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.thumb-wrap img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.sidebar-box {
    padding: 10px;
    margin: 0 0 15px;
    box-shadow: 0 1px 30px 1px rgba(44, 0, 255, 0.1);
    -webkit-box-shadow: 0 1px 30px 1px rgba(44, 0, 255, 0.1);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.sidebar-box h4 {
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 15px;
    color: #005aab;
}

.post-list h6 {
    font-weight: 400;
    font-size: 12px;
    margin: 0 0 10px;
    color: #000;
}

.post-list h6 a {
    color: #000;
}

.post-list h6 a:hover {
    color: #F68C3D;
}

.post-list p {
    color: #8F8F8F;
    margin: 0;
}

.tag-list {}

.tag-list ul {
    margin: 0;
    padding: 0;
}

.tag-list ul li {
    list-style-type: none;
    margin: 3px 0;
    display: inline-block;
}

.tag-list ul li a {
    color: #505050;
    display: inline-block;
    padding: 8px 10px;
    border: rgba(44, 0, 255, 0.1) 1px solid;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.tag-list ul li a:hover {
    background: #505050;
    color: #fff;
}

.top-block {
    position: relative;
    background: url(../img/Wave_grey_bottom_left_shape.png)center 0px no-repeat;
}

.top-block .hero-section .hero-title,
.top-block .hero-section .hero-subtitle {
    color: #fff !important;
}

.hero-section h1, .hero-section .lead {
    color: #fff !important;
}

.top-contents {
    padding: 20px 0;
}

.top-contents h1 {
    color: #005aab;
    font-size: 28px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    margin: 0;
    line-height: 36px;
}

.top-contents p {
    color: #7B7B7B;
    font-size: 12px;
    line-height: 24px;
    margin: 25px 0 0;
}

.featured-box {
    padding: 30px 15px;
    text-align: center;
    margin: 15px 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: .2s all linear;
    -webkit-transition: .2s all linear;
    -moz-transition: .2s all linear;
    -ms-transition: .2s all linear;
    -o-transition: .2s all linear;
}

.featured-box:hover {
    box-shadow: 0 1px 30px 1px rgba(44, 0, 255, 0.15);
    -webkit-box-shadow: 0 1px 30px 1px rgba(44, 0, 255, 0.15);
}

.featured-box p {
    font-size: 14px;
    font-weight: 500;
    color: #585858;
    margin: 0;
}

.featured-box p a {
    color: #585858;
}

.featured-box p a:hover {
    color: #F68C3D;
}

.future-block {
    padding: 80px 0 0;
}

.future-block .img-wrap {
    max-width: 230px;
    margin: 0 auto;
    -webkit-animation: shapeani1 4s linear infinite;
    animation: shapeani1 4s linear infinite;
}

.future-block .block-title h2 {
    color: #005aab;
    font-size: 20px;
    line-height: 30px;
}

.future-para {}

.future-para p {
    font-size: 12px;
    color: #707070;
    line-height: 24px;
}

.no-bg-img {
    background-image: none;
}

.service-col {
    margin: 10px 0 0;
}

.icon-holder {}

.service-col h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 15px 0;
}

.service-col p {
    line-height: 24px;
}

.benefit-block {
    background: #E7EEFE;
    padding: 30px 0;
}

.benefit-box {
    margin: 15px 0;
    background: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0 0px 10px 0px rgba(44, 0, 255, 0.15);
    -webkit-box-shadow: 0 0px 10px 0px rgba(44, 0, 255, 0.15);
    padding: 15px;
    text-align: center;
    transform: perspective(1000px);
    -webkit-transform: perspective(1000px);
    -moz-transform: perspective(1000px);
    -ms-transform: perspective(1000px);
    -o-transform: perspective(1000px);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.benefit-icon {
    max-width: 50px;
    margin: 15px auto;
}

.faq-block {
    position: relative;
    padding: 30px 0;
    min-height: 400px;
}

.faq-img {
    display: none;
}

.accordion-wrap {}

.accordion-wrap .accordion-button {
    border: none;
    text-align: left;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
}

.accordion-wrap .accordion-button::after {
    width: 35px;
    height: 35px;
    border: #000 1px solid;
    background-position: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.accordion-wrap .accordion-item {
    box-shadow: 0 0px 4px 0px rgba(44, 0, 255, 0.15);
    -webkit-box-shadow: 0 0px 4px 0px rgba(44, 0, 255, 0.15);
    margin: 0 0 10px;
}

.accordion-wrap .accordion-button:not(.collapsed) {
    color: #000;
    background: none;
}

.accordion-wrap .accordion-button:focus {
    box-shadow: none;
}

.accordion-wrap .accordion-body {
    line-height: 24px;
}

.type-service-block {
    padding: 25px 0 40px;
}


.top-img-wrap {
    max-width: 350px;
    margin: 0 auto;
    -webkit-animation: shapeani1 4s linear infinite;
    animation: shapeani1 4s linear infinite;
}

.content-block {
    padding: 40px 0;
}

.box-header {}

.box-header h3,
.galler-list-box h3 {
    color: #222222;
    font-size: 26px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    margin: 0;
    line-height: 40px;
}

.box-header hr {
    margin: 0 -20px;
    background: rgba(0, 0, 0, 0.2);
}

.gallery-type {}

.gallery-type ul {
    margin: 0;
    padding: 0;
}

.gallery-type ul li {
    list-style-type: none;
    display: block;
    font-size: 12px;
    line-height: 22px;
    border-bottom: rgba(0, 0, 0, 0.05) 1px solid;
}

.gallery-type ul li:last-child {
    border: none;
}

.gallery-type ul li a {
    padding: 15px 0px;
    display: block;
    color: #222;
}

.gallery-type ul li a:hover,
.gallery-type ul li.active a {
    color: #F68C3D;
}

.galler-list-box {
    padding: 20px;
    box-shadow: 0 1px 30px 1px rgba(44, 0, 255, 0.1);
    -webkit-box-shadow: 0 1px 30px 1px rgba(44, 0, 255, 0.1);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.galler-list-box h3 {
    color: #1D4F8C;
}

.gallery-thumb-wrap {
    margin: 30px 0 0;
}

.galler-thumb {
    border: rgba(44, 0, 255, 0.1) 1px solid;
    padding: 3px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.gallery-thumb-wrap p {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 22px;
}

.gallery-thumb-wrap p a {
    color: #000;
}

.gallery-thumb-wrap p a:hover {
    color: #F68C3D;
}

.gallery-hover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    font-size: 24px;
    opacity: 0;
}

.galler-thumb img {
    width: 100%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.gallery-hover i {
    opacity: 0;
    position: relative;
    margin-top: 30px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.gallery-thumb-wrap:hover .galler-thumb img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
}

.gallery-thumb-wrap:hover .gallery-hover {
    opacity: 1;
}

.gallery-thumb-wrap:hover .gallery-hover i {
    opacity: 1;
    margin-top: 0;
}

.gallery-hover:hover {
    color: #fff;
}

@-webkit-keyframes shapeani1 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-1.25rem);
        transform: translateY(-1.25rem)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes shapeani1 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-1.25rem);
        transform: translateY(-1.25rem)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.contact-box {
    padding: 20px;
    box-shadow: 0 1px 30px 1px rgba(44, 0, 255, 0.1);
    -webkit-box-shadow: 0 1px 30px 1px rgba(44, 0, 255, 0.1);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.contact-box ul {
    list-style-type: none;
    padding: 0;
}

.contact-box ul li {
    display: block;
    margin: 10px 0;
    position: relative;
}

.icon-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #F68C3D;
    box-shadow: 0 4px 4px 1px rgb(0 0 0 / 20%);
    color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: 0 auto;
}

.contact-desc {
    padding-left: 55px;
}

.contact-desc h5 {
    font-size: 12px;
    line-height: 24px;
    color: #3F4C6E;
}

.contact-desc p {
    font-size: 10px;
    line-height: 18px;
    color: #000;
}

.contact-desc h5 a {
    color: #3F4C6E;
}

.contact-desc h5 a:hover {
    color: #000;
}

.panel-left {
    background-color: #ffffff;
    height: 100vh;
}

.brand-logo {
    margin: 35px auto;
    max-width: 150px;
}

.log-heading {}

.log-heading h3 {
    font-size: 24px;
    line-height: 34px;
    color: #3F4C6E;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.social-buttons a {
    color: #fff;
}

.btn-facebook {
    background: #3b5998;
}

.btn-twitter {
    background: #00aced;
}

.btn-linkedin {
    background: #0a66c2;
}

.social-buttons a:hover {
    color: #fff;
    opacity: 0.9;
}

.spanOr {
    width: 100%;
    display: block;
    text-align: center;
    position: relative;
    color: #aaa;
    font-size: 20px;
    margin: 30px 0;
}

.spanOr:before,
.spanOr:after {
    content: "";
    background-color: #ddd;
    width: 40%;
    height: 1px;
    position: absolute;
    top: 8px;
    display: block;
}

.spanOr:before {
    left: 0;
}

.spanOr:after {
    right: 0;
}

.panel-right {
    background-color: rgba(45, 56, 94, 0.9);
    color: #fff;
    height: 100vh;
}

.hero-heading {
    height: 100vh;
    width: 100%;
    text-align: center;
}

.headline {}

.headline h3 {
    color: #fff;
    font-size: 48px;
    line-height: 60px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

body.log-pagebody {}

.footer-logo {
    max-width: 170px;
    margin: 18px 0;
}

.search-form-wrap {
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 15px;
}

.event-block {}

.event-block .blog-box {
    border: #EDEDED 1px solid;
    margin: 0 0 30px;
}

.big-img-wrap img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.event-header-wrap {
    position: relative;
    padding: 15px 15px 0;
}

.date-col {
    position: absolute;
    bottom: 15px;
    left: 15px;
    text-align: center;
    width: 100px;
    background: #f8f8f8;
    height: 100px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 0 0px 6px 0px rgb(0 41 243 / 20%);
}

.date-header {
    background: #dc3545;
    height: 20px;
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
}

.date-col p {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    line-height: 26px;
}

.date-col p span {
    color: #F68C3D;
    font-size: 28px;
    font-weight: 700;
    display: inline-block;
    margin: 12px 0 0;
}

.no-result-img {
    max-width: 240px;
    margin: 0 auto;
    border-radius: 8px;
}

.category-list {}

.category-list ul {
    margin: 0;
    padding: 0;
}

.category-list ul li {
    list-style-type: none;
    display: block;
    margin: 0 0;
    line-height: 24px;
    color: #8F8F8F;
}

.category-list ul li a {
    color: #8F8F8F;
}

.category-list ul li a:hover {
    color: #005aab;
}

.video-wrap {
    line-height: 24px;
    margin: 15px 0;
    border: rgba(44, 0, 255, 0.1) 1px solid;
    padding: 3px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.form-group .text-danger,
.captcha-wrap .text-danger {
    display: inline-block;
    margin: 10px 0 0;
}

.pagination-wrap {}

.pagination-wrap .page-link {
    padding: 15px 20px;
    font-size: 16px;
}

.alert-box .blue-btn {
    font-size: 12px;
    padding: 3px 15px;
}

.contact-form-wrap .form-control.validation-field {
    border-color: #dc3545;
}

.big-fig-wrap {
    position: relative;
    margin: 0 0 15px;
}

.big-fig-wrap .fig-holder img {
    height: 100%;
    width: 100%;
}

.inner-banner-block.parallax {
    background-attachment: fixed;
}

.fig-type h6 a {
    color: #fff;
}

.fig-type h6 a:hover {
    color: #ccc;
}

.text-wrap {
    line-height: 24px;
    word-break: break-all;
}

.elements-wrap {
    margin: 0 0 30px;
}

.headline h5 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.contact-form-wrap label {
    margin: 0 0 15px;
}

.with-logo {
    position: relative;
    padding-left: 85px;
    min-height: 75px;
    text-align: left;
}

.with-logo .company-logo-wrap {
    position: absolute;
    top: 8px;
    left: 10px;
    margin: 0;
}

.log-heading h1 {
    font-size: 24px;
    line-height: 34px;
    color: #3F4C6E;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.log-page {
    padding-top: 150px;
    padding-bottom: 50px;
}

.image-zoom {
    overflow: hidden;
}

.image-zoom img {
    width: 100%;
    -webkit-transition: all .6s ease-in-out 0s;
    -o-transition: all .6s ease-in-out 0s;
    transition: all .6s ease-in-out 0s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.image-zoom:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.log-img {
    max-width: 400px;
    margin: 0 auto;
}

@keyframes bounces {
    from {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }

    to {
        transform: translateY(-25px);
        -webkit-transform: translateY(-25px);
        -moz-transform: translateY(-25px);
        -ms-transform: translateY(-25px);
        -o-transform: translateY(-25px);
    }
}

@-webkit-keyframes bounces {
    from {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }

    to {
        transform: translateY(-25px);
        -webkit-transform: translateY(-25px);
        -moz-transform: translateY(-25px);
        -ms-transform: translateY(-25px);
        -o-transform: translateY(-25px);
    }
}

.v-select .vs__dropdown-toggle {
    border: none;
}

.top-bar {
    background: #005aab;
    padding: 5px 0;
}

.top-bar-items {}

.top-bar-items ul {
    margin: 0;
    padding: 0;
}

.top-bar-items ul li {
    list-style-type: none;
    display: inline-block;
    margin: 0 0 0 10px;
}
.top-bar-items ul li a{
    color: #fff;
}
.top-bar-items ul li a:hover{
    color: #F68C3D;
}
.team-card {
}

.team-card h4{
    font-size: 16px;
}
.info-cards{
    padding: 25px 15px;
}
.info-icon {
    width: 50px;
}
.card-desc{
}
.card-desc h5 {
    color: #f68c3d;
    font-size: 34px;
    line-height: 30px;
    margin: 0 0 10px;
}
.card-desc p{
    color: #585858;
    font-size: 12px;
    margin: 0;
    line-height: 24px;
}


/* change line height for all p tags */
p{
    line-height: var(--line-height-relaxed)!important;
    font-size: var(--font-size-base);
    color: var(--primary-gray);
}