@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');


/* -----------------------------------
    General CSS
-------------------------------------*/
html,
body {
	font-size: 16px;
	color: #454545;
	font-family: 'Montserrat', sans-serif;
	vertical-align: baseline;
	line-height: 1.7;
	font-weight: 400;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
}

p {
	margin: 0 0 26px;
	line-height: 1.5;
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	color: #0a0a0a;
	margin: 0 0 26px;
	line-height: 1.2;
	letter-spacing: 0.05px;
}

h1 {
	font-size: 48px;
	line-height: 62px;
}

h2 {
	font-size: 36px;
	line-height: 50px;
}

h3 {
	font-size: 28px;
	line-height: 42px;
}

h4 {
	font-size: 26px;
	line-height: 36px;
}

h5 {
	font-size: 24px;
	line-height: 32px;
}

h6 {
	font-size: 20px;
	line-height: 28px;
}

.text-right {
	text-align: right;
}

.uppercase {
	text-transform: uppercase !important;
}

.capitalize {
	text-transform: capitalize !important;
}

.gray-bg {
	background: #ebebeb;
}

.gray-bg2 {
	background: #ededed;
}

.gray-bg3 {
	background: #f6f7f9;
}

.gray-bg4 {
	background: #f6f6f6;
}

.gray-bg5 {
	background: #f9f9f9;
}

.gray-bg6 {
	background: #f7f7f7;
}

.gray-bg7 {
	background: #fcfcfc;
}

.gray-bg8 {
	background: #e3f2fd;
}

.black-bg {
	background: #15161a;
}

.black-bg2 {
	background: #0c0b0b;
}

.black-bg3 {
	background: #201d1d;
}

.white-color {
	color: #ffffff !important;
}

.myd-center {
	display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

a {
	color: #018ae8;
	transition: all 0.3s ease;
	text-decoration: none;
	outline: none !important;
}

a:active,
a:hover {
	text-decoration: none;
	outline: 0 none;
	color: #018ae8;
}

ul {
	list-style: outside none none;
	margin: 0;
	padding: 0;
}

.clear {
	clear: both;
}

::-moz-selection {
	background: #018ae8;
	text-shadow: none;
	color: #ffffff;
}

::selection {
	background: #018ae8;
	text-shadow: none;
	color: #ffffff;
}

.offwrap {
	cursor: url(../images/close.png), auto;
	width: 100%;
	left: 100%;
	transition: all 0.8s ease-out 0s;
	position: fixed;
	background: #fff;
	height: 100vh;
	top: 0;
	bottom: 0;
	opacity: .6;
	z-index: 222;
}

body.nav-expanded .offwrap {
	left: 0%;
	transition: all 0.8s ease-out 0s;
}

.bg-unset {
	background: unset !important;
}

.rs-menu-toggle {
	color: #018ae8;
	text-align: right;
}

button {
	cursor: pointer;
}

.z-index-1 {
	position: relative;
	z-index: 1;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: none !important;
}

blockquote {
	margin: 35px 0px;
	padding: 40px 60px;
	color: #666;
	position: relative;
	background: rgba(0, 0, 0, 0.01);
	font-weight: normal;
	font-style: italic;
	text-align: left;
	clear: both;
	font-size: 20px;
	font-weight: 400;
	border-radius: 8px;
}

blockquote:before {
	content: "\f129";
	font-size: 35px;
	color: #0255a3;
	padding-bottom: 0;
	display: inline-block;
	font-family: flaticon;
	font-weight: 400;
	text-align: center;
	top: 0;
	background: 0 0;
	transform: rotate(180deg);
}

blockquote cite {
	font-size: 16px;
	display: block;
	margin-top: 10px;
}

blockquote cite:before {
	content: "";
	font-size: 28px;
	color: #ff5421;
	padding-bottom: 0px;
	display: inline-block;
	background: #018ae8;
	height: 2px;
	width: 40px;
	font-weight: 400;
	text-align: center;
	top: -4px;
	margin-right: 10px;
	position: relative;
}

.dots {
	list-style: disc;
	margin: 0 0 1.5em 3em;
}

.kt-carousel .owl-dots {
	text-align: center;
	margin-top: 50px;
}

.kt-carousel .owl-dots .owl-dot {
	width: 25px;
	height: 8px;
	display: inline-block;
	margin: 0 6px;
	padding: 3px 0;
	border-radius: 0;
	border: none;
	transition: all 0.3s ease;
	background: #b5b5b5;
	box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.25);
}

