/* @import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,500&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,slnt,wdth,wght,XOPQ,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC@8..144,-10..0,25..151,100..1000,27..175,323..603,25..135,649..854,-305..-98,560..788,416..570,528..760&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Neuton:ital,wght@0,200;0,300;0,400;0,700;0,800;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');


:root {
    --main-font: 'Roboto Flex', sans-serif;
    --font-2: "Neuton", serif;
    /* color */
    /* --main-color: #222222;
    --secondary-color: #525c65; */
    --main-color: #0d1224;
    --secondary-color: #6e707a;
    --alt-color: #735cfc;
    --yellow-color: #ffc107;
    --orange-color: #FF5421;
    --green-color: #249f40;
    /* --orange-color: #f21353; */
    --blue-color: #377DFF;
    --color-dark-bg: #171F32;
    --sky-color: #caebf2;
    --dimy-blue: #e8f9fd;
    --white-color: #ffffff;
    --ghostwhite-color: ghostwhite;
    --extra-light-color: #eaeef1;
    --font-weight-medium: 600;
    --bradious: 4px;
    /* box shadow */
    /* --box-shadow: 2px 2px 15px 0 rgb(46 61 73 / 10%); */
    --box-shadow: 0 3px 5px rgb(0 0 0 / 3%);
}




body {
    font-family: var(--main-font);
    color: var(--main-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.font-weight-600 {
    font-weight: 600;
}
.font-weight-400 {
    font-weight: 400;
}
.font-150 {
    font-size: 150%;
}
.text-y {
    color: #f89321;
}
@media (max-width: 720px) {
    .hide-md {
        display: none;
    }
}

.text-f2 {
    font-family: "Caveat", serif;
    /* font-optical-sizing: auto;
    font-style: normal; */
}

.text-outline {
    -webkit-text-stroke: 1px #000;
    color: transparent;
}

a {
    text-decoration: none;
}


.nav-crousel {
    position: relative;
}

.nav-block {
    position: absolute;
    top: 30px;
    z-index: 1000;
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 30px;
    }

    /* .nav-custom-fix .navbar {
        padding: 20px 30px;
    } */
}

@media (max-width: 992px) {
    .nav-block {
        position: absolute;
        top: 10px;
        z-index: 1000;
    }
}

.navbar {
    background: transparent;
    box-shadow: none;
}

/* .fixed-top {
    top: 30px;
} */
.bg-body-tertiary {
    background: #ffffff !important;
    padding: 15px 0px;
    border-radius: 5px;
}

@media (min-width: 768px) {
    .navbar {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-custom-fix .navbar {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        gap: 20px;
    }
}

.nav-custom.nav-custom-fix {
    background: #ffffff;
    /* top: 0px; */
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.nav-custom-fix {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 99;
}

.modal-backdrop.show {
    z-index: 1000;
}
.modal-signin {
    position: relative;
    height: 80vh;
}
.modal-content {
    border-radius: 0px;
}
.modal-signin> .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1000;
}
.h-80 {
    height: 80vh;
}
.modal-signin-left {
    position: relative;
    background: url(../img/2.jpg);
    background-size: cover;
    overflow: hidden;
}
.bg-overlay {    
    position: absolute;
    background-color: #5156be !important;
    opacity: .7;
    height: 100%;
    width: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
}
.bg-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.bg-bubbles li {
    position: absolute;
    list-style: none;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: rgba(255,255,255,.1);
    bottom: -50px;
    -webkit-animation: square 20s infinite;
    animation: square 20s infinite;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear
}

.bg-bubbles li:nth-child(1) {
    left: 10%
}

.bg-bubbles li:nth-child(2) {
    left: 20%;
    width: 100px;
    height: 100px;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-duration: 17s;
    animation-duration: 17s
}

.bg-bubbles li:nth-child(3) {
    left: 25%;
    -webkit-animation-delay: 4s;
    animation-delay: 4s
}

.bg-bubbles li:nth-child(4) {
    left: 40%;
    width: 80px;
    height: 80px;
    -webkit-animation-duration: 22s;
    animation-duration: 22s
}

.bg-bubbles li:nth-child(5) {
    left: 70%;
    width: 90px;
    height: 90px
}

.bg-bubbles li:nth-child(6) {
    left: 70%;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.bg-bubbles li:nth-child(7) {
    left: 32%;
    width: 150px;
    height: 150px;
    -webkit-animation-delay: 7s;
    animation-delay: 7s
}

.bg-bubbles li:nth-child(8) {
    left: 55%;
    width: 80px;
    height: 80px;
    -webkit-animation-delay: 15s;
    animation-delay: 15s;
    -webkit-animation-duration: 40s;
    animation-duration: 40s
}

.bg-bubbles li:nth-child(9) {
    left: 25%;
    width: 50px;
    height: 50px;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-duration: 40s;
    animation-duration: 40s
}

.bg-bubbles li:nth-child(10) {
    left: 90%;
    width: 140px;
    height: 140px;
    -webkit-animation-delay: 11s;
    animation-delay: 11s
}

@-webkit-keyframes square {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        -webkit-transform: translateY(-1000px) rotate(600deg);
        transform: translateY(-1000px) rotate(600deg)
    }
}

@keyframes square {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        -webkit-transform: translateY(-1000px) rotate(600deg);
        transform: translateY(-1000px) rotate(600deg)
    }
}
.modal-signin-tx {
    z-index: 1000;
    position: relative;
    color: #fff;
}

/* carousel */
.carousel-custom .carousel-control-prev,
.carousel-custom .carousel-control-next {
    top: unset !important;
    width: 70px;
    height: 70px;
    border: 2px solid #fff;
    border-radius: 50%;
    left: unset !important;
    right: 100px;
    opacity: 1;
    z-index: 100;
    bottom: 100px;
}

.carousel-custom .carousel-control-next {
    bottom: 180px;
}

.carousel-custom .carousel-caption {
    right: 0px;
    top: 0px;
    bottom: 0px;
    left: 0px;
    text-align: left;
    display: flex !important;
    flex-direction: row;
    align-content: center;
    align-items: center;
    z-index: 10;
}

.carousel-custom .carousel-title {
    font-size: 80px;
    letter-spacing: 1px;
    line-height: 90px;
    font-family: var(--font-2);
    font-weight: 800;
}

@media (max-width: 768px) {
    .carousel-custom .carousel-title {
        font-size: 30px;
    }
}

@media (min-width: 768px) {
    .carousel-custom .carousel-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: linear-gradient(#0b152229, #0b152287);
    }
}


/* form */
.filter-title {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-size: 17px;
    margin-bottom: 20px;
    font-weight: 600;
}

.filter-title>span {
    position: relative;
    border-bottom: 1px solid;
    padding-bottom: 10px;
}

.form-control:focus {
    box-shadow: none;
}

.navbar .btn-dark {
    background: #01103d !important;
    border: #01103d !important;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0 1px 2px 0 rgba(1, 16, 61, .14);
}

.styled-checkbox-d {
    padding-left: 0px;
}

.styled-checkbox {
    position: absolute;
    opacity: 0;
}

.styled-checkbox+label {
    position: relative;
    padding-left: 27px !important;
    cursor: pointer;
    padding: 0;
    font-weight: 400;
}

.styled-checkbox+label:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 1px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 18px;
    height: 18px;
    background: white;
    border: 1px solid rgb(169, 169, 169);
}

