html {
    scroll-behavior: smooth;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height:1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--wed-black);
    text-transform: none;
    font-style: normal;
    background-color: #fff;
    position: relative;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
   position: relative;
   font-family: "Miranda Sans", sans-serif;
}
h1 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 24px;
}
h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 24px;
}
h3 {
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 24px;
}
h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
}
h5 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 16px;
}
h6 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 16px;
}
p {
    margin: 0 0 16px;
}
ul,ol{
    padding: 0;
    margin: 0;
    list-style: none;
}
input:focus,
select:focus,
textarea:focus {
   box-shadow: none !important;
}
textarea:focus-visible {
    outline: 0;
}
input:-webkit-autofill {
   -webkit-background-clip: text;
}
[type=search]{
    outline-offset: 0;
}
input:focus-visible, 
button:focus-visible{
    outline: 0;
}
.gutter-y-10 {
    --bs-gutter-y: 10px;
}
.gutter-y-15 {
    --bs-gutter-y: 15px;
}
.gutter-y-20 {
    --bs-gutter-y: 20px;
}
.gutter-y-30 {
    --bs-gutter-y: 30px;
}
.gutter-y-40 {
    --bs-gutter-y: 40px;
}
.gutter-y-60 {
    --bs-gutter-y: 60px;
}
.gutter-x-15{
    --bs-gutter-x: 30px;
}
.btn-check:checked+.btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check)+.btn:active:focus-visible{
    box-shadow: none;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    border: none;
}
.primary-btn {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    overflow: hidden;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    padding: 6px 6px 6px 30px;
    color: #fff;
    text-transform: capitalize;
    background-color: #0e51ab;
}
.primary-btn.light{
    background-color: #fff;
    color: #0e51ab;
}
.primary-btn::before{
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: -200%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 1;
    background-color: #fff;
}
.primary-btn.dark::before{
    background-color: #000;
}
.primary-btn .btn-wrap {
    position: relative;
    z-index: 1;
    float: left;
    overflow: hidden;
    display: inline-block;
}
.primary-btn .btn-wrap .text-one {
    position: relative;
    display: block;
    color: var(--white-color);
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.primary-btn .btn-wrap span span {
    position: relative;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    margin-left: 15px;
    border-radius: 50px;
    display: inline-block;
    color: #0e51ab;
    background-color: #fff;
}
.primary-btn.light .btn-wrap span span{
    background-color: #0e51ab;
    color: #fff;
}
.primary-btn:hover .btn-wrap  .text-one:first-child{
	-webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}
.primary-btn:hover .btn-wrap >span> span {
    color: #fff;
    background-color: #0e51ab;
}
.primary-btn .btn-wrap .text-two{
	position: absolute;
    top: 100%;
    display: block;
	color: #000;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.primary-btn.dark .btn-wrap .text-two{
    color: #fff;
}
.primary-btn.dark:hover .btn-wrap >span> span {
    color: #0e51ab;
    background-color: #fff;
}
.primary-btn:hover .btn-wrap .text-two{
	top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.primary-btn:hover::before{
	top: -40%;
}
.primary-btn.light:hover .btn-wrap .text-two{
    color: #0e51ab;
}
/***********************
* header
***********************/
.topbar-inner {
    display: flex;
    justify-content: space-between;
}
.topbar {
    background-color: #0e51ab;
    color: #fff;
    padding: 6px 0;
}
.topbar p {
    margin-bottom: 0;
}
.topbar-right ul {
    display: flex;
    column-gap: 35px;
}
.topbar-right ul li a {
    color: #fff;
    display: flex;
    align-items: center;
    column-gap: 10px;
}
#topbar-text::after {
    content: "|";
    margin-left: 3px;
    animation: blink 0.7s infinite;
}
@keyframes blink {
    50% { opacity: 0; }
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
header.main-header {
    position: absolute;
    top: 37px;
    width: 100%;
    z-index: 999;
    transition: all 0.5s;
}
.logo {
    max-width: 200px;
}
.logo img{
    filter: grayscale(100%) brightness(100);
    transition: all 0.5s;
}
.main-header.dark .logo img{
    filter: none;
}
.main-header.dark {
    background-color: #fff;
}
.main-header.dark .main-menu>ul>li {
    color: #000;
}
.main-header.dark .main-menu>ul>li>a {
    color: #000;
}
.main-menu>ul {
    display: flex;
    column-gap: 30px;
}
.main-menu>ul>li {
    display: flex;
    align-items: center;
    column-gap: 6px;
    padding: 32px 0;
    color: #fff;
}
.main-menu>ul>li svg {
    width: 18px;
    transition: all 0.5s;
    height: 18px;
}
.main-menu>ul>li>a{
    color: #fff;
    font-weight: 500;
}
.main-menu>ul>li.dropdown {
    position: relative;
}
.sub-menu {
    position: absolute;
    width: 230px;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    background-color: #fff;
    z-index: 999;
    padding: 12px 0;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}
.main-menu>ul>li:hover svg{
    transform: rotate(180deg);
}
.main-menu>ul>li.dropdown:hover .sub-menu{
    opacity: 1;
    transform: scaleY(1) translateZ(0px);
    visibility: visible;
}
.sub-menu ul li {
    padding: 6px 20px;
    border-bottom: 1px solid #0e51ab5c;
    position: relative;
}
.sub-menu ul li:last-child {
    border-bottom: 0;
}
.sub-menu ul li a {
    color: #000;
    font-weight: 500;
}
.sub-menu ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background-color: #0e51ab;
    transition: all 0.5s;
}
.sub-menu ul li:hover a {
    color: #0e51ab;
    padding-left: 20px;
}
.sub-menu ul li:hover::after {
    width: 15px;
}
.mega-menu {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    background-color: #fff;
    z-index: 999;
    padding: 0;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 12px 13px 10px #00000026;
}
.main-menu>ul>li:hover .mega-menu{
    opacity: 1;
    transform: scaleY(1) translateZ(0px);
    visibility: visible;
}
.mega-menu-inner {
    padding: 24px;
}
.mega-tabs {
    display: flex;
    column-gap: 50px;
    justify-content: center;
    margin-bottom: 30px;
}
.mega-tabs .tab-btn {
    display: flex;
    align-items: center;
    column-gap: 12px;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border: 1px solid transparent;
    background-color: #0e51ab2b;
    transition: all 0.5s;
    border-radius: 6px;
}
.mega-tabs .tab-btn.active {
    border-color: #0e51ab;
    background-color: #0e51ab;
    box-shadow: 0 0 18px 8px #0e51ab29;
    color: #fff;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.mega-row {
    display: flex;
    flex-wrap: wrap;
    /* gap: 30px; */
}
.mega-row h4 {
    margin-bottom: 12px;
    font-size: 20px;
}
.mega-row h4 a {
    color: #000;
}
.mega-row ul li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 5px;
}
.mega-row ul li a {
    color: #000;
    font-weight: 500;
    font-size: 14px;
    position: relative;
}
.mega-row ul li::after {
    position: absolute;
    top: 2px;
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f107";
    font-size: 14px;
    color: #1e1e1e;
    transform: rotate(270deg);
}
.mega-row h4 a:hover {
    color: #0e51ab;
}
.mega-row ul li a:hover {
    color: #0e51ab;
}
.mega-row ul li a::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #0e51ab6e;
    transition: all 0.5s;
}
.mega-row ul li a:hover::after {
    width: 100%;
}
.mega-col {
    width: 25%;
    padding: 30px;
    border-right: 1px solid #00000080;
    border-bottom: 1px solid #00000080;
}
.mega-col:nth-child(-n + 4) {
    padding-top: 0;
}
.mega-col:nth-child(1), .mega-col:nth-child(5), .mega-col:nth-child(9) {
    padding-left: 0;
}
.mega-col:nth-of-type(4n + 4) {
    border-right: 0;
    padding-right: 0;
}
.mega-col:last-child {
    border: none;
}
.mega-col:nth-last-child(-n+4) {
    border-bottom: 0;
}
/***********************
* hero
***********************/
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-box {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}
.hero-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(270.2deg, rgba(0, 0, 0, 0) -6.22%, #001735 101.85%);
    background-color: #001735a3;
}
.hero-content, .hero-image{
    position: relative;
    z-index: 1;
    color: #fff;
}
.hero-content>span {
    margin-bottom: 12px;
    display: block;
    font-size: 18px;
}
.hero-content > * {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.6s ease;
}
.hero-content.animate-in > * {
    opacity: 1;
    transform: translateY(0);
}
.hero-content.animate-out > * {
    opacity: 0;
    transform: translateY(-80px);
}
.hero-content.animate-in span { transition-delay: 0.2s; }
.hero-content.animate-in h1 { transition-delay: 0.4s; }
.hero-content.animate-in p { transition-delay: 0.6s; }
.hero-content.animate-in a { transition-delay: 0.8s; }
ul.slick-dots {
    display: flex;
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    column-gap: 12px;
}
ul.slick-dots li button {
    font-size: 0;
    height: 16px;
    width: 16px;
    border: none;
    background-color: #fff;
    border-radius: 16px;
    transition: all 0.5s;
}
ul.slick-dots li.slick-active button {
    width: 40px;
}
/***********************
* about
***********************/
.about-section {
    padding: 100px 0;
}
.about-right {
    padding-left: 50px;
}
.heading-box {
    margin-bottom: 30px;
}
.heading-box .tagline {
    text-transform: uppercase;
    letter-spacing: 0.06rem;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
    padding-left: 40px;
    position: relative;
}
.heading-box .tagline::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 30px;
    background-color: #0e51ab;
}
ul.about-list {
    margin-bottom: 30px;
}
ul.about-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 30px;
    font-weight: 500;
    font-size: 18px;
}
ul.about-list li::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    height: 20px;
    width: 20px;
    background-image: url(../img/point-icon.svg);
    background-size: 20px;
}
.about-image-1 {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 12px;
    margin-right: 80px;
}
.about-image-2 {
    overflow: hidden;
    display: inline-block;
    border-radius: 12px;
    position: absolute;
    z-index: 1;
    width: 80%;
    right: 0;
    bottom: -70px;
}
.about-left {
    position: relative;
}
.about-image-2 img {
    border-radius: 12px;
    border: 5px solid #fff;
}
.about-image-1 img {
    border-radius: 12px; 
}
.heading-box h2 {
    margin-bottom: 12px;
}
.heading-box.text-center .tagline::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 30px;
    background-color: #0e51ab;
}
.heading-box.text-center .tagline{
    padding-right: 40px;
}
.category-box {
    height: 390px;
    position: relative;
    width: 100%;
}
.category-section {
    padding-bottom: 100px;
}
.category-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.category-details {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
    text-align: center;
    background-color: #0e51ab;
    padding: 12px;
}
.category-image {
    height: 100%;
    width: 100%;
    position: relative;
}
.category-image::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: all .4s ease;
}
.category-box:hover .category-image::after{
    backdrop-filter: blur(4px);
    box-shadow: 2px 2px 100px 0px rgba(0, 0, 0, 0.1) inset;
}
.category-details h4 a {
    color: #fff;
}
.category-details .category-btn {
    opacity: 0;
    visibility: hidden;
    transform-origin: bottom;
    transform: scaleY(0) translateZ(100px);
    transition: all 0.7s ease;
    border-top: 0.3px solid #ffffff45;
    max-height: 0px;
}
.category-box:hover .category-details .category-btn {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1) translateZ(0px);
    max-height: 100px;
    margin-top: 10px;
    padding-top: 10px;
}
.category-details h4 {
    margin-bottom: 10px;
}
/***********************
* industry
***********************/
.industry-section {
    position: relative;
    padding: 60px;
    border-radius: 20px;
    background-color: #0e51ab29;
    margin: 0 20px;
    overflow: hidden;
}
.logo-shape {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 40%;
    opacity: 0.2;
}
.industry-left {
    padding-right: 150px;
}
.industry-box {
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 12px;
    border: 1px dashed #0e51abc2;
    display: flex;
    column-gap: 35px;
    align-items: center;
    transition: all 0.5s;
}
.industry-box:hover {
    background-color: #0e51ab26;
}
.industry-box:last-child {
    margin-bottom: 0;
}
.industry-box-left {
    width: 40%;
    flex-shrink: 0;
}
.industry-box-left .icon {
    height: 80px;
    width: 80px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(297deg, rgb(128 161 205) 0%, rgb(254 254 254 / 12%) 52%, rgb(14 81 171 / 43%) 100%);
}
.industry-box-left h4 {
    margin-bottom: 0;
    font-size: 24px;
}
ul.industry-list li {
    margin-bottom: 7px;
    position: relative;
    padding-left: 30px;
    font-weight: 500;
}
ul.industry-list li::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-image: url(../img/sparkler.svg);
    background-size: 20px;
}
/***********************
* why-choose
***********************/
.why-choose-section {
    padding: 100px 0;
    padding-bottom: 60px;
}
.why-choose-left {
    padding-right: 100px;
}
ul.why-choose-list li {
    margin-bottom: 7px;
    position: relative;
    padding-left: 30px;
    font-weight: 500;
}
ul.why-choose-list li::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    height: 20px;
    width: 20px;
    background-image: url(../img/point-icon.svg);
    background-size: 20px;
}
ul.why-choose-list {
    margin-bottom: 30px;
}
.why-choose-right {
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}
.why-choose-right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.why-choose-right:hover img {
    transform: scale(1.1);
}
.why-choose-lower {
    margin-top: 50px;
}
.why-choose-box {
    position: relative;
    background-color: #0e51ab29;
    padding: 24px;
    height: 100%;
    transition: all 0.5s;
        border-radius: 12px;
}
p.why-counter {
    position: absolute;
    right: 20px;
    top: 0;
    font-size: 40px;
    font-weight: 600;
    display: flex;
    align-items: baseline;
    color: #fff;
    transition: all 0.5s;
}
.why-choose-box .icon {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background-color: #fff;
        border-radius: 4px;
}
.why-choose-box h4 {
    margin-bottom: 12px;
}
.why-choose-box p {
    margin-bottom: 0;
}
.why-choose-box:hover {
    transform: translateY(-10px);
    background-color: #0e51ab;
    color: #fff;
}
.why-choose-box:hover p.why-counter{
    color: #ffffff69;
}
/***********************
* counter
***********************/
.counter-section {
    padding-bottom: 60px;
}
.counter-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #0e51ab;
        border-radius: 12px;
}
.why-container-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 25%;
    padding: 60px 50px 50px 50px;
    position: relative;
}
.why-container-box p:first-child {
    font-size: 65px;
    line-height: 1;
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
    letter-spacing: -1.48px;
    font-weight: 700;
}
.why-container-box p:nth-child(2) {
    margin-bottom: 0;
    color: #fff;
}
span.count-separator {
    position: absolute;
    width: 10px;
    height: 90px;
    top: 50%;
    inset-inline-end: -5px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0.15;
}
.why-container-box:last-child span.count-separator {
    display: none;
}
/***********************
* testimonia
***********************/
.testimonia-section {
    padding: 60px 0;
    background-color: #0e51ab29;
    margin: 0 20px;
    overflow: hidden;
    border-radius: 20px;
}
.testimonial-box {
    background-color: #fff;
    border-radius: 12px;
    height: 300px;
    padding: 20px;
}
.testimonial-item {
    padding-right: 30px;
}
.testimonial-slider .slick-list {
    margin-left: 30px;
}
.testimonial-head {
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #0e51ab;
}
.testimonial-head h4 {
    margin-bottom: 0;
}
.testimonial-head span {
    color: #555555;
    font-size: 14px;
}
.testimonial-box p {
    font-size:18px;
}
.testimonial-slider ul.slick-dots {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    justify-content: center;
    margin-top: 20px;
}
.testimonial-slider ul.slick-dots button{
    background-color: #0e51ab;
}
/***********************
* blog
***********************/
.blog-section {
    padding: 80px 0;
}
.heading-box-outer {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
    align-items: end;
}
.heading-box-outer .heading-box {
    margin-bottom: 0;
}
.heading-box-outer .heading-box h2 {
    margin-bottom: 0;
}
.blog-image {
    border-radius: 12px;
    overflow: hidden;
}
.blog-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.blog-image:hover img {
    transform: scale(1.1);
}
ul.blog-meta {
    display: flex;
    align-items: center;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 5px;
    padding: 15px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #0e51ab;
}
ul.blog-meta li {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
ul.blog-meta li p {
    margin-bottom: 0;
}
ul.blog-meta li i {
    color: #0e51ab;
}
.blog-box h4 a {
    color: #000;
}
.blog-box h4 a:hover {
    color: #0e51ab;
}
/***********************
* cta
***********************/
.cta-section {
    padding-bottom: 50px;
}
.cta-box {
    padding: 60px 0;
    border-radius: 20px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    color: #fff;
    position: relative;
}
.cta-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0b1c32a6;
}
.cta-btn {
    display: flex;
    justify-content: center;
    column-gap: 15px;
    flex-wrap: wrap;
    row-gap: 10px;
}
/***********************
* footer
***********************/
.footer {
    background-color: #0e51ab29;
    padding-top: 50px;
}
.footer-about {
    padding-right: 50px;
}
.footer-logo {
    margin-bottom: 30px;
}
.footer-link {
    display: flex;
    column-gap: 50px;
    justify-content: space-between;
}
.footer-contact ul li {
    margin-bottom: 12px;
    display: flex;
    column-gap: 12px;
    align-items: flex-start;
}
.footer-contact ul li span {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #0e51ab;
    color: #fff;
    position: relative;
    transition: all 0.5s;
}
.footer-contact ul li span::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: #fff;
    height: 95%;
    width: 95%;
    border-radius: 100%;
    transition: all 0.5s;
}
.footer-contact ul li span i {
    position: relative;
    z-index: 1;
}
.footer-contact ul li:hover span {
    color: #0e51ab;
}
.footer-contact ul li:hover span::after {
    transform: translate(-50%, -50%) scale(1);
}
.footer-contact ul li p {
    margin-bottom: 0;
}
.footer-contact ul li p a {
    color: #000;
    display: block;
    font-weight: 500;
}
.footer-contact ul li p a:hover{
    color: #0e51ab;
}
.footer-contact {
    max-width: 390px;
}
ul.footer-menu li {
    margin-bottom: 6px;
}
ul.footer-menu li a {
    color: #000;
    font-weight: 500;
    position: relative;
}
ul.footer-menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    transition: all 0.5s;
    background-color: #0e51ab;
}
ul.footer-menu li a:hover::after {
    width: 100%;
}
ul.footer-menu li a:hover {
    color: #0e51ab;
}
.footer-lower {
    padding: 20px 0;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 20px;
    position: relative;
}
.footer-lower p {
    margin-bottom: 0;
}
.footer-lower::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #0e51ab 54.95%, rgba(255, 255, 255, 0) 100%);
}
ul.social-media {
    display: flex;
    align-items: center;
    column-gap: 12px;
}
ul.social-media li a{
    height: 40px;
    width: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #0e51ab;
    color: #fff;
    position: relative;
}
ul.social-media li a::after{
     content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: #fff;
    height: 95%;
    width: 95%;
    border-radius: 100%;
    transition: all 0.5s;
}
ul.social-media li a i {
    position: relative;
    z-index: 1;
}
ul.social-media li a:hover {
    color: #0e51ab;
}
ul.social-media li a:hover::after {
    transform: translate(-50%, -50%) scale(1);
}