@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

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

body {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    font-family: 'Josefin Sans', sans-serif;
}

html,
body {
    overflow-x: hidden;
}

/* ----- Tag Css ----- */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 8px;
    font-family: 'Josefin Sans', sans-serif;
}

p {
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
}

a {
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    text-decoration: none;
}

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

button:focus,
.header .navbar-toggler:focus {
    outline: none !important;
    box-shadow: none;
    border: none;
}

input:focus,
textarea:focus {
    outline: none !important;
    box-shadow: none;
}

button,
.header .navbar-toggler {
    border: none;
    outline: none;
    user-select: none;
    border-color: unset;
    font-family: 'Josefin Sans', sans-serif;
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

section {
    display: block;
    position: relative;
    padding: 40px 0;
    width: 100%;
}

/*<--------- Header Css ---------->*/

.header {
    width: 100%;
    display: grid;
    align-items: center;
    -webkit-box-align: center;
    padding: 10px 0;
    box-shadow: 0.521px 2.954px 8px 0px rgb(220 220 220 / 20%);
    transition: all 300ms ease;
    -webkit-transition: all .3s;
    background-color: #fff;
    z-index: 9;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInUp;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInUp;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translatey(-4px);
        -moz-transform: translatey(-4px);
        -o-transform: translatey(-4px);
        transform: translatey(-4px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}

#mainNavigation {
    padding: 0;
}

.header ul {
    align-items: center;
    margin: 0 0 0 auto;
}

.sideBar {
    display: flex;
    flex-grow: 1;
    flex-basis: 100%;
    align-items: center;
    z-index: 9;
}

.header ul li a,
.header ul li span {
    display: block;
    font-size: 20px;
    padding: 10px 8px;
    margin: 0 10px;
    color: #212529;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s;
}

.submenu {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    width: 300px;
    opacity: 0;
    visibility: hidden;
    border-radius: 3px;
    box-shadow: 0 2px 15px rgb(0 0 0 / 3%);
    background: #fff;
}

.submenu.open {
    opacity: 1;
    visibility: visible;
    display: block;
    transition: all 0.2s;
    height: auto;
}

.header .drop-link:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transition: all 0.2s;
    height: auto;
}

.drop-link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    user-select: none;
    cursor: pointer;
}

.drop-link span i {
    margin: 0 0 0 5px;
    font-size: 14px;
}

#nav-icon1 {
    width: 28px;
    height: 28px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    padding: 0;
}

#nav-icon1 span {
    display: block;
    position: absolute;
    right: 0;
    height: 3px;
    width: 100%;
    background: #000;
    border-radius: 2px;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
    top: 3px;
    width: 24px;
}

#nav-icon1 span:nth-child(2) {
    top: 12px;
    width: 21px;
}

#nav-icon1 span:nth-child(3) {
    top: 20px;
    width: 17px;
    background-color: #0000ff;
}

.header .btn_link {
    display: inherit;
    margin: 0 0 0 15px;
}

.main-btn {
    background-color: #4a43c1;
    border-radius: 7px;
    padding: 10px 20px 6px;
    font-size: 18px;
    line-height: 25px;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.main-btn i {
    margin: 0 0 4px 8px;
    font-size: 13px;
    background-color: #fff;
    color: #4a43c1;
    padding: 8px;
    border-radius: 4px;
}

.call-box-container {
    background-color: #4a43c1;
}

.footer {
    background-image: url(../img/footer-img.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 40px 0 0;
    background-repeat: no-repeat;
}

.footer-title {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px;
}

.footer-iconbox {
    display: flex;
    align-items: flex-start;
    margin: 20px 0 0;
}

.footer-icon {
    width: 34px;
    height: 34px;
    background-color: #1d42d9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    margin: 0 8px 0 0;
}

.footer-brief,
.footer-links {
    color: #eee;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.footer-links {
    border-bottom: 1.5px dashed #eee;
}

.footer-links:hover {
    color: #eee;
}

.copyright-box {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #eee;
    text-align: center;
    padding: 10px 0;
    border-top: 1px dashed #eee;
    margin: 20px 0 0;
}

#successMessageBox {
    display: none;
    text-align: center;
    padding: 40px 0;
}

#successMessageBox .successTitle {
    font-size: 30px;
    color: #0000ff;
    font-weight: 500;
    margin: 0 0 8px;
}

#successMessageBox .successMessage {
    font-size: 18px;
    margin: 5px 0 0;
    font-weight: 400;
    color: #737b9a;
}

.page-banner {
    text-align: center;
    z-index: 1;
    background-color: #00183b;
    background-image: url(../img/inner-banner-bg.webp);
    padding: 20px 0 60px 0;
    background-position: bottom;
}

.heading-tag-2 {
    font-size: 22px;
    text-transform: uppercase;
    color: #cbcbcb;
    font-weight: 500;
    margin: 0 0 8px;
    display: block;
}

