@import url(../fonts/fonts.css);
:root {
    --white: #fff;
    --whiteTint1: #FAFAFA;
    --blue: hsl(240, 70%, 60%);
    --bluetint2: rgb(5, 1, 71);
    --primaryBtn: rgb(5, 1, 71);
    --primaryColor: rgb(5, 1, 71);
    --black: #000;
    --blacktint1: #1a1a1a;
    --blacktint2: #0a131e;
    --font: 'RebondGrotesque';
    --black-pearl: #0B131E;
    --very-light-pink: #fff6eb;
    --pale-blue-lily: #D4E9F3;
}

::-moz-selection {
    color: var(--white);
    background-color: #6499ff;
}

::selection {
    color: var(--white);
    background-color: #6499ff;
}

.white_clr {
    color: var(--white);
}

.primaryColor{
    color: var(--primaryColor);
}


.white_bg {
    background-color: var(--white);
}

.blue_clr {
    color: var(--blue);
}


.imageBgSize {
    background-repeat: no-repeat;
    background-position: bottom right;
}

body {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    font-family: var(--font);
    font-weight: 300;
    font-size: 17px;
    line-height: 24px;
    color: var(--blacktint1);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
    overflow-y: auto;
}

html,
body {
    height: 100%;
}

main,
header,
section,
footer {
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1,
.h1 {
    font-size: 48px;
}

h2,
.h2 {
    font-size: 42px;
}

h3,
.h3 {
    font-size: 46px;
}

h4,
.h4 {
    font-size: 30px;
}

h5,
.h5 {
    font-size: 24px;
}

h6,
.h6 {
    font-size: 20px;
}

.extrabold {
    font-weight: 800;
}

.bold {
    font-weight: 700;
}

.semibold {
    font-weight: 600;
}

.medium {
    font-weight: 500;
}

.regular {
    font-weight: 400;
}

.lightfont {
    font-weight: 300;
}

.font18 {
    font-size: 18px;
    line-height: 24px;
}

p {
    margin: 0 0 10px;
}

p:last-of-type {
    margin-bottom: 0;
}

figure {
    margin: 0;
    padding: 0;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

a {
    display: inline-block;
    text-decoration: none;
    outline: none !important;
    color: inherit;
}

ul,
ol {
    padding-left: 20px;
    margin: 0;
}

a,
button {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type=number] {
    -moz-appearance: textfield;
}

input {
    -webkit-box-shadow: none;
    box-shadow: none;
}

input[type=submit] {
    -o-transition: ease 0.3s;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
    text-decoration: none !important;
    outline: none !important;
}

textarea:focus,
input:focus,
select:focus,
a:focus,
button:focus {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #b1b1b1 #f5f5f5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*::-webkit-scrollbar {
    width: 9px;
}

*::-webkit-scrollbar-track {
    background: #f5f5f5;
}

*::-webkit-scrollbar-thumb {
    background-color: #af2424;
    border-radius: 20px;
    border: 1px solid #f5f5f5;
}

html {
    scroll-behavior: initial;
}

body.scroll {
    overflow: hidden;
}

.list-tyle-none {
    margin: 0;
    padding: 0;
    list-style: none;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-justify p {
    text-align: justify;
    margin: 15px 0;
}

.uppercase {
    text-transform: uppercase;
}

.position-relative {
    position: relative;
}

.full_height {
    height: 100%;
}

.full_width {
    width: 100%;
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1170px;
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.inner_container {
    max-width: 1005px;
    margin: 0 auto;
}

.common_btn {
    color: var(--white);
    font-size: 16px;
    font-family: var(--font);
    line-height: 24px;
    font-weight: 700;
    background-color: var(--primaryBtn);
    border-radius: 50px;
    padding: 11px 23px;
    cursor: pointer;
    border: 1px solid transparent;
}

.common_btn:hover {
    background-color: transparent;
    color: var(--primaryBtn);
    border-color: var(--primaryBtn);
}

.common_btnWhite {
    color: var(--blacktint1);
    background-color: var(--white);
}

.common_btnWhite:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.common_heading {
    font-weight: 800;
}

.desktop_none {
    display: none;
}

.desktop_show {
    display: block;
}


/**********************
    Common CSS End
**********************/

.header_main {
    padding: 35px 0;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 9;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.header_main.header__fixed {
    position: fixed;
    background: var(--white);
    padding: 5px 0;
    -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.10);
}

.main_logo {
    width: 250px;
}

.main_logo a {
    display: block;
}

.main_logo a img {
    width: 100%;
}

.navbar {
    margin-left: auto;
    margin-right: 90px;
}

.nav_menu .list_item {
    display: inline-block;
    margin: 0 14px;
}

.nav_menu .list_item a {
    color: #040506;
    font-size: 17px;
    line-height: 30px;
    font-weight: 600;
}

.nav_menu .list_item:hover a {
    color: var(--primaryBtn);
}

.menu_icon {
    display: none;
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--greenWhite);
    cursor: pointer;
    margin-left: 10px;
    padding: 16px 11px;
}

.menu_icon span {
    position: relative;
    width: 100%;
    height: 2px;
    display: block;
    background: var(--black);
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.menu_icon span:nth-child(2) {
    margin: 5px 0;
    margin-left: auto;
}

.nav_overlay {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    display: none;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.7);
}

.navClose_wrapper {
    width: 30px;
    margin: 15px 7px 30px;
    display: none;
    float: right;
    cursor: pointer;
}

.navClose_wrapper img {
    margin: 0 auto;
}


/* .head_height {
    height: 109px;
} */


/**********************
    Header CSS End
**********************/

.banner_main {
    position: relative;
    background-color: var(--white);
    z-index: 1;
}

.banner_spacing {
    padding-top: 180px;
    padding-bottom: 103px;
}

.homeBanner {
    background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 50%, rgb(5, 1, 71) 50%);
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(255, 255, 255, 1)), color-stop(50%, rgba(5, 1, 71, 0.9)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 50%, rgba(243, 243, 243, 0.9) 50%)
}

.banner_content__boxLeft {
    padding-right: 15px;
}

.banner_content {
    position: relative;
}

.banner_content .banner_title {
	font-size: 50px;
	line-height: 45px;
	font-weight: 700;
	position: relative;
	margin-bottom: 20px;
}


.banner_content .banner_sub-title {
	line-height: 24px;
	font-weight: 400;
	font-size: 18px;
}

.highlight_text {
    display: inline-block;
    height: inherit;
    background-repeat: no-repeat;
}

.banner_content .customer_count {
    border-top: 2px solid #dedede;
    margin-top: 26px;
    padding: 22px 0;
    position: relative;
}

.banner_content .customer_count .badge {
    width: 40px;
    margin-right: 12px;
}


.banner_content .customer_count span strong {
    font-weight: 700;
}

.banner_content .starting_price {
    margin-top: 20px;
    background-color: var(--primaryBtn);
    color: var(--white);
    border-radius: 50px;
    padding: 13px 40px;
    -webkit-box-shadow: 0px 0px 60px 0px rgba(211, 37, 51, 0);
    box-shadow: 0px 0px 60px 0px rgba(204, 30, 30, 0);
    line-height: 36px;
    text-align: center;
}

.banner_content .starting_price:hover {
    opacity: 0.8;
}

.banner_content .starting_price p .small {
    font-size: 16px;
}

.banner_content .starting_price p .price {
    color: var(--green);
    font-weight: 700;
    font-size: 36px;
    padding: 0 6px;
}

.circle {
    border-radius: 50%;
}

.radius {
    border-radius: 20px;
}

.radius_right {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.border-radius-8 {
    border-radius: 8px;
}



.about_main {
    background-color: rgb(5, 1, 71);
    padding-top: 100px;
    padding-bottom: 120px;
}

.about_heading {
    max-width: 960px;
    margin: 0 auto;
}

.about_heading p {
    color: var(--white);
    padding: 0 30px;
}

.counter_wrap {
    margin: 45px 0 55px;
}

.counter_inner {
	margin: 0 auto;
}

.counter_box {
    text-align: center;
    color: var(--white);
    padding: 0 46px;
    border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.counter_box:last-child {
    border-right: none;
    padding-right: 0;
}

.counter_box:first-child {
    padding-left: 0;
}

.counter_box .counter {
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
}

.about_wide-img {
    max-width: 750px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.about_wide-img img {
    width: 100%;
}

.gutter-sizer {
    width: 6%;
}

.card_grid {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.card_grid-item {
	width: 32%;
	margin-bottom: 30px;
}

.card_grid-item a {
    height: 100%;
}
.common_content {
    padding-right: 8px;
}


.common_heading {
    margin-bottom: 5px;
}

.common_content p {
    font-weight: 300;
    margin-bottom: 25px;
}

.common_content p:last-of-type {
    margin-bottom: 0;
}

.common_space {
    padding-top: 105px;
    padding-bottom: 60px;
}

.card_box-innner {
    border-radius: 10px;
    padding:30px 20px 28px;
    height: 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border: 1px solid transparent;
}
.card_grid-item:hover .card_box-innner {
    border-color: #c1c1c1;
}
.outer_glow {
    -webkit-box-shadow: 0 0 114px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 114px 0 rgba(0, 0, 0, 0.08);
}

.card_type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}


.card_type .card_type-content .number {
    font-size: 18px;
    line-height: 36px;
    font-weight: 700;
}

.card_type .card_type-content .title {
    padding: 5px 0;
    font-weight: 800;
    font-size: 26px;
    color: var(--primaryColor);
}

.card_type .card_type-content p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
}

.card_type .card_type-image img,
.card_type .card_type-image svg {
    width: 100%;
}

.card_listing {
    padding-top: 15px;
}

.card_listing ul {
    padding: 0;
}

.card_listing li {
    list-style: none;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px dashed rgb(0, 0, 0, 10%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cardlisting__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    max-width: 40px;
    font-size: 23px;
}

.cardlisting__img img {
    max-width: 36px;
    max-height: 36px;
}

.cardlisting__cntnt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 40px);
    flex: 0 0 calc(100% - 40px);
    max-width: calc(100% - 40px);
    padding-left: 5px;
}

.card_listing li:last-child {
    border-bottom: 0;
}



.lightYellow_circle_wild {
    width: 217px;
    height: 217px;
    top: 180px;
    right: 55px;
}

.blue_circle_wild {
    width: 59.5px;
    height: 59.5px;
    left: -20px;
    bottom: 24%;
}

.featured_work_slider {
    padding-top: 55px;
    padding-bottom: 60px;
}

.featured_work_slider .slider_item {
    margin: 0 14px;
    background-color: #bdc1c4;
    border-radius: 8px;
    padding: 15px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.featured_work_slider .slider_item.slick-center {
    background-color: rgba(41, 58, 155, 0.575);
}

.featured_work_slider .slider_item img {
    width: 100%;
}

.featured_work_slider .slick-list {
    padding: 0 !important;
}

.featureHeadingHolder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.featureHeadingHolder .common_heading {
    margin: 0;
}

.featureHeadingHolder__arows {
    margin-left: 40px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    max-width: 100px;
}

.featured_work_main .slick-arrow {}

.slickNextBtn,
.slickPreviousBtn {
    width: 45px;
    height: 45px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: transparent;
    border: none;
    text-indent: -10000px;
    cursor: pointer;
    opacity: 0.4;
}

.slickPreviousBtn {
    background-image: url(../images/arrow-prev.png);
}

.slickNextBtn {
    background-image: url(../images/arrow-next.png);
}

.slickPreviousBtn:hover,
.slickNextBtn:hover {
    opacity: 1;
}

.featured_work_slider .slick-dots {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.featured_work_slider .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.featured_work_slider .slick-dots li button {
    background-color: #efefef;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    text-indent: -10000px;
    cursor: pointer;
}

.featured_work_slider .slick-dots li.slick-active button {
    background-color: #9c8d8d;
}



.slider_wrapper {
    max-width: calC(100% - 288px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calC(100% - 288px);
    flex: 0 0 calC(100% - 288px);
}

.thumbnail_slider {
    max-width: 288px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 288px;
    flex: 0 0 288px;
}

.thumbnail_item {
    background-color: var(--white);
    border-radius: 8px;
    -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.08);
    padding: 24px 33px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.thumbnail_item+.thumbnail_item {
    margin-top: 12px;
}

.thumbnail_item.current,
.thumbnail_item:hover {
    background-color: #c42cd2;
    margin-left: 0;
    padding-left: 48px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.thumbnail_item:last-child {
    margin-bottom: 0;
}

.thumbnail_item .client_img {
    max-width: 63px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 63px;
    flex: 0 0 63px;
    height: 63px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.thumbnail_item .client_img img {
    width: 100%;
}

.thumbnail_item .client_img,
.thumbnail_item .client_name {
    position: relative;
    z-index: 2;
}

.thumbnail_item .client_name {
    max-width: 130px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 130px;
    flex: 0 0 130px;
}

.thumbnail_item .client_name h4 {
    font-size: 20px;
    line-height: 36px;
    font-weight: 700;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.thumbnail_item .client_name p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.thumbnail_item.current .client_name h4,
.thumbnail_item.current .client_name p,
.thumbnail_item:hover .client_name h4,
.thumbnail_item:hover .client_name p {
    color: var(--white);
}



.testimonials_item,
.video_content,
.video_wrapper {
    height: 100%;
}

.testimonials_item {
    opacity: 0;
    display: none;
    -webkit-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.testimonials_item.current {
    display: inherit;
    opacity: 1;
}

.testimonials_item:hover .video_controls.active>.pauseBtn {
    opacity: .7;
}

.video_wrapper {
    border-radius: 0;
    overflow: hidden;
}

.video_wrapper video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.video_content {
    position: relative;
}

.video_controls {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.video_controls .videoBtn {
    width: 128px;
    height: 128px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    cursor: pointer;
}

.video_controls .pauseBtn {
    display: none;
}

.video_controls.active .playBtn {
    display: none;
}

.video_controls.active .pauseBtn {
    display: block;
    opacity: 0;
}

.borderBtm {
    display: inline-block;
    height: inherit;
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100%;
}

.testimonials_content .common_heading {
	line-height: 1.1;
	font-size: 52px;
}

.testimonials_main {
    background: rgb(255, 255, 255);
    background: -o-linear-gradient(273deg, rgba(255, 255, 255, 1) 33%, rgba(249, 250, 252, 1) 33%);
    background: linear-gradient(177deg, rgba(255, 255, 255, 1) 33%, rgba(249, 250, 252, 1) 33%);
}

.starRating {
    list-style: none;
    padding: 0;
}

.starRating li img {
    width: 28px;
}

.testimonialSlider__box {
    text-align: center;
    padding: 80px 0 0 0;
    opacity: 0;
    display: none;
    -webkit-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.testimonialSlider__box.current {
    display: inherit;
    opacity: 1;
}

.testimonialSlider__box .starRating {
    margin-bottom: 35px;
}

.testimonialSlider__cntnt p {
    line-height: 40px;
}

.testimonialSlider__cntnt {
    max-width: 860px;
    margin: 0 auto 30px;
}

.commonSection {
    padding: 120px 0;
}


/* getAquote */

.blueContactBox {
    background: rgb(255, 255, 255);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(255, 255, 255, 1)), color-stop(80%, rgb(251, 249, 252)));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 80%, rgb(252, 249, 251) 80%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 80%, rgba(251, 249, 252, 0.8) 80%);
}

.getAquote {
    background: var(--primaryBtn);
    border-radius: 5px;
    padding: 48px;
}

.form-control {
    width: 100%;
}

.getAquote__form .common_btn.common_btnWhite {
    width: 100%;
}

.getAquote__form .form-control {
    width: 100%;
    background: transparent;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #fff;
    font-size: 16px;
    color: #fff;
    padding: 10px 0;
    font-weight: 400;
}

.getAquote__form .form-group {
    margin-bottom: 10px;
}

.getAquote__form .form-control::placeholder {
    font-size: 16px;
    color: #fff;
    opacity: 1;
}

.getAquote__form .form-control:-ms-input-placeholder {
    font-size: 16px;
    color: #fff;
}

.getAquote__form .form-control::-ms-input-placeholder {
    font-size: 16px;
    color: #fff;
}

.getAquote__form select.form-control {
    background: var(--primaryBtn);
}

.getAquote__cntnt p {
	padding: 10px 0 0 0;
	max-width: 80%;
}

.techno_wrap {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.techno_wrap_item {
	background-color: var(--white);
	border-radius: 4px;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-grid-column-align: center;
	justify-self: center;
	width: 17%;
	min-height: 140px;
	margin: 10px 1%;
	-webkit-box-shadow: 0 0 50px 0 rgb(0 0 0 / 8%);
	box-shadow: 0 0 50px 0 rgb(0 0 0 / 8%);
	flex-direction: column;
	justify-content: center;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 0 5px;
}

.techno_wrap_item:hover {
	border-color: var(--primaryColor);
}

.techno_wrap_item span {
	font-size: 20px;
	font-weight: 700;
	text-transform: capitalize;
	padding-top: 10px;
}

.techno_wrap_item img {
	max-width: 100%;
	margin: 0 auto;
	height: 70px;
	width: auto;
}

/* footer */

.footer {
    background: rgb(240, 240, 240);
}

.footerBtm {
    padding: 19px;
    border-top: 1px solid #cccdcf;
}

.footerTop {
    padding: 76px 0 48px;
}

.footer_logo {
    width: 590px;
}

.footer_content ul {
    margin: 0;
    padding: 0;
}

.footer_content li {
    list-style: none;
}

.footer_content li a {
    font-size: 16px;
    color: var(--blacktint1);
    display: inline;
}

.footer_content li a:hover,
.footerBtm__cntnt ul li a:hover {
    color: var(--primaryColor);
}

.footer_title {
    margin-bottom: 20px;
}

.social_media-links {
    display: flex;
    align-items: center;
    padding-top: 13px;
}

.social_media-links .link {
    margin-right: 20px;
}

.social_media-links .link i {
    color: var(--black);
    font-size: 22px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.social_media-links .link:hover i {
    color: var(--primaryBtn);
}

.footerBtm__cntnt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
}

.footerBtm__cntnt ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerBtm__cntnt ul li a {
    color: inherit;
}

.footerBtm__cntnt ul li {
    position: relative;
    padding-left: 13px;
}

.footerBtm__cntnt ul li::before {
    content: "|";
    position: absolute;
    left: 5px;
}

.footerBtm__logo {
    display: none;
}


/* footer */