.styled-checkbox:checked+label:before {
    background: #01103d;
    border: 1px solid #01103d;
}

.styled-checkbox:disabled+label {
    color: #b8b8b8;
    cursor: auto;
}

.styled-checkbox:disabled+label:before {
    box-shadow: none;
    background: #ddd;
}

.styled-checkbox:checked+label:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 9px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
}



.div-section {
    padding: 80px 0px;
}

@media (max-width: 768px) {
    .div-section {
        padding: 50px 0px;
    }
}

.div-section-border {
    border-top: 1px dashed #f2f1f1;
}

.font-weight-bold {
    font-weight: 600;
}

.about-div {
    position: relative;
    background: url(../img/backgroud.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.about-div>.ad-1 {
    position: absolute;
    -webkit-animation: rounded 5s linear infinite;
    animation: rounded 5s linear infinite;
    left: 20px;
    position: absolute;
    top: 40px;
    z-index: -1;
    opacity: .5;
}

.about-div>.ad-1>img {
    height: 100px;
}

.about-div>.ad-2 {
    position: absolute;
    top: 0px;
    -webkit-animation: rounded 5s linear infinite;
    animation: rounded 5s linear infinite;
    position: absolute;
    right: 5%;
    top: 40px;
    z-index: -1;
    opacity: .5;
}

.about-div>.ad-3 {
    position: absolute;
    z-index: -1;
}

@keyframes rounded {
    50% {
        transform: rotate(20deg);
    }
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

.fastiv-div {
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    border-radius: 6px;
    overflow: hidden;
    transition: 256ms ease-in-out;
    padding: 25px;
    display: block;
    text-decoration: none;
    margin-bottom: 25px;
    background: #ffffff;
}

.fastiv-div>p {
    margin: 0px;
    color: var(--main-color);
    font-weight: 600;
    font-size: 18px;
}

.fastiv-div-small>p {
    margin: 0px;
    color: var(--main-color);
    font-weight: 400;
    font-size: 18px
}

.fastiv-div>p>span {
    float: right;
    color: var(--secondary-color);
}

.fastiv-div>.fastiv-div-img>img {
    position: relative;
    width: 100%;
    height: auto;
}

.fastiv-div>.fastiv-div-img {
    position: relative;
    margin-bottom: 20px;
}

.fastiv-div>.fastiv-div-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image: linear-gradient(#0b152236, #0b1522e8); */
}

.fastiv-div:hover {
    transform: scale(1.03);
}

.mb-30px {
    margin-bottom: 30px;
}

.home-dividing-div {
    padding-top: 30px;
    padding-bottom: 0px;
    background: #fef9f2;
}

.home-dividing-div-inner {
    color: var(--main-color)
}

.home-dividing-div-pic {
    margin-top: -200px;
}

.icon-bx-wraper.style-3 {
    box-shadow: 0 0 10px 4px rgb(31 66 135 / 10%);
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    transition: all .5s;
    overflow: hidden;
    z-index: 9;
}

.icon-bx-wraper {
    position: relative;
}

.icon-bx-wraper.style-3>[class*=icon-bx-] {
    position: relative;
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin: 15px 15px 30px;
    transition: all .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.icon-bx-wraper.style-3>[class*=icon-bx-] {
    position: relative;
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin: 15px 15px 30px;
    transition: all .5s;
}

.icon-cell>img {
    height: 40px;
}

.icon-bx-sm.radius {
    border-radius: 100%;
}

.bgl-primary {
    background-color: rgba(245, 95, 141, .1);
}

.icon-bx-wraper.style-3>[class*=icon-bx-]:before {
    content: "";
    position: absolute;
    height: 100px;
    width: 100px;
    left: -13px;
    top: -15px;
    background-image: url(../img/icon-back.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.icon-bx-wraper.style-3>[class*=icon-bx-] .icon-cell i {
    font-size: 40px;
}

.icon-bx-wraper.style-3 .wraper-effect {
    border-radius: 50%;
    position: absolute;
    transition: all .5s;
    height: 350px;
    width: 350px;
    background-color: hsla(0, 0%, 100%, .2);
    right: -100%;
    bottom: -100%;
    z-index: -1;
}

.icon-bx-wraper.style-3 .wraper-effect:before {
    background-color: hsla(0, 0%, 100%, .2);
    height: 250px;
    width: 250px;
}

.icon-bx-wraper.style-3 .wraper-effect:after,
.icon-bx-wraper.style-3 .wraper-effect:before {
    content: "";
    border-radius: 50%;
    position: absolute;
    transition: all .5s;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.icon-bx-wraper.style-3 .wraper-effect:after {
    background-color: #f55f8d;
    height: 150px;
    width: 150px;
}

.icon-content h4 {
    font-size: 20px;
}

.style-3:hover .icon-content {
    color: #fff;
}

.icon-bx-wraper.style-3.active,
.icon-bx-wraper.style-3:hover {
    background-image: linear-gradient(90deg, #f55f8d 0, #f8ae56 51%, #f55f8d);
    background-size: 200%;
}

.icon-bx-wraper.style-3.active .wraper-effect,
.icon-bx-wraper.style-3:hover .wraper-effect {
    right: -150px;
    bottom: -150px;
}

.icon-bx-wraper.style-3.active>[class*=icon-bx-],
.icon-bx-wraper.style-3:hover>[class*=icon-bx-] {
    background-color: hsla(0, 0%, 100%, .2);
}

/*  */
.image-column {
    position: relative;
    margin-bottom: 35px;
}

.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.icon-dotted-map-2 {
    top: 20px;
    left: -5px;
}

.anim-icons .icon {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.icon-dotted-map-2 {
    width: 623px;
    height: 576px;
    background-image: url(../img/icon/icon-dotted-map.png);
}

.icon-paper-plan {
    width: 218px;
    height: 318px;
    right: 0px;
    bottom: 0px;
    background-image: url(data:image/png;base64,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);
}

.icon-dotted-line {
    left: 58%;
    top: 300px;
}

.icon-dotted-line {
    width: 150px;
    height: 215px;
    background-image: url(data:image/png;base64,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);
}

.image-column .inner-column {
    position: relative;
    /* padding-right: 50px;
    margin-left: -150px; */
}

.image-column .image-1 {
    position: relative;
    max-width: 460px;
    margin-bottom: 0;
}

.image-column .image-1 img {
    width: 100%;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    border-radius: 6px;
    padding: 10px;
}

.overlay-anim:after {
    background: #ffffff4d;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.image-column .image-2 {
    /* position: absolute;
    top: 0;
    right: 55px; */
    /* border-radius: 30px; */
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    border-radius: 6px;
    padding: 10px;
}

.image-column .image-2 img {
    width: 100%;
    /* max-width: 300px; */
}

.overlay-anim img {
    width: 100%;
}

.overlay-anim:after {
    background: #ffffff4d;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}


#owl-carousel-1 .item {
    padding: 20px 15px;
}

#owl-carousel-1 .owl-carousel {
    position: relative;
}

#owl-carousel-1 .item {
    padding: 20px 15px;
}

#owl-carousel-1 .owl-nav {
    position: absolute;
    left: -50px;
    top: calc(50% - 50px);
    right: -50px;
    text-align: left !important;
    z-index: -1;
}

#owl-carousel-1 .owl-next {
    margin-left: auto;
    display: inline-block;
    float: right;
}

#owl-carousel-1 .owl-nav .owl-prev,
#owl-carousel-1 .owl-nav .owl-next {
    height: 40px;
    width: 40px;
}

#owl-carousel-1 .owl-nav .owl-prev:hover,
#owl-carousel-1 .owl-nav .owl-next:hover {
    background: #600ee4 !important;
    color: #ffffff;
}

#owl-carousel-1 .owl-nav .owl-prev span,
#owl-carousel-1 .owl-nav .owl-next span {
    font-size: 40px;
    line-height: 25px;
}

.box {
    background: #fff;
    box-shadow: var(--box-shadow);
    /* border-radius: .375rem; */
    display: block;
    overflow: hidden;
    border: 1px solid #f1f1f1;
}

.box-img {
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #f1f1f1;
}

a.box {
    color: var(--main-color);
    text-decoration: none;
}

.box-img img {
    width: 100%;
    transition: all .8s ease;
}

.box-img .tag {
    position: absolute;
    right: 5px;
    bottom: 5px;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 3px;
}

.box-detail-with-border {
    /* border: 1px solid #f1f1f1; */
    border-top: none;
}

.box-detail {
    padding: 15px;
}

.tag-orange-wa {
    font-size: 13px;
    padding: 2px 10px;
    border-radius: 3px;
}

.tag-orange {
    background: var(--orange-color);
    color: #ffffff;
}

.tag-green {
    background: var(--green-color);
    color: #ffffff;
}

.tag-yellow {
    background: var(--yellow-color);
    color: #ffffff;
}

/*  */
.detail-img {
    border: 1px solid #f1f1f1;
    box-shadow: 0 3px 5px rgb(0 0 0 / 3%);
}

.message-box {
    padding: 20px;
    box-shadow: 0 3px 5px rgb(0 0 0 / 3%);
    border: 1px solid #f1f1f1;
}


.custom-style-radio input[type=radio] {
    visibility: hidden;
}

.custom-style-radio label.radio {
    cursor: pointer;
    text-indent: 35px;
    overflow: visible;
    display: inline-block;
    position: relative;
    margin-left: -15px;
    margin-right: 20px;
}

.custom-style-radio label.radio:before {
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
}

.custom-style-radio label.radio:after {
    opacity: 0;
    content: '';
    position: absolute;
    width: 0.5em;
    height: 0.25em;
    background: transparent;
    top: 11.5px;
    left: 5px;
    border: 2px solid #ffffff;
    border-top: none;
    border-right: none;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
}

.custom-style-radio input[type=radio]:checked+label:after {
    opacity: 1;
}

.custom-style-radio input[type=radio]:checked+label::before {
    border: 1px solid #01103d;
    background: #01103d;
}

/*  */
.breadcrumb {
    background: linear-gradient(90deg, #600ee4 0, #56f8e5 100%);
    color: #fff;
    box-shadow: 0 1px 14px 0 rgba(18, 20, 32, .07);
    padding: 180px 0px 50px 0px;
}

.breadcrumb p {
    font-weight: 100;
}

.breadcrumb h4 {
    font-weight: 400;
}

.breadcrumb-link>a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    font-weight: 100;
    opacity: .8;
    padding: 0px 15px;
    position: relative;
}

.breadcrumb-link>a:first-child {
    padding-left: 0px;
}

.breadcrumb-link>a::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    /* font-family: 'boxicons' !important; */
    content: "";
    right: 20px;
    right: -10px;
    top: 3px;
    height: 12px;
    width: 12px;
    position: absolute;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    display: inline-block;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.breadcrumb-link>a:last-child {
    opacity: 1;
}

.breadcrumb-link>a:last-child::after {
    content: none;
}

/* Footer */
.footer-section {
    position: relative;
    border-top: 1px dashed #f2f1f1;
    ;
}

.footer {
    padding: 70px 0px 50px 0px;
    border-top: 1px dashed #f2f1f1;
}

.footer-shape {
    position: absolute;
    bottom: 100px;
    left: 10px;
}

.footer-shape>img {
    height: 300px;
}

.footer-bottom {
    border-top: 1px solid rgba(86, 101, 139, .1);
    padding: 30px 0;
    position: relative;
}

.footer-title>h1 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 20x;
    margin-bottom: 30px;
}

.footer-link>a {
    display: block;
    text-decoration: none;
    color: var(--main-color);
    transition: all .4s ease-in-out;
    margin-bottom: 15px;
}

.footer-link>.btn-dark {
    margin-top: 15px;
    background: #01103d;
    box-shadow: 0 1px 2px 0 rgba(1, 16, 61, .14);
}

.footer-link>a:hover {
    color: var(--alt-color);
    transition: all .4s ease-in-out;
    margin-left: 5px;
}

.footer-bottom .footer-wrapper .social-icon a {
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    box-shadow: 0 1px 8px 0 rgba(1, 16, 61, .07);
    border-radius: 50%;
    display: inline-block;
    color: #9497a3;
}

.footer-bottom .footer-wrapper .social-icon {
    gap: 13px;
}

.footer-bottom .footer-wrapper .social-icon a:hover {
    background-color: #01103d;
    color: #f2f2f2;
}
.default-padding {
    padding: 30px;
}