:root {
	--black: #000000;
	--dark: #022727;
    --semi-transparent-dark: rgba(0,0,0,0.3);
	--white: #fff;
    --grey: #efefef;
    --white-secondary: #d8e3f0;
    --transparent-white: rgba(255,255,255,0.01);
    --semi-transparent-white: rgba(255,255,255,0.3);
	--color-primary: #00af9e;
    --color-primary-lite: #00cdb9;
	--color-secondary: #005758;
    --color-secondary-lite: #017778;
	--color-paragraph: #666666;
}
html {
    background-color: var(--dark)
}
body {
    margin: 0;
    padding: 0;
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    line-height: 1.8;
}
a, button {
    color: var(--color-primary);
    text-decoration: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
a:hover {
    text-decoration: none;
    color: var(--color-primary);
}
button:hover,
button:focus {
    outline: none;
}
.a-button {
    display: inline-block;
    background: var(--color-primary);
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    color: var(--white);
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: none !important;
    border: none;
}
.a-button:after {
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: inherit;
    left: -5%;
    content: "";
    height: 150px;
    width: 115%;
    z-index: -1;
    background-color: var(--color-secondary);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-transform: translateY(-45%) skew(25deg) scale(0);
    transform: translateY(-45%) skew(25deg) scale(0);
}
.a-button.a-button-bg-dark:after {
    background-color: var(--white);
}
.a-button:hover {
    color: var(--white);
}
.a-button:hover:after {
    -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
    transform: translateY(-45%) skew(25deg) scale(1.2);
}
.a-button.a-button-bg-dark:hover {
    color: var(--dark);
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
p {
    font-size: 16px;    
    line-height: 1.8;
}
img {
    max-width: 100%;
    width: 100%;
}
.form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--color-primary);
}
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-primary:hover,
.btn-primary:active {
    background-color: var(--color-primary-lite);
    border-color: var(--color-primary-lite);
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
    background-color: var(--color-primary-lite);
    border-color: var(--color-primary-lite);
    box-shadow: none;
}
.btn-primary:active:focus,
.btn-secondary:active:focus {
    box-shadow: none;
}
.btn-secondary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.btn-secondary:hover,
.btn-secondary:active {
    background-color: var(--color-secondary-lite);
    border-color: var(--color-secondary-lite);
}
.btn-check:focus+.btn-secondary, .btn-secondary:focus {
    background-color: var(--color-secondary-lite);
    border-color: var(--color-secondary-lite);
    box-shadow: none;
}
.form-select:focus {
    box-shadow: none;
    border-color: var(--color-primary);
}
header {
    position: sticky;
    top: 0;
    z-index: 1020;
}
header .navSection {
    position: absolute;
    z-index: 10;
    background: transparent;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    padding: 1rem;
}
header .navSection.fixedHeader {
    background: var(--white);
    box-shadow: rgba(0, 0, 0, 0.05) 2px 2px 20px;
}
.navSection .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
}
.navSection .navbar-brand img {
    height: 50px;
    width: auto;
    transition: all 0.5s linear;
}
.navSection .navbar-brand img.logo-lite {
    opacity: 1;
}
.navSection.fixedHeader .navbar-brand img.logo-lite {
    opacity: 0;
}
.navSection .navbar-brand img.logo-dark {
    opacity: 0;
    position: absolute;
    left: 0;
}
.navSection.fixedHeader .navbar-brand img.logo-dark {
    opacity: 1;
}
.navSection .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    position: relative;
    padding-right: 1rem;
    padding-left: 1rem;
    position: relative;
}
.navSection.fixedHeader .navbar-nav .nav-link {
    color: var(--dark);
}
.navSection .navbar-nav .nav-link:hover,
.navSection .navbar-nav .nav-link.active {
    color: var(--color-primary);
}
header .customToggler:focus {
    outline: none;
    box-shadow: none;
}
header .customToggler .navbar-toggler-icon {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--color-primary);
}
header .customToggler .navbar-toggler-icon.active {
    background: none;
}
header .customToggler .navbar-toggler-icon:before,
header .customToggler .navbar-toggler-icon:after {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--color-primary);
    position: absolute;
    left: 0;
    transition: all 0.15s ease-out;
}
header .customToggler .navbar-toggler-icon.active:before {
    top: 0;
    transform: rotate(45deg);
    background: var(--color-primary);
}
header .customToggler .navbar-toggler-icon.active:after {
    top: 0;
    transform: rotate(135deg);
    background: var(--color-primary);
}
header .customToggler .navbar-toggler-icon:before {
    top: -7px;
}
header .customToggler .navbar-toggler-icon:after {
    bottom: -7px;
}
header .navSection .quick-contact {
    line-height: 1;
}
header .navSection .quick-contact a {
    border-radius: 30px;
    line-height: 1.8;
    white-space: nowrap;
}
header .navSection.fixedHeader .quick-contact a {
    padding: 7px 20px;
}
.bannerSlider {
    position: relative;
}
.bannerSlider .bannerItem {
    position: relative;
}
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.3, 1.3);
  }
}
@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.3, 1.3);
  }
}
.bannerSlider .owl-item.active .bannerItem > img {
    -webkit-animation: zoom 30s;
    animation: zoom 30s;
}
.bannerSlider .bannerContent {
    display: none;
    width: calc(50% - 60px);
    padding: 25px;
    z-index: 4;
    position: absolute;
    top: 40%;
    left: 60px;
    border-radius: 5px;
    /* background-image: linear-gradient(to right, var(--color-secondary), var(--transparent-white)); */
}
.bannerSlider .bannerContent .coverText h1 {
    font-weight: 500;
    margin: 0px;
    font-size: 46px;
    margin-bottom: 15px;
    color: var(--white);
}
.bannerSlider .bannerContent .coverText p {
    line-height: 26px;
    font-size: 16px;
    letter-spacing: 0px;
    font-weight: 400;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
    color: var(--white);
}
.bannerSlider .bannerContent .coverText a {
    border-radius: 30px;
}
.bannerSlider .owl-nav button:hover {
    background: var(--color-primary)!important;
}
.bannerSlider .owl-nav .owl-prev {
    width: 50px;
    height: 50px;
    text-align: center;
    color: var(--white)!important;
    background-color: var(--color-secondary-lite)!important;
    border-radius: 50%;
    position: absolute;
    font-size: 24px;
    top: 50%;
    left: 30px;
    transform: translate(-30px, -50%);
}
.bannerSlider .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    text-align: center;
    color: var(--white)!important;
    background-color: var(--color-secondary-lite)!important;
    border-radius: 50%;
    position: absolute;
    font-size: 24px;
    top: 50%;
    right: -30px;
    transform: translate(-30px, -50%);
}
.bannerSlider .owl-nav .owl-next i,
.bannerSlider .owl-nav .owl-prev i {
    font-size: 24px;
}
.show {
    display: block!important;
}
.show-inline {
    display: inline-block!important;
}
.bannerSlider.owl-theme .owl-dots {
    display: block;
    position: absolute;
    width: 100%;
    bottom: 10px;
    text-align: center;
    margin-top: 0px;
    cursor: pointer;
}
.bannerSlider.owl-theme .owl-dots .owl-dot.active span, 
.bannerSlider.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--color-primary);
}
.home-subtitle {
    text-transform: uppercase;
    color: var(--color-heading);
    font-weight: 500;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 1px solid #b3b1b1;
    padding: 7px 15px;
    font-size: 18px;
    border-radius: 4px;
    margin-bottom: 15px;
}
.home-title {
    font-weight: 600;
    font-size: 55px;
    margin-bottom: 25px;
}
.aboutSection {
    padding-top: 120px;
    padding-bottom: 120px;
}
.aboutSection .about-img {
    position: relative;
    padding-bottom: 30px;
    z-index: 2;
    padding-left: 50px;
    padding-right: 50px;
}
.aboutSection .about-img img {
    border-radius: 7px;
}
.aboutSection .about-img img:nth-child(2) {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 50%;
}
.aboutSection .about-list {
    position: relative;
    z-index: 1;
    padding-top: 10px;
    margin-top: 35px;
}
.aboutSection .about-list li {
    position: relative;
    padding-left: 55px;
    margin-top: 30px;
}
.aboutSection .about-list li h4 {
    font-size: 20px;
}
.aboutSection .about-list li::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "\f00c";
    font-family: "FontAwesome";
    height: 35px;
    width: 35px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary-lite) 100%);;
    text-align: center;
    line-height: 35px;
    color: var(--white);
    border-radius: 50%;
}
.serviceSection {
    padding-top: 120px;
    padding-bottom: 120px;
    background-image: url('../images/service-bg.png');
    background-position: center center !important;
    background-size: cover !important;
    background-color: var(--grey);
}
.serviceSection .serviceWidget .serviceDes {
    padding: 50px;
    background-color: var(--white);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.serviceSection .serviceWidget .serviceImg img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.serviceSection .serviceWidget .serviceDes .service-top {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px;
    margin-bottom: 20px;
}
.serviceSection .serviceWidget .serviceDes .service-top .service-icon {
    flex: 0 0 75px;
}
.serviceSection .serviceWidget .serviceDes .service-top .service-icon img {
    width: 75px;
    height: 75px;
}
.serviceSection .serviceWidget .serviceDes .service-top h4 {
    font-size: 20px;
}
.serviceSection .serviceWidget .serviceDes .service-top h4 a {
    color: var(--color-secondary);
}
.serviceSection .serviceWidget .serviceDes .service-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-size: 15px;
}
.serviceSection .serviceWidget .serviceDes .service-icon-btn .service-button-icon {
    background: var(--color-secondary);
    height: 35px;
    width: 35px;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    max-width: max-content;
    min-width: 35px;
    transition: all 0.25s ease-in-out;
    transform: rotate(-45deg);
}
.serviceSection .serviceWidget .serviceDes .service-icon-btn .service-button-icon img {
    width: auto;
    height: 15px;
    position: relative;
    top: 1px;
    margin: 0;
}
.serviceSection .serviceWidget .serviceDes .service-icon-btn:hover .service-button-icon {
    background: var(--color-primary);
    transform: rotate(0deg);
}
.service-detail-page img {
    height: 400px;
    object-fit: cover;
    object-position: top;
}
.whySection {
    padding-top: 120px;
    padding-bottom: 120px;
    background-image: url('../images/why-choose-bg.jpg');
    background-position: center center !important;
    background-size: cover !important;
    position: relative;
}
.whySection::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--semi-transparent-dark);
    z-index: 1;
}
.whySection .choose-us-item {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}
.whySection .choose-us-item:last-child,
.whySection .choose-us-item:last-child p {
    margin-bottom: 0;
}
.whySection .choose-us-item .icon {
    height: 75px;
    width: 75px;
    text-align: center;
    line-height: 70px;
    background: var(--color-primary);
    min-width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: max-content;
    padding: 15px;
    border-radius: 50%;
    border: 1px solid var(--semi-transparent-white);
}
.whySection .choose-us-item .info h4 {
    color: var(--white);
    font-size: 20px;
}
.whySection .choose-us-item .info p {
    color: var(--white);
}
.happy-cutomers {
    text-align: center;
    background: var(--semi-transparent-dark);
    padding: 50px;
    border: 1px solid var(--semi-transparent-white);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 275px;
    margin: 0 auto;
}
.happy-cutomers h2 {
    font-size: 70px;
}
.happy-cutomers h2,
.happy-cutomers h5 {
    color: var(--white);
}
.testimonialSection {
    padding-top: 120px;
    padding-bottom: 120px;
    background-image: url('../images/testimonial-bg.png');
    background-position: center center !important;
    background-size: cover !important;
}

