@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

/*
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Mono', monospace;
*/

/* -----------------------------------
	[01] GENERAL
	[02] FORM
	[03] BTN
	[04] PRELOADER
	[05] SCROLL TOP
	[08] TITLE LIST SHAPES
	[06] HEADER
	[07] MOBILE MENU
	[08] SIDEBAR
	[09] HERO
	[10] ABOUT
	[11] MISSION
	[12] WHY CHOOSE
	[13] FEATURES
	[14] WORK PROCESS
	[15] PROJECTS
	[16] COUNTER
	[17] SERVICES
	[18] TEAMS
	[19] PRICING
	[20] FOOTER
	[21] CONTACT MODAL
-------------------------------------*/

:root {
	--sbd-main: #cfd8dc;
	--sbd-main-rgb: 207,216,220;
	
	--sbd-dark: #191634;
	--sbd-dark-rgb: 25,22,52;
	
	--sbd-violet: #9c27b0;
	--sbd-violet-light: #d025ce;
	
	--sbd-rose: #e91e63;	
	--sbd-rose-light: #f83097;
	
	--sbd-blue: #6718e9;
	--sbd-blue-light: #2196f3;
	
	--sbd-green: #43a047;
	--sbd-green-light: #8bc34a;	
	
	--sbd-black: #111111;
	
	--sbd-border: 1px solid rgba(236,239,241,0.15);
	--sbd-border-dashed: 1px dashed rgba(236,239,241,0.2);
	--sbd-shadow: 0 0 20px rgba(236,239,241,0.2);
}