.kt-carousel .owl-dots .owl-dot:hover,
.kt-carousel .owl-dots .owl-dot.active {
	width: 40px;
	background: #033e6d;
	opacity: 1;
}

.carousel-indicators {
	margin: auto 30% 1rem 30%;
}

/* ------------------------------------
    Global Class CSS
---------------------------------------*/
.y-middle {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.y-bottom {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: flex-end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}

.project-item .vertical-middle {
	position: relative;
	z-index: 9;
}

.vertical-middle {
	display: table;
	height: 100%;
	width: 100%;
}

.vertical-middle-cell {
	display: table-cell;
	vertical-align: middle;
}

.readon2 {
	padding: 12px 35px 10px;
	border-radius: 30px;
	color: #ffffff !important;
	position: relative;
	display: inline-flex;
	align-items: center;
	background: #018ae8;
	text-align: center;
	cursor: pointer;
	font-size: 16px;
	outline: none;
	transition: all 0.3s ease !important;
}

.readon2 .btn-arrow {
	position: relative;
	width: 20px;
	height: 16px;
	overflow: hidden;
	margin-left: 11px;
}

.readon2 .btn-arrow:before,
.readon2 .btn-arrow:after {
	position: absolute;
	content: "\f114";
	font-family: Flaticon;
	top: 50%;
	transform: translateY(-50%);
	color: #ffffff;
	transition: all 0.3s ease;
}

.readon2 .btn-arrow:before {
	right: 1px;
}

.readon2 .btn-arrow:after {
	right: 22px;
}

.readon2:hover {
	color: #ffffff;
	background: #043d72;
}

.readon2:hover div:before,
.readon2:hover div:after {
	color: #e94d65;
}

.readon2:hover div:before {
	right: -20px;
}

.readon2:hover div:after {
	right: 1px;
}

.readon2.hover-light:hover {
	background: #ffffff;
	color: #e94d65 !important;
}

.readon2.hover-light:hover .btn-arrow:before,
.readon2.hover-light:hover .btn-arrow:after {
	color: #e94d65;
}

.left-line-v {
	position: relative;
	padding-left: 20px;
}

.left-line-v .draw-line.start-draw {
	position: absolute;
	content: '';
	left: 0;
	top: 3px;
	width: 4px;
	height: 0;
	background: #e94d65;
	animation: start-draw 1.5s ease forwards;
}

/*-- Submit Button Css --*/
.submit-btn, .kms-btn {
	outline: 0;
	border: none;
	padding: 10px 18px 10px 18px;
	border-radius: 3px;
	border: 1px solid #0255a3;
	display: inline-block;
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 600;
	color: #0255a3;
	background-color: #fff;
	transition: all .3s ease;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.submit-btn:hover {
	color: #fff;
	background-color: #0255a3;
}

.margin-remove {
	margin: 0 !important;
}

.no-gutter {
	margin-left: 0;
	margin-right: 0;
}

.no-gutter [class*="col-"] {
	padding-left: 0;
	padding-right: 0;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
	margin: 0;
}

.container-fluid {
    padding-left: 60px;
    padding-right: 60px;
}

.container-fluid2 {
	padding-left: 15px;
	padding-right: 15px;
}

.display-table {
	display: table;
	height: 100%;
	width: 100%;
}

.display-table-cell {
	display: table-cell;
	vertical-align: middle;
}

.relative {
	position: relative;
}

.pt-relative {
	position: relative !important;
}

.sub-text {
	font-weight: 700;
	margin: 0 0 10px;
	display: inline-block;
	color: #018ae8;
	line-height: 28px;
	font-size: 16px;
	text-transform: uppercase;
}

.desc {
	font-size: 16px;
}

.sec-title3 {
	position: relative;
}

.sec-title3 .sub-title {
	font-size: 18px;
	font-weight: 700;
	color: #018ae8;
	display: block;
	margin: 0 0 10px;
}

.sec-title3 .sub-title.paste-color {
	color: #4caf50;
}

.sec-title3 .sub-text {
	font-size: 16px;
	font-weight: 600;
	line-height: 28px;
	text-transform: uppercase;
	color: #fd4a36;
	margin: 0 0 10px;
	display: block;
	position: relative;
	padding-left: 107px;
}

.sec-title3 .sub-text:before {
	content: '';
	position: absolute;
	left: 0;
	top: 12px;
	height: 4px;
	width: 12px;
	border-radius: 2px;
	background-color: #fd4a36;
	transition: all .3s ease;
	z-index: 0;
}

.sec-title3 .sub-text:after {
	content: "";
	position: absolute;
	border: 0;
	height: 4px;
	width: 55px;
	z-index: 1;
	margin-left: 0;
	left: 24px;
	top: 12px;
	border-radius: 2px;
	background-color: #fd4a36;
	transition: all .3s ease;
	z-index: 0;
}

.sec-title3 .title {
	font-size: 40px;
	font-weight: 400;
	letter-spacing: 1px;
	color: #202020;	
}

.sec-title3 .heading-border-line {
	position: relative;
}

.sec-title3 .heading-border-line:before {
	content: "";
	width: 12px;
	height: 4px;
	background: #018ae8;
	position: absolute;
	bottom: -4px;
	left: 50%;
	margin-left: -35px;
	transform: translateX(-50%);
	border-radius: 2px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 1;
}

.sec-title3 .heading-border-line:after {
	content: "";
	width: 65px;
	height: 4px;
	background: #018ae8;
	position: absolute;
	bottom: -4px;
	right: 0;
	left: 50%;
	margin-left: -20px;
	border-radius: 2px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 0;
}

.sec-title3 .heading-border-line.left-style {
	position: relative;
	margin-left: 44px;
}

.sec-title3 .heading-border-line.left-style:before {
	left: 0;
}

.sec-title3 .heading-border-line.left-style:after {
	left: 0;
}

.sec-title3:hover .sub-text:before {
	width: 65px;
	background: #fd4a36;
}

.sec-title3:hover .sub-text:after {
	margin-left: 46px;
	width: 12px;
	background: #fd4a36;
}

.sec-title3:hover .heading-border-line {
	position: relative;
}

.sec-title3:hover .heading-border-line:before {
	margin-left: -5px;
	width: 65px;
	background: #fd4a36;
}

.sec-title3:hover .heading-border-line:after {
	width: 12px;
	margin-left: 35px;
	background: #fd4a36;
}

.kms-callout {
	padding: 1.25rem;
	margin-top: 1.25rem;
	margin-bottom: 1.25rem;
	background-color: var(--kms-callout-bg, #f8f9fa);
	border-left: 0.25rem solid var(--kms-callout-border, #dee2e6);
}

.kms-callout-info {
	--kms-callout-bg: rgba(13, 202, 240, 0.075);
	--kms-callout-border: rgba(13,202,240, .5);
}

.kms-callout-warning {
	--kms-callout-bg: rgba(255, 193, 7, 0.075);
	--kms-callout-border: rgba(255,193,7, .5);
}

.kms-callout-danger {
	--kms-callout-bg: rgba(220, 53, 69, 0.075);
	--kms-callout-border: rgba(220,53,69, .5);
}

.red-emphasis {
	color: #600;
}

/* -----------------------
    Header Section CSS
--------------------------*/


.full-width-header .main-header .menu-area .logo-area {
	position: relative;
}

.full-width-header .main-header .menu-area .logo-area a {
	position: relative;
	z-index: 999;
	display: table;
}

#main-menu-logo-cell {
	flex: 1;
}

#main-menu-nav-cell {
	flex: 3;
}

.full-width-header .main-header .menu-area .main-menu .rs-menu ul.nav-menu li a:after {
    content: '';
    width:0%;
    overflow:hidden;
    -webkit-transition: width 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
}
.full-width-header .main-header .menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item a:after {
    content: '';
    width: 100%;
    display: table;
    position: absolute;
    margin-top: -50px;
	border-bottom: 1px solid;
}

.full-width-header .main-header .menu-area .main-menu .rs-menu ul.nav-menu li:hover a:after {
    content: '';
    width: 40%;
    display: table;
    position: absolute;
    margin-top: -55px;
}

.header-light .main-header .menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item a:after {
    border-bottom-color:#fff;
}
.full-width-header .main-header .menu-area .logo-area a.light {
	display:none;
}

.header-light .main-header .menu-area .logo-area a.light {
	display:table;
}
.header-light .main-header .menu-area .logo-area a.dark {
	display:none;
}
.full-width-header .main-header .custom-row .col-cell {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.full-width-header .main-header .menu-area .main-menu .rs-menu ul.nav-menu li {
	display: inline-block;
	margin-right: 24px;
	padding: 0;
}

.full-width-header .main-header .menu-area .logo-area img {
	transition: 0.4s;
	-webkit-transition: 0.4s;
	max-height: 100px;
	margin-top: 15px;
	margin-bottom: 15px;
	height: 85px;
}
.full-width-header .main-header .menu-area .rs-menu-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 15px;
  flex: 1;
}
.full-width-header .main-header .menu-area .rs-menu-area {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-right: 15px;
}


.full-width-header .main-header .menu-area .main-menu .rs-menu ul.nav-menu li a {
	transition: all 0.3s ease;
	font-size: 16px;
	font-weight: 400;
	height: 115px;
	line-height: 130px;
	padding: 0;
	color: #033e6d;
	position: relative;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.8px;
}

.header-light .main-header .menu-area .main-menu .rs-menu ul.nav-menu li a {
	color:#fff;
}

/* ------------   START STICKY HEADER ---------------- */

.header-light .sticky .main-menu .rs-menu ul.nav-menu li a {
	color:#033e6d;
}
.header-light .sticky .main-menu .rs-menu ul.nav-menu li.current-menu-item a:after {
    border-bottom-color:#033e6d;
}
.header-light .main-header .sticky .logo-area a.light {
	display:none;
}
.header-light .main-header .sticky .logo-area a.dark {
	display:table;
}
.header-light .main-header .sticky .mobile-menu .rs-menu-toggle {
	color: #0255a3;
}

.header-light .main-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu li a {
    color: #033e6d;
}
.header-light .main-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu li.current-menu-item a::after {
    margin-top: -50px;
    border-bottom: 1px solid;
    width: 100%;
}

.sticky {
	background: #fff !important;
	position: fixed !important;
	top: 0px;
	z-index: 999;
	margin: 0 auto !important;
	padding: 0;
	left: 0;
	right: 0;
	width: 100%;
	-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-name: sticky-animation;
	animation-name: sticky-animation;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
  }

/* --------------- END STICKY HEADER ---------------- */


.full-width-header .mobile-menu {
	display: none;
	margin-top: -80px;
	width: 100vw;
	margin-left: -40px;
}

.full-width-header .mobile-menu .mobile-logo {
	float: left;
}

.full-width-header .mobile-menu .mobile-logo img {
	max-height: 30px;
}

.full-width-header .mobile-menu .rs-menu-toggle {
	color: #0255a3;
	float: right;
}
.header-light .mobile-menu .rs-menu-toggle {
	color:#fff;
}
.full-width-header .mobile-menu .rs-menu-toggle.primary {
	color: #018ae8;
}

.full-width-header .mobile-menu .rs-menu-toggle.secondary {
	color: #191821;
}

.full-width-header .mobile-menu .rs-menu-toggle .nav-dots {
	position: absolute;
	right: 0;
	width: 25px;
	height: 2px;
	background: #fff;
	z-index: 11;
	top: 23px;
}

.full-width-header .mobile-menu .rs-menu-toggle .dot1,
.full-width-header .mobile-menu .rs-menu-toggle .dot3 {
	width: 15px;
}

.full-width-header .mobile-menu .rs-menu-toggle .dot2 {
	top: 28px;
}

.full-width-header .mobile-menu .rs-menu-toggle .dot3 {
	top: 34px;
}

.full-width-header .mobile-menu .rs-menu-toggle .dot4 {
	top: 40px;
}

a.rs-menu-toggle .fa-times {
	display:none;
}

div#kt-title {
    margin-top: -145px;
}

.icon-circle {
	background-color: #dfedf3;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin-left: auto;
	margin-right: auto;
}

/* -----------------------
    Hero Section CSS
--------------------------*/

.kinght-hero-bnr {
	background: url('../images/bgbaner2.png');
	background-size: cover;
	background-position: bottom;
    padding-bottom: 65px;
	/* min-height: 820px; */
	background-repeat: no-repeat;
}

#home-page .kinght-hero-bnr {
	padding-bottom: 138px;
}