.testiItem .testiImg {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    border-top: 10px solid var(--color-primary);
    border-left: 10px solid var(--dark);
    border-right: 10px solid var(--dark);
    border-bottom: 10px solid var(--color-primary);
    display: inline-block;
    overflow: hidden;
    margin-bottom: 30px;
}
.testiItem .testiImg img {
    border: 3px solid var(--white);
    border-radius: 50%;
}
.testiItem .rating .stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 30px;
    margin-top: 30px;
}
.testiItem .rating .stars i {
    display: inline-block;
    height: 25px;
    width: 25px;
    line-height: 25px;
    background: var(--color-primary);
    color: var(--white);
    font-size: 14px;
    border-radius: 3px;
}
.testiItem .text {
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 25px;
}
.testiItem .info .name {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-secondary);
}

.breadcrumbSection {
    padding: 120px 0;
    background-image: url(../images/page-banner.jpg);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.breadcrumbSection h1 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 60px;
}
.breadcrumb {
    background: transparent none repeat scroll 0 0;
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    margin-top: 20px;
}
.breadcrumb li {
    padding-right: 20px;
    position: relative;
    display: inline-block;
    z-index: 1;
    font-size: 18px;
    color: var(--white);
}
.breadcrumb li:after {
    content: "\f105";
    font-family: "FontAwesome";
    font-weight: 500;
    right: 5px;
    position: absolute;
    line-height: 0;
    top: 50%;
    font-size: 14px;
    color: var(--white);
    margin-top: 2px;
}
.breadcrumb li:last-child::after {
    display: none;
}
.breadcrumb li a {
    color: var(--white);
}
.newsSection {
    padding-top: 120px;
    padding-bottom: 120px;
}
.blog-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 30px;
}
.blog-item .thumb img {
    width: 100px;
    min-width: 100px;
    border-radius: 5px;
}
.blog-item .info .blog-meta {
    margin: 0 0 5px 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 10px;
}
.blog-item .info .blog-meta i {
    font-weight: 100;
    margin-right: 3px;
}
.blog-item .info h4 {
    margin: 0 0 10px 0;
    font-size: 24px;
}
.about-page {
    padding: 120px 0;
}
.abt-page-img {
    display: flex;
    height: 100%;
}
.abt-page-img img {
    object-fit: cover;
    border-radius: 4px;
}
.ap-section-2 {
    background-image: url(../images/ab-section-2.png);
    background-color: var(--color-secondary);
    color: var(--white);
}
.ap-title {
    margin-bottom: 50px;
}
.vm-title {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
}
.vm-title:after {
    position: absolute;
    left: 0px;
    top: 5px;
    bottom: 5px;
    content: "";
    width: 4px;
    background: var(--color-primary);
    border-radius: 30px;
}
.process-item {
    text-align: center;
}
.process-item .process-icon {
    background: var(--color-secondary);
    height: 200px;
    width: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    transition: all 0.35s ease-in-out;
    padding: 60px;
    clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
}
.process-item:hover .process-icon {
    background: var(--color-primary);
}
.process-item .process-no {
    display: block;
    height: 45px;
    width: 45px;
    background: var(--color-secondary);
    line-height: 45px;
    color: var(--white);
    border-radius: 50%;
    margin-bottom: 30px;
    transition: all 0.35s ease-in-out;
    margin: 20px auto;
}
.process-item:hover .process-no {
    background-color: var(--color-primary);
}
.process-item .process-des h4 {
    font-size: 1.4rem;
    letter-spacing: 0;
    margin: 0;
    margin-bottom: 10px;
}
.process-item .process-des h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.process-item .process-des ul li {
    padding: 5px 0;
}
.process-item .process-des ul li span {
    position: relative;
    padding: 5px 0;
    border-bottom: 1px dashed;
}
.process-item .process-des ul li span:before {
    position: absolute;
    top: 0;
    left: -15px;
    font-family: 'FontAwesome';
    content: '\f105';
    color: var(--color-primary);
}
.services-page {
    padding-top: 120px;
    padding-bottom: 120px;
}
.contact-page {
    padding-top: 120px;
    padding-bottom: 120px;
    background-image: url(../images/testimonial-bg.png);
}
.contact-form-widget {
    padding: 80px 50px;
    background: var(--white);
    box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
}
.contact-form-widget h2 {
    font-size: 36px;
    margin-bottom: 25px
}
.contact-form .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid #cccccc;
    border-radius: 0;
    padding-left: 0;
    box-shadow: none !important;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form textarea {
    height: 150px;
}
.privacy ul {
    list-style: disc;
    padding: revert;
    margin: revert;
}