/* -----------------------------------
	[01] GENERAL
-------------------------------------*/
* {
	outline: none !important;
	transition: all 0.3s ease-out 0s;
	border: 0;
}
*,
*::after,
*::before {
	box-sizing: border-box;
}
html {
	position: relative;
	min-height: 100%;
	scroll-behavior: unset !important;
}
body {
	-webkit-tap-highlight-color: transparent;
	-webkit-text-size-adjust: 100%;
	width: 100%;
	background: var(--sbd-dark);
	color: var(--sbd-main);
	font-family: 'Roboto', sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.5;
	overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Roboto Mono', monospace;
	font-weight: 500;
	margin: 20px 0;
	line-height: 1.3;
}
a:hover,
a:active,
a:focus {
	color: var(--sbd-green);
}
a {
	color: var(--sbd-blue-light);
	text-decoration: none;
}
*::-moz-selection {
	background: var(--sbd-main);
	color: var(--sbd-dark);
	text-shadow: none;
}
::-moz-selection {
	background: var(--sbd-main);
	color: var(--sbd-dark);
	text-shadow: none;
}
::selection {
	background: var(--sbd-main);
	color: var(--sbd-dark);
	text-shadow: none;
}
*::-moz-placeholder {
	color: var(--sbd-light);
	font-size: 1em;
	opacity: 1;
}
*::placeholder {
	color: var(--sbd-light);
	font-size: 1em;
	opacity: 1;
}
img {
	max-width: 100%;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
section {
	padding: 50px 0;
	position: relative;
	z-index: 1;
}
@media only screen and (max-width: 991px) {
	section {
		padding: 50px 0;
		position: relative;
		z-index: 1;
	}
}
@media (min-width: 1200px) {
	.container-narrow {
		max-width: 1024px;
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}
}
.page-wrapper {
	position: relative;
	z-index: 9;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	min-width: 300px;
}
hr {
	border-bottom: 1px solid var(--sbd-gray);
	border-top: 0 none;
	margin: 30px 0;
	padding: 0;
}
label {
	color: var(--sbd-main);
	cursor: pointer;
	font-size: 1em;
	font-weight: 400;
}
header:after,
section:after,
footer:after {
	display: block;
	clear: both;
	content: "";
}

.bg-violet {
	background: var(--sbd-violet);
}
.bg-rose {
	background: var(--sbd-rose);
}
.bg-blue {
	background: var(--sbd-blue);
}
.bg-green {
	background: var(--sbd-green);
}
.violet {
	color: var(--sbd-violet-light);
}
.rose {
	color: var(--sbd-rose-light);
}
.blue {
	color: var(--sbd-blue-light);
}
.green {
	color: var(--sbd-green-light);
}

/* -----------------------------------
	[02] FORM
-------------------------------------*/
input,
select,
textarea,
.form-control {
	width: 100%;
	height: auto;
	border-radius: 5px;
	padding: 15px 30px;
	background-color: rgba(var(--sbd-main-rgb),0.1);
	border: var(--sbd-border);
}
input:focus,
button:focus,
textarea:focus,
.form-control:focus {
	outline: none;
	box-shadow: none;
	border-color: var(--sbd-rose);
}
label {
	cursor: pointer;
	font-weight: 500;
	margin-bottom: 5px;
	color: var(--sbd-rose);
}
input::-webkit-input-placeholder {
	font-size: 0.8em;
	color: var(--sbd-gray);
}
input:-ms-input-placeholder {
	font-size: 0.8em;
	color: var(--sbd-gray);
}
input::-ms-input-placeholder {
	font-size: 0.8em;
	color: var(--sbd-gray);
}
input::placeholder {
	font-size: 0.8em;
	color: var(--sbd-gray);
}
textarea::-webkit-input-placeholder {
	font-size: 0.8em;
	color: var(--sbd-gray);
}
textarea:-ms-input-placeholder {
	font-size: 0.8em;
	color: var(--sbd-gray);
}
textarea::-ms-input-placeholder {
	font-size: 0.8em;
	color: var(--sbd-gray);
}
textarea::placeholder {
	font-size: 0.8em;
	color: var(--sbd-gray);
}
.form-group {
	position: relative;
	margin-bottom: 20px;
}

/* -----------------------------------
	[03] BTN
-------------------------------------*/
.theme-btn,
a.theme-btn {
	z-index: 1;
	color: var(--sbd-light);
	cursor: pointer;
	overflow: hidden;
	font-weight: 700;
	border-radius: 5px;
	text-align: center;
	padding: 12px 30px;
	align-items: center;
	position: relative;
	display: inline-flex;
	justify-content: center;
	text-transform: capitalize;
	background: var(--sbd-violet);
}
.theme-btn i,
a.theme-btn i {
	font-size: 0.8em;
	margin-left: 10px;
}
.theme-btn:after,
a.theme-btn:after {
	content: '';
	width: 100%;
	height: 100%;
	z-index: -1;
	left: 0;
	top: 0;
	transition: 0.75s;
	position: absolute;
	transform: scaleX(0);
	transform-origin: 0 50%;
	background: var(--sbd-violet-light);
}

.theme-btn.rose,
a.theme-btn.rose {
	background: var(--sbd-rose);
}
.theme-btn.rose:after,
a.theme-btn.rose:after {
	background: var(--sbd-rose-light);
}

.theme-btn.blue,
a.theme-btn.blue {
	background: var(--sbd-blue);
}
.theme-btn.blue:after,
a.theme-btn.blue:after {
	background: var(--sbd-blue-light);
}

.theme-btn.green,
a.theme-btn.green {
	background: var(--sbd-green);
}
.theme-btn.green:after,
a.theme-btn.green:after {
	background: var(--sbd-green-light);
}

.theme-btn:hover:after,
a.theme-btn:hover:after {
	transform: scaleX(1);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.theme-btn:hover i,
a.theme-btn:hover i {
	margin-left: 13px;
	margin-right: -3px;
}
.theme-btn.theme-invert,
a.theme-btn.theme-invert {
	background: var(--sbd-rose);
}
.theme-btn.theme-invert:after,
a.theme-btn.theme-invert:after {
	background: var(--sbd-magenta);
}
.theme-btn.theme-transparent,
a.theme-btn.theme-transparent {
	color: var(--sbd-dark);
	background: transparent;
	border: 1px solid rgba(0, 102, 255, 0.2);
}
.theme-btn.theme-transparent:after,
a.theme-btn.theme-transparent:after {
	background: var(--sbd-rose);
}
.theme-btn.theme-transparent:hover,
a.theme-btn.theme-transparent:hover {
	color: white;
	border-color: var(--sbd-rose);
}
.theme-btn.theme-transparent.white-btn,
a.theme-btn.theme-transparent.white-btn {
	color: white;
	border-color: white;
}
@media only screen and (max-width: 575px) {
	.theme-btn,
	a.theme-btn {
		padding: 9px 25px;
	}
}
@media only screen and (min-width: 576px) {
	.theme-btn.theme-transparent,
	a.theme-btn.theme-transparent {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}
.details-btn {
	font-size: 1.4em;
	width: 70px;
	height: 70px;
	background: var(--sbd-rose);
	line-height: 70px;
	border-radius: 50%;
	text-align: center;
	display: inline-block;
	color: var(--sbd-light);
}
@media only screen and (max-width: 479px) {
	.details-btn {
		width: 45px;
		height: 45px;
		font-size: 1em;
		line-height: 45px;
	}
}
.read-more {
	font-weight: 500;
	align-items: center;
	display: inline-flex;
	text-transform: capitalize;
}
.read-more i {
	float: right;
	font-weight: 900;
	margin-left: 10px;
	transition: 0.5s;
}
.read-more:hover i {
	margin-left: 15px;
}

/* -----------------------------------
	[04] PRELOADER
-------------------------------------*/
.preloader {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 9999999;	
	display: flex;
	align-items: center;
	justify-content: center;	
	background: var(--sbd-dark);
}
.loader {
    animation: rotate 1s infinite;
    height: 50px;
    width: 50px;
}
.loader:before,
.loader:after {
    border-radius: 50%;
    content: '';
    display: block;
    height: 20px;
    width: 20px;
}
.loader:before {
    animation: ball1 1s infinite;
    background-color: var(--sbd-violet);
    box-shadow: 30px 0 0 var(--sbd-rose);
    margin-bottom: 10px;
}
.loader:after {
    animation: ball2 1s infinite;
    background-color: var(--sbd-green);
    box-shadow: 30px 0 0 var(--sbd-blue);
}
@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(0.8);
        -moz-transform: rotate(0deg) scale(0.8);
    }
    50% {
        -webkit-transform: rotate(360deg) scale(1.2);
        -moz-transform: rotate(360deg) scale(1.2);
    }
    100% {
        -webkit-transform: rotate(720deg) scale(0.8);
        -moz-transform: rotate(720deg) scale(0.8);
    }
}
@keyframes ball1 {
    0% {
        box-shadow: 30px 0 0 var(--sbd-rose);
    }
    50% {
        box-shadow: 0 0 0 var(--sbd-rose);
        margin-bottom: 0;
        -webkit-transform: translate(15px, 15px);
        -moz-transform: translate(15px, 15px);
    }
    100% {
        box-shadow: 30px 0 0 var(--sbd-rose);
        margin-bottom: 10px;
    }
}
@keyframes ball2 {
    0% {
        box-shadow: 30px 0 0 var(--sbd-blue);
    }
    50% {
        box-shadow: 0 0 0 var(--sbd-blue);
        margin-top: -20px;
        -webkit-transform: translate(15px, 15px);
        -moz-transform: translate(15px, 15px);
    }
    100% {
        box-shadow: 30px 0 0 var(--sbd-blue);
        margin-top: 0;
    }
}

/* -----------------------------------
	[05] SCROLL TOP
-------------------------------------*/
.scroll-top {
	position: fixed;
	bottom: 10px;
	right: 10px;
	width: 50px;
	height: 50px;
	z-index: 99;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2em;
	cursor: pointer;
	border-radius: 100%;
	background: var(--sbd-violet);
	animation: pulse 2s infinite;
}
@media only screen and (max-width: 479px) {
	.scroll-top {
		right: 10px;
	}
}
/* -----------------------------------
	[08] TITLE LIST SHAPES
-------------------------------------*/
.section-title {
	margin-bottom: 50px;
}
.section-title .sub-title {
	font-size: 1.2em;
	font-weight: 500;
	align-items: center;
	display: inline-flex;
	color: var(--sbd-main);
}
.section-title .sub-title:after,
.section-title .sub-title:before {
	float: left;
	line-height: 0;
	font-size: 40px;
	font-weight: 900;
	content: "\f141";
	font-family: 'Line Awesome Free';
}
.section-title .sub-title:before {
	margin-right: 20px;
}
.section-title .sub-title:after {
	margin-left: 20px;
	display: none;
}
.section-title h2 {
	margin-bottom: 25px;
}
.section-title.text-center .sub-title:after {
	display: block;
}
.section-title p {
	max-width: 1000px;
	margin: 30px auto 50px;
	font-size: 1.1em;
}
.social-list {
	flex-wrap: wrap;
	display: inline-flex;
	margin-left: -5px;
	margin-right: -5px;
}
.social-list a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--sbd-light);
	border-radius: 50%;
	border: var(--sbd-border);
	margin-left: 5px;
	margin-right: 5px;
	font-size: 1.2em;
}
.social-list a:hover {
	color: var(--sbd-light);
	background: var(--sbd-magenta);
	border-color: var(--sbd-magenta);
}
.wave-shapes {
	position: absolute;
	z-index: -1;
	top: 0;
	left: -100px;
	width: calc(100% + 100px);
	height: 100%;
}
.wave-shapes .shape {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	animation: leftRightOne 6s infinite;
}
.wave-shapes .shape.two {
	animation-delay: 3s;
}

