@charset "utf-8";
/* CSS Document */

/*---------- Google Fonts ----------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
	font-family: "Poppins", serif;;
	background-color: #fff;
	color: #161616;
}

figure {
	margin: 0;
}

a,
input,
button,
textarea {
	outline: none !important;
}

a {
	text-decoration: none;
	transition: all ease-in-out 300ms;
	-webkit-transition: all ease-in-out 300ms;
	-ms-transition: all ease-in-out 300ms;
	-o-transition: all ease-in-out 300ms;
	-moz-transition: all ease-in-out 300ms;
}

.container-fluid,
.container {
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

.row>* {
	padding-left: 15px;
	padding-right: 15px;
}

p {
	font-family: inherit;
	font-size: 18px;
	line-height: 30px;
	color: inherit;
}
p a {
	text-decoration: none;
	color: inherit;
}

p a:hover {
	text-decoration: none;
	color: #325288;
}

ul {
	list-style-type: none;
}

ul li,
ol li {
	font-size: 24px;
	line-height: 36px;
	color: #3A3A3A;
}

ul li a,
ol li a {
	text-decoration: none;
	color: inherit;
}

ul li a:hover,
ol li a:hover {
	text-decoration: none;
	color: #325288;
}

h1 {
	font-size: 74px;
	line-height: 112px;
	font-weight: 600;
}

h2 {
	font-size: 74px;
	line-height: 88px;
	font-weight: 500;
}

h3 {
	font-size: 56px;
	line-height: 84px;
	font-weight: 600;
}

h4 {
	font-size: 48px;
	line-height: 72px;
	font-weight: 600;
}

h5 {
	font-size: 32px;
	line-height: 48px;
	font-weight: 500;
}

h6 {
	font-size: 21px;
	line-height: 40px;
	font-weight: 400;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-control:focus {
	box-shadow: none;
	border-color: transparent;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

textarea
{
   resize: none;
}

/* Common Define */
.main-title *,.section-title *,.block-title *,.detail * { font-size: inherit; line-height: inherit; font-family: inherit; font-weight: inherit; margin: 0; }

.main-title {
	font-size: 56px;
	font-weight: 700;
	line-height: 139.286%;
}

.section-title {
	color: #000;
	font-size: 38px;
	font-weight: 700;
	line-height: 142.105%;
}

.block-title {
	color: #000;
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
}

.detail {
	color: #AAA;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}

/* buttons */

.btn {
	font-size: 14px;
	font-weight: 600;
	line-height: normal;
	padding: 15px 18px;
	color: #fff;
	border: 1px solid transparent;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
}

.btn-border {
	color: #fff;
	border-color: #fff;
	background-color: transparent;
}

.btn-border:hover {
	background-color: #fff;
	color: #325288;
}

.btn-white {
	background-color: #fff;
	color: #325288;
	padding: 15px 30px;
}

.btn-white:hover {
	background-color: transparent;
	border-color: #fff;
	color: #fff;
}

.btn-blue {
	background-color: #325288;
	border-radius: 80px;
	-webkit-border-radius: 80px;
	-moz-border-radius: 80px;
	-ms-border-radius: 80px;
	-o-border-radius: 80px;
}

.btn-blue:hover {
	background-color: transparent;
	border-color: #325288;
}

/* buttons */


/*==================================================================*/
/*========== Header Start ==========*/
/*==================================================================*/

.navbar-nav .nav-item .nav-link {
	position: relative;
	color: #161616;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	padding: 0;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.navbar-nav .nav-item .nav-link::before {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #325288;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.navbar-nav .nav-item .nav-link:hover:before {
	width: 100%;
	right: 0;
}

.navbar-nav .nav-item .nav-link:active,
.navbar-nav .nav-item .nav-link:hover {
	color: #325288;
}

.navbar-nav .nav-item:not(:last-child) {
	padding-right: 100px;
}

.navbar-nav .nav-item:nth-last-child(-n+2) .nav-link {
    color: #fff;
}

.navbar-nav .nav-item:nth-last-child(-n+2) .nav-link::before {
    content: "";
	background-color: #fff;
}

.navbar {
	padding: 26px 0;
}

.header-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 42px;
}

.header-btn a {
	display: block;
}

.navbar-brand {
	padding: 0;
	margin: 0;
	position: relative;
	top: 5px;
}

.navbar-nav {
	padding: 0 157px 0 0;
}

/*==================================================================*/
/*========== Header End ==========*/
/*==================================================================*/



/*==================================================================*/
/*========== New Class Add Start ==========*/
/*==================================================================*/

/* Banner */

