@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900;6..12,1000&family=Work+Sans:wght@200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
	outline: none;
}

ul {
	margin: 0;
	padding: 0;
}

body {
	font-size: 16px;
	background-color: #f0f2f5;
    color: #131313;
	line-height: 23px;
	font-family: 'Work Sans', sans-serif;
}

a { color: #000; }
a:hover { color: #000; }

a:active, a:focus {
	outline: 0;
	border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	line-height: normal;
}

a,
a:hover,
a:focus,
a:active {
	outline: none;
	text-decoration: none;
}

button,
button:focus,
button:active,
button:hover {
	outline: none;
}

p, ul {
	margin: 0;
}

ul { list-style: none; }

/* HEADER */

header {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 1000000;
	transition: .3s;
	background: transparent;
}

header .wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding-top: 25px;
	padding-bottom: 25px;
	transition: .3s;
}

header ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

header ul li {
	margin-left: 50px;
}

header ul li:first-child {
	margin-left: 0px;
}

header .submenu li:first-child {
	margin-left: 20px;
}

header ul li a {
	display: flex;
	align-items: center;
	font-weight: 600;
	color: #fff;
	transition: .2s;
	position: relative;
}

header .main-menu {
	padding: 10px 0px;
}

header .main-menu ul li:hover:before {
	width: 120%;
	opacity: 1;
}

header .main-menu ul li:hover a {
	color: #e96a37;
}

header nav ul li .submenu a:hover {
    color: #e96a37;
}

header .logo {
	display: block;
	width: 180px;
}

header .logo img {
	width: 100%;
}

nav ul li {
	position: relative;
}

header.fixed {
	background: #255925;
	box-shadow: 0 14px 19px -7px rgba(56, 56, 56, 0.46);
}

header.fixed .wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
}

.frontpage {
	padding-top: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
}

.frontpage:before {
	position: absolute;
	content: '';
	background: url(../img/frontpage.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	clip-path: polygon(0% 0%,100% 0%,100% 93%,0% 100%);
	z-index: -1;
}

.frontpage .wrapper {
	max-width: 750px;
	text-align: center;
}

.frontpage h1 {
	font-weight: 300;
	font-size: 55px;
	color: #fff;
	margin-bottom: 50px;
}

.frontpage h1 span {
	font-weight: 600;
}

.calculator {
	background-color: rgb(37 89 37);
	padding: 50px;
	border-radius: 20px;
	box-shadow: 0 55px 31px -50px rgba(56, 56, 56, 0.46);
}

.calculator-slider-wrapper {
  padding-bottom: 30px;
}

.calculator-slider-wrapper .ui-slider-handle .value {
	position: absolute;
	top: -34px;
	left: 50%;
	transform: translate(-50%, 0);
	display: block;
	width: 80px;
	color: #fff;
	text-align: center;
	font-weight: 600;
	font-size: 29px;
}
.calculator-slider-wrapper .ui-slider-handle.ui-state-default.ui-corner-all.ui-state-focus {
	outline: none;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    border: 2px solid #73d107;
    background: rgb(37 89 37);
    font-weight: bold;
    color: #1c94c4;
	border-radius: 50%;
	height: 30px;
    width: 30px;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -11px;
}

.ui-widget-content {
    height: 5px;
	background: #73d107;
	border: 0;
}

.ui-widget-header {
    border: 1px solid #e96a37;
    background: #e96a37;
}

.btn {
	transition: .2s;
}

.btn-1 {
	border: 0;
	background-color: #73d107;
    color: rgb(37 89 37);
	border-radius: 10px;
	padding: 15px 30px;
	text-transform: uppercase;
	font-weight: 600;
}

.btn-1:hover {
	background-color: #66b907;
    color: #fff;
}

.btn-2 {
	border: 0;
    background: #e96a37;
    border-radius: 10px;
	padding: 15px 30px;
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
}

.btn-2 i {
	position: relative;
	top: 2px;
	padding-right: 6px;
	font-size: 27px;
	line-height: 27px;
}

.btn-2:hover {
    background: #c95c31;
	color: #fff;
}

.calculator .calculator-step-1 label {
	margin-bottom: 65px;
	color: #fff;
	font-weight: 500;
	text-align: left;
	display: flex;
}

.contact label,
.calculator .calculator-step-2 label {
	margin-bottom: 10px;
	color: #fff;
	font-weight: 500;
	text-align: center;
	display: block;
}

.contact input,
.calculator input {
	background-color: #fff;
	border: 0;
	padding: 12px 20px;
	display: block;
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 55px 31px -50px rgba(56, 56, 56, 0.46);
}

.calculator-slider-wrapper .ui-slider-handle .value {
    width: 170px;
}

.calculator .calculator-bottom {
	display: flex;
	align-items: center;
	color: #fff;
}

.calculator .calculator-bottom span {
	font-weight: 600;
}

.calculator .calculator-bottom button {
	margin-left: auto;
}

.calculator .input-helpers {
	display: flex;
    justify-content: space-between;
    color: #eee;
    position: relative;
    top: -11px;
    font-size: 12px;
	line-height: 12px;
}

.mt30 { margin-top: 30px !important; }

.accordion-item {
    background-color: transparent;
    border: 0;
}

.accordion-button {
	background-color: transparent;
}

.accordion-button::after {
	margin-left: 20px;
}

.accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #e96a3750;
	color: #000;
}