/* -----------------------------------
	[06] HEADER
-------------------------------------*/
.main-header {
	position: relative;
	left: 0px;
	top: 0px;
	z-index: 999;
	width: 100%;
}
.main-header .header-upper {
	z-index: 5;
	width: 100%;
	position: relative;
	transition: all 500ms ease;
}
.header-upper .header-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.main-header .logo-outer {
	flex: none;
}
@media only screen and (max-width: 991px) {
	.main-header .logo-outer {
		display: none;
	}
}
.main-header .logo {
	z-index: 9;
	padding: 0;
	position: relative;
	margin-right: 25px;
	font-family: 'Unbounded', cursive;
	font-size: 2em;
	font-weight: 700;
}
.main-header.fixed-header .header-upper {
	top: 0;
	left: 0;
	position: fixed;
	background: var(--sbd-black);
	animation: sticky 1s;
	box-shadow: 0px 0px 30px 0px rgba(87, 95, 245, 0.1);
}
.main-header.fixed-header .header-upper .logo a{
	color: var(--sbd-light);
}
@media only screen and (min-width: 992px) {
	.main-header.fixed-header .main-menu .navbar-collapse>ul>li {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}
.nav-outer {
	/*margin-left: auto;*/
}
@media only screen and (max-width: 991px) {
	.nav-outer {
		width: 100%;
	}
}

/* -----------------------------------
	[07] MOBILE MENU
-------------------------------------*/
@media only screen and (max-width: 991px) {
	.main-menu {
		width: 100%;
	}
}
.main-menu .mobile-logo {
	margin-right: auto;
	padding: 10px 0;
	font-family: 'Unbounded', cursive;
	font-size: 1.5em;
	font-weight: 700;
}
.main-menu .mobile-logo a{
	color: var(--sbd-light);
}
@media only screen and (max-width: 575px) {
	.main-menu .mobile-logo {
		font-size: 1em;
		max-width: 150px;
	}
}
@media only screen and (max-width: 991px) {
	.main-menu .collapse {
		overflow: auto;
	}
}
.main-menu .navbar-collapse {
	padding: 0px;
	
}
.main-menu .navbar-collapse>ul {
	display: flex;
}
.main-menu .navbar-collapse li {
	padding: 35px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media only screen and (max-width: 1399px) {
	.main-menu .navbar-collapse li {
		padding-left: 10px;
		padding-right: 10px;
	}
}
@media only screen and (max-width: 991px) {
	.main-menu .navbar-collapse>ul {
		display: block;
		padding:0;
		background: var(--sbd-dark);
		border:var(--sbd-border);
	}
	.main-menu .navbar-collapse {
		left: 0;
		width: 100%;
		position: absolute;
	}
	.main-menu .navbar-collapse li {
		display: block;
		padding: 0 15px;
		border-top: var(--sbd-border-dashed);
	}
	.main-menu .navbar-collapse li:first-child {
		border-top: none;
	}
}
.main-menu .navbar-collapse li a {
	display: block;
	font-size: 18px;
	opacity: 1;
	font-weight: 500;
	position: relative;
	color: var(--sbd-main);
	text-transform: capitalize;
}
@media only screen and (max-width: 991px) {
	.main-menu .navbar-collapse li a {
		padding: 10px 10px;
		line-height: 22px;
	}
}
.main-menu .navbar-collapse li a:hover {
	color: var(--sbd-rose);
}
.main-menu .navbar-header {
	display: none;
	margin-right: 30px;
}
@media only screen and (max-width: 991px) {
	.main-menu .navbar-header {
		display: flex;
		align-items: center;
		justify-content: start;
	}
}
@media only screen and (max-width: 375px) {
	.main-menu .navbar-header {
		margin-right: 20px;
	}
}
.main-menu .navbar-header .navbar-toggle {
	float: right;
	padding: 4px 0;
	cursor: pointer;
	background: transparent;
	margin-left: 20px;
}
.main-menu .navbar-header .navbar-toggle .icon-bar {
	background: var(--sbd-rose);
	height: 2px;
	width: 30px;
	display: block;
	margin: 7px 0;
}
@media only screen and (max-width: 575px) {
	.main-menu .navbar-header .social-list a {
		width: 30px;
		height: 30px;
	}
}
@media only screen and (max-width: 400px) {
	.main-menu .navbar-header .social-list a.invis {
		display: none;
	}
}

.menu-btns {
	display: flex;
	align-items: center;
}
.menu-btns .theme-btn {
	margin-left: 25px;
	margin-right: 25px;
}
@media only screen and (max-width: 1199px) {
	.menu-btns .theme-btn {
		display: none;
	}
}
@media only screen and (max-width: 991px) {
	.menu-btns {
		display: none;
	}
}
.menu-sidebar.small-screen i{
	font-size: 2em;
	color: #fff;
	margin-left: 10px;
	cursor: pointer;
}

/* -----------------------------------
	[08] SIDEBAR
-------------------------------------*/
.menu-sidebar {
	display: flex;
}
@media only screen and (min-width: 576px) and (max-width: 1199px) {
	.menu-sidebar {
		margin-left: 30px;
	}
}
.menu-sidebar button {
	width: 35px;
	display: flex;
	cursor: pointer;
	align-items: flex-end;
	flex-direction: column;
	background: transparent;
}
.menu-sidebar button .icon-bar {
	background: var(--sbd-main);
	height: 2px;
	width: 100%;
	margin: 4px 0;
	display: block;
	transition: 0.5s;
}
.menu-sidebar button .icon-bar:first-child {
	width: calc(100% - 5px);
}
.menu-sidebar button .icon-bar:last-child {
	width: calc(100% - 8px);
}
.menu-sidebar button:hover .icon-bar {
	width: 100%;
}
.side-bar {
	position: fixed;
	right: -350px;
	top: 0px;
	opacity: 0;
	width: 350px;
	height: 100%;
	z-index: 99999;
	overflow-y: auto;
	visibility: hidden;
	background-color: var(--sbd-dark);
	border-left: var(--sbd-border);
}
@media only screen and (max-width: 375px) {
	.side-bar {
		width: 300px;
	}
}
.side-content-visible .side-bar {
	right: 0px;
	opacity: 1;
	visibility: visible;
}
.side-bar .inner-box {
	position: relative;
	padding: 50px 40px;
}
@media only screen and (max-width: 375px) {
	.side-bar .inner-box {
		padding-left: 25px;
		padding-right: 25px;
	}
}
.side-bar .inner-box .cross-icon {
	position: absolute;
	right: 30px;
	top: 30px;
	cursor: pointer;
	color: var(--sbd-light);
	font-size: 1.3em;
}
.side-bar .inner-box h4 {
	position: relative;
	color: var(--sbd-light);
	margin-bottom: 35px;
}
.side-bar .phone-block {
	margin: 20px auto 40px;
}
.side-bar .phone-block .theme-btn{
	width: 100%;
}
.side-bar .appointment-form {
	position: relative;
}
.side-bar .appointment-form .form-group {
	position: relative;
	margin-bottom: 20px;
}
.side-bar .appointment-form input[type="text"],
.side-bar .appointment-form input[type="email"],
.side-bar .appointment-form textarea {
	position: relative;
	display: block;
	width: 100%;
	line-height: 23px;
	padding: 10px 15px;
	color: var(--sbd-light);
	font-size: 1em;
	background: none;
	resize: none;
}
.side-bar .appointment-form .form-group button {
	width: 100%;
	font-size: 16px;
	padding: 10px 15px;
	margin-bottom: 20px;
	border-color: white;
}
.form-back-drop {
	position: fixed;
	left: 100%;
	top: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: rgba(var(--sbd-dark-rgb), 0.8);
	visibility: hidden;
	z-index: 9990;
}
.side-content-visible .form-back-drop {
	opacity: 1;
	left: 0;
	visibility: visible;
}

/* -----------------------------------
	[09] ECO
-------------------------------------*/

.eco {
	position: relative;
	padding: 20px 0 80px;
}
.eco-img {
	margin-bottom: 50px;
	text-align: center;
}
.eco-list {
	text-align: center;
	position: relative;
}
.eco-list li{
	display: inline-block;
	list-style: none;
	width: 330px;
	height: 300px;
	margin: 20px;
	background: rgba(var(--sbd-main-rgb),0.1);
	border-radius: 10px;
	vertical-align: top;
}	
.eco-list li:hover{
	background: rgba(var(--sbd-main-rgb),0.2);
}			
.eco-list li a{
	display: block;
	color: var(--sbd-main);
	cursor: pointer;
}
.eco-list li .eco-box{
	height: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.eco-list dd {
	display: inline-block;
	margin: 5px;
}

/* -----------------------------------
	[09] DATABASE
-------------------------------------*/
.db-list li {
	display: flex;
}
.db-list li:not(:last-child) {
	margin-bottom: 25px;
}
.db-list li:before {
	flex: none;
	color: var(--sbd-light);
	margin-top: 3px;
	font-size: 2em;
	font-weight: 900;
	content: "\f233";
	margin-right: 25px;
	width: 45px;
	height: 45px;
	background: var(--sbd-blue-light);
	line-height: 45px;
	border-radius: 4px;
	text-align: center;
	font-family: 'Line Awesome Free';
}
@media only screen and (max-width: 375px) {
	.db-list li:before {
		width: 40px;
		height: 40px;
		margin-top: 5px;
		font-size: 1em;
		line-height: 40px;
		margin-right: 15px;
	}
}	
.db-item, 
.db-item .db-thumb {
    display: flex;
    flex-wrap: wrap;
}
.db-item {
    background: rgba(var(--sbd-main-rgb),0.05);
    border-radius: 10px;
    margin-bottom: 30px;
}
.db-item .db-thumb {
    background: rgba(var(--sbd-main-rgb),0.1);
    width: 200px;
    border-radius: 10px 0 0 10px;
    padding: 30px;
    justify-content: center;
    align-items: center;
}
.db-item .db-thumb .cont {
    font-size: 4em;
    font-weight: 700;
    font-family: 'Roboto Mono', monospace;
}
.db-item .db-content {
    width: calc(100% - 200px);
    border-radius: 0 10px 10px 0;
    padding: 30px 40px;
    background: url("../images/shapes/db-content.png") repeat-y left center;
}
.db-item .db-content h4 {
    margin-bottom: 20px;
    text-transform: capitalize;
}
@media (max-width: 767px) {
    .db-item .db-thumb, 
	.db-item .db-content {
        width: 100%;
    }
    .db-item .db-thumb {
        border-radius: 10px 10px 0 0;
    }
}
@media (max-width: 767px) and (max-width: 575px) {
    .db-item .db-thumb .cont {
        font-size: 40px;
    }
}
@media (max-width: 767px) {
    .db-item .db-content {
        border-radius: 0 0 10px 10px;
        padding: 40px 30px;
    }
}
@media screen and (max-width: 400px) {
    .db-item .db-content {
        padding: 30px 15px;
    }
}	

/* -----------------------------------
	[09] BLOCKCHAIN
-------------------------------------*/
.blockchain-img .image-left {
	position: absolute;
	right: 100%;
	top: 5%;
	width: 35%;
	animation: down-up-one 10s infinite;
}	
@media screen and (max-width: 991px) {
	.blockchain-list {
		margin-top: 70px;
	}
}
.blockchain-list li {
	position: relative;
	display: flex;
}
.blockchain-list li:not(:last-child) {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: var(--sbd-border);
}
@media only screen and (min-width: 376px) {
	.blockchain-list li p {
		font-size: 1.1em;
	}
}
@media only screen and (max-width: 375px) {
	.blockchain-list li:before {
		margin-right: 25px;
	}
}
.blockchain-list li:after {
	content: '';
	width: 40px;
	height: 40px;
	left: 10px;
	top: 15px;
	position: absolute;
	border-radius: 50%;
	border: var(--sbd-border);
}
.blockchain-list li:before {
	flex: none;
	color: white;
	margin-top: 3px;
	font-size: 1.5em;
	font-weight: 600;
	content: "\f00c";
	margin-right: 25px;
	width: 45px;
	height: 45px;
	background: var(--sbd-blue);
	line-height: 45px;
	border-radius: 50%;
	text-align: center;
	font-family: 'Line Awesome Free';
	font-weight: 900;
}
@media only screen and (max-width: 375px) {
	.blockchain-list li:before {
		width: 40px;
		height: 40px;
		margin-top: 5px;
		font-size: 14px;
		line-height: 40px;
		margin-right: 15px;
	}
}
@media only screen and (min-width: 376px) {
	.blockchain-list li .content h5 {
		font-size: 20px;
	}
}
.blockchain-list h4 {
	margin-top: 10px;
}
.blockchain-list li .content p {
	margin-bottom: 0;
}			
.bg-squire-shape {
	width: max-content;
	margin-left: 50px;
	margin-right: 50px;
	z-index: 1;
	position: relative;
	max-width: calc(100% - 100px);
}
.bg-squire-shape::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	z-index: -1;
	top: 0;
	left: 0;
	opacity: 1;
	background-color: var(--sbd-blue);
	border-radius: 150px;
}
.bg-squire-shape:before {
	transform: rotate(-11deg);
	animation: semi_rotated_two 20s infinite;
}

/* -----------------------------------
	[09] BLOCKCHAIN FAQ
-------------------------------------*/
.accordion-item {
	z-index: 1;
	border: none;
	padding: 16px 30px 30px;
	position: relative;
	border-radius: 0 !important;
	margin-bottom: 20px;
}
@media only screen and (max-width: 375px) {
	.accordion-item {
		padding-left: 20px;
		padding-right: 20px;
	}
}
.accordion-item .accordion-button {
	padding: 0;
	position: inherit;
	background: transparent;
}
@media only screen and (min-width: 376px) {
	.accordion-item .accordion-button {
		font-size: 18px;
	}
}
.accordion-item .accordion-button:focus {
	box-shadow: none;
}
.accordion-item .accordion-button:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	transition: 0.5s;
	background: var(--sbd-main);
}
.accordion-item .accordion-button:not(.collapsed) {
	box-shadow: none;
	color: var(--sbd-dark);
}
.accordion-item .accordion-button:not(.collapsed):before {
	background: var(--sbd-main);
	box-shadow: none;
}
.accordion-item .accordion-body {
	padding: 0;
}
.accordion-item .accordion-body p {
	margin: 10px 0 0;
}
/* -----------------------------------
	[09] SLIDER
-------------------------------------*/
.main-slider-area {
	display: flex;
	overflow: hidden;
	min-height: 700px;
	padding: 50px 0 150px;
	flex-direction: column;
	justify-content: center;
}
.main-slider-active {
	width: 100%;
}
.main-slider-active .slick-list {
	overflow: visible;
}
.main-slider-dots {
	margin-top: -135px;
	max-width: max-content;
}
@media only screen and (max-width: 991px) {
	.main-slider-dots {
		margin-top: -635px;
	}
}
@media only screen and (max-width: 575px) {
	.main-slider-dots {
		margin-top: -485px;
	}
}
.main-slider-dots .slick-dots li {
	border-color: var(--sbd-main);
}
.main-slider-dots .slick-dots li.slick-active {
	background: var(--sbd-main);
}

.slider-content {
	z-index: 2;
	max-width: 600px;
	margin-top: -7px;
	position: relative;
	padding-top: 165px;
	padding-bottom: 180px;
}
@media only screen and (max-width: 1199px) {
	.slider-content {
		padding-top: 80px;
	}
}
@media only screen and (max-width: 575px) {
	.slider-content {
		padding-top: 55px;
	}
}
.slider-content h3 {
	color: white;
	font-size: 1.4em;
	font-weight: 500;
	margin-bottom: 15px;
}
.slider-content h3 span{
	font-size: 1.2em;
	padding: 5px 10px;
	margin-right: 10px;
	display: inline-block;
	border-radius: 4px;
}
.slider-content h1 {
	color: var(--sbd-main);
	font-size: 4em;
	line-height: 1.1;
	margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
	.slider-content h1 {
		font-size: 3em;
	}
}
@media only screen and (max-width: 575px) {
	.slider-content h1 {
		font-size: 2em;
	}
}
@media only screen and (max-width: 375px) {
	.slider-content h1 {
		font-size: 1.2em;
	}
}
.slider-video {
	width: max-content;
	position: absolute;
	right: 70px;
	top: 0;
	width: 52%;
	height: 100%;
	background-size: cover;
}
@media only screen and (max-width: 991px) {
	.slider-video {
		right: 0;
		width: 100%;
		height: 500px;
		position: relative;
	}
}
@media only screen and (max-width: 575px) {
	.slider-video {
		height: 350px;
	}
}
.slider-video .video-title {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	color: var(--sbd-main);
	line-height: 1;
	font-size: 3em;
	text-align: center;
	text-transform: uppercase;
	transform: translateY(50px);
	font-family: 'Roboto Mono', monospace;
	font-weight: 700;
}
@media only screen and (max-width: 1199px) {
	.slider-video .video-title {
		font-size: 2em;
	}
}
@media only screen and (max-width: 767px) {
	.slider-video .video-title {
		font-size: 1.5em;
	}
}
@media only screen and (max-width: 575px) {
	.slider-video .video-title {
		font-size: 1.2em;
	}
}
.slider-video .video-title .cd-words-wrapper {
	padding: 0;
}
.slider-video .video-title .cd-words-wrapper span {
	padding: 0;
}
.slider-video .video-title .cd-words-wrapper:after {
	background: transparent;
}
.slider-video,
.slider-content>* {
	transition: 0.5s;
	animation-duration: 0.5s;
	animation-fill-mode: both;
}
.slick-active .slider-video {
	animation-delay: 0.4s;
	animation-name: fadeInRight;
}
.slick-active .slider-content * {
	animation-name: fadeInUp;
}
.slick-active .sub-title {
	animation-delay: 0.4s;
}
.slick-active h1 {
	animation-delay: 0.6s;
}
.slick-active .theme-btn {
	animation-delay: 0.8s;
}
.slider-shapes .shape {
	z-index: -1;
	position: absolute;
}
.slider-shapes .circle {
	top: 20%;
	left: 5%;
	animation: shapeAnimationThree 40s infinite;
}
.slider-shapes .dots {
	max-width: 10%;
	animation: rotated_circle 30s infinite;
}
.slider-shapes .dots.one {
	top: 10px;
	right: 10%;
	animation-delay: 1s;
}
.slider-shapes .dots.two {
	left: 42%;
	bottom: 40px;
}
.slider-shapes .wave-line {
	max-width: 30%;
	left: 0;
	bottom: 0;
	-webkit-animation: down-up-one 10s infinite;
	animation: down-up-one 10s infinite;
}
.slick-dots {
	flex-wrap: wrap;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slick-dots li {
	position: relative;
	cursor: pointer;
	width: 10px;
	height: 10px;
	transition: 0.5s;
	margin: 10px 5px 0;
	border-radius: 50%;
	background: transparent;
	border: 2px solid var(--sbd-main);
}
.slick-dots li button {
	opacity: 0;
}
.slick-dots li.slick-active {
	background: var(--sbd-main);
}	

/* -----------------------------------
	[10] COUNTER
-------------------------------------*/
.statistics-area {
	background: url(../images/bg/bg-statistic.jpg) top center no-repeat fixed;
	background-size: cover;
}			
.statistics-area:after {
      position: absolute;
      content: '';
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      mix-blend-mode: hard-light;
      background: var(--sbd-dark); 
}
.statistic-block {
	position: relative;
	z-index: 100;
}	
.counter-list {
	text-align: center;
}	
.counter-list li{
	display: inline-block;
	margin: 10px 30px;
	list-style: none;
	text-align: center;
}	

.count-text {
	font-family: 'Roboto Mono', monospace;
	font-weight: 500;
	font-size: 3em;
	color: var(--sbd-violet);
}
.count-text:after {
	content: '+';
}
.counter-item {
	display: flex;
	margin-bottom: 30px;
	flex-direction: column;
}
.counter-list li .counter-img {
	height: 100px;
	margin-bottom: 30px;
}	
.counter-item .counter-title {
	margin-top: 10px;
}
.counter-cta {
	flex-wrap: wrap;
	border-radius: 7px;
	text-align: center;
	padding: 20px 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: max-content;
	margin: 60px auto;
	background: var(--sbd-violet);
	z-index: 10;
}
@media only screen and (max-width: 375px) {
	.counter-cta {
		padding-left: 10px;
		padding-right: 10px;
	}
}
.counter-cta h4,
.counter-cta .theme-btn {
	margin: 10px 15px;
}	

/* -----------------------------------
	[10] PROMOTION
-------------------------------------*/
.promotion-item {
	z-index: 1;
	transition: 0.5s;
	position: relative;
	padding: 40px 30px;
	text-align: center;
	border-radius: 7px;
	margin-bottom: 30px;
	background: var(--sbd-dark);
	border: var(--sbd-border);
}
.promotion-item i {
	font-size: 5em;
	transition: 0.5s;
	margin-bottom: 25px;
	font-size: 70px;
	margin-bottom: 22px;
}
.promotion-item:hover {
	background: var(--sbd-rose);
}
.promotion-item:hover:after {
	opacity: 1;
}
.promotion-item:hover i,
.promotion-item:hover a,
.promotion-item:hover p {
	color: var(--sbd-main);
}
.promotion-middle .image {
	max-width: 100%;
	padding-top: 45px;
	position: relative;
	margin-bottom: -100px;
	max-width: max-content;
	margin-left: auto;
	margin-right: auto;
}
.promotion-middle .image .round {
	border-radius: 200px;
}
@media only screen and (max-width: 991px) {
	
	.promotion-middle{
		display: none;
	}
	.promotion-item h4{
		font-size: 1.2em;
	}	
	.promotion-middle .promotion-item {
		margin-top: 0;
	}
}
@media only screen and (min-width: 992px) {
	.promotion-left>.row>div:first-child .promotion-item {
		margin-left: 30px;
	}

	.promotion-left>.row>div:last-child .promotion-item {
		margin-right: 30px;
	}
}
@media only screen and (min-width: 992px) {
	.promotion-right>.row>div:first-child .promotion-item {
		margin-right: 30px;
	}

	.promotion-right>.row>div:last-child .promotion-item {
		margin-left: 30px;
	}
}
@media only screen and (max-width: 991px) {
	.promotion-right .promotion-item {
		margin-top: 0;
	}
}
.promotion-shapes .shape {
	z-index: -1;
	position: absolute;
}
.promotion-shapes .shape.wave-line-top {
	top: 20%;
	right: 0;
	max-width: 50%;
	animation: rotated_circle 10s infinite;
}
.promotion-shapes .shape.wave-line {
	max-width: 35%;
	left: 0;
	bottom: 0;
	animation: down-up-one 3s infinite;
}
/* -----------------------------------
	[10] COMMUNICATION
-------------------------------------*/

/* -----------------------------------
	[10] ABOUT
-------------------------------------*/
.about-area {}
.about-image {
	max-width: 100%;
	padding-top: 18%;
	padding-right: 11%;
	position: relative;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}
.about-image .years-fo-experience {
	position: absolute;
	right: 0;
	top: 0;
	width: 90%;
	max-width: 400px;
	padding: 20px 30px;
	background: var(--sbd-magenta) url(../images/shapes/years-fo-experience-bg.png);
}
@media only screen and (max-width: 767px) {
	.about-image .years-fo-experience {
		display: none;
	}
	.about-image {
		margin-bottom: 40px;
		padding: 0;
	}	
}
.about-image .years-fo-experience .count-text {
	color: var(--sbd-light);
	display: inline-block;
}
.about-image .years-fo-experience h4 {
	color: var(--sbd-light);
}
.client-satisfactions {
	display: flex;
	max-width: 444px;
	align-items: center;
}
@media only screen and (max-width: 479px) {
	.client-satisfactions {
		flex-wrap: wrap;
	}
}
.client-satisfactions img,
.client-satisfactions .heading,
.client-satisfactions .count-text {
	margin-bottom: 15px;
}
.client-satisfactions img {
	margin-right: 25px;
}
.client-satisfactions .count-text {
	margin-right: 20px;
}
@media only screen and (min-width: 376px) {
	.client-satisfactions .count-text {
		font-size: 55px;
	}
}
.client-satisfactions .heading {
	font-size: 22px;
}

/* -----------------------------------
	[11] MISSION
-------------------------------------*/
.mission {
	background: var(--sbd-violet);
}
@media only screen and (max-width: 991px) {
	.mission-visson-image {
		margin-top: 30px;
		text-align: center;
	}
}

/* -----------------------------------
	[12] WHY CHOOSE
-------------------------------------*/
.why-choose-area {
	margin-bottom: 100px;
}
.why-choose-list li {
	display: flex;
}
.why-choose-list li:not(:last-child) {
	margin-bottom: 25px;
}
.why-choose-list li:before {
	flex: none;
	color: var(--sbd-light);
	margin-top: 3px;
	font-size: 1.2em;
	font-weight: 900;
	content: "\f00c";
	margin-right: 25px;
	width: 45px;
	height: 45px;
	background: var(--sbd-rose);
	line-height: 45px;
	border-radius: 50%;
	text-align: center;
	font-family: 'Line Awesome Free';
}
@media only screen and (max-width: 375px) {
	.why-choose-list li:before {
		width: 40px;
		height: 40px;
		margin-top: 5px;
		font-size: 14px;
		line-height: 40px;
		margin-right: 15px;
	}
}
.why-choose-list li .content h5 {
	margin: 5px 0 10px;
}
.why-choose-list li .content p {
	margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
	.why-choose-image {
		margin-top: 50px;
	}
}
.circle-shapes {
	z-index: -1;
	top: 0;
	width: 55%;
	right: 20px;
	padding-top: 55%;
	position: absolute;
}
.circle-shapes .shape {
	opacity: 0.04;
	position: absolute;
	border-radius: 50%;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	background: #fff;
}
.circle-shapes .shape.one {
	width: 80%;
	height: 80%;
	left: 0;
	top: 0;
}
.circle-shapes .shape.two {
	width: 62%;
	height: 62%;
	left: 9%;
	top: 9%;
}
.circle-shapes .shape.three {
	width: 44%;
	height: 44%;
	left: 18%;
	top: 18%;
}
.circle-shapes .shape.four {
	width:26%;
	height: 26%;
	left: 27%;
	top: 27%;
}

/* -----------------------------------
	[13] FEATURES
-------------------------------------*/
.feature-item {
	text-align: center;
	margin-bottom: 30px;
}
.feature-item .image {
	height: 150px;
	padding: 25px;
	transition: 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 7px 7px 0 0;
	border: var(--sbd-border);
}
.feature-item h5 {
	color: var(--sbd-light);
	transition: 0.5s;
	margin-bottom: 0;
	padding: 9px 15px;
	border-radius: 0 0 7px 7px;
	background: var(--sbd-violet);
}
.feature-item:hover .image {
	border-color: var(--sbd-rose);
}
.feature-item:hover h5 {
	background: var(--sbd-magenta);
}

/* -----------------------------------
	[14] WORK PROCESS
-------------------------------------*/
.work-process-wrap {
	position: relative;
	z-index: 1;
}
.work-process-item {
	text-align: center;
	margin-bottom: 30px;
	padding-left: 15px;
	padding-right: 15px;
	margin-top: 35px;
}
@media only screen and (max-width: 575px) {
	.work-process-item {
		margin-top: 0;
	}
}
.work-process-item .icon {
	z-index: 1;
	padding: 15px;
	position: relative;
	margin-bottom: 20px;
	display: inline-block;
}
.work-process-item .icon .number {
	z-index: -1;
	opacity: 0.45;
	line-height: 1;
	font-size: 6em;
	transition: 0.5s;
	font-weight: 700;
	position: absolute;
	color: transparent;
	-webkit-text-stroke: 1px;
	-webkit-text-stroke-color: var(--sbd-main);
	transform: translate(-70%, -60%) rotate(-90deg);
}
@media only screen and (max-width: 575px) {
	.work-process-item .icon .number {
		font-size: 4em;
	}
}
.work-process-item .icon i {
	color: var(--sbd-light);
	font-size: 4em;
	transition: 0.5s;
	display: inline-block;
	width: 120px;
	height: 120px;
	background: var(--sbd-blue);
	line-height: 120px;
	border-radius: 50%;
	text-align: center;
}
@media only screen and (max-width: 575px) {
	.work-process-item .icon i {
		width: 80px;
		height: 80px;
		font-size: 2em;
		line-height: 80px;
	}
}
.work-process-item .icon i:before {
	line-height: inherit;
}
.work-process-item .icon:before {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	content: '';
	left: 0;
	top: 0;
	transition: 0.5s;
	border-radius: 50%;
	transform: scale(0);
	border: 2px dashed var(--sbd-blue-light);
}
.work-process-item p {
	font-size: 0.9em;
	line-height: 1.2;
}
.work-process-item:hover .icon i {
	background: var(--sbd-blue-light);
}
.work-process-item:hover .icon:before {
	transform: scale(1);
	animation: rotated_circle 5s linear infinite;
	animation-delay: 0.5s;
}
.work-process-shape {
	position: absolute;
	width: 110%;
	top: -10%;
	left: -5%;
	z-index: -1;
}
@media only screen and (max-width: 991px) {
	.work-process-shape {
		top: 0;
	}
}
@media only screen and (max-width: 575px) {
	.work-process-shape {
		display: none;
	}
}

.developers-box {
	display: flex;
	align-items: stretch !important;
	justify-content: flex-start;
	width: 100%;
}
.right .developers-box {
	justify-content: flex-end;
}
.right .developers-box .text-item{
	order: 0;
	text-align: right;
	padding-right: 10px;
}	
.right .developers-box .icon-item{
	order: 1;
}	
@media (max-width: 991px) {
	.right .developers-box {
	justify-content: flex-start;
}
	.right .developers-box .text-item{
		order: 1;
		text-align: left;
		padding-right: 0;
		padding-left: 10px;
	}	
	.right .developers-box .icon-item{
		order: 0;
	}		
}	
.developers-box .icon-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	background-image: linear-gradient(rgba(var(--sbd-main-rgb),0.2) 1px, transparent 3px);
	background-size: 2px 5px;
	background-repeat: repeat-y;
	background-position: 50% 0;
	flex-shrink: 0;
}
.developers-box .icon-item span {
	width: 60px;
	height: 60px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--sbd-main);
	font-size: 2em;
	background: var(--sbd-blue);
}
.developers-box:hover .icon-item span {
	transform: scale(1.1);
}
.developers-box .text-item {
	padding-bottom: 20px;
}
.developers-box .text-item h4 {
	margin-bottom: 10px;
	line-height: 1.2;
	color: var(--sbd-blue-light);
}
.developers-box .text-item a p {
	color: #474747;
}	

