@font-face {
    font-family: 'OpenSans';
    src: url('/wp-content/themes/trustypay/assets/fonts/OpenSans.woff') format('woff'),
    	url('/wp-content/themes/trustypay/assets/fonts/OpenSans.ttf') format('truetype');
}

html, body, div, span, applet, object, iframe, 
h1, h2, h3, h4, h5, h6, p, blockquote, pre, 
a, abbr, acronym, address, big, cite, code, 
del, dfn, em, img, ins, kbd, q, s, samp, 
small, strike, strong, sub, sup, tt, var, 
b, u, i, center, 
dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, 
table, caption, tbody, tfoot, thead, tr, th, td, 
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary, 
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
}

div, header, a, aside, article{
	box-sizing: border-box;
}

body{
	font-family: "OpenSans";
	color: #001A3F;
}

p, h1, h2{
	white-space: pre-line;
}

a{
	color: #001A3F;
	text-decoration: none;
}

.container{
	max-width: 1260px;
	width: calc(100% - 32px);
	margin: 0 auto;
}

header{
	position: fixed;
	height: 80px;
	background: #fff;
	width: 100%;
	z-index: 10;
}

header .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

header ul{
	display: flex;
	gap: 30px;
	list-style: none;
	align-items: center;
}

header ul a{
	font-size: 18px;
	font-weight: 600;
}

.popup_form, .popup_thanks{
	position: fixed;
	z-index: 20;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	padding: 30px;
	background: #fff;
	width: calc(100% - 30px);
}

.popup_form{
	max-width: 600px;
	height: 720px;
	display: none;
}

.popup_thanks{
	max-width: 800px;
	height: 600px;
	padding: 144px 103px;
	text-align: center;
	background-image: url('/wp-content/themes/trustypay/assets/images/popup-thanks-bg.svg');
	background-position: center center;
	background-size: 100%;
	background-color: #F0FCFA;
	display: none;
}

.popup_thanks h2{
	font-weight: 700px;
}

.popup_over{
	position: fixed;
	z-index: 19;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.7);
	cursor: pointer;
	display: none;
}

.form_close{
	position: absolute;
	right: 30px;
	top: 30px;
}

.popup_form h2{
	font-size: 24px;
	font-weight: 600;
	line-height: 150%;
}

.select{
	position: relative;
	width: 100%;
}

.select_val{
	width: 100%;
	padding: 12px;
	border-radius: 5px;
	border: 1px solid #D1D5DA;
	cursor: pointer;
}

.select.active .select_val{
	border: 1px solid #35BCA3;
}

.select_val_bg{
	background-image: url('/wp-content/themes/trustypay/assets/images/options-select.svg');
	width: 24px;
	height: 24px;
	right: 12px;
	top: 12px;
	position: absolute;
	transform: rotate(180deg);
	transition: all 0.3s;
}

.select.active .select_val_bg{
	transform: rotate(0deg);
}

