* {
	margin: 0;
	padding: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    line-height: 1;
    outline: none;
}
footer,
header,
section {
    display: block;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    width: 100%;
    background: #181a20;
    color: #b3b3b3;
    font-weight: 300;
    -webkit-animation: fade-in 1s linear;
	-moz-animation: fade-in 1s linear;
	-o-animation: fade-in 1s linear;
	animation: fade-in 1s linear;
}
@-webkit-keyframes fade-in {   0% { opacity: 0; }   100% { opacity: 1; }   }
@-moz-keyframes    fade-in {   0% { opacity: 0; }   100% { opacity: 1; }   }
@-o-keyframes      fade-in {   0% { opacity: 0; }   100% { opacity: 1; }   }
@keyframes         fade-in {   0% { opacity: 0; }   100% { opacity: 1; }   }
section {
    clear: both;
    padding: 45px 0;
}
section#team {
	padding: 0;
}
section,
footer {
	position: relative;
}
a,
.menu label {
    color: #4f9851;
    text-decoration: none;
}
a:hover,
.menu label:hover {
	color: #78ba7b;
}
img {
	max-width: 100%;
	height: auto;
}
h1,
h2 {
	font-weight: 700;
	position: relative;
	color: #ccc;
	margin-bottom: 30px;
}
h1 {
	font-size: 28px;
}
h2 {
	font-size: 26px;
	position: relative;
}
h3 {
	margin-bottom: 20px;
}
strong {
	font-weight: 500;
}
.inner {
    clear: both;
    width: 1140px;
    max-width: 100%;
    margin: 0 auto;
}
.mini-inner {
	width: 670px;
}
.center {
    text-align: center;
}
.right {
	text-align:right;
}
.grid {
	display: grid;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}
.aic {
	align-items:  center;
}
.gar {
	grid-auto-rows: 1fr;
}
.cols-2 {
	grid-template-columns: repeat(2,1fr);	
}
.header .cols-2 {
	grid-template-columns: 300px 1fr;
}
.cols-3 {
	grid-template-columns: repeat(3,1fr);	
}
.cols-4 {
	grid-template-columns: repeat(4,1fr);			
}
::selection {
  background: #4f9851;
  color: #fff;
}
/* Header */
.logo img {
	height: 45px;
}
.header {
	padding: 12px 0;
	background: #101010;
}
.menu {
	list-style-type: none;
	display: flex;
}
.header .menu {
	justify-content: end;	
}
.menu li {
	margin-left: 15px;
}
.header .menu li:first-child {
	margin-left: 0;
}
/* Middle */
.content img {
	float: left;
	width: 300px;
	margin: 0 15px 10px 0;
}
section#join {
	padding-top: 0;
}
section#testimonials {
	padding-bottom: 0;
}
section p,
section li,
.popup p,
.popup li {
	line-height: 1.4;
}
.popup li {
	margin-bottom: 7px;
}
section li {
	margin-bottom: 10px;
}
section p,
section li:last-child,
.popup li:last-child,
.popup p:last-child,
.faq-list li p:last-child {
	margin-bottom: 0;
}
section ul,
.popup ul {
	margin-left: 15px;
}
.join-block ul {
	margin-left: 0;
} 
section p,
section ul,
.popup p,
.popup ul {
	margin-bottom: 15px;
}
.slogan h2 {
	font-size: 35px;
	margin-bottom: 30px;
}
.slogan p {
	font-weight: 400;
}
.menu {
	font-weight: 500;
}
.slogan p {
	font-size: 18x;
	margin-bottom: 15px;
}
.slogan h2,
.slogan p {
	text-transform: uppercase;
	line-height: 1.7;
	color: #f4f4f4;
}
.gold {
	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
  	background-image: -webkit-linear-gradient(#ffffa3, #ffff9e);
  	text-shadow: -0.02em -0.03em 0.005em rgba(173, 133, 40, 0.60);
}
.base-color {
	color: #4f9851;
}
#services,
#portfolio {
	background: #101010;
}
h2,
h3,
h4,
p,
.list,
.advantage-item,
.faq-text,
.copyright,
.service-item {
	cursor: default;
}
#services h2,
#team h2,
#portfolio h2,
#contact h2 {
	display: block;
	padding-bottom: 25px;
}
#services h2:before,
#team h2:before,
#portfolio h2:before,
#contact h2:before {
    position: absolute;
    content: '';
    background: #666;
    width: 130px;
    height: 2px;
    left: 0px;
    bottom: 0px;
}