.banner-img img {
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.banner-img {
	position: relative;
	background: #FFF;
	/* box-shadow: -5px 3px 20px 0px rgba(0, 0, 0, 0.12); */
	max-width: 497px;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
}

.banner-img::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9;
	border-radius: 0px 0px 30px 30px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 12.95%, rgba(0, 0, 0, 0.90) 87.05%);
	-webkit-border-radius: 0px 0px 30px 30px;
	-moz-border-radius: 0px 0px 30px 30px;
	-ms-border-radius: 0px 0px 30px 30px;
	-o-border-radius: 0px 0px 30px 30px;
}

.banner-img-text {
	position: absolute;
	bottom: 33px;
	right: auto;
	left: 31px;
	z-index: 9;
}

.banner-img-text .block-title {
	display: inline-block;
	background-color: #325288;
	padding: 8px 11px 6px;
	color: #FFF;
	font-size: 16px;
	font-weight: 700;
	line-height: 22px;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}

.banner-img-text .detail {
	color: #FFF;
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
	padding: 8px 0 0 0;
}

.banner-main {
	position: relative;
	padding: 100px 0 0 0;
}

.banner-main .banner-content {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.banner-main .banner-right .row {
	justify-content: flex-end;
	margin: 0;
}

.banner-right .row >* {
	padding: 0;
}

.banner-main::before {
	content: "";
	position: absolute;
	top: -110px;
	bottom: 0;
	right: 0;
	left: auto;
	width: 47%;
	height: auto;
	/* height: 1030px; */
	background-color: #325288;
	z-index: -1;
}

.banner-right {
	padding: 0 0 45px 0;
}

.banner-slider .slick-track {
    display: flex !important;
}

.banner-slider .slick-slide {
    height: inherit !important;
}

.banner-block {
	margin-right: 30px;
}

.banner-slider .slick-list {
	padding: 0 45% 0 0;
}

.banner-slider .slick-dots {
	list-style-type: none;
	padding: 58px 0 0 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 45px;
}

.banner-slider .slick-dots li button {
	background-color: transparent;
	border: none;
	padding: 0;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 22px;
	color: #fff;
	opacity: 0.3;
}

.banner-slider .slick-dots .slick-active button {
	opacity: 1;
}

.banner-slider .slick-dots li {
	position: relative;
	font-family: inherit;
	line-height: inherit;
	font-size: inherit;
}

.banner-slider .slick-dots li.slick-active::before {
	opacity: 1;
}

.banner-slider .slick-dots li::before {
	content: "";
	position: absolute;
	top: 50%;
	right: -37px;
	width: 29px;
	height: 2px;
	background-color: #fff;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	opacity: 0;
}

.banner-left .detail {
	padding: 25px 0 50px;
}

.banner-left .btn {
	max-width: 180px;
	width: 100%;
}

.banner-list {
	padding: 100px 0 0 ;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	max-width: 655px;
	width: 100%;
}

.banner-list li:not(:last-child) {
	padding-right: 35px;
}

.banner-list li {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 22px; /* 137.5% */
}

.banner-list li .icon-banner {
	flex: 0 0 46px;
	height: 46px;
	background-color: rgb(50, 82, 136,0.1);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	margin-right: 13px;
}

.banner-slider {
	opacity: 0;
}

.banner-slider.slick-initialized {
	opacity: 1;
}

/* Banner */

/* common-title */

.common-title {
	text-align: center;
	padding: 0 0 30px;
	margin: 0 auto;
}

.common-title .section-title {
	padding: 0 0 20px;
}

/* common-title */

/* why-choose-us-wrp */

.why-choose-us-wrp {
	padding: 120px 0;
}

.why-choose-us-main .common-title {
	max-width: 620px;
	width: 100%;
}

.why-choose-us-block .detail {
	max-width: 260px;
	width: 100%;
	margin: 0 auto;
}

.why-choose-us-block {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 424px;
	min-height: 478px;
	width: 100%;
	border-radius: 30px;
	background: #FFF;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	margin: 0 auto;
}

.why-choose-us-block:hover {
	box-shadow: 0px 28px 49px 0px rgba(0, 0, 0, 0.14);
}

.choose-us-img {
	padding: 0 0 40px;
}

.why-choose-us-section {
	padding: 60px 0 0 0;
}

.why-choose-us-block .block-title {
	padding: 0 0 10px;
}

/* why-choose-us-wrp */

/* pick-your-industry */

.pick-your-industry-slider {
	opacity: 0;
}

.pick-your-industry-slider.slick-initialized {
	opacity: 1;
}

.pick-your-industry-img {
	position: relative;
	height: 100%;
}

.pick-your-industry-img figure {
	width: 100%;
	height: 100%;
}

.pick-your-industry-img img {
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.pick-your-industry-img::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #325288;
	opacity: 0.6;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.pick-your-industry-block .block-title {
	font-size: 38px;
	line-height: 45px;
	color: #fff;
	padding: 0 0 20px;
}

.pick-your-industry-block {
	text-align: center;
}

.pick-your-industry-block .detail {
	color: #FFF;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px; /* 150% */
}

.pick-your-industry-slider {
	width: 505px;
	position: absolute !important;
	top: 50%;
	left: 50%;
	z-index: 9;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	text-align: center;
}

.pick-your-industry-slider .slick-dots {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	width: 100%;
	margin: 0;
	padding: 0;
	bottom: -289px;
}

.pick-your-industry-slider .slick-dots li button {
	display: none;
}

.pick-your-industry-slider .slick-dots li.slick-active {
	opacity: 1;
}

.pick-your-industry-slider .slick-dots li {
	width: 14px;
	height: 14px;
	opacity: 0.2;
	background-color: #fff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.pick-your-industry-wrp {
	padding: 120px 0;
}

.pick-block .block-title {
	font-size: 18px;
	font-weight: 600;
	line-height: 22px; /* 122.222% */
	color: #000;
	padding: 20px 0 25px;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.pick-block .arrow {
	line-height: 22px;
	flex: 0 0 28px;
	height: 28px;
	background-color: #325288;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	margin-left: 13px;
	position: relative;
	top: -1px;
}

.pick-block a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #325288;
	font-size: 14px;
	font-weight: 400;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.pick-block {
	cursor: pointer;
	padding: 43px 10px;
	text-align: center;
	background-color: #fff;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.pick-your-industry-list .row {
	row-gap: 30px;
}

.pick-block:hover {
	background: #325288;
	box-shadow: 0px 6px 18px 0px rgba(0, 0, 0, 0.18);
}

.pick-block:hover .industry-icon svg path {
	fill: #fff;
}

.pick-block:hover .block-title {
	color: #fff;
}

.pick-block:hover a {
	color: #fff;
}

.pick-block:hover .arrow {
	background-color: #fff;
	color: #325288;
}

/* pick-your-industry */

/* trusted-by-logo */

.trusted-by-logo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1385px;
	width: 100%;
	margin: 0 auto; 
}

.trusted-by-wrp {
	padding: 120px 0;
}

.trusted-by-img {
	width: 100%;
	height: auto;
	text-align: center;
}

.trusted-by-img img {
	margin: 0 auto;
}

/* trusted-by-logo */

/* our-process */

.our-process-wrp .common-title {
	max-width: 760px;
	width: 100%;
	margin: 0 auto;
}

.our-process-wrp {
	padding: 120px 0;
}

.our-process-section {
	padding: 30px 0 0 0;
}

.our-process-section .row >*:last-child .our-process-top::before {
	display: none;
}

.our-process-top::before {
	content: "";
	position: absolute;
	top: 50%;
	right: -100%;
	width: 100%;
	border: 1px dashed #325288;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.our-process-top {
	max-width: 236px;
	width: 100%;
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	height: 236px;
	border-radius: 20px;
	border: 1px dashed #325288;
	background: #FFF;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	margin-bottom: 25px;
}

.our-process-icon {
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	background: rgb(50, 82, 136,0.1);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.our-process-wrp .row {
	counter-reset: process-counter; /* Initialize the counter */
}

.our-process-top h6 {
	position: absolute;
	top: 18px;
	left: 18px;
}

.our-process-block .detail {
	padding: 5px 0 0 ;
	color: #AAA;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px; /* 150% */
}

.our-process-block {
	max-width: 370px;
}
  
.our-process-top h6::before {
	counter-increment: process-counter;
	content: "0" counter(process-counter);
	color: #000;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	opacity: 0.2;
	line-height: 28px; /* 87.5% */
}

/* our-process */

/* our-testimonials-wrp */

.our-testimonials-wrp .common-title {
	max-width: 660px;
	width: 100%;
	margin: 0 auto;
}

.our-testimonials-wrp {
	padding: 120px 0;
}

.our-testimonials-section {
	max-width: 1386px;
	width: 100%;
	margin: 15px auto 0;
	padding: 95px 10px;
	border-radius: 30px;
	background: #F9F9F9;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
}

.our-testimonials-left {
	display: flex !important;
	justify-content: flex-start;
	align-items: center;
}

.our-testimonials-left img {
	width: 83px;
	height: 83px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	margin-right: 25px;
}

.our-testimonials-left.top-side {
	padding: 24px 37px;
	border-radius: 10px;
	background: #FFF;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	max-width: 550px;
}

.our-testimonials-left h4 {
	color: #000;
	font-size: 22px;
	font-weight: 600;
	line-height: normal;
	margin: 0;
}

.our-testimonials-left p {
	margin: 0;
	padding: 9px 0 0 0;
	color: #AAA;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.our-testimonials-right .detail {
	padding: 40px 0 0 0;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 28px; /* 175% */
}

.max-1111 {
	max-width: 1111px;
	width: 100%;
	margin: 0 auto;
}

.our-testimonials-right ul {
	margin: 0;
	padding: 5px 0 0 0;
	list-style-type: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 3px;
}

.our-testimonials-right ul li {
	color: #FFC107;
	font-size: inherit;
	line-height: inherit;
}

.our-testimonials-right {
	max-width: 452px;
	width: 100%;
	margin: 0 0 0 auto;
}

.our-testimonials-user .our-testimonials-left {
	opacity: 0.2;
	cursor: pointer;
	justify-content: center;
}

.our-testimonials-user .slick-track .our-testimonials-left:first-child {
	justify-content: flex-start;
}

.our-testimonials-user .slick-track .our-testimonials-left:last-child {
	justify-content: flex-end;
}

.our-testimonials-user .slick-list {
	padding: 0 !important;
}

.our-testimonials-user .our-testimonials-left.slick-current {
	opacity: 1;
}

.our-testimonials-bottom {
	padding: 67px 0 0 0;
}

.our-testimonials-right {
	padding: 0 0 35px 0;
	border-bottom: 2px solid rgba(196, 196, 196, 0.2);
}

.our-testimonials-user,
.our-testimonials-top-slider {
	opacity: 0;
}

.our-testimonials-user.slick-initialized,
.our-testimonials-top-slider.slick-initialized {
	opacity: 1;
}

/* our-testimonials-wrp */

/*==================================================================*/
/*========== New Class Add End ==========*/
/*==================================================================*/


/*==================================================================*/
/*========== Footer Start ==========*/
/*==================================================================*/

.footer-top {
	background-color: #1E2021;
	padding: 97px 0;
}

.footer-logo {
	padding: 0 0 20px;
}

.footer-main h5 {
	color: #FFF;
	font-size: 18px;
	font-weight: 600;
	line-height: 22px; /* 122.222% */
	margin: 0 0 16px;
}

.footer-main p {
	max-width: 435px;
	margin: 0 0 25px;
	width: 100%;
	color: #FFF;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px; /* 171.429% */
}

.footer-main .contact {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.footer-main .contact li:first-child {
	padding-left: 0;
}

.footer-main .contact li:last-child {
	padding-right: 0;
}

.footer-main .contact li {
	position: relative;
	padding: 0 20px;
	/* font-size: inherit; */
	line-height: inherit;
}

.footer-main .contact li:last-child:before {
	display: none;
}

.footer-main .contact li::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 2px;
	height: 100%;
	background-color: #fff;
}

.footer-main ul {
	padding: 0 0 15px;
	margin: 0;
}

.footer-main ul li {
	color: #FFF;
	font-size: 14px;
	font-weight: 400;
	line-height: 36px; /* 257.143% */
}

.footer-main .social-contact {
	padding: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
}

.footer-logo a {
	display: inline-block;
}

.footer-main .social-contact li {
	width: 22px;
	height: 22px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.footer-main .social-contact li:hover {
	opacity: 0.5;
}

.footer-main .row >*:nth-child(2) {
	padding: 0 0 0 70px;
}

.footer-main .row >*:nth-child(3) {
	padding: 0 0 0 170px;
}

.footer-main .row >*:nth-child(4) {
	padding: 0 0 0 210px;
}

.footer-bottom {
	background-color: #325288;
	padding: 34px 0;
}

.footer-bottom a:hover {
	color: #161616;
}

.footer-bottom ul li:first-child {
	padding-left: 0;
}

.footer-bottom ul li:last-child::before {
	display: none;
}

.footer-bottom ul li:last-child {
	padding-right: 0;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom ul li::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 15px;
	background-color: #fff;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.footer-bottom ul li {
	padding: 0 7px;
	position: relative;
	font-size: inherit;
	line-height: 0;
}

.footer-bottom ul li a {
	color: #FFF;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px; /* 157.143% */
}

.footer-bottom ul {
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-bottom p {
	color: #FFF;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px; /* 157.143% */
}


/*==================================================================*/
/*========== Footer End ==========*/
/*==================================================================*/
