@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit/static/Outfit-Regular.ttf') format('truetype')
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Outfit', sans-serif !important;
    overflow-x: hidden !important;
}

:root {
    --primary: #0A2342;
    --secondary: rgb(255, 193, 7);
    --fs-nm: 0.9rem;
}

.text-blue {
    color: var(--primary) !important;
}

.bg-blue {
    background-color: var(--primary) !important;
}

.bg-blue-subtle {
    background-color: #0a234294 !important;
}

.fs-nm {
    font-size: var(--fs-nm) !important;
}

.btn-blue {
    background-color: var(--primary) !important;
    color: white !important;
}

input,
select,
textarea {
    box-shadow: none !important;
    color: var(--primary) !important;
}

input:focus,
select:focus,
textarea:focus {
    border: 1px solid var(--secondary) !important;
    box-shadow: inset -0.5px -0.5px 10px 1px rgba(255, 255, 0, 0.486) !important;
}

/* navbar start */
.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0px 3px 15px rgba(163, 163, 163, 0.623);
}

.navbar .nav-link {
    font-size: var(--fs-nm);
    margin-right: 20px;
    color: white !important;
    position: relative;
    transition: all 0.2s;
    padding: 10px 10px 10px 0px !important;
}

.navbar .nav-link::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 0px;
    background-color: var(--secondary);
    bottom: 5px;
    left: 0px;
    transition: all 0.2s;
}

.navbar .nav-link.active::before,
.navbar .nav-link:hover::before {
    width: 85%;
}

/* navbar end */

/* hero start */
.hero {
    width: 100%;
    height: 75vh;
    overflow: hidden;
    position: relative;
}

.inner-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: zoomInOut 10s ease-in infinite;
    position: absolute;
    top: 0;
    left: 0;
}

.text {
    position: relative;
    z-index: 2;
}


.hero:before {
    content: '';
    background: linear-gradient(rgba(10, 35, 66, 0.7), rgba(10, 35, 66, 0.7));
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.ball {
    height: 180px;
    width: 180px;
    position: absolute;
    z-index: 0;
    opacity: 0.7;
}

.ball-1 {
    top: -70px;
    left: -50px;
}

.ball-2 {
    bottom: -70px;
    right: -50px;
}

.track h3,
input,
img,
textarea {
    z-index: 1000;
    position: relative;
}

/* hero end */

/* service start */
.service-card {
    cursor: pointer;
    height: 420px !important;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #63a9f59a, var(--primary));
    z-index: 1;
    transition: height 0.7s ease;
    pointer-events: none;
}

.service-img {
    height: 48%;
    width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.service-card:hover::before {
    height: 100%;
}

.service-card>* {
    position: relative;
    z-index: 2;
}

.service-card .ins-icon,
h5,
p {
    transition: all 0.3s;
}

.service-card:hover .ins-icon {
    background-color: #ffffff !important;
    color: var(--primary) !important;
    transform: rotateY(180deg);
}

.service-card:hover p,
.service-card:hover h5 {
    color: #ffffff !important;
}

.ribbon {
    background-color: var(--secondary);
    color: black;
    position: absolute;
    bottom: 5px;
    right: -35px;
    height: 35px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    font-size: 13px;
}

/* service end */

/* quote start */
.quote {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    height: auto;
    width: 100%;
}

/* quote end */

/* choose start */
.icon-circle {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
    min-width: 60px;
    min-height: 60px;
}

/* choose end */

/* footer start */
.foot-icon {
    background-color: var(--secondary);
    height: 35px;
    width: 35px;
    display: inline-block;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s;
}

.foot-icon:hover {
    color: var(--primary);
    background-color: white;
}

/* footer end */