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, embedz, 
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;
}

body{
	background: #F0F4FF;
}

body.noscroll{
	overflow: hidden;
}

a{
	transition: all 0.3s;
}

p.center{
	text-align: center;
}

.popup{
	position: fixed;
	z-index: 30;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
}

.popup_over{
	z-index: 31;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.7);
	cursor: pointer;
}

.popup_thanks{
	z-index: 32;
	position: absolute;
	width: 510px;
	height: 300px;
	padding: 35px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 35px;
	background: linear-gradient(0deg, rgba(51, 204, 102, 0.20) 0%, rgba(51, 204, 102, 0.20) 100%), rgba(255, 255, 255, 0.85);
	box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.25);
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.dark_mode .popup_thanks{
	background: linear-gradient(0deg, rgba(0, 255, 255, 0.20) 0%, rgba(0, 255, 255, 0.20) 100%), rgba(12, 0, 34, 0.85);
	box-shadow: 4px 4px 8px 0 rgba(255, 255, 255, 0.25);
}

.popup_thanks p{
	font-family: "Share Tech Mono", monospace;
	font-size: 40px;
	font-weight: 400;
	line-height: 50px;
	text-align: center;
}

.dark_mode .popup_thanks p{
	color: #fff;
}

.popup_close{
	width: 30px;
	height: 30px;
	position: absolute;
	right: 15px;
	top: 15px;
	cursor: pointer;
}

.container{
	width: calc(100% - 100px);
	max-width: 1720px;
	margin: 0 auto;
	box-sizing: border-box;
}

section .container{
	padding: 50px 0;
}

header{
	border-bottom: 3px solid #3C6;
	box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.35);
	background: #fff;
	position: fixed;
	width: 100%;
	top: var(--wp-admin--admin-bar--height, 0);
	z-index: 10;
	transition: all 0.3s;
}

.dark_mode header{
	background: #000;
	border-bottom: 3px solid #0bb;
}

header.scroll{
	padding: 0;
}

header .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-dark{
	display: none;
}

.dark_mode .logo-dark{
	display: block;
}

.dark_mode .logo-white{
	display: none;
}

.dark_mode .logo{
	background-color: rgba(0, 187, 187, 0.15)
}

.logo svg path{
	fill: #33cc66;
}

.dark_mode .logo svg path{
	fill: #00bbbb;
}

header .menu{
	display: flex;
	gap: 25px;
	align-items: center;
	list-style: none;
}

header .menu li{
	display: flex;
	align-items: center;
}

header .menu a{
	padding: 10px 15px;
	border-radius: 7px;
	border-top: 1px solid #3C6;
	border-right: 4px solid #3C6;
	border-bottom: 4px solid #3C6;
	border-left: 1px solid #3C6;
	background: rgba(49, 59, 73, 0.50);
	color: #FFF;
	font-family: "Noto Sans", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1rem;
	text-decoration: none;
	transition: none;
}

.dark_mode header .menu a{
	border-top: 1px solid #0BB;
	border-right: 4px solid #0BB;
	border-bottom: 4px solid #0BB;
	border-left: 1px solid #0BB;
	background: rgba(0, 187, 187, 0.25);
}

header .menu a:hover, header .menu .current_page_item a{
	border: 1px solid #3C6;
	padding-left: 15px;
	padding-top: 10px;
	padding-bottom: 13px;
	padding-right: 18px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), #3C6;
	box-shadow: 2px 2px 0 0 #FFF;
}

.dark_mode header .menu a:hover, .dark_mode header .menu .current_page_item a{
	border: 1px solid #0C0022;
	background: #0BB;
	box-shadow: 2px 2px 0 0 #133F57;
}