#services h2:after,
#team h2:after,
#portfolio h2:after,
#contact h2:after  {
	position: absolute;
	content: '';
	background: #4f9851;
	width: 45px;
	height: 4px;
	left: 0px;
	bottom: 0px;
	transition: all 500ms ease;
	-webkit-mask-image: linear-gradient(-75deg, rgba(230, 172, 56, 0.5) 50%, #ffffaa 50%, rgba(255, 255, 170, 1) 70%);
	-webkit-mask-size: 200%;
	animation: shine 2s infinite;
}
#services h2:before,
#services h2:after,
#team h2:before,
#team h2:after,
#portfolio h2:before,
#portfolio h2:after,
#contact h2:before,
#contact h2:after {
	left: 50%;
    transform: translateX(-50%);
}
@-webkit-keyframes shine {
    from {
        -webkit-mask-position: 150%;
    }
    to {
        -webkit-mask-position: -50%;
    }
}
.shape {
	position: absolute;
	z-index: -1;
}
.footer .shape {
	right: 0;
	bottom: 0;
}
#about-us {
	background-image: url(../img/top-bg.png);
	background-color: #121212;
	background-attachment: fixed;
	background-position: center center;
}
.top-img {
	height: 300px;
	width: auto;
	-webkit-animation: upndown 10s linear 2s infinite;
    animation: upndown 10s linear 2s infinite; 
}
@-webkit-keyframes upndown {
  0% {
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  50% {
    -ms-transform: translateY(30px);
    -webkit-transform: translateY(30px);
    transform: translateY(30px); }
  100% {
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } }
@-moz-keyframes upndown {
  0% {
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  50% {
    -ms-transform: translateY(30px);
    -webkit-transform: translateY(30px);
    transform: translateY(30px); }
  100% {
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } }
@-o-keyframes upndown {
  0% {
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  50% {
    -ms-transform: translateY(30px);
    -webkit-transform: translateY(30px);
    transform: translateY(30px); }
  100% {
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } 
}
@keyframes upndown {
  0% {
    -ms-transform: translateY(0px);

    -webkit-transform: translateY(0px);

    transform: translateY(0px); }
  50% {
    -ms-transform: translateY(30px);

    -webkit-transform: translateY(30px);

    transform: translateY(30px); }
  100% {
    -ms-transform: translateY(0px);

    -webkit-transform: translateY(0px);

    transform: translateY(0px); } 
}
.service-item {
	position: relative;
	background-color: #181a20;
	padding: 30px 50px;
	line-height: 1.4;
	border-radius: 10px;
}
.service-item:hover {
	margin-top: -10px;
}
.service-item h4 {
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 10px;
}
.service-item label {
	position: absolute;
	display: inline-block;
	right: 10px;
	top: 10px;
	cursor: pointer;
}
.service-item label svg {
	width: 20px;
	height: 20px;
	fill: #4f9851;
}
.service-item:hover label svg {
	fill: #80ff80;
}
.si1,
.si2,
.si3,
.si4,
.si5,
.si6 {
	width: 45px;
	height: 45px;
	margin-bottom: 10px;
	stroke-width: 1;
}
.si1 {
	color: #fd4766;
}
.si2 {
	color: #337dff;
}
.si3 {
	color: #12d8df;
}
.si4 {
	color: #59c98d;
}
.si5 {
	color: #6f41f6;
}
.si6 {
	color: #357ff6;
}
.btn a {
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	display: inline-block;
	padding: 10px 25px;
	border-radius: 5px;
 	 background-image: radial-gradient(circle, #6fa871, #629e64, #559456, #488b49, #3a813c);
}
td.btn a {
	padding: 3px 6px;
	border-radius: 4px;	
	font-size: 14px;
	text-transform: none;
}
.btn:hover {
	color: #fff;
	opacity: 0.8;
}
.popup h3 {
	position: relative;
	padding-left: 40px;
}
.popup h3:before {
	content: '';
	position: absolute;
	height: 1px;
	width: 30px;
	background: #777;
	left: 0;
	top: 10px;
}
.list {
	list-style: none;
}
.resume-form {
	padding: 40px;
	box-shadow: 0 15px 25px -15px #346536;
}
.resume-form .btn {
	margin-top: 0;
}
input[type="text"].form-name,
input[type="text"].form-contact,
input[type="text"].form-skill,
input[type="text"].form-title {
	padding-left: 35px;
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: 6px 5px;
}
input[type="text"].form-name {
	background-image: url(../img/name.svg);
}
input[type="text"].form-contact {
	background-image: url(../img/contact.svg);
}
input[type="text"].form-skill {
	background-image: url(../img/skill.svg);	
}
input[type="text"].form-title {
	background-image: url(../img/title.svg);	
}
.jb-nre {
	border-radius: 10px;
	margin-bottom: 15px;
}
.silver {
	cursor: pointer;
	background-image: radial-gradient(circle, #e5e5e5, #dedede, #d6d6d6, #cfcfcf, #c8c8c8, #c5c5c5, #c1c1c1, #bebebe, #bebebe, #bfbebf, #bfbfbf, #bfbfc0);
}
.mt-10 {
	margin-top: 10px;
}
.mb-10 {
	margin-bottom: 10px;
}
.join-block-li.mt-10.mb-10 {
	line-height: 1.5;
}
.join-block-li.mt-10 label {
	display: block;
}
/*.join-block:last-child .btn {
	position: absolute;
	bottom: 20px;
	left: 20px;
}*/
.grey {
	color: #bfbfbf;
}
.sep1,
.sep2 {
    line-height: 0;	
}
.sep1,
.sep2,
.sep3 {
	position: relative;
	left: 0;
    overflow: hidden;
    width: 100%;
    direction: ltr;
}
.sep1 svg {
    height: 110px;
    display: block;
    width: calc(189% + 1.3px);
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
	overflow: hidden;
}
.sep1 .elementor-shape-fill {
    fill: #101010;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg);
}

.sep2[data-negative="false"].shape-bottom {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.sep2 svg {
    width: calc(189% + 1.3px);
    height: 110px;
	z-index: -1;
	display: block;
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.sep2 .elementor-shape-fill {
    fill: #101010;
}
.sep2.sep3[data-negative="false"].shape-bottom {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.separator {
	overflow: hidden;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	width: 100%;
}
.separator svg {
    height: 110px;
	display: block;
    width: calc(189% + 1.3px);
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.separator .elementor-shape-fill {
    fill: #101010;	
}
.resume-form,
.order-form {
	background-color: #16181c;
	border-radius: 10px;
}
.order-form {
	padding: 30px;
	position: relative;
}
.order-form::before {
	content: '';
	position: absolute;
	border-radius: 10px;
	left: 0;
	top: 0;
	background-color: #4f9851;
	width: 100%;
	height: 100%;
	z-index: -1;
	rotate: -2deg;
}
/* Footer */
.footer {
	padding: 35px;
	font-weight: 300;
	background: #101010;
}
.fblock {
	padding: 15px 0;
	margin-bottom: 25px;
	font-weight: 400;
	border-top: 1px solid #323232;
	border-bottom: 1px solid #323232;
}
.footer .menu a {
	color: #ccc;
	}
.footer .menu {
	justify-content: start;	
}
.footer .right svg,
.nsvg svg {
	fill: #777;
	height: 16px;
	width: auto;
	margin-right: 1px;
	margin-bottom: -4px;
}
.footer .right a:first-child svg {
	margin-bottom: -3px;
}
.footer .right a {
	display: inline-block;
	margin-left: 10px;
}
.footer .right a:first-child {
	margin-left: 0;
}
.copyright p {
	font-size: 13px;
	margin-bottom: 15px;
	line-height: 1.5;
}
.copyright p:last-child {
	margin-bottom: 0;
}
.mb25 {
	margin-bottom: 25px;
}
.mb15 {
	margin-bottom: 15px;
}
.mt25 {
	margin-top: 25px;
}
.read {
    margin-top: 25px;
}
/* Table */
table {
    width: 100%;
    border: none;
    border: 1px solid #4f9851;
    padding: 5px;
    border-radius: 10px
}
thead th {
    font-weight: 500;
    text-align: left;
    border: none;
    padding: 10px 15px;
    background: #111;
    font-size: 15px;
    color: #4f9851;
    text-transform: uppercase;
}
tbody td {
    text-align: left;
    border: none;
    padding: 10px 15px;
    font-weight: 400;
    font-size: 15px;
    vertical-align: top;
    line-height: 1.3;
}
tbody tr:nth-child(even){
    background: #101010;
}
tbody td:first-child {
    border-radius: 8px 0 0 8px;
}
tbody td:last-child {
    border-radius: 0 8px 8px 0;
}
td a {
	display: inline-block;
	word-wrap: anywhere;
}
@media screen and (max-width: 667px) {
    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    table tr {
        display: block;
        margin-bottom: .625em;
    }
    table td {
        display: block;
        width: 100%;
        padding: 5px;
    }
    tbody tr:nth-child(even) {
        background: transparent;
    }
    tbody td:nth-child(odd) {
        font-weight: 500;
    }
    table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }
    table td:last-child {
        border-bottom: 0;
    }
}
/* Disclaimer */
.disclaimer {
    background: rgba(15, 16, 30);
    border: 1px solid rgba(43 44 56 / 46%);
    border-radius: 15px;
    padding: 30px;
    line-height: 1.5;
}
.disclaimer svg {
    float: left;
    fill: #44a08d;
    width: 75px;
    height: 75px;
    margin-right: 15px;
    margin-top: -2px;
}
/* Back to top button */
#back-to-top {
	position:fixed; 
	z-index: 999; 
	display:none; 
	bottom:25px; 
	right:15px; 
	cursor:pointer;
}
#back-to-top svg {
	width: 40px; 
	height: 40px; 
	display: block; 
	fill: #4f9851; 
	opacity: 0.7;
	-webkit-transition:  .3s all;
	   -moz-transition:  .3s all;
	    -ms-transition:  .3s all;
	     -o-transition:  .3s all;
	        transition:  .3s all;
}
#back-to-top:hover svg {
	opacity: 1;
}
/*Popup*/
.popup-container .popup-button {
	background: #333;
	line-height: 34px;
	color: #fff;
	padding: 0 20px;
	border-radius: 3px;
	display: block;
	cursor: pointer;
}
.popup-container .popup-button:hover {
	background: #444;
}
.popup-container .popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transition: 250ms all;
}
.popup-inner {
	width:  90%;
	max-width: 550px;
	box-sizing: border-box;
	padding: 10px;
	background-image: radial-gradient(circle, #2c2f3a, #292c36, #262933, #24272f, #21242c);
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	top: 150%;
	transition: 250ms all;
}
.popup-inner.pa-inner {
	padding: 20px;
}
.popup h3 {
	color: #4f9851;
}
.popup-title svg {
    height: 20px;
    width: auto;
    margin-right: 3px;
    position: relative;
    top: 3px;
    fill: #aa8f50;
}
.popup-title .subtitle {
	margin-bottom: 25px;
	font-size: 12px;
	line-height: 1.3;
	color: #555;
}
.popup-content ul li {
	margin-bottom: 10px;
}
.popup-content ul li:last-child {
	margin-bottom: 0;
}
.popup-content ul li input {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 3px;
	line-height: 34px;
	padding: 0 15px;
	font-size: 14px;
	box-sizing: border-box;
}
.popup-content ul li button {
	width: 100%;
	line-height: 34px;
	background: #666;
	color: #fff;
	cursor: pointer;
	border-radius: 3px;
	border: none;
	font-size: 14px;
}
.popup-content ul li button:hover {
	background: #444;
}
.transparent-label {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	cursor: pointer;
}
.popup-container > input {
	display: none;
}
.popup-container > input:checked + .popup {
	opacity: 1;
	visibility: visible;
}
.popup-container > input:checked + .popup .popup-inner {
	position: relative;
	top: 50%;
}
.popup-close-btn {
	position: absolute;
	top: -45px;
	right: -35px;
	cursor: pointer;
	display: block;
	padding: 10px;
	font-size: 42px;
	color: #999;
}
.popup-close-btn:hover {
	color: #f4f4f4;
}
/* Form */
.form-input {
	display: block;
	margin-bottom: 10px;
	color: #999;
    font-size: 14px;
	font-weight: 500;
}
.form-input label {
	display: block;
	margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    width: 100%;
	border: 1px solid #24272d;
	padding: 7px 10px;
	background-color: #24272d;
	color: #f1f1f1;
	border-radius: 5px;
}
textarea {
	height: 120px;
}
input [type="file"] {
	margin-left: 5px;
}
input[type="submit"] {
	border: none;
	cursor: pointer;
	font-weight: 600!important;
	letter-spacing: 1px;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder { 
	color:transparent; 
}
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder { 
	color:transparent; 
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder { 
	color:transparent; 
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder { 
	color:transparent; 
}
/* Landscape phones and down */
@media (max-width: 800px) {
	.inner {
		padding: 0 15px;
	}
	.inner.fblock {
		padding: 15px 0;
	}
	.cols-2,
	.header .cols-2,
	.cols-3 {
		grid-template-columns: 1fr;
	}
	.cols-4 {
		grid-template-columns: repeat(2,1fr);			
	}
	.mhide {
		display: none!important;
	}
	.menu label.top-label {
		text-transform: uppercase;
		display: inline-block;
		margin-bottom: 15px;
		padding: 7px 20px;
		border: 1px solid #4f9851;
		border-radius: 4px;
	}
	.header,
	.right,
	.footer,
	.slogan {
		text-align: center;
	}
	.slogan h2 {
		font-size: 30px;
	}
	.slogan p {
		font-weight: 500;
	}
	.footer .menu,
	.footer .right {
		line-height: 1.6;
	}
	#about-us {
		background-position: right top;
	}
	.popup-inner {
		max-height: 400px;
		overflow-y: scroll;
		overflow-x: hidden;
	}
	.popup-inner::-webkit-scrollbar {
		display: unset;
	}
	.popup-close-btn {
		top: -10px;
		right: 0;
		color: #ddd;
	}
}
@media (max-width: 550px) {
	.header .menu,
	.footer .menu {
		justify-content: center;
	}
	.slogan p {
		line-height: 1.5;
	}
	.footer {
  		padding: 35px 15px;
	}
	.content img {
		float: none;
		width: 100%;
		margin: 0 0 15px;
	}
}