/*
Theme Name: Custom Theme
Version: 2.1
*/
@font-face {
  font-family: 'Sentient-Regular';
  src: url('css/fonts/Sentient-Regular.woff2') format('woff2'),
       url('css/fonts/Sentient-Regular.woff') format('woff'),
       url('css/fonts/Sentient-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

body {
	font-family: "Inter", sans-serif;
    font-weight: 400;
	background-color:#fff;
	margin: 0;
    font-size: 16px;
    line-height: 29px;
}
body, p {
    color: #000;
    -webkit-font-smoothing: antialiased;
}
div {
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1240px;
	padding: 0px 20px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
.menu_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    display: none;
}
@media (max-width: 400px) {
.container {
    padding: 0px 15px;
}
}
h1, h2, h3, h4, h5 {
	font-family: Sentient-Regular;
	color: #000;
    font-weight: 400 !important;
    line-height: 110%;
}
a, a svg, a path {
	text-decoration: none;
	transition: 0.3s;
}
p {
    margin: 0 0 20px;
}
.default_section_title, h2 {
    font-family: Sentient-Regular;
	color: #000;
    font-size: 38px;
    line-height: 48px;
    font-weight: 400 !important;
    margin: 0 0 20px 0;
    text-align: center;
}
.default_section_small_title {
	font-size: 20px;
    line-height: 24px;
    margin: 15px 0px;
    font-weight: bold;
    text-decoration: none;
}
.default_section {
	padding: 80px 0px;
}
.default_section + .default_section {
	padding-top: 0px;
}
.default_grey_section {
	padding: 80px 0px;
	background: #F1F3F6;
}
.default_grey_section + .default_grey_section {
	padding-top: 0px;
}
.default_text {
	font-weight: 400;
    font-size: 16px;
    line-height: 29px;
}
body a.default_blue_btn {
    box-sizing: border-box;
	display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #023b8f;
    padding: 10px 13px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    background: #023b8f;
    width: 100%;
    max-width: 400px;
}
body a.default_blue_btn:hover {
    background: #0067ff;	
}
.content {
	min-height: 60vh;
}
@media (max-width:992px) {
.default_section_title, h2 {
    font-size: 32px !important;
    line-height: 40px !important;
}
}
@media (max-width:768px) {
.default_section {
	padding: 40px 0px;
}
.default_grey_section {
	padding: 40px 0px;
}
.default_section_title, h2 {
	font-size: 28px !important;
    line-height: 38px !important;
}
h3 {
	font-size: 22px !important;
    line-height: 32px !important;
}
}
@media (max-width:450px) {
.default_section_title, h2 {
	font-size: 22px !important;
    line-height: 32px !important;
}
}

/* header start */
.header {
	height: 98px;
	position: relative;
	z-index: 999;
}
.header_outer {
	background: #fff;
	transition: box-shadow 0.3s ease;
}
.header_outer--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header_outer--fixed .header_inner {
	padding: 5px 0;
}
.header_inner {
	display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
	transition: padding 0.3s ease;
}
.header_logo a:hover {
	opacity: 0.8;
}
.header_logo img {
	display: block;
    width: 100%;
    max-width: 178px;
}
.header_menu ul {
	margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}
.header_menu ul li a {
	font-weight: 400;
	font-size: 16px;
	color: #0c013c;
}
.header_menu ul li a:hover {
	color: #0067ff;
}
.header_btns {
	display: flex;
    align-items: center;
    gap: 10px;
}
.header_btns a {
    box-sizing: border-box;
	display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0c013c;
    height: 50px;
    padding: 0px 13px;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	color: #0c013c;
}
.header_btns a:hover {
	background: #0067ff;	
    color: #fff;
}
.header_btns_email:hover svg path {
	stroke: #fff;
}
.header_btns a.header_btns_mobile_menu {
	display: none;
}
@media (min-width:951px) {
.header_mobile_menu {
	display: none !important;
}
}
@media (max-width:1100px) {
.header_menu ul {
    gap: 25px;
}
.header_menu ul li a {
    font-size: 14px;
}
.header_logo img {
    max-width: 140px;
}
}
@media (max-width:950px) {
.header {
    height: 60px;
}
.header_inner {
    padding: 10px 0;
}
.header_menu, .header_inner .header_btns_email, .header_inner .header_btns_phone {
	display: none;
}
.header_btns a {
    height: 40px;
}
.header_btns a.header_btns_mobile_menu {
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.header_btns_mobile_menu span {
	display: block;
	width: 12px;
	background: #000;
	height: 2px;
	transition: 0.3s ease;
}
.header_btns_mobile_menu:hover span {
	background: #fff;
}
.header_btns_mobile_menu.active span:nth-child(1) {
	transform: rotate(45deg);
}
.header_btns_mobile_menu.active span:nth-child(2) {
	display: none;
}
.header_btns_mobile_menu.active span:nth-child(3) {
	transform: rotate(-45deg);
    margin-top: -5px;
}
.header_mobile_menu {
	display: none;
    padding-bottom: 20px;
}
.header_mobile_menu.active {
	display: block;
}
.header_outer.menu_active {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header_mobile_menu_list ul {
	margin: 0;
	list-style: none;
	display: flex	;
	flex-direction: column;
	gap: 25px;
	padding: 20px 0;
}
.header_mobile_menu_list a {
	font-weight: 400;
	font-size: 20px;
	color: #0c013c;
}
.header_mobile_menu_list a:hover {
	color: #0067ff;
}
.header_mobile_menu .header_btns a {
	height: 50px;
}
}
@media (max-width:400px) {
.header_logo img {
	max-width: 100px;
}
.header_btns .default_blue_btn {
    padding: 10px 10px;
    font-size: 12px;
}
}
/* header end */

/* header start */
footer {
	background: #f5faff;
	padding: 40px 0;
}
footer p {
	padding: 0;
	margin: 0;
}
.footer_top {
	display: flex;
    justify-content: space-between;
    gap: 30px 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid #c3d5e6;
}
.footer_top_left {
	display: flex;
    flex-direction: column;
    width: 50%;
    gap: 20px;
}
.footer_top_left_logo img {
	display: block;
    width: 100%;
    max-width: 178px;
}
.footer_top_left_logo a:hover {
	opacity: 0.8;
}
.footer_top_left_info {
	font-size: 14px;
    line-height: 130%;
    color: #0c013c;
}
.footer_top_left_rating {
	display: flex;
    gap: 3px;
    align-items: center;
	color: #0c013c;
	font-size: 13px;
	line-height: 152%;
}
.footer_top_left_rating svg {
	display: block;
}
.footer_top_left_rating a {
	color: #28b4ff;
}
.footer_top_menus {
	display: flex;
    justify-content: space-between;
    gap: 25px 50px;
    width: 50%;
}
.footer_top_menu_h {
	font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    color: #0c013c;
    padding-bottom: 10px;
}
.footer_top_menu ul {
	margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.footer_top_menu ul a {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	text-transform: capitalize;
	color: #0c013c;
}
.footer_top_menu ul a:hover {
	color: #0067ff;
}
.footer_bottom {
	padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px 30px;
}
.footer_bottom_copyright {
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	text-transform: capitalize;
	color: #0c013c;
}
.footer_bottom_payicons {
	display: flex;
    align-items: center;
    gap: 15px 40px;
    flex-wrap: wrap;
}
@media (max-width: 1050px) {
.footer_top_left {
    width: 40%;
}
.footer_top_menus {
    width: 60%;
}
.footer_bottom {
    flex-direction: column-reverse;
}
.footer_bottom_payicons {
    justify-content: center;
}
}
@media (max-width: 900px) {
footer {
	padding: 30px 0;
}
.footer_top {
    flex-wrap: wrap;
}
.footer_top_left {
	width: 100%;
}
.footer_top_menus {
	width: 100%;
	justify-content: flex-start;	
    flex-wrap: wrap;
}
.footer_top_left_rating {
    flex-wrap: wrap;
}
}
/* header end */

/* block anfragen_popup Start */
.anfragen_popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s;
}
.anfragen_popup.show {
    display: block;
    opacity: 1;
}
.popup_content {
    background-color: #fff;
    margin: 10% auto;
    border: 1px solid #888;
    width: 80%;
    max-width: 890px;
    position: relative;
    padding: 40px 60px;
    transition: transform 0.3s;
}
.anfragen_popup .close {
    font-size: 27px;
    line-height: 27px;
    font-weight: 400;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: -37px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1px 0px 0px 0px;
    color: #000;
    background: #fff;
    border: 1px solid #011d38;
    border-radius: 100%;
    transition: 0.3s;
}
.anfragen_popup .close:hover {
    color: #31bdff;
    border: 1px solid #31bdff;
}
.calc_form {
	color: #000;
}
.calc_form_inner {
	padding-bottom: 10px;
}
.calc_form_h {
	font-weight: 700;
    font-size: 16px;
    padding-bottom: 15px;
    position: relative;
}
.calc_form p {
	color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0px;
}
.calc_form_h span {
	background: #0076bd;    
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #fff;
    border-radius: 3px;
    padding: 4px 15px;
    position: absolute;
    top: -32px;
}
.calc_form_inner_row {
	display: flex;
    gap: 15px;
    padding-bottom: 16px;
}
.calc_form_inner_row > div {
	width: 100%;
}
.calc_form_bottom_left {
	display: flex;
    flex-direction: column;
    gap: 5px;
}
.calc_form_bottom_left_t {
	font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
}
.anfragen_popup .calc_form_h {
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    color: #011d38;
    padding: 0px 26px 26px 0px;
    max-width: 665px;
}
.anfragen_popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s;
}
.anfragen_popup.show {
    display: block;
    opacity: 1;
}
.popup-content {
    background-color: #fff;
    margin: 10% auto;
    border: 1px solid #888;
    width: 80%;
    max-width: 890px;
    position: relative;
    padding: 40px 60px;
    transition: transform 0.3s;
    transform: scale(0.7);
}
.anfragen_popup.show .popup-content {
    transform: scale(1);
}
.anfragen_popup .close {
    font-size: 25px;
    line-height: 27px;
    font-weight: 400;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: -37px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    padding: 0;
    color: #000;
    background: #fff;
    border: 1px solid #011d38;
    border-radius: 100%;
    transition: 0.3s;
}
.anfragen_popup .wpcf7-not-valid-tip {
    padding-top: 5px;
}
.anfragen_popup .wpcf7 form .wpcf7-response-output {
    margin: 10px 0px 0px 0px;
    line-height: 22px;
}
.anfragen_popup .close:hover,
.anfragen_popup .close:focus {
    color: #31bdff;
	border: 1px solid #31bdff;
}
.anfragen_popup .calc_form_h {	
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    color: #011d38;
    padding: 0px 26px 26px 0px;
    max-width: 665px;
}
.anfragen_popup .pop_input {	
    box-sizing: border-box;
    width: 100%;
	border: 1px solid #ced3e0;
	border-radius: 3px;
	padding: 10px 14px;	
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;	
}
.anfragen_popup .pop_input::placeholder {
	color: #ced3e0;
}
.anfragen_popup .label, .anfragen_popup label {
	position: relative;
}
.anfragen_popup .custom_label {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #011d38;
    background: #fff;
    display: block;
    position: absolute;
    top: -35px;
    left: 13px;
    padding: 3px 5px;
    z-index: 1;
}
.anfragen_popup .custom_label span, .anfragen_popup .custom_label_two span, .anfragen_popup .custom_label_three span {
	color: #FF0000;
    padding-left: 5px;
}
.anfragen_popup .custom_label_two {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #011d38;
    background: #fff;
    display: block;
    position: absolute;
    top: 16px;
    left: 13px;
    padding: 3px 5px;
    z-index: 1;
}
.anfragen_popup .custom_label_three {
	
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #011d38;
    background: #fff;
    display: block;
    position: absolute;
    top: 10px;
    left: 13px;
    padding: 3px 5px;
    z-index: 1;
}
.anfragen_popup .calc_form_inner_row {
    padding-bottom: 8px;
}
.anfragen_popup .custom-dropdown select, .anfragen_popup .row input, .anfragen_popup .pop_input {
    height: 61px !important;
}
.calc_form .comment textarea {
	outline: #fff;
    width: 100%;
    padding: 15px 20px 0px 20px;
    margin: 0;
    border: 1px solid #ced3e0;
    border-radius: 3px;
    background: #fff;
    color: #273649;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    height: 100px !important;
	font-family: "Roboto", sans-serif;
}
.custom-dropdown::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M6.46824 7.29626L11.8083 1.77758C11.9319 1.64994 12 1.47956 12 1.29788C12 1.11619 11.9319 0.945806 11.8083 0.818165L11.4151 0.411753C11.1589 0.147297 10.7425 0.147297 10.4867 0.411753L6.00249 5.04592L1.51326 0.40661C1.38965 0.27897 1.22487 0.208496 1.04916 0.208496C0.873261 0.208496 0.708482 0.27897 0.584775 0.40661L0.191706 0.813023C0.0680971 0.940764 -3.81757e-08 1.11105 -4.58603e-08 1.29273C-5.35449e-08 1.47441 0.0680971 1.6448 0.191706 1.77244L5.53664 7.29626C5.66064 7.42421 5.8262 7.49448 6.00219 7.49408C6.17888 7.49448 6.34434 7.42421 6.46824 7.29626Z' fill='black'/%3E%3C/svg%3E");
    width: 12px;
    height: 7.29px;
    right: 20px;
    top: 7px;
    color: rgba(0, 0, 0, 0.4);
    display: block;
    position: absolute;
}
.anfragen_popup .calc_form_bottom_btn button {
	text-decoration: none;
    color: #fff;
    width: 100%;
    max-width: 100%;
    background: #011d38;
    font-weight: 600;
    border-radius: 3px;
    padding: 25px 10px;
    cursor: pointer;
}
.anfragen_popup .calc_form_bottom_btn button:hover {
	background: #0D3256;
}
.anfragen_popup .calc_form_bottom_block {	
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    gap: 15px;
}
.anfragen_popup .calc_form_bottom_left_h {
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    color: #00c67d;
}
.anfragen_popup .calc_form_bottom_left_t {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #011d38;
}
.anfragen_popup .calc_form_bottom_arrow {
	background: url(/wp-content/themes/custom_theme/img/form_arrow.png) no-repeat center;
	width: 49px;
    height: 49px;
}
.anfragen_popup .calc_form_bottom_btn a {	
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 3px;
    padding: 13px 30px;
    background: #00c67d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-decoration: none;
	transition: 0.3s;
}
.anfragen_popup .calc_form_bottom_btn a:hover {	
    background: #0ee797;
}
.custom-dropdown select, .row input {
    cursor: pointer;
    outline: #fff;
    width: 100%;
    font-size: inherit;
    padding: 10px 20px !important;
    border: 0;
    margin: 0;
    border-radius: 4px;
    border: 1px solid #273649;
    border-radius: 3px;
    text-indent: .01px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    color: #273649;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    height: 45px;
}
@media (max-width: 900px) {
.anfragen_popup .calc_form_h {
    font-size: 26px;
    padding: 0px 35px 26px 0px;
}
.popup_content {
    padding: 25px 40px;
}
}
@media (max-width: 700px) {
.anfragen_popup .calc_form_bottom_block {
    flex-direction: column;
}
.anfragen_popup .calc_form_bottom_arrow {
    display: none;
}
.popup_content {
    padding: 25px 25px;
}
.calc_form_inner_row {
    flex-wrap: wrap;
    gap: 25px;
}
.calc_form_inner_row br {
	display: none;
}
.anfragen_popup .calc_form_inner_row {
    padding-bottom: 25px;
}
.anfragen_popup .custom_label_two {
    top: -12px;
}
}
@media (max-width: 500px) {
.anfragen_popup .close {
	right: 0px;
	top: -37px;
	color: #000;
	background: #fff;
}
.anfragen_popup .calc_form_h {
    padding: 0px 0px 26px 0px;
    font-size: 22px;
}
.popup_content {
    width: 90%;
}
}
/* block anfragen_popup End */


/* first-section start */
.first_sec {
	position:relative;
	padding: 50px 0px;
    color: #fff;
}
.first_sec h1 {
	font-weight: 700;
    font-size: 42px;
    line-height: 130%;
	color: #1B2B68;
    margin: 20px 0px;
}
.first_sec .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
}
.first_sec_slider {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.first_sec_slider .slick-list {
	height: 100%;
}
.first_sec_slider .slick-track {
	height: 100%;
}
.first_sec_inner {
	position: relative;
    max-width: 640px;
    padding: 20px;
    background: rgb(255 255 255 / 80%);
}
.first_sec_subtitle {
    font-size: 20px;
    color: #5177e0;
}
.first_sec_ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0px;
}
.first_sec_ul_li {
    background: url(/wp-content/themes/custom_theme/img/green_check.svg) no-repeat left top;
    padding-left: 31px;
    width: calc(50% - 15px);
    box-sizing: border-box;
    line-height: 22px;
	color: #0D405F;
}
.first_sec_bottom {
    background: rgb(255 255 255 / 70%);
    padding: 15px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}
.first_sec_bottom_right {
    width: 235px;
}
.first_sec_bottom_left_h {
    color: #0c297a;
    font-size: 20px;
}
.first_sec_bottom_left_t {
    color: #81b842;
    font-size: 14px;
}
@media (max-width: 768px) {
.first_sec h1 {
    font-size: 32px;
}
}
@media (max-width: 550px) {
.first_sec h1 {
    font-size: 26px;
    margin: 5px 0px 20px 0px;
}
.first_sec_subtitle {
    font-size: 18px;
}
.first_sec_ul {
    gap: 15px;
    padding: 20px 0px;
}
.first_sec_ul_li {
    width: 100%;
}
.first_sec_bottom {
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
}
/* first-section end */


/* new-comments-block start */
.new_comments_inner {
	display: flex;
    justify-content: space-between;
    gap: 50px;
}
.new_comments_info {
	text-align: center;
    min-width: 225px;
}
.new_comments_info_rating {
	font-weight: 300;
    font-size: 42px;
    line-height: 152%;
    color: #2153dd;
}
.new_comments_info_t {
	font-weight: 400;
    font-size: 18px;
    line-height: 115%;
    color: #273649;
    padding-top: 10px;
}
.new_comments_info_count {
	font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    color: #273649;
    padding-top: 5px;
}
.new_comments_slider {
	width: calc(100% - 275px);
    display: flex;
    align-items: center;
    gap: 10px;
}
.new_comments_slider_item {
	margin: 0 15px;
}
.new_comments_slider_item_h {
	font-weight: 600;
    font-size: 20px;
    line-height: 135%;
    color: #273649;
    padding-top: 8px;
}
.new_comments_slider_item_t {
	padding-top: 10px;
}
.new_comments_slider_item_t, .new_comments_slider_item_t p {
	font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #273649;
	margin: 0;
}
.new_comments_slider_item_name {
	font-size: 16px;
    line-height: 130%;
    color: #c9cdcf;
    padding-top: 10px;
}
.new_comments_rating_stars {
	display: flex;
	gap: 4px;
}
.new_comments_star {
	position: relative;
	width: 20px;
	height: 24px;
	font-size: 24px;
	line-height: 24px;
	display: inline-block;
}
.new_comments_star_back,
.new_comments_star_front {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	pointer-events: none;
}
.new_comments_star_back {
	color: #ccc;
}
.new_comments_star_front {
	color: gold;
	overflow: hidden;
	white-space: nowrap;
}
.new_comments_slidermob_btns {
	display: none;
}
.slider_arrow_grey {
	width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: initial;
    position: relative;
    background: none;
    border: none;
    outline: none;
    padding: 0;
}
.slider_arrow_grey svg path {
	transition: 0.3s;
}
.slider_arrow_grey:hover svg path {
	fill: #31bdff;
}
@media (max-width: 750px) {
.new_comments_inner {
    gap: 20px;
    flex-direction: column;
}
.new_comments_info {
    min-width: 100%;
}
.new_comments_slider {
    width: 100%;
	flex-wrap: wrap;
	justify-content: center;
    gap: 20px;
}
.new_comments_slider .slick-list {
	order: 1;
}
.new_comments_inner .slider_prev_arrow_grey {
	order: 2;
	margin-right: 10px;
}
.new_comments_inner .slider_next_arrow_grey {
	order: 3;
	margin-left: 10px;
}
}
@media (max-width: 450px) {
.new_comments_slider_item_h {
    font-size: 16px;
}
.new_comments_slider_item_t, .new_comments_slider_item_t p {
    font-size: 14px;
}
}
/* new-comments-block end */


/* block person-section Start */
.person_sec_inner {
    border: 1px solid #dcdfe1;	
}
.person_sec_top {
	background: #f5f9fb;
    border-bottom: 1px solid #dcdfe1;
    display: flex;
    justify-content: space-between;
}
.person_sec_top_left {
	display: flex;
    gap: 20px;
    align-items: center;
    padding: 30px;
    width: 50%;
}
.person_sec_top_left_image img {
	display: block;
    max-width: 150px;
}
.person_sec_top_left_info_name {
	font-weight: bold;
    font-size: 16px;
    line-height: 20px;
}
.person_sec_top_left_info_subname {	
    line-height: 20px;
    padding-top: 5px;
}
.person_sec_top_left_info_socials {
	display: flex;
    gap: 15px;
    align-items: center;
    padding-top: 25px;
}
.person_sec_top_left_info_socials_item {
	transition: 0.3s;
}
.person_sec_top_left_info_socials_item img {
	width: 25px;
	max-width: 25px;
	display: block;
}
.person_sec_top_left_info_socials_item:hover {
	opacity: 0.8;
}
.person_sec_top_ul {
	margin-top: -1px;
    display: flex;
    width: 50%;
    flex-wrap: wrap;
}
.person_sec_top_ul_li {
	border-left: 1px solid #dcdfe1;
    border-top: 1px solid #dcdfe1;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 30px;
    flex-grow: 1;
}
.person_sec_top_ul_li_h {
	line-height: 22px;
}
.person_sec_top_ul_li_t {
	font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    padding-top: 10px;
}
.person_sec_text {
	padding: 10px 30px;
}
@media (max-width: 768px) {
.person_sec_top {
    flex-direction: column;
}
.person_sec_top_left {
    width: 100%;
}
.person_sec_top_ul {
    width: 100%;
}
}
@media (max-width: 500px) {
.person_sec_top_left {
    padding: 20px;
}
.person_sec_top_ul_li {
    padding: 10px 20px;
}
.person_sec_top_ul_li_t {
    font-size: 16px;
}
.person_sec_text {
    padding: 5px 20px;
}
}
@media (max-width: 450px) {
.person_sec_top_ul_li {
    width: 100%;
}
.person_sec_top_left_image img {
    max-width: 100px;
}
}
/* block person-section End */


/* new-guarantees-block Start */
.new_guarantees_sec_subtitle {
	text-align: center;
    padding-bottom: 20px;
}
.new_guarantees_sec_list {
	padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.new_guarantees_sec_list_item {
	background: #eef9ff;
    border-radius: 3px;
    padding: 20px;
    width: calc(33.3% - 16px);
    position: relative;
    display: flex;
    gap: 24px;
}
.new_guarantees_sec_list_item_label {
    font-weight: 700;
    font-size: 14px;
    line-height: 130%;
    color: #fff;
    background: #28c037;
    border-radius: 3px;
    padding: 4px 10px;
    position: absolute;
    top: -13px;
    right: 10px;
}
.new_guarantees_sec_list_item_icon {
	display: block;
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 3px;
}
.new_guarantees_sec_list_item_info_h {
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    padding-bottom: 5px;
}
.new_guarantees_sec_list_item_info_t {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #ccae5a;
}
.new_guarantees_sec_list_item_info_t_more, .new_guarantees_sec_list_item_info_t_more p {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
}
.new_guarantees_sec_list_item_info_btn {
	margin-top: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #0076bd;
    cursor: pointer;
	transition: 0.3s;
}
.new_guarantees_sec_list_item_info_btn:hover {
    color: #31bdff;	
}
.new_guarantees_sec_list_item_info_btn:after {
	content: "";
    margin-left: 9px;
    border: solid #0076bd;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    margin-bottom: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: 0.3s;
}
.new_guarantees_sec_list_item_info_btn:hover:after {
	content: "";
    margin-left: 9px;
    border: solid #31bdff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    margin-bottom: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: 0.3s;
}
.new_guarantees_sec_list_item_info_btn.opened:after {
	content: "";
    margin-left: 9px;
    border: solid #0076bd;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    margin-bottom: -1px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transition: 0.3s;
}
.new_guarantees_sec_list_item_info_btn.opened:hover:after {
	content: "";
    margin-left: 9px;
    border: solid #31bdff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    margin-bottom: -1px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transition: 0.3s;
}
@media (max-width: 992px) {
.new_guarantees_sec_list_item {
    width: calc(50% - 12px);
}
}
@media (max-width: 700px) {
.new_guarantees_sec_list_item {
    width: 100%;
}
.new_guarantees_sec_list {
    padding-top: 5px;
    gap: 16px;
}
}
/* new-guarantees-block End */


/* new-feedback-block Start */
.new_feedback_sec {
	background: #eef9ff;
    position: relative;
    overflow-x: clip;
}
.new_feedback_sec_subtitle {
    text-align: center;
    position: relative;
    padding: 0px 130px 20px 130px;
}
.new_feedback_sec_more {
	display: inline-block;
    position: absolute;
    right: 0px;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #0076bd;
    text-decoration: none;
	transition: 0.3s;
}
.new_feedback_sec_more:hover {
	color: #31bdff;
}
.new_feedback_sec_more svg path {
	transition: 0.3s;	
}
.new_feedback_sec_more:hover svg path {
	fill: #31bdff;
}
.new_feedback_sec_slider {
	padding-top: 20px;
}
.new_feedback_sec_slider .new_feedback_sec_slider_item {
	display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0px 20px;
}
.new_feedback_sec_slider_item_logo {
	height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.new_feedback_sec_slider_item_logo img {
	display: block;
    width: 100%;
    height: auto;
}
a.new_feedback_sec_slider_item_logo {
	transition: 0.3s;
}
a.new_feedback_sec_slider_item_logo:hover {
	opacity: 0.7;
}
.new_feedback_sec_slider_item_text, .new_feedback_sec_slider_item_text p {
    font-size: 16px;
    line-height: 130%;
}
.new_feedback_sec_slider_item_rating {
	display: flex;
    gap: 10px;
    align-items: center;
}
.new_feedback_sec_slider_item_rating_num {
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    color: #fff;
    background: #011d38;
    border-radius: 100px;
    padding: 8px;
    width: 42px;
    height: 42px;
}
.new_feedback_sec_slider_item_rating_stars {
	display: flex;
    gap: 10px;
}
.new_feedback_sec .slider_arrow {
	width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(50% - 20px);
}
.new_feedback_sec .slider_prev_arrow {
    left: 0px;
}
.new_feedback_sec .slider_next_arrow {
    right: 0px;
}
.new_feedback_sec .slider_arrow:hover {
	opacity: 0.7;
}
.new_feedback_sec .slick-arrow.slick-disabled {
	display: none !important;
}
.new_feedback_sec .slider_arrow_new {
	width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(50% - 20px);
	cursor: pointer;
}
.new_feedback_sec .slider_arrow_new svg path {
	transition: 0.3s;
}
.new_feedback_sec .slider_arrow_new:hover svg path {
	stroke: #31bdff;
}
.new_feedback_sec .slider_prev_arrow_new {
    left: -54px;
}
.new_feedback_sec .slider_next_arrow_new {
    right: -54px;
}
.slider_normal_dots .slick-dots {
	padding: 0px;
    margin: 0px auto;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 40px;
}
.slider_normal_dots .slick-dots button {
	width: 16px;
    height: 16px;
    font-size: 0px;
    line-height: 0px;
    padding: 0px;
    margin: 0px;
    display: block;
    border: 1px solid #011d38;
    border-radius: 100%;
    background: #fff;
	cursor: pointer;
}
.slider_normal_dots .slick-dots .slick-active button {
	border: 1px solid #011d38;
	background: #011d38;
}
@media (max-width: 768px) {
.new_feedback_sec_subtitle {
    padding: 0px 0px 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.new_feedback_sec_more {
    position: initial;
    margin-top: 5px;
    margin-right: -20px;
}
}
/* new-feedback-block End */


/* new-inforow-block Start */
.new_inforow_sec {
	background: #011d38;
	padding: 20px 0px;
    position: relative;
}
.new_inforow_sec_list {
	display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.new_inforow_sec_list_item {
	display: flex;
    align-items: center;
    gap: 16px;
}
.new_inforow_sec_list_item_icon img {
	display: block;
    height: 30px;
    width: 30px;
}
.new_inforow_sec_list_item_t, .new_inforow_sec_list_item_t p {
    font-size: 20px;
    line-height: 130%;
    color: #fff;	
    margin: 0;
}
@media (max-width: 1100px) {
.new_inforow_sec_list {
    flex-wrap: wrap;
}
.new_inforow_sec_list_item {
    width: calc(50% - 8px);
    justify-content: center;
}
}
@media (max-width: 768px) {
.new_inforow_sec_list_item_t, .new_inforow_sec_list_item_t p {
    font-size: 16px;
}
.new_inforow_sec_list_item {
    justify-content: flex-start;
}
}
@media (max-width: 500px) {
.new_inforow_sec_list {
    padding: 0px 5px;
}
.new_inforow_sec_list_item {
    width: 100%;
}
}
/* new-inforow-block End */

/* new-tools-block Start */
.new_tools_sec_subtitle {
	text-align: center;
    padding-bottom: 20px;
}
.new_tools_sec_list {
	padding-top: 20px;
    display: flex;
    gap: 15px;
}
.new_tools_sec_list_item {
    color: #011d38;
    background: #ecf8f6;
    border-radius: 3px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    width: 100%;
}
.new_tools_sec_list_item_img {
	height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.new_tools_sec_list_item_h {
	font-weight: 600;
    font-size: 16px;
    line-height: 130%;
}
.new_tools_sec_list_item_t {
	font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    padding-bottom: 5px;
}
.new_tools_sec_list_item_img img {
	display: block;
    max-height: 60px;
}
@media (max-width: 1000px) {
.new_tools_sec_list {
    padding-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.new_tools_sec_list_item {
	width: 23%;
}
}
@media (max-width: 640px) {
.new_tools_sec_list_item {
	width: 31%;
}
}
@media (max-width: 470px) {
.new_tools_sec_list_item {
	width: calc(50% - 8px);
}
}
/* new-tools-block End */

/* new-data-block Start */
.new_data_sec {
	position: relative;
}
.new_data_sec_subtitle {
	text-align: center;
    padding-bottom: 20px;
}
.new_data_sec_inner {
	background: #eef9ff;
	padding: 40px 0;
    margin-top: 10px;
}
.new_data_sec_list {
	display: flex;
    flex-wrap: wrap;
    gap: 30px 90px;
}
.new_data_sec_list_item {
    color: #011d38;
    display: flex;
    gap: 11px;
    width: calc(50% - 45px);
}
.new_data_sec_list_item_left_img img {
	display: block;
    width: 32px;
    min-width: 32px;
}
.new_data_sec_list_item_h {
	font-weight: 600;
    font-size: 20px;
    line-height: 130%;
}
.new_data_sec_list_item_label {
	font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    color: #fff;
    background: #08a221;
    border-radius: 3px;
    padding: 4px 8px;
    display: inline-block;
    vertical-align: bottom;
    margin: 3px 0px 3px 10px;
}
.new_data_sec_list_item_t {
	font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    padding-top: 8px;
}
@media (max-width: 950px) {
.new_data_sec_list {
    gap: 30px 36px;
}
.new_data_sec_list_item {
    width: calc(50% - 18px);
}
}
@media (max-width: 768px) {
.new_data_sec_list_item {
	width: 100%;
}
}
@media (max-width: 450px) {
.new_data_sec_list_item_h {
    font-size: 18px;
}
}
@media (max-width: 350px) {
.new_data_sec_list_item_h {
    font-size: 16px;
}
}
/* new-data-block End */

/* new-authors-block Start */
.new_authors_sec_subtitle {
	text-align: center;
    padding-bottom: 20px;
}
.new_authors_sec_subjects {
    border-bottom: 4px solid #011d38;	
	display: flex;	
    flex-wrap: wrap;
    gap: 1px;
    padding-top: 10px;
}
.new_authors_sec_subjects_item {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    min-width: fit-content;
    color: #011d38;
    border-radius: 3px 3px 0 0;
    padding: 12px 15px;
    background: #f5f5f5;
    text-align: center;
    cursor: pointer;
    min-width: 12%;
    flex-grow: 1;
	transition: 0.3s;
}
.new_authors_sec_subjects_item.active {
	background: #011d38 !important;
    line-height: 150%;
    color: #fff;
    cursor: default;
}
.new_authors_sec_subjects_item:hover {
	background: #ecf8f6;
}
.new_authors_sec_authors_outer {
	padding-top: 36px;
    margin: 0 -6px;
}
.new_authors_sec_authors_slider {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.new_authors_sec_author {
	border: 1px solid #e1ecf1;
	border-radius: 3px;
	padding: 20px 16px;
    color: #011d38;
    margin: 0 6px;
}
.new_authors_sec_author_top {
	display: flex;
    gap: 8px;
    align-items: center;
}
.new_authors_sec_author_top_img img {
	width: 76px;
    height: 76px;
    border-radius: 3px;
    display: block;
}
.new_authors_sec_author_top_info_name {
	font-weight: 600;
    font-size: 18px;
    line-height: 133%;
}
.new_authors_sec_author_top_info_rating {
	display: flex;
    gap: 4px;
    align-items: center;
}
.new_authors_sec_author_top_info_rating_num {
	font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    padding-right: 3px;
}
.new_authors_sec_author_top_info_rating_stars svg {
	width: 13px;
    height: 13px;
}
.new_authors_sec_author_top_info_rating_t {
	font-weight: 300;
    font-size: 15px;
    line-height: 160%;
}
.new_authors_sec_author_top_info_status {
	font-weight: 400;
    font-size: 12px;
    line-height: 117%;
    background: #eef9ff;
    border-radius: 3px;
    padding: 4px 9px 4px 10px;
    display: flex;
    gap: 5px;
    align-items: center;
    width: fit-content;
}
.new_authors_sec_author_top_info_status span {
	display: block;
    width: 10px;
    height: 10px;    
	background: #011d38;
    border-radius: 100%;
}
.new_authors_sec_author_top_info_status.online span {
	background: #28c037;
}
.new_authors_sec_author_info {
	background: #eef9ff;
    border-radius: 3px;
    display: flex;
    justify-content: space-around;
    padding: 9px 5px;
    margin-top: 14px;
    flex-direction: column;
    gap: 10px;
}
.new_authors_sec_author_info_li {
	display: flex;
    align-items: center;
    gap: 5px;
}
.new_authors_sec_author_info_li_icon img {
	display: block;
    width: 30px;
    height: 30px;
}
.new_authors_sec_author_info_li_right_h {
	font-weight: 600;
    font-size: 14px;
    line-height: 114%;
}
.new_authors_sec_author_info_li_right_t {
	font-weight: 400;
    font-size: 12px;
    line-height: 117%;
}
.new_authors_sec_author_disciplines {
	display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 14px 0px;
    min-height: 90px;
    align-items: center;
}
.new_authors_sec_author_disciplines_item {
	font-weight: 400;
    font-size: 12px;
    line-height: 117%;
    border: 1px solid #e1ecf1;
    border-radius: 4px;
    padding: 6px 10px;
    display: inline-block;
}
.new_authors_sec_author_btn {
	border-radius: 3px;
    max-width: 100%;
}
.new_authors_sec .slider_arrow {
	width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(50% - 20px);
}
.new_authors_sec .slider_prev_arrow {
    left: 0px;
}
.new_authors_sec .slider_next_arrow {
    right: 0px;
}
.new_authors_sec .slider_arrow:hover {
	opacity: 0.7;
}
.new_authors_sec .slick-arrow.slick-disabled {
	display: none !important;
}
.new_authors_sec .slider_arrow_new {
	width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(50% - 20px);
	cursor: pointer;
}
.new_authors_sec .slider_arrow_new svg path {
	transition: 0.3s;
}
.new_authors_sec .slider_arrow_new:hover svg path {
	stroke: #31bdff;
}
.new_authors_sec .slider_prev_arrow_new {
    left: -54px;
}
.new_authors_sec .slider_next_arrow_new {
    right: -54px;
}
@media (max-width: 768px) {
.new_authors_sec_subjects {
    gap: 0px;
}
.new_authors_sec_subjects_item {
    min-width: 25%;
    border: 1px solid #011d38;
}
.new_authors_sec_authors_outer {
    padding-top: 10px;
}
}
@media (max-width: 350px) {
.new_authors_sec_author_top_img img {
    width: 60px;
    height: 60px;
}
}
/* new-authors-block End */

/* new-form-block start */
.newformblock {
	padding: 80px 0px;
	color: #fff;
}
@media (max-width: 1023px) {
.newformblock {
	padding: 40px 0px;
}
}
.new_form_block_inner {
	display: flex;
    justify-content: space-between;
    gap: 20px;
}
.new_contacts_sec_h1 {
	color: #fff;
}
.new_form_block label {
	display: block;
}
.new_form_block p {
	margin: 0;
}
.new_form_col {
	display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.new_form_left {
	display: flex;
    gap: 0 20px;
    width: 50%;
}
.new_form_right {
    width: 50%;
}
.new_form_right_top {
	display: flex;
    gap: 0 20px;
    width: 100%;
    padding-bottom: 15px;
}
.new_form_label_t {
	font-weight: 400;
    font-size: 14px;
    line-height: 129%;
    color: #fff;
	margin: 0;
    display: block;
    padding-bottom: 5px;
}
.new_form_outer input[type="text"], .new_form_outer input[type="email"], .new_form_outer input[type="date"], .new_form_outer input[type="tel"], .new_form_outer input[type="number"], .new_form_outer textarea {
	font-weight: 400;
    font-size: 14px;
    line-height: 129%;
    color: #273649;
    height: 36px;
    min-height: 36px;
    background: #fff;
    border-radius: 6px;
    border: none;
    padding: 0 10px;
    box-sizing: border-box;
    width: 100%;
	font-family: 'Work Sans', Sans-Serif;
}
.new_form_outer textarea {
	padding-top: 9px;
    height: 110px;
}
.new_form_outer textarea::placeholder {
	font-weight: 400;
    font-size: 14px;
    line-height: 129%;
    color: #273649;
}
.new_form_outer .wpcf7-not-valid {
	border: 2px solid #dc3232 !important;
}
.new_form_block_btn {
	text-align: center;
    padding-top: 35px;
}
.new_form_block_btn button {
	font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: #0a2261;
    background: #00ffbf;
    border-radius: 6px;
    padding: 15px 30px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}
.new_form_block_btn button:hover {
    filter: brightness(1.4);
    transition: 0.3s;
}
.new_form_block .wpcf7-not-valid-tip {
    display: none;
}
.new_form_block_acceptance {
	padding-top: 50px;
    text-align: center;
}
.new_form_block_acceptance_item:first-child {
	padding-bottom: 10px;
}
.new_form_block_acceptance_item label {
	font-weight: 400;
	font-size: 16px;
	color: #fff;
}
.new_form_block_acceptance_item a {
	color: #fff;
    font-weight: 700;
	transition: 0.3s;
}
.new_form_block_acceptance_item a:hover {
	color: #a3edf5;
}
.new_form_custom_checkbox_input {
	display: none;
}
.new_form_checkbox {
	display: inline-block;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 4px;	
	margin-right: 12px;
	margin-bottom: 2px;
	vertical-align: middle;
	background-color: #fff;
	position: relative;
	transition: all 0.2s ease;
	cursor: pointer;
}
.new_form_custom_checkbox_input:checked + .wpcf7-list-item-label .new_form_checkbox::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 8px;
	width: 5px;
	height: 11px;
	border: solid #2962FF;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}
#new_form_phone_input {	
    border-radius: 0px 6px 6px 0px;
}
.new_form_phone_block > p {
	display: flex;
	gap: 0px;
	align-items: center;
}
#country_selector + .select2-container--default .select2-selection--single {
	height: 36px;
	padding: 5px 10px 5px 5px;
	border: none;
	border-radius: 6px 0px 0px 6px;
	display: flex;
	align-items: center;
	position: relative;
}
.select2-container--default .select2-selection--single {
	height: 36px;
	padding: 5px 30px 5px 10px;
	border: none;
	border-radius: 6px;
	display: flex;
	align-items: center;
	position: relative;
}
#country_selector + .select2-container--default .select2-selection--single::after {
	content: '';
	position: absolute;
	right: 7px;
	top: 16px;
	width: 9px;
	height: 9px;
	border-right: 2px solid #2e3a59;
	border-bottom: 2px solid #2e3a59;
	transform: translateY(-60%) rotate(45deg);
	pointer-events: none;
}
.select2-container--default .select2-selection--single::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 16px;
    width: 9px;
    height: 9px;
    border-right: 2px solid #2e3a59;
    border-bottom: 2px solid #2e3a59;
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-left: 2px;
}
.select2-container--default .select2-selection--single img {
	border-radius: 50%;
	width: 26px;
	height: 26px;
	display: block;
}
.select2-dropdown.select2-dropdown--below {
	min-width: 180px !important;
}
.select2-container--default .select2-results {
	min-width: 180px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	display: none;
}
.select2-results__option--selectable > span {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #000;
}
.new_form_outer .wpcf7-not-valid + .select2 .select2-selection--single {
	border: 2px solid #dc3232;
}
.codedropz-upload-handler {
    border: 2px dashed #5885ff;
}
.codedropz-upload-container {
    padding: 25px 20px 15px 20px;
    height: 110px;
	background: #2250ce;
}
.codedropz-upload-inner {
    font-size: 14px;
    line-height: 129%;
    color: #fff;
}
.codedropz-upload-inner > div {
	font-weight: 700;
}
.codedropz-upload-inner > div a {
	font-weight: 700;
	color: #fff;
}
.dnd-upload-counter {
    color: #fff;
}
.dnd-upload-status .dnd-upload-image {
    background-color: #fff;
}
.dnd-upload-status:last-child {
    padding-bottom: 15px;
}
.dnd-upload-status .dnd-upload-details .remove-file {
    background-color: #fff;
    border-radius: 50%;
}
.dnd-upload-status .dnd-upload-details .name span {
    color: #fff;
}
.dnd-upload-status .dnd-upload-details .name em {
    color: #fff;
}
@media (max-width: 768px) {
.new_form_block_inner {
    flex-direction: column;
}
.new_form_left {
    width: 100%;
}
.new_form_right {
    width: 100%;
}
.new_form_block_btn {
    padding-top: 15px;
}
.new_form_block_acceptance {
    padding-top: 20px;
}
}
@media (max-width: 450px) {
.new_form_left {
    flex-direction: column;
    gap: 10px;
}
.new_form_right_top {
    gap: 10px;
    padding-bottom: 10px;
    flex-direction: column;
}
.new_form_col {
    gap: 10px;
}
.new_form_block_inner {
    gap: 10px;
}
.new_form_block_acceptance_item label {
    line-height: 24px;
}
.new_form_block_acceptance {
    text-align: left;
}
.new_form_block_acceptance_item:first-child {
    padding-bottom: 15px;
}
}
/* new-form-block end */