.mobile_popup{
	position: fixed;
    top: 115px;
    height: calc(100vh - 115px);
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.dark_mode .mobile_popup{
	background: rgba(0,0,0,0.9);
}

.mobile_popup.mobile_active{
	opacity: 1;
	visibility: visible;
}

.mobile_popup.scroll{
	top: 55px;
	height: calc(100vh - 55px);
}

header.mobile_active .menu{
	opacity: 1;
	visibility: visible;
}

header.mobile_active .lang_contact_dark{
	visibility: visible;
	opacity: 1;
}

.bg-particles{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	top: 0;
	left: 0;
}

.lang_contact_dark{
	display: flex;
	align-items: center;
	gap: 50px;
}

.lang_switch{
	border-radius: 5px;
	border: 1px solid #3C6;
	background: #fff;
	position: relative;
	padding: 4px 0;
	position: relative;
	margin-right: 24px;
}

.dark_mode .lang_switch{
	background: #000;
	border: 1px solid #0bb;
}

.lang_switch a{
	padding: 3px 6px;
	display: flex;
	gap: 10px;
	align-items: center;
	text-decoration: none;
	color: #000;
	text-align: center;
	font-family: "Noto Sans", sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1.2rem;
	text-transform: uppercase;
}

.dark_mode .lang_switch a{
	color: #fff;
}

.lang_menu a:hover{
	background: rgba(0,0,0,0.1);
}

.dark_mode .lang_menu a:hover{
	background: #444;
}

.lang_switch a.lang_arrow{
	position: absolute;
	height: 24px;
	width: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	right: -32px;
	top: 2px;
}

.lang_switch li{
	list-style: none;
}

.lang_menu{
	position: absolute;
	left: -1px;
	top: 30px;
	width: 100%;
	background: #fff;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border: 1px solid #3C6;
	border-top: none;
	padding-bottom: 4px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

.dark_mode .lang_menu{
	border: 1px solid #0bb;
	background: #000;
	border-top: none;
}

.lang_menu.active{
	opacity: 1;
	visibility: visible;
}

.lang_arrow img{
	transition: all 0.3s;
}

.lang_arrow_dark, .img_service_dark, .img_dark{
	display: none;
}

.lang_arrow_white, .img_service_white, .img_white{
	display: block;
}

.dark_mode .lang_arrow_white, .dark_mode .img_service_white, .dark_mode .img_white{
	display: none;
}

.dark_mode .lang_arrow_dark, .dark_mode .img_service_dark, .dark_mode .img_dark{
	display: block;
}

.lang_arrow.active img{
	transform: rotate(180deg);
}

.green_button{
	padding: 10px 15px;
	border-radius: 7px;
	border: 1px solid #3C6;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), #3C6;
	box-shadow: 3px 3px 0 0 rgba(51, 204, 102, 0.50);
	color: #FFF;
	text-align: center;
	font-family: "Noto Sans", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1rem;
	text-decoration: none;
}

.green_button_mobile{
	display: none;
}

.dark_mode .green_button{
	border-radius: 10px;
	border: 1px solid #0BB;
	background: rgba(0, 255, 255, 0.50);
	box-shadow: 4px 4px 0 0 rgba(0, 255, 255, 0.50);
}

.green_button:hover{
	border: 1px solid #3C6;
	background: #acc4b4;
	box-shadow: 3px 3px 0 0 rgba(51, 204, 102, 0.20);
}

.dark_mode .green_button:hover{
	border-radius: 10px;
	border: 1px solid #0BB;
	background: rgba(0, 255, 255, 0.20);
	box-shadow: 3px 3px 0 0 rgba(0, 255, 255, 0.20);
}

.logo{
	padding: 15px 15px;
	background-color: rgba(51, 204, 102, 0.15)
}

.logo svg{
	height: 40px;
}

.button_menu{
	justify-content: space-around;
	align-items: center;
	flex-direction: column;
	height: 35px;
	width: 30px;
	display: none;
}

.button_menu_container{
	width: 120px;
	display: none;
}

.menu_polosa{
	width: 100%;
	height: 3px;
	background: #000;
	border-radius: 3px;
	transition: all 0.3s;
}

.dark_mode .menu_polosa{
	background: #fff;
}

.dark_mode_switch{
	display: flex;
	gap: 15px;
	border-radius: 15px;
	background: rgba(51, 204, 102, 0.50);
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25) inset;
	position: relative;
	transition: all 0.3s;
}

.dark_mode .dark_mode_switch{
	background: rgba(0, 187, 187, 0.50);
	box-shadow: 0 0 4px 0 rgba(255, 255, 255, 0.35) inset;
}

.dark_mode_button, .light_mode_button{
	width: 25px;
	height: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}

.dark_mode_select{
	background: linear-gradient(180deg, #F0F4FF 50%, #909299 100%);
	right: 0;
	position: absolute;
	height: 25px;
	width: 25px;
	border-radius: 15px;
	z-index: 1;
	transition: all 0.3s;
}

.dark_mode .dark_mode_select{
	background: linear-gradient(180deg, #0C0022 50%, #300088 100%);
	right: 40px;
}

.dark_mode_switch img{
	height: 28px;
}

.dark_mode_switch svg path{
	fill: #000;
	transition: all 0.3s;
}

.dark_mode .dark_mode_switch svg path{
	fill: #fff;
}

.menu_close{
	position: absolute;
	width: 45px;
	height: 45px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

header.mobile_active .menu_polosa{
	opacity: 0;
	visibility: hidden;
}

header.mobile_active .menu_close{
	opacity: 1;
	visibility: visible;
}

.menu_close svg{
	width: 100%;
	height: 100%;
}

.main_block{
	margin-top: 119px;
	position: relative;
	max-height: 970px;
    height: calc(100vh - 119px);
    min-height: 700px;
}

.main_block.page_main_block{
	max-height: 100%;
}

.main_block_bg{
	position: absolute;
	height: calc(100% + 109px);
	width: 100%;
	z-index: 1;
	top: -109px;
	display: flex;
	justify-content: flex-end;
	background: #0a172a;
}

.dark_mode .main_block_bg{
	background: #0C0022;
}

.page_main_block .main_block_bg{
	display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.main_block_bg_over{
	position: absolute;
	height: calc(100% + 119px);
	width: 100%;
	top: -119px;
	left: 0;
	background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0));
	z-index: 2;
}

.dark_mode .main_block_bg_over{
	background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.5));
}

.main_block_bg_over.mobile_bg_over, .dark_mode .main_block_bg_over.mobile_bg_over{
	background: rgba(0,0,0,0.6);
	display: none;
}

.main_block_bg img{
	height: calc(100% - 109px);
    top: 109px;
    position: absolute;
}

.main_block.page_main_block img{
	top: auto;
    bottom: 0;
    position: relative;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.main_block .container{
	position: relative;
	z-index: 3;
	height: 100%;
}

.main_block .content{
	display: flex;
	justify-content: top;
	flex-direction: column;
	gap: 50px;
	height: 100%;
	color: #fff;
}

.main_block .content p{
	color: #FFF;
	font-family: "Noto Sans", sans-serif;
	font-size: 30px;
	font-weight: 400;
	line-height: 45px;
}

.main_block .content p.main_block_title{
	color: #FFF;
	font-family: "Share Tech Mono", monospace;
	font-size: 40px;
	font-weight: 400;
	line-height: 50px;
}

.main_block .content p.main_block_title span{
	color: #3c6;
}

.dark_mode .main_block .content p.main_block_title span{
	color: #0bb;
}

.main_block .green_button{
	width: fit-content;
}

section:not(.main_block){
	border-top: 3px solid #3C6;
	background: #F0F4FF;
	box-shadow: 0 25px 25px -20px rgba(0, 0, 0, 0.25) inset;
}

.dark_mode section:not(.main_block){
	border-top: 3px solid #0FF;
	background: radial-gradient(99.81% 49.9% at 100% 100%, rgba(0, 204, 204, 0.08) 25%, rgba(0, 0, 0, 0.00) 100%), #0C0022;
	box-shadow: 0 25px 25px -20px rgba(255, 255, 255, 0.25) inset;
}

h2{
	color: #3C6;
	font-family: "Share Tech Mono", monospace;
	font-size: 40px;
	font-weight: 400;
	line-height: 50px;
	text-transform: uppercase;
	position: relative;
	margin-bottom: 45px;
}

.dark_mode h2{
	color: #0bb;
}

h3{
	margin-bottom: 15px;
	color: #0C3867;
	font-family: "Noto Sans";
	font-size: 38px;
	font-weight: 400;
	line-height: 54px;
}

.dark_mode h3{
	color: #6da;
}

.main_block h2{
	margin-bottom: 0;
}

h2:before{
	content: '';
	width: 39px;
	height: 44px;
	background-size: 19px;
	background-image: url('/wp-content/themes/voiphub/assets/images/h2-before.svg');
	background-position: center center;
	background-repeat: no-repeat;
	left: -45px;
	top: 0;
	position: absolute;
}

.dark_mode h2:before{
	background-image: url('/wp-content/themes/voiphub/assets/images/h2-before-dark.svg');
}

h2:after{
	content: '_';
}

section:not(.main_block) p, section:not(.main_block) li{
	color: #000;
	font-family: "Noto Sans", sans-serif;
	font-size: 26px;
	font-weight: 400;
	line-height: 43px;
}

.dark_mode section:not(.main_block) p, .dark_mode section:not(.main_block) li{
	color: #fff;
}

section:not(.main_block) ul:not(.tabs) li{
	list-style: none;
	position: relative;
	padding-left: 22px;
}

section:not(.main_block) li:before{
	content: '';
    background-image: url(/wp-content/themes/voiphub/assets/images/h2-before.svg);
    position: absolute;
    left: 0;
    width: 24px;
    height: 44px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 14px;
}

.dark_mode section:not(.main_block) li:before{
	background-image: url(/wp-content/themes/voiphub/assets/images/h2-before-dark.svg);
}

section:not(.main_block) p:not(:last-child), section:not(.main_block) ul:not(:last-child){
	margin-bottom: 35px;
}

section:not(.main_block) p.section_title{
	color: #0C3867;
	font-family: "Noto Sans", sans-serif;
	font-size: 40px;
	font-weight: 400;
	line-height: 50px;
	margin-bottom: 20px;
}

.dark_mode section:not(.main_block) p.section_title{
	color: #6da;
}

section:not(.main_block) p.section_title.mono_title{
	font-family: "Share Tech Mono", monospace;
	font-size: 40px;
	font-weight: 400;
	line-height: 50px;
}

section:not(.main_block) p.section_title.green_title{
	color: #6da;
}

.about_section p{
	max-width: 962px;
}

.key_partnerships_section .items{
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 30px;
}

.key_partnerships_section .item{
	border-radius: 15px;
	border-top: 1px solid #3C6;
	border-right: 5px solid #3C6;
	border-bottom: 5px solid #3C6;
	border-left: 1px solid #3C6;
	background: rgba(255, 255, 255, 0.20);
	box-sizing: border-box;
	padding: 16px 0;
	width: calc(20% - 16px);
	text-align: center;
	min-width: 220px;
}

.dark_mode .key_partnerships_section .item{
	border-top: 1px solid #0BB;
	border-right: 5px solid #0BB;
	border-bottom: 5px solid #0BB;
	border-left: 1px solid #0BB;
	background: rgba(0, 0, 0, 0.20);
	box-shadow: 0 14px 44px 0 rgba(0, 153, 255, 0.05);
}

.key_partnerships_section .item img{
	height: 66px;
}

.video_block {
	position: relative;
    border-radius: 20px;
    overflow: hidden;
}

video{
	width: 100%;
}

.video_block a{
	position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    margin: auto;
    width: 170px;
    height: 170px;
}

footer{
	border-top: 3px solid #3C6;
	background: #FFF;
	position: relative;
}

.dark_mode footer{
	border-top: 3px solid #0BB;
	background: #000;
}

.footer_bg{
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: 10px;
	max-width: 100%;
}

footer .container{
	display: flex;
	gap: 35px;
	flex-wrap: wrap;
	margin: 30px auto;
	justify-content: center;
}

.footer_block{
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.60);
	box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.25);
	position: relative;
	padding: 15px;
	width: calc(50% - 24px);
	box-sizing: border-box;
}