.accordion-flush .accordion-item .accordion-button {
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
	display: flex;
    justify-content: center;
	border-radius: 10px;
}

.accordion-button:not(.collapsed) {
    box-shadow:none; 
}

.accordion.accordion-flush {
	display: flex;
	flex-direction:column;
	align-items: center;
}

.accordion-body {
    text-align: center;
	padding: 32px;
}

/* BOXES */

.boxes-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.boxes-3 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 50px;
}

.how-borrow h2,
.info h2 {
	font-size: 30px;
    margin: 50px 0px;
    text-align: center;
}

.boxes-2 .item {
	background-color: #fff;
	display: flex;
	padding: 20px;
	border-radius: 10px;
	align-items: center;
	box-shadow: 0 55px 31px -50px rgba(56, 56, 56, 0.15);
	transition: .2s;
}

.boxes-2 .item .item-icon {
	width: 80px;
	height: 80px;
	background-color: #e96a37;
	color: #fff;
	border-radius: 10px;
	display: flex;
    justify-content: center;
    align-items: center;
	margin-right: 20px;
	transition: .2s;
}

.boxes-2 .item .item-icon i {
	font-size: 48px;
	transition: .2s;
}

.boxes-2 .item .item-content {
	flex: 1;
}

.boxes-2 .item .item-content h4 {
	font-size: 18px;
	margin-bottom: 10px;
	transition: .2s;
}

.boxes-2 .item .item-content p {
	margin-top: auto;
    margin-bottom: auto;
	font-size: 15px;
	color: #898989;
	transition: .2s;
}

.boxes-2 .item:hover {
	background-color: #e96a37;
}

.boxes-2 .item:hover .item-icon {
	background-color: #fff;
}

.boxes-2 .item:hover .item-icon i {
	color: #e96a37;
}

.boxes-2 .item:hover .item-content p,
.boxes-2 .item:hover .item-content h4 {
	color: #fff;
}

.pt50 { padding-top: 50px !important; }
.pb50 { padding-bottom: 50px !important; }

/* HOW UPLOAD BIK */

.how-upload-bik {
	display: flex;
	gap: 200px;
    justify-content: center;
	text-align: center;
}

.video {
	position: relative;
	min-height: 300px;
	max-width: 400px;
	flex-direction: column;
	background-color: #fff;
    display: flex;
    padding: 20px 60px;
    border-radius: 10px;
    align-items: center;
    box-shadow: 0 55px 31px -50px rgba(56, 56, 56, 0.15);
    transition: .2s;
	justify-content: center;
}

.video:hover {
	background-color: #e96a37;
}

.video h4 {
	font-size: 18px;
    margin: 10px 0px;
    transition: .2s;
}

.video:hover h4 {
	color: #fff;
}

.video p {
	font-size: 15px;
    color: #898989;
	transition: .2s;
}

.video:hover p {
	color: #fff;
}

.video img {
    max-height: 172px;
    border-radius: 10px;
    margin: 20px;
}

.clip {
	position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
}

.clip i {
	position: absolute;
	font-size: 130px;
    opacity: 0.7;
	color: #fff;
	transition: .2s;
}

.video:hover .clip i {
	color: #e96a37;
}