#home-page .kinght-hero-bnr ul,
#eth-smart-contract-dev-page .kinght-hero-bnr ul,
#tech-advisory-services-page .kinght-hero-bnr ul {
	color: #fff;
	list-style-type: disc;
	margin-left: 14px;
	margin-bottom: 23px;
}

.banner-content h2 {
	font-size: 50px;
	letter-spacing: 2.5px;
	font-weight: 600;
	color: #fff;
	line-height: 1.3;
}

.kinght-hero-bnr h4 {
	color: #fff;
}

.banner-content {
	margin-top: 80px;
}

.banner-content .mihsbtn {
    width: 40px;
    height: 40px;
    line-height: 43px;
    border-radius: 100%;
    background: #ffffff;
    color: #1c3988;
    font-size: 20px;
    text-align: center;
    display: inline-block;
    margin-top: 50px;
}

div#kt-title .banner-content {
    margin-top: 185px;
}

.banner-content p {
	color: #fff;
	line-height: 1.5;
}

.banner-content .get-new {
	background-color: transparent;
	border: 1px solid #fff;
}

.banner-content .get-new:hover {
	background-color: #fff;
	border: 1px solid #033e6d;
	color: #033e6d !important;
}

.banner-content-img {
	margin-top: 95px;
	margin-right: -80px;
    padding-top: 50px;
}

