body {
    --main-color: #0f446c;
    --main-color-rgb: 15, 68, 108;
    --red-color: #a50000;
    --red-color-rgb: 165, 0, 0;
}

/* loading animation */
.loading-overlay {
    position: fixed;
    background: #fff;
    width: 100%;
    height: calc(100% + 90px);
    z-index: 1040;
    display: none;
    margin-top: -90px;
}

.breadcumb-menu li {
    color: #fff;
    display: flex;
    align-items: center;
    letter-spacing: 0;
}


.breadcumb-title {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 45px;
}

.breadcumb-area {
    min-height: 430px;
    display: flex;
    flex-wrap: wrap;
    filter: brightness(30%);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}


.loading-container {
    position: fixed;
    top: 50%;
    z-index: 1050;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.loading-container .loader-body {
    width: 48px;
    height: 48px;
    border-bottom: 3px solid var(--main-color);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotate-spinner 1s linear infinite;
}



body.load {
    overflow: hidden;
}

body.load .loading-container,
body.load .loading-overlay {
    display: block;
}

/* back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    color: var(--main-color);
    width: 40px;
    height: 40px;
    line-height: 41px;
    text-align: center;
    font-size: 22px;
    background-color: #b0bec9;
    cursor: pointer;
}

.back-to-top:hover {
    color: #fff;
}

/* helpful class */

a {
    text-decoration: none;
    color: var(--main-color);
    transition: 0.3s;
}

.spaceadjust {
    margin-bottom: 4%;
}

.date {
    margin-left: 7%;
}

.blog-single .thumb .date {
    background: #0ec2bc;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    color: #fff;
}
.blog-single {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    
    height: 100%;
}
.blog-single .thumb {
    position: relative;
    z-index: 1;
}
.blog-single .content {
    padding: 0 10px 10px 30px;
}

.blog-single .thumb img{
    width: 100%;
    height: 270px;
    object-fit: cover;
}

a.hovered,
a:hover {
    color: var(--red-color);
}

a.solutionlinks {
    color: #01426a !important;
    white-space: pre-wrap;
    font-size: 25px;
    font-weight: bold;
}

a.hovered:hover {
    color: var(--main-color);
}

a.text-white:hover {
    opacity: 0.5;
}

.with-point {
    position: relative;
}


.with-point::after {
    content: attr(data-text);
    position: absolute;
    top: -65px;
    left: 0;
    display: inline-block;
    font-family: 'Lavishly Yours', cursive;
    font-size: 100px;
    line-height: 130px;
    color: var(--main-color);
    opacity: 0.2;
    pointer-events: none;
}

.with-point.text-center::after {
    left: 50%;
    transform: translate(-50%);
}

.user-select-none {
    user-select: none;
}

.nice-shadow {
    box-shadow: 0 3px 15px rgba(22, 41, 124, 0.1);
}

.text-aurora {
    color: var(--main-color);
}

.border-aurora {
    border-color: var(--main-color);
}

.bg-aurora {
    background-color: var(--main-color);
}

.bg-semi-light {
    background-color: #f9fbfd;
}

.hovered {
    color: #adb5bd;
}

.hovered:hover {
    color: var(--main-color);
}

/* main button */

.skew-btn {
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    color: white;
    background: var(--main-color);
    padding: 12px 32px 10px;
    font-weight: 700;
    transition: 0.35s ease;
    min-width: 140px;
    box-sizing: border-box;
    border-radius: 0;
    letter-spacing: 0.1em;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 1px solid var(--main-color);

}
.skew-btn:hover {
    background-color: white !important;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}
.skew-btn.red {
    color: var(--red-color);
    border-color: var(--red-color);
}

.skew-btn::before {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 50%;
    transition: 0.35s ease;
    background-color: white;
    transform: translate(-50%, 0) skew(25deg);
}

.skew-btn.red::before {
    background-color: var(--red-color);
}

.skew-btn.sm {
    padding: 7px 10px 5px;
    min-width: auto;
    font-size: 14px;
}


.skew-btn.skew {
    color: #fff;
}

.skew-btn:hover::before,
.skew-btn.skew::before {
    width: 150%;
}

.skew-btn.skew:hover {
    color: var(--main-color);
}

.skew-btn.red.skew:hover {
    color: var(--red-color);
}

.skew-btn.skew:hover::before {
    width: 0;
}

@keyframes rotate-spinner {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* navbar styles */

nav.navbar {
    height: 90px;
    padding: 0;
    outline: 3px solid var(--red-color);
}

nav.navbar .navbar-brand .img-brand {
    width: 175px;
    height: 80px;
    object-fit: contain;
}

nav.navbar .navbar-toggler {
    box-shadow: none;
}

nav.navbar .nav-link {
    font-size: 17px;
    color: red;
}

nav.navbar .nav-link.active,
nav.navbar .nav-link:hover {
    color: #0f446c;
    font-weight: bold;
}

nav.navbar .dropdown-item.active,
nav.navbar .dropdown-item:active {
    background-color: var(--main-color);
    font-weight: bold;
}

nav.navbar .ham-svg {
    cursor: pointer;
    transition: transform 400ms;
    user-select: none;
}

nav.navbar .ham-svg.active {
    transform: rotate(45deg);
}

nav.navbar .ham-svg .line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: var(--main-color);
    stroke-width: 5.5;
    stroke-linecap: round;
}

nav.navbar .ham-svg.ham-8 .top {
    stroke-dasharray: 40 160;
}

nav.navbar .ham-svg.ham-8 .middle {
    stroke-dasharray: 40 142;
    transform-origin: 50%;
    transition: transform 400ms;
}

nav.navbar .ham-svg.ham-8 .bottom {
    stroke-dasharray: 40 85;
    transform-origin: 50%;
    transition: transform 400ms, stroke-dashoffset 400ms;
}

nav.navbar .ham-svg.ham-8.active .top {
    stroke-dashoffset: -64px;
}

nav.navbar .ham-svg.ham-8.active .middle {
    transform: rotate(90deg);
}

nav.navbar .ham-svg.ham-8.active .bottom {
    stroke-dashoffset: -64px;
}

@media (min-width: 991px) {
    nav.navbar .nav-link {
        transform: perspective(1px) translateZ(0);
        position: relative;
        overflow: hidden;
    }

    nav.navbar .nav-link:before {
        content: '';
        position: absolute;
        z-index: -1;
        left: 51%;
        right: 51%;
        bottom: 0;
        background: var(--main-color);
        height: 3px;
        transition-property: left, right;
        transition-duration: 0.3s;
        transition-timing-function: ease-out;
    }

    nav.navbar .nav-link:hover::before,
    nav.navbar .nav-link:focus::before,
    nav.navbar .nav-link.active::before {
        left: 0;
        right: 0;
    }

    .dropdown:hover .dropdown-menu {
        /*display: block;*/
    }

    nav.navbar .dropdown-toggle::after {
        width: 8px;
        height: 8px;
        border-bottom: 2px solid;
        border-right: 2px solid;
        transform: rotate(45deg);
        border-top: 0;
        border-left: 0;
        margin-left: 5px;
        margin-right: 5px;
    }

    nav.navbar .nav-item {
        margin: 0 5px;
    }

    nav.navbar .dropdown-menu::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        background: #fff;
        border-left: 1px solid #e6e7eb;
        border-top: 1px solid #e6e7eb;
        top: -8px;
        left: 30px;
        transform: rotate(45deg);
        z-index: -1;
        border-radius: 2px;
    }
}