.options{
	border-radius: 5px;
	border: 1px solid var(--Primary-color, #35BCA3);
	position: absolute;
	left: 0;
	top: 56px;
	z-index: 1;
	width: 100%;
	background: #fff;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s;
}

.select.active .options{
	visibility: visible;
	opacity: 1;
}

.option{
	padding: 12px 16px;
	cursor: pointer;
	transition: all 0.3s;
}

.option:hover, .option.active{
	color: #35BCA3;
	background: #F2FBF9;
}

.option.active{
	background-image: url('/wp-content/themes/trustypay/assets/images/option-active.svg');
	background-position: right 12px top 12px;
	background-repeat: no-repeat;
	transition: none;
}

.select_val, .option{
	font-size: 14px;
	font-weight: 600;
	line-height: 150%; 
}

.form_select .wpcf7-form-control-wrap, .form_checkbox .wpcf7-form-control-wrap{
	visibility: hidden;
	opacity: 0;
}

.form_select p, .form_checkbox p{
	height: 24px;
	margin-bottom: 10px;
	margin-top: 20px;
}

.checkbox{
	display: flex;
	gap: 6px;
	margin-bottom: 11px;
	align-items: center;
	font-size: 14px;
	font-weight: 300;
	line-height: 150%; 
	cursor: pointer;
}

.checkbox_button{
	border: 1px solid #D1D5DA;
	width: 24px;
	height: 24px;
}

.checkbox.active{
	font-weight: 600;
}

.checkbox.active .checkbox_button{
	background-image: url('/wp-content/themes/trustypay/assets/images/checkbox.svg');
	background-color: #35BCA3;
}

form br{
	display: none;
}

form > p{
	margin-bottom: 20px;
	max-height: 110px;
}

.wpcf7-response-output{
	display: none;
}

input[type="text"], input[type="email"]{
	border-radius: 5px;
	border: 1px solid #D1D5DA;
	width: 100%;
	padding: 12px;
	color: #5C687C;
	font-size: 14px;
	font-weight: 400;
	line-height: 150%; 
	box-sizing: border-box;
	margin-top: 10px;
	outline: none;
}

input[type="submit"]{
	border-radius: 8px;
	background: #35BCA3;
	color: #fff;
	padding: 12px;
	width: 100%;
	text-align: center;
	font-size: 17px;
	font-weight: 700;
	line-height: 26px;
	border: none;
	outline: none;
	cursor: pointer;
	margin-top: 20px;
	transition: all 0.3s;
}

input[type="submit"]:hover, .green_button:hover{
	background: #33907F;
}

.button_menu{
	position: relative;
	width: 24px;
	height: 24px;
	display: none;
}

.button_menu img{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.button_menu_close{
	display: none;
}

.button_menu.active .button_menu_close{
	display: block;
}

.button_menu.active .button_menu_open{
	display: none;
}

.mobile_menu{
	position: fixed;
	z-index: 10;
	width: 100%;
	height: calc(100% - 80px);
	background: #fff;
	margin-top: 80px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

.mobile_menu.active{
	opacity: 1;
	visibility: visible;
}

.mobile_menu li{
	padding: 20px 24px;
}

.mobile_menu .green_button{
	margin-left: 24px;
	width: calc(100% - 48px);
	text-align: center;
	max-width: 320px;
}

.main_block{
	background-image: url('/wp-content/themes/trustypay/assets/images/main-block-bg.svg');
    background-repeat: no-repeat;
    background-position: left top -81px;
    padding-bottom: 100px;
}

.green_button, .white_button{
	padding: 12px 15px;
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
	border-radius: 8px;
	text-decoration: none;
	display: block;
	width: fit-content;
	transition: all 0.3s;
}

.green_button{
	background: linear-gradient(0deg, #35BCA3 0%, #35BCA3 100%), #35BCA3;
	color: #fff;
}

.white_button{
	border-radius: 8px;
	border: 1px solid #35BCA3;
	color: #35BCA3;
}

.white_button:hover{
	background: #35BCA3;
	color: #fff;
}

.main_block_content{
	display: flex;
	justify-content: space-between;
	width: 1424px;
	align-items: center;
	padding-top: 80px;
}

.main_block_content .text{
	width: 661px;
}

.main_block_content .video{
	width: 696px;
	display: flex;
	gap: 13px;
	justify-content: center;
	flex-wrap: wrap;
	align-items: flex-end;	
	padding-top: 80px;
}

.main_block_content .video_block{
	border-radius: 8.645px;
	border: 3.458px solid #35BCA3;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.main_block_content .video_block:nth-child(1){
	width: 394px;
	height: 282px;
}

.main_block_content .video_block:nth-child(2){
	width: 289px;
	height: 208px;
}

.main_block_content .video_block:nth-child(3){
	width: 570px;
	height: 410px;
}

.main_block_content video{
	object-fit: cover;
	min-height: 100%;
	min-width: 100%;
}

.text h1{
	font-size: 80px;
	font-weight: 700;
	line-height: 110px;
}

.text p{
	line-height: 34px;
	margin-top: 20px;
	margin-bottom: 30px;
}

.light_bg{
	background: #F6F9FC;
}

section:not(.main_block) {
	padding: 100px 0;
}

.slider_text_buttons{
	display: flex;
	justify-content: space-between;
	margin-bottom: 36px;
	align-items: center;
}

.slider_text{
	width: 810px;
}

h2{
	margin-bottom: 24px;
	font-size: 40px;
	font-weight: 600;
	line-height: 54px;
}

p{
	font-size: 20px;
	font-weight: 300;
	line-height: 27px;
	margin-bottom: 40px;
}

.slider_buttons{
	display: flex;
	gap: 5px;
}

.slider_buttons button{
	width: 26px;
	height: 26px;
	position: relative;
	cursor: pointer;
	border: none;
	background: none;
	border-radius: 13px;
}

.slider_buttons button:hover{
	background: #dbefee;
}

.slider_buttons button img{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
	transition: all 0.3s;
}

.slider_button_hover{
	opacity: 0;
}

.slider_buttons button:hover .slider_button_nohover{
	opacity: 0;
}

.slider_buttons button:hover .slider_button_hover{
	opacity: 1;
}

.slider_right img.slider_button_nohover{
	transform: rotate(180deg);
}

.slider_left img.slider_button_hover{
	transform: rotate(180deg);
}

.slider_payments .slide{
	padding: 30px 40px;
	border-top: 8px solid #35BCA3;
	background: #fff;
	box-shadow: 10px 10px 10px rgba(0,0,0,0.1);
	border-radius: 8px;
	margin-bottom: 19px;
}

.image{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.slider_payments .slide .image{
	height: 233px;
}

.image img{
	object-fit: cover;
	min-width: 100%;
	min-height: 100%;
}

.slider_payments .slide p{
	font-size: 16px;
	font-weight: 300;
	line-height: 28px;
}

.slider_payments .slide p.slide_title{
	margin: 20px 0 16px;
	font-size: 26px;
	font-weight: 600;
	line-height: 35px;
}

.slider_payments .slide .green_button{
	margin-top: 43px;
}

.slider_payments .owl-nav{
	display: none;
}

.container > img{
	max-width: 100%;
}

.dark_section{
	background: #001A3F;
}

.dark_section h2, .dark_section p{
	color: #fff;
}

.pricing{
	display: flex;
	gap: 38px;
	justify-content: center;
}

.pricing .item{
	width: calc(33% - 22px);
	box-shadow: 0 20px 20px rgba(0,0,0,0.1);
}

.pricing_item_content{
	padding: 24px 24px 28px 24px;
}

p.pricing_title{
	font-size: 26px;
	font-weight: 600;
	line-height: 35px;
	margin-bottom: 13px;
}

.pricing_description{
	height: 280px;
	margin-bottom: 30px;
}

.pricing_description p, .pricing_description li{
	font-size: 16px;
	font-weight: 300;
	line-height: 28px
}

.pricing_description li{
	margin-left: 22px;
}

.pricing_description p{
	margin-bottom: 28px;
}

.pricing .white_button{
	margin: 0 auto;
}

footer .container{
	display: flex;
	justify-content: space-between;
	padding: 60px 0;
}

footer .white_button{
	margin-top: 37px;
}

footer p.footer_row_title{
	font-size: 18px;
	font-weight: 700;
	line-height: 28px; 
	margin-bottom: 8px;
}

footer li a{
	font-size: 16px;
	font-weight: 400;
	line-height: 28px; 
}

footer li{
	list-style: none;
}

.image_with_text .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.image_with_text .text{
	width: calc(100% - 660px);
}

.image_with_text .image{
	width: 587px;
}

.about h2{
	margin-bottom: 40px;
	text-align: center;
}

.text_image{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.text_image .text{
	width: 600px;
}

.text_image .img_block{
	width: 500px;
}

.img_block{
	text-align: center;
	padding: 68px 30px;
	background: #F6F9FC;
}

.img_block > img{
	width: 200px;
	margin-bottom: 20px;
}

.img_block p.img_name{
	margin-bottom: 20px;
}

.img_block .img_email{
	margin-bottom: 24px;
	font-size: 16px;
	line-height: 22px;
	display: block;
}

.img_block p.img_title{
	font-size: 24px;
	line-height: 33px;
	margin-bottom: 8px;
	font-weight: 600;
}

.social a{
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	border: 1px solid #D1D5DA;
	background: #FFF;
	transition: all 0.3s;
}

.social a:hover{
	background: #F0F0F0;
}

.social a img{
	width: 24px;
}

.social{
	display: flex;
	justify-content: center;
	gap: 12px;
}

.ready_section{
	text-align: center;
}

.ready_section .green_button{
	margin: 0 auto;
}

.menu a{
	transition: all 0.3s;
}

.menu a:hover{
	color: #35BCA3;
}