#home-page .banner-content-img {
	padding: 0;
}

#home-page .core-offering-content p {
	font-size: 28px;
	line-height: 40px;
}

#home-page h5.title {
	font-weight: 500;
	padding-top: 15px;
}

#core-beliefs-page .banner-content-img {
	padding-top: 103px;
}

#our-passion-page .banner-content-img img {
	height: 425px;
}

#who-you-are-page .banner-content-img img {
	height: 425px;
}

.kinght-hero-bnr .spiner {
	position: absolute;
	right: 0;
	margin-right: 15%;
	margin-top: 5%;
}

.kinght-hero-bnr .horizontal {
	animation-name: horizontal;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-duration: 20s;
}

@keyframes horizontal {
	0% {
		transform: translateX(0);
	}

	50% {
		transform: translateX(100px);
	}

	100% {
		transform: translateX(0);
	}
}

/* -----------------------
    Top Services Section CSS
--------------------------*/
.kt-services {
	padding-top: 20px;
	padding-bottom: 10px;
}

.kt-services .addon-services {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.kt-services .services-icon {
	display: flex;
	justify-content: center;
}

.kt-services .services-icon img {
	width: 98px;
	height: 98px;
	margin-bottom: 30px;
}

.kt-services .services-text h5 a {
	color: #363636;
	letter-spacing: 1px;
}

.kt-services .services-text {
	letter-spacing: 1px;
	padding: 0 10px;
}

.kt-services .services-text p {
	line-height: 1.5;
	color: #707070;
}

/* -----------------------
    Home Page
--------------------------*/

#home-page h1 {
	margin-bottom: 50px;
}