.page-heading {
    font-size: 45px;
    color: #fff;
    line-height: 50px;
    margin: 0 0 15px;
    font-weight: 800;
}

.page-heading span {
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
}

.bread-crumb {
    font-size: 20px;
    color: #cbcbcb;
    margin: 10px 0 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 19px;
    width: 100%;
}

.bread-crumb a {
    color: #cbcbcb;
}

.bread-crumb i {
    margin: 0 8px;
    font-size: 14px;
}

.current-page {
    color: #736bff !important;
}

.banner-shape {
    position: absolute;
    z-index: -1;
}

.banner-shape img {
    margin: auto;
}

.banner-shape-1 {
    bottom: 2%;
    right: 3%;
    -webkit-animation: FrameAnimation2 20s infinite linear;
    animation: FrameAnimation2 20s infinite linear;
}

.banner-shape-2 {
    left: 7%;
    bottom: 10%;
    -webkit-animation-name: rotateMe;
    animation-name: rotateMe;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.banner-shape-3 {
    left: 0;
    right: 0;
    top: 30%;
    width: max-content;
    margin: auto;
    -webkit-animation-name: rotateMe;
    animation-name: rotateMe;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.banner-shape-4 {
    top: 5%;
    left: 3%;
    -webkit-animation: FrameAnimation 20s infinite linear;
    animation: FrameAnimation 20s infinite linear;
}

.banner-shape-5 {
    right: 15%;
    top: 5%;
    -webkit-animation: moveTopBounce 3s linear infinite;
    animation: moveTopBounce 3s linear infinite;
}

@keyframes rotateMe {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

.call-btn {
    background-color: #4a43c1;
    border-radius: 10px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 100%;
    max-width: 240px;
    color: #fff;
    font-size: 25px;
}

.call-btn i {
    font-size: 20px;
}

.call-btn i {
    margin: 0 8px 0 0;
    font-size: 14px;
}

.column-point-wrapper {
    position: relative;
}

.column-box {
    width: calc(50% - 25px);
    background-color: #ffffff;
    padding: 10px 10px;
    box-shadow: 0px 1px 20px 0px rgb(238 238 238 / 30%);
    border-radius: 3px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.column-box:last-child {
    margin-bottom: 0;
}

.column-box:nth-child(even) {
    margin-left: auto;
}

.column-right-arrow,
.column-left-arrow {
    width: 18px;
    height: 18px;
    background-color: #fff;
    box-shadow: 0px 1px 20px 0px rgb(238 238 238 / 30%);
    position: absolute;
    top: 15px;
    right: -7px;
    transform: rotate(48deg);
    z-index: -1;
}

.column-left-arrow {
    right: unset;
    left: -7px;
}

.column-heading {
    font-size: 18px;
    color: #212529;
    font-weight: 600;
    margin: 0 0 12px;
}

.column-brief {
    font-size: 16px;
    color: #737b9a;
    line-height: 28px;
}

.column-point-wrapper:before {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    top: 39px;
    width: 0px;
    height: calc(100% - 145px);
    margin: auto;
    border-right: 2px dashed #4a43c1;
}

.column-circle-right,
.column-circle-left {
    display: block;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    border: 3px solid #4a43c1;
    position: absolute;
    top: 15px;
    right: -34px;
    margin: auto;
    border-radius: 50px;
    background-color: #f9f9fb;
}

.column-circle-left {
    right: unset;
    left: -35px;
}

.solution-list {
    position: relative;
    padding: 15px 0 0;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0 0 15px;
    color: #212529;
    line-height: 24px;
    font-size: 15px;
}

.solution-list img {
    margin: 4px 8px 0 0;
}

.contactbox-centered {
    width: 100%;
    max-width: 850px;
    margin: auto;
}

.input-box.half {
    width: 100%;
    max-width: 49%;
    display: inline-block;
}

.contactbox-centered #contactForm {
    background-color: transparent;
    padding: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.mapBox {
    padding: 0;
    width: 100%;
}

.mapBox iframe {
    width: 100%;
}

.contact-detail-box {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 1px 20px 0px rgb(238 238 238 / 70%);
    padding: 20px 15px;
    text-align: center;
    position: relative;
    width: 100%;
}

.contact-box-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    background-color: #f5f5f5;
    border-radius: 50px;
    color: #4a43c1;
    font-size: 20px;
}

.contact-box-title {
    font-size: 25px;
    color: #212529;
    margin: 15px 0 0;
    font-weight: 600;
}

.contact-box-link {
    font-size: 16px;
    line-height: 28px;
    color: #737b9a;
    margin: 12px 0 0;
    display: block;
}

.about-success {
    margin-top: -90px;
    padding-top: 0;
}
.company-name-big {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #4a43c1;
}