.developer-cta {
	flex-wrap: wrap;
	border-radius: 7px;
	text-align: center;
	padding: 20px 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: max-content;
	margin: 60px auto;
	background: var(--sbd-blue);
	z-index: 10;
	margin-top: 30px;
}
@media only screen and (max-width: 375px) {
	.developer-cta {
		padding-left: 10px;
		padding-right: 10px;
	}
}
.developer-cta h4,
.developer-cta .theme-btn {
	margin: 10px 15px;
}
/* -----------------------------------
	[20] FOOTER
-------------------------------------*/
.footer-top-newsletter {
	transform: translateY(-250px);
	background-position: bottom;
	margin-bottom: -250px;
	margin-top: 250px;
	padding: 80px;
	background: var(--sbd-violet) url(../images/shapes/newsletter-bg.png);
}
@media only screen and (max-width: 767px) {
	.footer-top-newsletter {
		padding-left: 45px;
		padding-right: 45px;
	}
}
@media only screen and (max-width: 479px) {
	.footer-top-newsletter {
		padding-left: 25px;
		padding-right: 25px;
	}
}
.footer-top-newsletter form {
	width: 100%;
	display: flex;
	padding: 10px;
	background: var(--sbd-light);
	align-items: center;
	border-radius: 7px;
	padding-left: 30px;
}
@media only screen and (max-width: 479px) {
	.footer-top-newsletter form {
		flex-wrap: wrap;
		padding-right: 30px;
	}
}
.footer-top-newsletter form .form-group{
	margin-bottom: 0;
}
.footer-top-newsletter form label {
	position: absolute;
	left: 0;
	top: 50%;
	margin: 0;
	right: auto;
	transform: translateY(-50%);
}
.footer-top-newsletter form label i {
	color: var(--sbd-gray);
}
.footer-top-newsletter form input {
	border: none;
	border-radius: 0;
	color: var(--sbd-gray);
	padding: 0 0 0 30px;
	background: transparent;
}
@media only screen and (max-width: 479px) {
	.footer-top-newsletter form input {
		padding-top: 15px;
		padding-bottom: 15px;
	}
}
.footer-top-newsletter form button {
	flex: none;
}
@media only screen and (max-width: 479px) {
	.footer-top-newsletter form button {
		width: 100%;
	}
}
.footer-top-newsletter .footer-newsletter-image {
	margin-bottom: -130px;
	max-width: 100%;
}
@media only screen and (min-width: 992px) {
	.footer-top-newsletter .footer-newsletter-image {
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		margin-left: auto;
	}
}
@media only screen and (max-width: 991px) {
	.footer-newsletter-content {
		margin-bottom: 50px;
	}
}
.footer-top-newsletter .footer-newsletter-image img {
	width: 100%;
}
.footer-cta {
	margin-top: 150px;
}
.copyright-area {
	position: relative;
	border-top: var(--sbd-border);
	padding: 20px 0;
	text-align: center;
	margin-top: 40px;
}
.footer-bottom .copyright-text {
	font-size: 1.1em;
	color: var(--sbd-light);
}
.copyright-area .footer-menu {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: -13px;
	margin-right: -13px;
}
.copyright-area .footer-menu li {
	font-weight: 500;
	margin: 0 13px 5px;
}
@media only screen and (max-width: 479px) {
	.copyright-area .footer-menu li {
		font-weight: 400;
		margin-left: 10px;
		margin-right: 10px;
	}
}
.footer-title {
	margin-bottom: 25px;
}