#home-page #how-it-works-carousel {
	margin: 50px 12% 50px 12%;
	text-align: center;
}

#home-page #how-it-works-carousel .carousel-indicators {
	bottom: -15px;
}

#home-page #how-it-works-carousel .carousel-indicators button.active {
	background-color: #0255a3;
}

#home-page #how-it-works-carousel .carousel-indicators button {
	background-color: #999;
}

.call-to-action-pill {
	background-color: #fff;
	border: 1px solid #033e6d;
	color: #033e6d !important;	
}

.call-to-action-pill:hover {
	background-color: #033e6d;
	border: 1px solid #033e6d;
	color: #fff !important;	
}

/* -----------------------
    Main Section CSS
--------------------------*/

.main-content h1 {
	margin-top: 45px;
}

.main-section {
    padding-top: 80px;
    padding-bottom: 80px;
}
.main-section .sec-title3 h2 {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 50px;
    color: #202020;
}
.main-section .sec-title3 .title {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 40px;
    color: #202020;
}
.main-section ul {
	list-style:disc;
}

.main-section .miname {
	font-style:italic;
	color: #0255a3;
}

/* -----------------------
    Services Section CSS
--------------------------*/

#services-page .banner-content-img img {
	height: 425px;
}

#services-page .service-offerings-description {
	margin-bottom: 50px;
}

#services-page .service-offerings-description p {
	font-size: 28px;
	line-height: 40px;
}

.kt-our-services {
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: #f9f9f9;
}

#services-page .kt-our-services {
	background-color: transparent;
}

.kt-our-services .sec-title3 h2 {
	font-weight: 400;
	letter-spacing: 1px;
	font-size: 50px;
	color: #202020;
}

.kt-our-services .addon-services {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	text-align: left;
}

.kt-our-services .services-icon {
	height: 50px;
	margin-bottom: 15px;
}

.kt-our-services .services-icon img {
	margin-left: 10px;
	width: 55px;
}

#services-page #system-integration-icon {
	width: 65px;
}

#services-page #data-warehousing-icon {
	width: 85px;
}

#services-page #secure-app-dev-icon {
	width: 85px;
}

#services-page #mobile-app-dev-icon {
	width: 40px;
}

#services-page #cloud-icon {
	width: 95px;
}

.kt-our-services .services-text h5 {
	margin-bottom: 10px;
}

.kt-our-services .services-text h5 a {
	color: #033e6d;
	letter-spacing: 1px;
	font-weight: 500;
}