.dark_mode .footer_block{
	background: rgba(0, 0, 0, 0.50);
	box-shadow: 4px 4px 8px 0 rgba(255, 255, 255, 0.25);
}

.footer_block:first-child, .footer_block:last-child{
	width: calc(25% - 24px);
}

.footer_block p, .footer_block a{
	color: #000;
	font-family: "Source Sans 3", sans-serif;
	font-size: 23px;
	font-weight: 400;
	line-height: 29px;
	margin-top: 10px;
}

.footer_block p a{
	margin-top: 0;
}

.dark_mode .footer_block p, .dark_mode .footer_block a{
	color: #fff;
}

footer a:hover{
	text-decoration: none;
}

.footer_block p.title{
	margin-top: 0;
	margin-bottom: 15px;
	color: #3C6;
	font-family: "Share Tech Mono", monospace;
	font-size: 29px;
	font-weight: 400;
	line-height: 33px;
	text-transform: uppercase;
}

.dark_mode .footer_block p.title{
	color: #0bb;
}

.footer_block p{
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer_block p.subtitle{
	color: #000;
	font-family: "Share Tech Mono", monospace;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 27px;
	text-transform: uppercase;
}

.dark_mode .footer_block p.subtitle{
	color: #fff;
}

.footer_block p strong{
	font-weight: 700;
	font-size: 23px;
}

.footer_address{
	display: flex;
	gap: 15px;
	align-items: flex-start;
	margin-bottom: 20px;
}

.footer_address p{
	margin-top: 0;
	margin-bottom: 10px;
}

.footer_block li{
	list-style: none;
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 10px;
}

.footer_block .icon{
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer_block .icon img{
	max-height: 100%;
	max-width: 100%;
}

.footer_block li a{
	margin-top: 0;
}

footer .bottom{
	border-top: 2px solid #0BB;
	background: #000;
	padding: 12px 0;
}

footer .bottom .container{
	margin: 0 auto;
	display: flex;
	gap: 16px 60px;
	justify-content: center;
}

footer .bottom p, footer .bottom a{
	color: #FFF;
	font-family: "Source Sans 3", sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 25px;
}

.our_services_section .items{
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.our_services_section.section_50 .items{
	max-width: 1020px;
	margin: 0 auto;
}

.our_services_section.section_50 .item{
	width: calc(50% - 10px);
}

.our_services_section .item{
	border-radius: 25px;
	background: #f9faff;
	box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.25);
	padding: 25px;
	box-sizing: border-box;
	width: calc(33% - 10px);
	max-width: 500px;
	position: relative;
}

.our_services_section .item:not(:has(.item_title)):not(:has(.spoiler)){
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.dark_mode .our_services_section .item{
	background: #0b2641;
	box-shadow: 4px 4px 8px 0 rgba(255, 255, 255, 0.25);
}

.our_services_section .item p.item_title{
	color: #3C6;
	font-family: "Source Sans 3", sans-serif;
	font-size: 27px;
	font-weight: 700;
	line-height: 27px;
	letter-spacing: 0.81px;
	margin-bottom: 0;
}

.item_image_a{
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 16px 0 35px;
}

.item_image_a:first-child{
	margin-top: 0;
}

.item_image_a:last-child{
	margin-bottom: 0;
}

.item_image_a img{
	max-width: 67px;
	max-height: 67px;
}

.item_image_a a, section .item_image_a p{
	color: #0C3867;
	font-family: "Noto Sans", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 35px;
}

.dark_mode .item_image_a a, .dark_mode section .item_image_a p{
	color: #fff;
}

.our_services_section img.arrow{
	margin: 0 auto;
	cursor: pointer;
	transition: all 0.3s;
}

.our_services_section .item:hover img.arrow{
	transform: rotate(180deg);
}

.our_services_section .item > p{
	color: #000;
	font-family: "Source Sans 3", sans-serif;
	font-size: 23px;
	font-weight: 400;
	line-height: 35px;
}

.dark_mode .our_services_section .item > p{
	color: #fff;
}

.dark_mode .our_services_section .item > p.item_title{
	color: #0bb;
}

.our_services_section .item p.spoiler{
	height: auto;
    position: absolute;
    width: 100%;
    left: 0;
    background: #f9faff;
    box-shadow: 4px 8px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 0 0 25px 25px;
    z-index: 10;
    padding: 25px;
    box-sizing: border-box;
	transition: all 0.3s;
	opacity: 0;
	visibility: hidden;
	text-align: center;
}

.dark_mode .our_services_section .item p.spoiler{
	background: #0b2641;
	box-shadow: 8px 8px 4px -4px rgba(255, 255, 255, 0.2);
}

.our_services_section .item:hover p.spoiler{
	visibility: visible;
	opacity: 1;
}

.about_content{
	border-radius: 35px;
	background: #FFF;
	box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.25);
	max-width: 1032px;
	width: 100%;
	box-sizing: border-box;
	padding: 20px 35px;
	position: relative;
	z-index: 2;
}

.dark_mode .about_content{
	background: rgba(10, 37, 66, 0.70);
}

.about_with_image{
	position: relative;
}

.about_with_image > img{
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
	max-width: 100%;
	height: 100%;
}

.two_blocks .container{
	display: flex;
}

.two_blocks .block{
	width: 50%;
	position: relative;
	box-sizing: border-box;
}

.two_blocks .block:first-child:after{
	height: 100%;
	width: 8px;
	background: linear-gradient(90deg, #c4c7d0, #ebeffa);
	content: '';
	position: absolute;
	top: 0;
	right: -4px;
}

.dark_mode .two_blocks .block:first-child:after{
	background: linear-gradient(90deg, #3a3049, #170c2c);
}

.two_blocks .our_services_section .items .item{
	width: calc(50% - 10px);
	max-width: 500px;
}

.two_blocks .block:first-child{
	padding-right: 50px;
}

.two_blocks .block:last-child{
	padding-left: 50px;
}

.contact{
	position: relative;
}

.contacts_bg{
	position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.contact .container{
	position: relative;
	z-index: 2;
}

.contact .left_right{
	display: flex;
	justify-content: space-between;
}

.contact .text_content, .contact form{
	width: calc(50% - 25px);
	box-sizing: border-box;
}

form{
	padding: 35px;
	border-radius: 35px;
	background: linear-gradient(0deg, rgba(51, 204, 102, 0.20) 0%, rgba(51, 204, 102, 0.20) 100%), rgba(255, 255, 255, 0.85);
	box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.25);
}

.dark_mode form{
	background: linear-gradient(0deg, rgba(0, 255, 255, 0.20) 0%, rgba(0, 255, 255, 0.20) 100%), rgba(12, 0, 34, 0.85);
	box-shadow: 4px 4px 8px 0 rgba(255, 255, 255, 0.25);
}

section.contact form p.form_title, section.contacts form p.form_title{
	color: rgba(12, 56, 103, 0.80);
	font-family: "Share Tech Mono", monospace;
	font-size: 44px;
	font-weight: 400;
	line-height: 50px;
}

.dark_mode section.contact form p.form_title, .dark_mode section.contacts form p.form_title{
	color: #6da;
}

section.contact form p.radio_buttons_title{
	margin-bottom: 10px;
}

.radio_buttons{
	display: flex;
	align-items: center;
	gap: 10px;
}

.radio_button_label{
	display: flex;
	align-items: center;
	gap: 10px;
}

.radio_button{
	width: 28px;
	height: 28px;
	border: 2px solid #3C6;
	border-radius: 15px;
	position: relative;
	cursor: pointer;
}

.dark_mode .radio_button{
	border: 2px solid #0BBB;
}

.radio_button_label.active .radio_button:after{
	position: absolute;
	width: 18px;
	height: 18px;
	background: #3C6;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
	border-radius: 10px;
}

.dark_mode .radio_button_label.active .radio_button:after{
	background: #0bb;
}

input[type="radio"]{
	display: none;
}

section.contact form p, section.contacts form p{
	color: rgba(12, 0, 34, 0.80);
	font-family: "Noto Sans", sans-serif;
	font-size: 23px;
	font-weight: 400;
	line-height: 31px;
}

section.contact form p.send_error, section.contacts form p.send_error{
	color: red;
	margin-bottom: 0;
}

section.contact form p.send_error:last-child, section.contacts form p.send_error:last-child{
	margin-bottom: 35px;
}

section.contact form .radio_buttons p, section.contacts form .radio_buttons p{
	margin-bottom: 0;
}

.inputs, form > input, form > .select, form > textarea{
	margin: 20px 0;
}

.inputs{
	display: flex;
	gap: 25px;
	justify-content: space-between;
}

.inputs input, .inputs .select{
	width: 50%;
}

.select{
	cursor: pointer;
}

input, .select, textarea, .input_file p{
	padding: 12px 20px;
	box-sizing: border-box;
	background: #fff;
	color: rgba(12, 0, 34, 0.80);
	font-family: "Noto Sans", sans-serif;
	font-size: 23px;
	font-weight: 400;
	line-height: 31px; 
	border: none;
	outline: none;
	border-radius: 15px;
}

::placeholder{
	color: rgba(12, 0, 34, 0.80);
}

.dark_mode input, .dark_mode .select, .dark_mode textarea, .dark_mode .input_file p{
	background: rgba(0, 255, 255, 0.20);
	color: rgba(255, 255, 255, 0.80);
}

.dark_mode ::placeholder{
	color: rgba(255, 255, 255, 0.80);
}

textarea{
	width: 100%;
	height: 180px;
	box-sizing: border-box;
}

.input_file input, input[type="checkbox"]{
	display: none;
}

.input_file p{
	background-image: url('/wp-content/themes/voiphub/assets/images/upload.svg');
	background-position: center right 20px;
	background-repeat: no-repeat;
	cursor: pointer;
}

.dark_mode .input_file p{
	background-image: url('/wp-content/themes/voiphub/assets/images/upload-dark.svg');
	background-position: center right 20px;
	background-repeat: no-repeat;
}

.checkbox{
	position: relative;
	width: 33px;
	height: 33px;
}

.checkbox img{
	position: absolute;
	left: 0;
	top: 0;
}

.galka img.checkbox_active{
	visibility: hidden;
	opacity: 0;
}

.galka.active img.checkbox_noactive{
	visibility: hidden;
	opacity: 0;
}

.galka.active img.checkbox_active{
	visibility: visible;
	opacity: 1;
}

.galka{
	display: flex;
	gap: 9px;
	align-items: center;
	margin: 25px 0;
	cursor: pointer;
}

.galka p{
	width: calc(100% - 42px);
}

button{
	transition: all 0.3s;
	cursor: pointer;
}

.select{
	position: relative;
}

.options{
	position: absolute;
	top: 55px;
	left: 0;
	width: 100%;
	border-radius: 15px;
	background: #fff;
	overflow-y: scroll;
	max-height: 320px;
	z-index: 10;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s;
}

.select.active .options{
	visibility: visible;
	opacity: 1;
}

.dark_mode .options{
	background: #0a5b70;
	color: #fff;
}

.options::-webkit-scrollbar{
    width: 5px;
    background-color: rgba(255,255,255,0);
    border-radius: 5px;
    height: 100%;
    z-index: 104;
}

.options::-webkit-scrollbar-thumb{
    background: rgba(0,0,0,0.2);
    border-radius: 5px;
    z-index: 105;
}

.dark_mode .options::-webkit-scrollbar-thumb{
	background: rgba(255,255,255,0.2);
}

.option{
	padding: 6px 20px;
	transition: all 0.3s;
}

.option:hover{
	background: rgba(0,0,0,0.1);
}

.dark_mode .option:hover{
	background: rgba(255,255,255,0.1);
}

section .container form .select p{
	margin: 0;
}

.select_arrow{
	position: absolute;
	top: 23px;
    right: 20px;
    transition: all 0.3s;
}

.select.active .select_arrow{
	transform: rotate(180deg);	
}

select{
	display: none;
}

.main_block.page_main_block .flag img{
	width: 36px;
	min-width: 36px;
}

.flags_container{
	display: flex;
	gap: 15px;
}

.flag{
	font-size: 22px;
	line-height: 30px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px;
	color: #FFF;
	font-family: "Share Tech Mono", monospace;
	font-weight: 400;
	border-radius: 15px;
	border: 1px solid #3C6;
	background: linear-gradient(0deg, rgba(51, 204, 102, 0.20) 0%, rgba(51, 204, 102, 0.20) 100%), rgba(12, 0, 34, 0.50);
	width: 170px;
	height: 62px;
	margin-bottom: 10px;
	box-sizing: border-box;
}

.flag:last-child{
	margin-bottom: 0;
}

.dark_mode .flag{
	border: 1px solid #0BB;
	background: linear-gradient(0deg, rgba(0, 187, 187, 0.20) 0%, rgba(0, 187, 187, 0.20) 100%), rgba(12, 0, 34, 0.50);
}

.leadership_contact .items{
	display: flex;
	gap: 36px;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1500px;
	width: 100%;
	margin: 0 auto;
}

.leadership_contact .item{
	width: 462px;
	height: 200px;
	border-radius: 25px;
	background: rgba(255, 255, 255, 0.50);
	box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.25);
	display: flex;
	align-items: center;
	box-sizing: border-box;
}

.dark_mode .leadership_contact .item{
	background: rgba(0, 187, 187, 0.20);
	box-shadow: 4px 4px 8px 0 rgba(255, 255, 255, 0.25);
}

.leadership_contact .item .left{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 200px;
	border-radius: 25px;
	overflow: hidden;
}

.leadership_contact .item .left img{
	object-fit: cover;
	min-width: 100%;
	min-height: 100%;
}

.leadership_contact .item .right{
	padding: 25px;
}

.leadership_contact .items .item p{
	color: #000;
	font-family: "Source Sans 3", sans-serif;
	font-size: 23px;
	font-weight: 400;
	line-height: 35px;
	margin-bottom: 0;
}

.leadership_contact .items .item p.item_title{
	color: #0C3867;
	font-family: "Noto Sans", sans-serif;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
}

.leadership_contact .items .item a.mail{
	font-family: "Noto Sans", sans-serif;
	color: #2d6a41;
	font-size: 23px;
	font-weight: 400;
	line-height: 26px;
	margin-top: 35px;
	text-decoration: none;
	display: block;
}

.dark_mode .leadership_contact .items .item p, .dark_mode .leadership_contact .items .item a.mail{
	color: #fff;
}

.leadership_contact .items .item a.mail{
	text-decoration: underline;
}

.general_inquiries{
	position: relative;
}

.world_bg{
	position: absolute;
	bottom: 0;
	width: 100%;
	max-width: 1600px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}

.general_inquiries h2{
	margin-bottom: 20px;
}

.general_inquiries .content{
	width: 100%;
	max-width: 850px;
	padding: 50px;
	box-sizing: border-box;
	border-radius: 15px;
	border: 1px solid #3C6;
	background: linear-gradient(0deg, rgba(51, 204, 102, 0.20) 0%, rgba(51, 204, 102, 0.20) 100%), rgba(255, 255, 255, 0.20);
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

.dark_mode .general_inquiries .content{
	background: linear-gradient(0deg, rgba(12, 0, 34, 0.20) 0%, rgba(12, 0, 34, 0.20) 100%), rgba(0, 255, 255, 0.20);
	box-shadow: 4px 4px 8px 0 rgba(255, 255, 255, 0.25);
	border: none;
}

.general_inquiries .container .content p{
	margin-bottom: 10px;
}

.general_inquiries .container .content p.phone, .general_inquiries .container .content a.email{
	background-position: center left;
	background-repeat: no-repeat;
	max-width: 470px;
	margin: 0 auto;
	color: #3C6;
	font-family: "Noto Sans", sans-serif;;
	font-size: 39px;
	font-weight: 700;
	line-height: 54px;
	margin-bottom: 10px;
	box-sizing: border-box;
    padding-left: 60px;
    display: block;
}

.dark_mode .general_inquiries .container .content p.phone, .dark_mode .general_inquiries .container .content a.email{
	color: #0bb;
}

.general_inquiries .container .content p.phone{
	background-image: url('/wp-content/themes/voiphub/assets/images/phone.svg');
}

.dark_mode .general_inquiries .container .content p.phone{
	background-image: url('/wp-content/themes/voiphub/assets/images/phone-dark.svg');
}

.general_inquiries .container .content a.email{
	background-image: url('/wp-content/themes/voiphub/assets/images/mail.svg');
}

.dark_mode .general_inquiries .container .content a.email{
	background-image: url('/wp-content/themes/voiphub/assets/images/mail-dark.svg');
}

.map{
	width: 100%;
	height: calc(100% - 100px);
	border-radius: 35px 0 35px 35px;
	box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.25);
}

.contacts .container{
	display: flex;
	gap: 50px;
}

.contacts .left, .contacts .right{
	width: calc(50% - 25px);
}

.contacts .right ul.tabs{
	display: flex;
	gap: 20px;
	margin-bottom: 0;
	margin-top: 36px;
	justify-content: flex-end;
}

.contacts .tabs li{
	display: flex;
}

.contacts .tabs a{
	padding: 16px;
	border-radius: 15px 15px 0 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 79.81%, rgba(0, 0, 0, 0.20) 100%), rgba(51, 204, 102, 0.20);
	box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.25);
	color: rgba(12, 0, 34, 0.80);
	font-family: "Share Tech Mono", monospace;
	font-size: 24px;
	font-weight: 400;
	line-height: 28px;
	text-decoration: none;
}

.contacts .tabs a.active{
	background: rgba(51, 204, 102, 0.40);
	box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.25);
}

.dark_mode .contacts .tabs a{
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 80%, rgba(255, 255, 255, 0.20) 100%), rgba(0, 255, 255, 0.20);
	box-shadow: 4px 4px 8px 0 rgba(255, 255, 255, 0.25);
	color: #fff;
}

.dark_mode .contacts .tabs a.active{
	background: rgba(0, 255, 255, 0.40);
	box-shadow: 4px 4px 8px 0 rgba(255, 255, 255, 0.25);
}

.contacts .tabs li:before{
	display: none;
}

section.contacts .info-window-content p{
	font-size: 20px;
	line-height: 32px;
	color: #fff;
}

.gm-style .gm-style-iw-d{
	overflow: auto !important;
	padding: 12px;
}

.gm-style .gm-style-iw-c, .gm-style .gm-style-iw-tc::after, .gm-style .gm-style-iw-d{
	background: #27733D;
}

.gm-ui-hover-effect>span{
	background: #fff;
	margin: 0 !important;
}

.gm-style-iw-chr button{
	width: 20px !important;
    height: 16px !important;
    top: 6px !important;
    right: 7px !important;
}