.callbackBtn.right {
    left: auto;
    right: 30px;
}
.callbackBtn {
    left: 5%;
    bottom: 30px;
    position: fixed;
    z-index: 999;
    transition: ease-in-out 250ms;
}
.callbackBtn a {
    width: 56px;
    height: 56px;
    padding-left: 5px;
    left: 0 !important;
    bottom: 0 !important;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    border-radius: 50%;
    display: block;
    background: #25d366;
    text-align: center;
}
.callbackBtn a img {
    max-width: 32px;
    padding-top: 12px;
}
.callbackBtn a:hover {
    -webkit-animation: buttonizer-hello 2s linear;
    animation: buttonizer-hello 2s linear; 
}
@-webkit-keyframes buttonizer-hello {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	10%,
	20% {
		-webkit-transform: scale(0.9) rotate(-8deg);
		transform: scale(0.9) rotate(-8deg);
		opacity: 1;
	}
	30%,
	50%,
	70% {
		-webkit-transform: scale(1.3) rotate(8deg);
		transform: scale(1.3) rotate(8deg);
		opacity: 1;
	}
	40%,
	60% {
		-webkit-transform: scale(1.3) rotate(-8deg);
		transform: scale(1.3) rotate(-8deg);
		opacity: 1;
	}
	100%,
	80% {
		-webkit-transform: scale(1) rotate(0);
		transform: scale(1) rotate(0);
	}
}
@keyframes buttonizer-hello {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
	10%,
	20% {
		-webkit-transform: scale(0.9) rotate(-8deg);
		-ms-transform: scale(0.9) rotate(-8deg);
		transform: scale(0.9) rotate(-8deg);
		opacity: 1;
	}
	30%,
	50%,
	70% {
		-webkit-transform: scale(1.3) rotate(8deg);
		-ms-transform: scale(1.3) rotate(8deg);
		transform: scale(1.3) rotate(8deg);
		opacity: 1;
	}
	40%,
	60% {
		-webkit-transform: scale(1.3) rotate(-8deg);
		-ms-transform: scale(1.3) rotate(-8deg);
		transform: scale(1.3) rotate(-8deg);
		opacity: 1;
	}
	100%,
	80% {
		-webkit-transform: scale(1) rotate(0);
		-ms-transform: scale(1) rotate(0);
		transform: scale(1) rotate(0);
	}
}
footer {
    background-color: var(--dark);
    color: var(--white-secondary);
}
.f-items {
    padding: 70px 0 110px 0;
}
.f-item .widget-title {
    margin-bottom: 30px;
}
.f-item p {
    line-height: 1.8;
    margin: 0 0 25px;
}
.f-item.about {
    position: relative;
    padding-right: 50px;
    z-index: 1;
}
.f-item.about:after {
    position: absolute;
    right: 0;
    top: -70px;
    height: 215%;
    content: "";
    width: 400%;
    background: var(--color-secondary);
    z-index: -1;
    border-right: 1px solid var(--semi-transparent-white);
}
.f-item.about .footer-logo img {
    height: 100px;
    width: auto;
    margin-bottom: 30px;
}
.f-item.about ul.footer-social {
    display: flex;
    align-items: center;
    padding: 0;
    list-style: none;
    margin-bottom: 0;
    gap: 12px;
}
.f-item.about ul.footer-social li {
    display: inline-block;
}
.f-item.about ul.footer-social li a {
    display: inline-flex;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-radius: 50%;
    background: var(--color-secondary-lite);
    color: var(--white);
}
.f-item.about ul.footer-social li a:hover {
    background: var(--color-primary);
}
.f-item.link li {
    margin-top: 15px;
}
.f-item.link li a {
    color: var(--white-secondary);
}
.f-item.link li a:hover {
    color: var(--white);
}
.f-item.reach li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}
.f-item.reach li i {
    background: var(--color-primary);
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
}
.contact-form-widget .f-item.reach li i {
    color: var(--white);
}
.f-item.reach li h5 {
    font-weight: 400;
    margin-bottom: 0;
}
.f-item.reach li a {
    color: var(--white-secondary);
}
.contact-form-widget .f-item.reach li a {
    color: var(--dark);
}
.footer-bottom {
    border-top: 1px solid var(--semi-transparent-white);
    padding: 20px 0;
}