.kt-our-services .services-text {
	letter-spacing: 1px;
	padding: 0 10px;
}

.kt-our-services .services-text p {
	line-height: 1.5;
	color: #707070;
}

#core-beliefs-page blockquote {
	padding: 10px 25px;
	font-size: 16px;
}

#core-beliefs-page blockquote::before {
	color: #0255a3;
}

/* -----------------------
    Pricing Box CSS
--------------------------*/

.pricing-wrap {
	background-color: #f9f9f9;
	border-radius: 60px;
	box-shadow: 0 5px 10px 0px rgb(0 0 0 / 25%);
	text-align: center;
}

.pricing-wrap .top-part h3 {
	color: #0255a3;
	font-weight: 500;
	margin-bottom: 10px;
}

.pricing-wrap .top-part h5 {
	color: #1f2020;
	letter-spacing: 1px;
	font-weight: 500;
}

.pricing-wrap .middle-part li {
	font-size: 16px;
	line-height: 2.3;
}

.pricing-wrap .middle-part li {}

.pricing-wrap .middle-part li:before {
	content: "\f05d";
	display: inline-block;
	font-family: 'FontAwesome';
	font-size: 18px;
	margin-right: 20px;
	color: #0255a3;
	font-weight: 300;
}

.pricing-wrap ul.middle-part {
	overflow-y: scroll;
}

.pricing-wrap ul.middle-part {
	scrollbar-color: #0255a3 #e4e4e4;
	scrollbar-width: thin;
}

.pricing-wrap ul.middle-part::-webkit-scrollbar {
	width: 10px;
}

.pricing-wrap ul.middle-part::-webkit-scrollbar-track {
	box-shadow: inset 0 0 28px #e4e4e4;
	border-radius: 10px;
}

.pricing-wrap ul.middle-part::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #0255a3;
	outline: none;
}

.pricing-wrap .get-new {
	background-color: transparent;
	border: 1px solid #033e6d;
	color: #033e6d !important;
}

.pricing-wrap .get-new:hover {
	background-color: #033e6d;
	color: #fff !important;
}

/* -----------------------
    Testimonials Section CSS
--------------------------*/

.kt-testimonial {
	display: none;
}

.kt-testimonial .sec-title3 h2 {
	color: #0255a3;
	font-weight: 400;
}

.kt-testimonial .avatar img {
	width: 118px;
	height: auto;
	border-radius: 100%;
	margin: 0 auto 30px auto;
}

.kt-testimonial .fa {
	color: #0255a3;
}

.kt-testimonial .testimonial-text {
	margin-left: 10px;
	margin-right: 10px;
}

.kt-testimonial .posted-by h5 {
	padding-right: 135px;
	padding-top: 25px;
	color: #0255a3;
	font-weight: 400;
}

/* -----------------------
    Call to Action Section CSS
--------------------------*/
.kt-cta-section {
	background: url('../images/make-your-move.png');
	background-size: cover;
}

.kt-cta-section .get-new {
	background-color: transparent;
	border: 1px solid #fff;
}

.kt-cta-section .get-new:hover {
	background-color: #fff;
	border: 1px solid #033e6d;
	color: #033e6d !important;
}



/* -----------------------
    Core Beliefs Page CSS
--------------------------*/

.core-beliefs-section-1 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.core-beliefs-section-1 .sec-title3 h2 {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 50px;
    color: #202020;
}
.core-beliefs-section-1 .sec-title3 .title {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 40px;
    color: #202020;
}
.core-beliefs-section-1 ul {
	list-style:disc;
}

.core-beliefs-section-1 .miname {
	color: #0255a3;
	font-size: 25px;
	font-style:italic;
}

.core-beliefs-section-2 {
    padding-top: 80px;
    padding-bottom: 40px;
    background-color: #f9f9f9;
}

.core-beliefs-section-2 .sec-title3 h2 {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 50px;
    color: #202020;
}

.core-beliefs-section-3 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.core-beliefs-section-3 .sec-title3 .title {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 40px;
    color: #202020;
    border-left: 3px solid #018ae8;
    padding-left: 40px;
    margin-left: -50px;
}
.core-beliefs-section-3 ul {
	list-style:disc;
}

.core-beliefs-section-3 .miname {
	font-style: italic;
}


/* -----------------------
    Content Section CSS
--------------------------*/

.content-section {
    padding-top: 80px;
    padding-bottom: 80px;
}
.content-section .sec-title3 h2 {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 50px;
    color: #202020;
}
.content-section .sec-title3 .title {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 40px;
    color: #202020;
}
.content-section ul {
	list-style:disc;
}