@media (max-width: 991px) {
    nav.navbar .navbar-collapse {
        background-color: #f8f9fa;
        border: 1px solid #dddd;
    }

    nav.navbar .navbar-collapse .navbar-nav {
        padding: 20px 30px;
    }

    nav.navbar .navbar-collapse .navbar-nav .nav-item {
        transition: 0.5s;
    }
}

.dropdown-menu {
    border: none;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    animation-name: DropDownSlide;
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

@keyframes DropDownSlide {
    100% {
        transform: translateY(0);
    }

    0% {
        transform: translateY(10px);
    }
}

/* dropdown additional style */
.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--main-color);
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--main-color);
    background-color: rgba(var(--main-color-rgb), 0.2);
}

.dropdown-divider {
    height: 0;
    opacity: 1;
    border-top: 1px solid #eff2f7;
}

/* homepage hero header */
header .header-wrapper {
    margin-top: 90px;
}

header .header-wrapper .single-slide {
    height: 700px;
    width: 100%;
    min-height: 700px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

header .header-wrapper .single-slide::before {
    content: '';
    display: block;
    background-color: #000000a3;
    width: 100%;
    position: absolute;
    height: 100%;
    z-index: -1;
}

header .header-wrapper .single-slide .skew-shape {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
    bottom: -3px;
}

header .header-wrapper .single-slide .skew-shape svg {
    width: calc(139% + 1.3px);
    height: 500px;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

header .header-wrapper .single-slide .skew-shape svg path {
    fill: #f5f5f5;
}

header .header-wrapper .single-slide .content {
    white-space: normal;
}

/* about us */
.about-us .fancy-box {
    text-align: center;
    position: relative;
    background-color: var(--main-color);
    margin: auto;
    width: 530px;
    height: 580px;
    border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
}

.about-us .fancy-box img.fancy-image {
    border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
    width: 500px;
    height: 550px;
    object-fit: cover;
}

.about-us .fancy-box .dot-shape-top {
    top: -5px;
    z-index: -1;
    left: -10px;
}

.about-us .fancy-box .dot-shape {
    bottom: -3px;
    left: auto;
    right: -3px;
    z-index: -1;
}

.partners ul.glide__slides {
    margin-bottom: 0;
}

.partners .slider__arrow.slider__arrow--next.glide__arrow.glide__arrow--next {
    right: 0;
}

.partners .slider__arrow.slider__arrow--next.glide__arrow.glide__arrow--next i {
    position: relative;
    top: -2px;
    left: 2px;
}

.partners .slider__arrow.slider__arrow--prev.glide__arrow.glide__arrow--prev i {
    position: relative;
    top: -2px;
    right: 2px;
}

.partners .glide__arrow {
    border-radius: 50%;
    text-align: center;
    background-color: var(--main-color);
    border-color: var(--main-color);
    padding: 0;
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 47px;
    color: #fff;
}

.partners .glide__arrow:hover {
    opacity: 0.7;
}

.partners .single-slide-container {
    position: relative;
    text-align: center;
}

.partners .single-slide-container .single-slide {
    margin: auto;
    position: relative;
    width: 220px;
    z-index: 1;
}

.partners .single-slide-container .single-slide .img {
    text-align: center;
    position: relative;
    /* background-color: rgba(var(--main-color-rgb), 0.3); */
}

.partners .single-slide-container .single-slide .img img {
    max-width: 100%;
    width: 200px;
    height: 120px;
    object-fit: contain;
}


/* footer styles */
footer.footer {
    border-top: 3px solid var(--red-color);
    color: #fff;
    margin-top: 30px;
    background-color: var(--main-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

footer.footer .shapes img.hex-shape {
    position: absolute;
    z-index: -1;
    width: 100px;
    bottom: 0;
    right: 0;
    transform: rotate(-120deg);
    opacity: 0.7;
}

footer.footer .shapes .dotted-shape {
    position: absolute;
    top: 0;
    left: 0;
    opacity: .8;
    width: 90px;
    transform: rotate(80deg);
}
.blog-area-description h1 strong {
    color: #01426a !important;
}

@media (max-width: 768px) {
    .about-us .fancy-box {
        width: 300px;
        height: 330px;
    }

    .about-us .fancy-box img.fancy-image {
        width: 300px;
        height: 300px;
    }

    .about-us .fancy-box .dot-shape img {
        width: 200px;
    }


    .navbar-light .navbar-nav .nav-link {
        color: #0f446c;
        font-family: "Times New Roman";
    }

    .active,
    .navbar-light .navbar-nav .nav-link:hover {
        font-weight: bold;
    }

    .navbar-light .navbar-nav .nav-link:focus {
        font-weight: bold;
        color: #0f446c;
    }

    .dropdown-item {
        font-family: "Times New Roman";
    }

    /*NEWCSS*/
    .w3l-contact-2 .input-grids {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 0px 20px;
    }

    .py-5 {
        padding-bottom: 3rem !important;
    }

    .container {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }

    .contact-grids {
        grid-template-columns: 1fr 1fr;
        grid-gap: 30px;
    }

    .contact-grids input,
    .contact-grids textarea {
        width: 100%;
        color: var(--font-color);
        background-color: #e8e6e680;
        font-size: 18px;
        line-height: 26px;
        font-weight: normal;
        font-style: normal;
        font-family: inherit;
        padding: 15px 25px;
        border: 1px solid var(--border-color-light);
        outline: none;
        margin-bottom: 16px;
        border-radius: var(--border-radius);
    }

    .contact-grids textarea {
        height: 250px;
        margin: 6px 0 20px 0;
    }

    .contact-grids input:focus,
    .contact-grids textarea:focus {
        border: 1px solid black;
    }

    .d-grid {
        display: grid;
    }

    .img-fluid {
        max-width: 100%;
        height: auto;
    }

    .w3l-contact-2 .input-grids {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 0px 20px;
    }

    .fa,
    .fas {
        font-weight: 900;
        margin-top: 7%;
        font-size: 20px;
    }
    .contact-left-img {
        margin-top: -11%;
    }
    a.skew-btn.skew.red.mt-4 {
        top: 11px;
        left: 50px;
    }

    p {
        font-family: "Times New Roman";
    }

}
.job-card {
    box-shadow: 0px 2px 3px #c3b2b2;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid lightgrey;
    border-radius: 6px;
}
.job-card .job-title {
    margin: 0;
    font-weight: bold;
}
.job-card .job-date {
    font-size: 14px;
    opacity: 0.5;
    margin-bottom: 8px;
}
.job-card .job-description {
    margin-top: 16px;
}
@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .nav-link{   }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
}	