.video > a {
    z-index: 20;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

/* HOW BORROW */

.how-borrow .item {
	text-align: center;
	padding: 20px;
	position: relative;
}

.how-borrow .item:nth-of-type(2) {
	text-align: center;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 55px 31px -50px rgba(56, 56, 56, 0.15);
	position: relative;
}

.how-borrow .item:nth-of-type(2):before {
    position: absolute;
    left: -17%;
    top: 32%;
    transform: translateY(-50%);
    content: '';
    height: 2px;
    width: 35%;
    background-color: #e96a37;
}

.how-borrow .item:nth-of-type(2):after {
    position: absolute;
    left: 82%;
    top: 32%;
    transform: translateY(-50%);
    content: '';
    height: 2px;
    width: 35%;
    background-color: #e96a37;
}

.how-borrow .item i {
	width: 80px;
	height: 80px;
	background-color: #fff;
	color: #e96a37;
	border: 2px solid #e96a37;
	border-radius: 50px;
	display: flex;
    justify-content: center;
    align-items: center;
	font-size: 48px;
	margin: 20px auto;
}

.how-borrow .item h4 {
	margin-bottom: 20px;
	color: #e96a37;
}

.how-borrow .item p {
	color: #000000;
}

.calculator h2 {
	color: #fff;
	font-size: 31px;
}

.calculator .calculator-step-3 p { 
	color: #fff;
	margin-top: 10px;
}

.calculator-info input {
	border: 1px solid white;
    padding: 7px 15px;
    border-radius: 30px;
    width: 513px;
    background-color: #f0f2f5;
}

.contact textarea,
.calculator-info input::placeholder {
	color: #898989;
	text-align: center;
	font-size: 17px;
}

.calculator-info {
	display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.calculator-info button[type="submit"]{
	margin-top: 65px;
}

/* SECTION 3 */

.contact-to-us {
	display: flex;
}

.contact h2 {
	text-align: center;
}

.mt50 {
	margin-top: 50px;
}

.contact form {
	background-color: #255925;
    border-radius: 10px;
    padding: 30px;
	position: relative;
}

.contact label {
	margin-top: 30px;
	display: flex;
}

.contact form h2 {
	color: #fff;
	font-size: 30px;
}

.contact form button {
	display: flex;
	margin-left: auto;
}

.contact textarea {
	text-align: left;
	border-radius: 10px;
}

.contact-info {
	padding-left: 50px;	
}

.contact-info .socials a {
	display: flex;
}

.contact-form-info {
	display: flex;
	margin-top: 30px;
}

.contact-form-info .contact-icon {
	width: 80px;
    height: 80px;
    background-color: #e96a37;
    color: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.contact-form-info .contact-text {
	display: block;
	margin-top: auto;
	margin-bottom: auto;
}

.contact-form-info .contact-text span {
	font-weight: 600;
}

.contact-form-info i {
	font-size: 48px;
}

.contact-info .socials {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.contact-info .socials a {
	display: flex;
    align-items: center;
    justify-content: center;
	width: 50px;
	height: 50px;
	margin: 0px 10px;
	border: 1px solid #e96a37; 
	border-radius: 10px;
	color: #e96a37;
	transition: .2s;
}

.contact-info .socials a:hover {
	margin: 0px 10px;
	background-color: #e96a37;
	color: #fff;
}

.contact-info .socials i {
	position: relative;
    top: 2px;
    font-size: 25px;
    line-height: 23px;
}

/* SECTION 4 */

.bg-1 {
	background-color: #e96a37;
}

.summary {
	display: flex;
	align-items: center;
	padding: 50px 0px;
}

.summary-button {
	display: flex;
    justify-content: center;
}

.summary-button a {    
	display: flex;
    align-items: center;
    border: 2px solid #fff;
    color: #fff;
	transition: .3s;
}

.summary-button a:hover {    
	background-color: #fff;
    border: 0;
    color: #e96a37;
}

.summary-text h2 {    
    color: #fff;
}

.section-title {
	margin: 50px auto;
	text-align: center;
}

/* FOOTER */

footer h5 {
	color: #000;
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 20px;
}

footer ul.menu li {
	padding: 5px 0;
}

footer ul.menu li a {
	color: #000;
}

footer ul.menu li a:hover {
	color: #000;
}

footer .footer-top {
	padding: 50px 0;
	background-color: #eff2f6;
	border-top: 0.1px solid #73d107;
}

.scroll-up-footer-top p {
	padding: 20px 10px;
    font-size: 17px;
    line-height: 17px;
    font-weight: 700;
	color: rgb(41 37 102);
	cursor: pointer;
}

.footer-top-left {
	display: flex;
    justify-content: space-between;
    flex-direction: column;
}

footer .footer-middle {
	background-color: #eff2f6;
	color: #f4f4f4;
	font-size: 13px;
	line-height: 18px;
	padding: 40px 0;
	border-bottom: 1px solid rgba(255,255,255,.1);
	border-top: 1px solid #25592550;
}

footer .footer-middle .logo img{
	width: 220px;
}

footer .footer-middle .wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
    justify-content: space-between;
}

footer .footer-middle .social-media {
	display: flex;
	align-items: center;
}

footer .footer-middle p {
	font-weight: 500;
}

footer .footer-bottom {
	background: #fff;
    padding: 15px 0;
    font-size: 12px;
    line-height: 18px;
	text-align: center;
}

footer .socials {
	display: flex;
	align-items: center;
	margin-left: 30px;
	gap: 8px;
}

footer .socials li a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgb(41 37 102);
	width: 50px;
	height: 50px;
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 100%;
	transition: .3s;
}

footer .socials li a:hover {
	background-color: #255925;
}

footer .socials li a:hover i {
    color: #fff;
}

footer .socials li a i {
	position: relative;
	top: 2px;
	color: #255925;
	font-size: 23px;
	line-height: 23px;
	transition: .3s;
}

footer .socials li a img {
	width: 30px;
	transition: .3s;
}

footer .socials li a:hover img {
	filter: brightness(1) invert(0);
}

footer .logos {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-left: auto;
}

footer .logos li {
	max-width: 120px;
}

footer .logos li img {
	width: 100%;
	filter: grayscale(1);
	transition: .6s;
}

footer .logos li:hover img {
	filter: grayscale(0);
}

footer .contact-link {
	display: block;
	font-weight: 700;
	font-size: 20px;
	color: #255925;
	margin-bottom: 10px;
}

footer .contact-link i {
	position: relative;
	top: 5px;
	padding-right: 10px;
}

.mobile-menu {
	display: none;
}

@media (min-width: 0px) and (max-width: 991px) {
	
	.contact-info {
		padding: 0px;
	}
	
	.summary {
		padding: 50px 0px;
	}
	
	.summary-text{
		text-align: center;
	}
	
	.frontpage h1 {
		font-size: 40px;
	}
	
	.main-menu {
		display: none;
	}
	
	header .logo {
		width: 140px;
	}
	
	.btn-1,
	.btn-2 {
		padding: 10px 10px;
		font-size: 14px;
		margin-right: 10px;
	}
	
	.calculator {
		margin: 0pc 10px;
		padding: 20px 50px;
	}

	.calculator .calculator-bottom {
		flex-direction: column;
	}

	.calculator .calculator-bottom button {
		margin-right: auto;
		margin-top: 20px;
	}
	
	.calculator label {
		text-align: center;
	}

	.mobile-menu {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #255925;
		z-index: 1000000;
		border-top: .1px solid #73d107;
		display: block;
	}	
	
	.mobile-menu ul {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
	
	.mobile-menu ul li a {
		display: flex;
		flex-direction: column;
		text-align: center;
		color: rgba(255, 255, 255, .75);
		align-items: center;
		font-size: 11px;
		line-height: 11px;
		text-transform: uppercase;
		padding: 10px 5px;
		transition: .2s;
		font-weight: 500;
	}	
	
	.mobile-menu ul li a:hover {
		color: rgba(255, 255, 255, 1);
	}	
	
	.mobile-menu ul li a i {
		display: block;
		margin-bottom: 5px;
		font-size: 20px;
		line-height: 20px;
	}
	
	.boxes-2 {
		display: grid;
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.boxes-3 {
		display: grid;
		grid-template-columns: 1fr;
		gap: 50px;
	}
	
	.video {
		width: 100%;
	}
	
	.how-borrow .item:nth-of-type(2):after {
		left: 40%;
		top: 108%;
		transform: translateY(-50%) rotate(90deg);
		width: 20%;
	}
	
	.how-borrow .item:nth-of-type(2):before {
		left: 40%;
		top: -7%;
		transform: translateY(-50%) rotate(90deg);
		width: 20%;
	}
	
	.who-borrow .item .item-icon {
		margin: 30px auto;
	}
	
	.who-borrow .item {
		display: block;
		text-align: center;
		position: relative;
	}

	.who-borrow .btn-2 {
		padding: 15px;
	}
	
	.accordion-button::after {
		margin-left: 10px;
	}

	.accordion.accordion-flush {
		display: block;
	}
	
	.accordion-flush .accordion-item .accordion-button {
		text-align: center;
	}
	
	.accordion-body {
		padding: 25px;
	}

	.m-mt20 { margin-top: 20px !important; }
	
	/* FOOTER */
	
	footer .footer-middle .logo{
		margin: auto;
		margin-bottom: 20px;
	}
	
	footer .footer-middle .logo img {
		width: 150px;
	}
	
	footer .footer-middle .social-media {
		display: block;
		margin: auto;
	}

	footer .footer-middle .social-media p {
		display: none;
	}
	
	footer .socials {
		margin-left: 0px; 
	}
	
	.contact-email-phone {
		margin-bottom: 20px;
	}
	
	footer .footer-top p {
		width: 100%;
	}

	footer {
		margin-bottom: 50px;
	}
	
	
}