.content-section .miname {
	font-style:italic;
	color: #0255a3;
}

/* -----------------------
    Who We Are Section 2 CSS
--------------------------*/

.who-we-2 {
    padding-top: 10px;
    padding-bottom: 80px;
}
.who-we-2 .sec-title3 .title {
    font-weight: 400;
    letter-spacing: 0.1px;
    font-size: 16px;
    line-height: 2;
    color: #202020;
    border-left: 3px solid #018ae8;
    padding-left: 40px;
    margin-left: -50px;
}
.who-we-2 ul {
	list-style:disc;
}

.who-we-2 .miname {
	font-style:italic;
}


/* -----------------------
    Contact Now Section CSS
--------------------------*/

.contact-now-section {
    padding-top: 80px;
    padding-bottom: 20px;
    background-color: #f9f9f9;
}

.contact-now-section .sec-title3 h2 {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 50px;
    color: #202020;
}

.contact-now-section .sec-title3 .title2 {
    font-weight: 400;
    letter-spacing: 0.1px;
    font-size: 16px;
    line-height: 2;
    color: #202020;
    border-left: 3px solid #018ae8;
    padding-left: 40px;
    margin-left: -50px;
}

/* -----------------------
    Contact Us CSS
--------------------------*/

#contact-us-page .banner-content-img img {
	height: 425px;
}

#contact-us-page h2 .fa-envelope-o {
	margin-right: 15px;
}

#contact-us-page h2 .fa-phone {
	margin-right: 15px;
}

#contact-us-page #kt-main-section .phone-number {
	font-size: 20px;
}

#contact-us-page #spinner-container {
	display: none;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 1px;
	background-color: rgba(104,104,104,.15);
	text-align: center;
}

#contact-us-page .spinner-inner-container {
	width: 35%;
	margin-top: 200px;
	margin-left: auto;
	margin-right: auto;
}

#contact-us-page #spinner-container .spinner-border {
	width: 7rem;
	height: 7rem;
	border-width: .75em;
	color: #0255a3 !important;
}

#recaptcha-container {
	margin-bottom: 15px;
}

#recaptcha-error-msg {
	display: none;
	margin-top: -15px;	
	margin-bottom: 15px;
}

#submit-success-msg {
	display: none;
}

#submit-failed-msg {
	display: none;
}

/* -----------------------
    Footer Section CSS
--------------------------*/

.kt-footer-1 {
	background: url('../images/footer.png');
	background-size: cover;
	background-repeat: no-repeat;
}


.kt-footer-1 .logo-part {
	width: 110px;
}


.kt-footer-1 p {
	color: #fff;
}

.kt-footer-1 .footer-social {
	display: flex;
	flex-directiion: row;
}

.kt-footer-1 .footer-social li {
	margin-right: 25px;
}

.kt-footer-1 .footer-social li a {
	color: #fff;
	font-size: 34px;
}

.kt-footer-1 .footer-social li a:hover {
	color: #8b97a1;
}

.kt-footer-1 .useful-lnk {
	line-height: 2.2;
}

.kt-footer-1 .useful-lnk li a {
	color: #fff;
}

.kt-footer-1 .useful-lnk li a:hover {
	color: #8b97a1;
}

.kt-footer-1 .useful-lnk li.current-menu-item a {
    color: #8b97a1;
}

.kt-footer-1 .phone-number {
	font-size: 20px;
}

/*---------------------------------------
     Scroll Up CSS
---------------------------------------*/
#scrollUp {
	text-align: center;
	bottom: 100px;
	cursor: pointer;
	display: none;
	position: fixed;
	right: 34px;
	z-index: 999;
	border-radius: 50px 50px 4px 4px;
}

#scrollUp i {
	background: #033e6d;
	border-radius: 50%;
	height: 40px;
	font-size: 24px;
	font-weight: 600;
	width: 42px;
	color: #fff;
	line-height: 36px;
	transition: all 0.3s ease;
	margin-left: 2px;
	box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
}

#scrollUp i:hover {
	background-color: #333;
}

/* -----------------------
   Articles CSS
--------------------------*/

article h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 30px;
	color: #0255a3;
}

article ul {
	margin: 0 25px 25px 25px;
}

article ul li {
	padding-left: 5px;
}

article ol li::marker {
	font-weight: 500;
}

article ol li {
	padding-left: 5px;
}

article .article-page-author {
	color: #0255a3;
}

article .article-page-date {
	color: #0255a3;
}