/* -----------------------------------
	[21] CONTACT MODAL
-------------------------------------*/
.mfp-close-btn-in .mfp-close {
	color: var(--sbd-light);
}
.contact-popup {
	position: relative;
	background: var(--sbd-gray);
	padding: 20px;
	width: auto;
	max-width: 700px;
	margin: 20px auto;
}
.contact-popup h3{
	text-align: center;
	margin-bottom: 40px;
}
.contact-content .form-group label {
	font-size: 1em;
	margin-bottom: 10px;
	color: var(--sbd-light);
}
.contact-content .form-group .form-control {
	padding-top: 12px;
	padding-bottom: 12px;
}
.contact-content .form-group .nice-select {
	width: 100%;
	font-size: 1em;
}
.contact-content .form-group .nice-select .current {
	font-weight: 400;
	color: var(--sbd-light);
}
.has-error .help-block.with-errors {
	margin-top: 5px;
	color: var(--sbd-rose);
} 
.contact-content input,
.contact-content select,
.contact-content textarea,
.contact-content .nice-select,
.contact-content .form-control {
	width: 100%;
	height: auto;
	border-radius: 5px;
	padding: 15px 30px;
	background-color: rgba(var(--sbd-dark-rgb), 0.1);
	border: var(--sbd-border);
	color: var(--sbd-light);
}
.contact-content .nice-select {
	font-size: 1em;
	line-height: 1;
}
.contact-content .nice-select:after {
	height: 8px;
	width: 8px;
	right: 25px;
	border-color: var(--sbd-rose);
}
.contact-content .nice-select .current {
	font-weight: 500;
	color: var(--sbd-light);
}
.contact-content .nice-select .list {
	width: 100%;
	border-radius: 0 0 5px 5px;
	background: var(--sbd-gray);
	border: var(--sbd-border);
}
.nice-select .option.focus, 
.nice-select .option.selected.focus, 
.nice-select .option:hover {
  background-color: var(--sbd-rose);
}
.contact-content input::-webkit-input-placeholder {
	font-size: 1em;
	font-weight: 300;
	color: var(--sbd-light);
}
.contact-content input:-ms-input-placeholder {
	font-size: 1em;
	font-weight: 300;
	color: var(--sbd-light);
}
.contact-content input::-ms-input-placeholder {
	font-size: 1em;
	font-weight: 300;
	color: var(--sbd-light);
}
.contact-content input::placeholder {
	font-size: 1em;
	font-weight: 300;
	color: var(--sbd-light);
}
.contact-content textarea::-webkit-input-placeholder {
	font-size: 1em;
	font-weight: 300;
	color: var(--sbd-light);
}
.contact-content textarea:-ms-input-placeholder {
	font-size: 1em;
	font-weight: 300;
	color: var(--sbd-light);
}
.contact-content textarea::-ms-input-placeholder {
	font-size: 1em;
	font-weight: 300;
	color: var(--sbd-light);
}
.contact-content textarea::placeholder {
	font-size: 1em;
	font-weight: 300;
	color: var(--sbd-light);
}
#msgSubmit.h4 {
  font-size: 20px;
  margin-bottom: 0;
  margin-top: 10px; 
}

.modal-content {
	position: relative;
}
.modal-dismiss {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 2em;
}
.modal-dismiss a{
	color: var(--sbd-main);
}
.modal-dismiss a:hover{
	color: var(--sbd-rose);
}


.column2{
 -webkit-columns: 2; 
	-moz-columns: 2; 
		 columns: 2;
}

.column2 {
	margin:10px 0 20px;
-webkit-column-gap: 2em;
   -moz-column-gap: 2em;
		column-gap: 2em;	
}

.column2 li {
	list-style:none;
	margin:7px 0;
}
@media (max-width: 767px) {
	.column2 {
	 -webkit-columns: 1; 
		-moz-columns: 1; 
			 columns: 1;
	}	
}