.article-card {
	background-color: #f9f9f9;
	border-radius: 5px;
	box-shadow: 0 5px 10px 0px rgb(0 0 0 / 25%);
	text-align: left;	
}

.article-card-full-width {
	margin: 20px 0 20px 0;
}

.article-card-full-width .article-card-content-full-width p {
	height: auto;
}

.article-card-img {
	text-align: center;
	clip-path: inset(0 0 0 0);
	-webkit-clip-path: inset(0 0 0 0);
	height: 250px;
}

.article-card-img-full-width {
	text-align: center;
	clip-path: inset(0 0 0 0);
	-webkit-clip-path: inset(0 0 0 0);
	height: 100%;
}

.article-card-img img {
	max-width: 100%;
	height: auto;
	border-radius: 3px;	
}

.article-card-pub-details {
	font-size: 14px;
	color: #0255a3;
}

.article-card-content h4 {
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;	
}

.article-card-content h4 a {
	color: #000;
}

.article-card-content-full-width h4 {
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;	
}

.article-card-content-full-width h4 a {
	color: #000;
}

.article-card-link {
	color: #0255a3;
}

.article-card-link:hover {
	text-decoration: underline;
}

.article-img {
	float: left !important;
}

.overlay {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 2;
	cursor: pointer;
  }

.overlay-content {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 50px;
	user-select: none;
	transform: translate(-50%,-50%);
	background-color: white;
	padding: 50px;
	text-align: center;
}

/* ---------------------------------
   docs.knightmovesolutions.com CSS
------------------------------------*/

.docs-home-content {
	margin-top: 50px;
}

.docs-home-content .lib-content {
	padding: 20px;
}

.docs-home-content .lib-content:nth-child(even) {
	background-color: transparent;
	border: 1px solid #f9f9f9;
}

.docs-home-content .lib-content:nth-child(odd) {
	background-color: #f9f9f9;
	border-color: none;
}

.docs-home-content h1 {
	font-weight: 400;
	letter-spacing: 1px;
	font-size: 40px;
	color: #202020;
}

/* .docs-home-content .lib-content {
	margin-bottom: 25px;
} */

.docs-home-content h5 a {
	color: #033e6d;
	letter-spacing: 1px;
	font-weight: 500;
}

.docs-home-content button {
	float: right;
	margin-left: 15px;
	height: 52px;
}

.docs-home-content pre {
	float: left;
}

/* 
 ****************************************
   LANDING PAGE STYLING
 ****************************************
*/
.landing-page .logo-area {
	width: 100%;
	text-align: center;
}

.landing-page #main-menu-logo-cell  .logo-area a {
	display: block;
}

.landing-page h1 {
	font-weight: 400;
	letter-spacing: 1px;
	font-size: 38px;
	color: #900;
	text-align: center;
}

.landing-page p,
.landing-page li {
	font-size: 20px;
}

.landing-page h2 {
	text-align: center;
}

.landing-page ul {
	list-style: unset;
	width: 75%;
	margin: auto;
}

.landing-page li {
	font-size: 24px;
	margin-bottom: 14px;
}

.landing-page-section {
	margin: 15px auto 15px auto;
}

.landing-page-section.offer,
.landing-page-section.offer p {
	text-align: center;
	color: #900;
	font-weight: 400;
	font-size: 38px;	
}

.landing-page-section .price {
	font-size: 45px;
}

.landing-page-section .stricken {
	color: #666;
	text-decoration: line-through;
	margin-right: 15px;
}

.landing-page .fine-print {
	color: #000;
	font-size: 16px;
}

.landing-page .video-col {
	text-align: center;
}

.landing-page-section.video {
	text-align: center;
	display: inline-block;
}

.landing-page-section.video.container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.landing-page-section.video iframe {
	border: 1px solid black;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;	
}

.landing-page-section.offer .fine-print {
	display: block;
}

.landing-page-section.call-to-action {
	text-align: center;
}

.landing-page-section.call-to-action a,
.landing-page-section.call-to-action span {
	background-color: orange;
	font-weight: 500;
}

.landing-page-section.course-date-time {
	text-align: center;
	font-weight: 400;
	font-size: 28px;	
}

.landing-page-section.course-date-time .course-dates {
	display: block;
}

.landing-page-section.bonus p {
	text-align: center;
	font-size: 28px;
}

#get-notified-link {
	text-align: center;
	font-size: 20px;
	display: block;
}

#webinar-closed-popup p {
	text-align: center;
	font-size: 20px;
}

#webinar-closed-popup .btn {
	color: #fff;
	background-color: #033e6d;
}