/* body */
body {
	overflow-x: hidden;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span, p span, 
.brxe-text span, .brxe-text-basic span {
	color: #ff6319;
}
.bricks-button {
	min-width: 150px;
}
.brxe-text-basic a {
	color: #ff6319;
}
.contact-link a {
	color: #ff6319;
	transition: all 0.3s ease;
}
.contact-link a:hover {
	color: #002776;
}
body.bricks-is-frontend :focus-visible {
    outline: none;
}

/* header */
@media only screen and (min-width: 768px) {
.brx-submenu-toggle button, .brx-submenu-toggle button>* {
	display: none;
	}
}
.brx-dropdown-content > li > a[aria-current="page"] {
	color: #ff6319;
}
ul.brx-nav-nested-items li .aria-current,
ul.brx-nav-nested-items li a[aria-current="page"] {
	color: #ff6319 !important;
}
@media only screen and (min-width: 768px) and (max-width: 1120px) {
  	.nav-cnt {
    	padding-right: 5px !important;
  	}
	.nav-cnt > ul {
  		column-gap: 5px !important;
	}
	.btns-cnt {
    	padding-left: 5px !important;
		gap: 5px !important;
  	}
	.btns-cnt i {
    	font-size: 20px !important;
		width: 20px;
		height: 20px;
  	}
	.change-country-button {
		width: 125px !important;
		min-width: 125px !important;		
	}
	.change-country-button .brxe-text-basic {
		display: inline-block !important;
		font-size: 12px !important;		
	}
}
@media only screen and (min-width: 768px) and (max-width: 840px) {
	.change-country-button .brxe-text-basic {
		display: none !important;	
	}
	.change-country-button {
		width: 56px !important;
		min-width: 56px !important;		
	}	
}

/* header - line hover */
@media only screen and (min-width: 768px) {
ul.brx-nav-nested-items li {
	position: relative;
}
ul.brx-nav-nested-items > li:after {
	width: 100%;
    content: '';
    position: absolute;
    bottom: 10px;
    height: 2px;
    right: 50%;
	transform: scale(0,0) translate(-50%,0);
    transition: all .3s ease-in-out;
}
ul.brx-nav-nested-items li:after,
ul.brx-nav-nested-items li a:after {
    background: #ff6319 !important;	
}
.link-a .aria-current a,
.link-a .aria-current svg path {
	color: #ff6319;
}
ul.brx-nav-nested-items li:hover:after,
ul.brx-nav-nested-items li:hover:after,
ul.brx-nav-nested-items li a:hover:after,
ul.brx-nav-nested-items li a:hover:after {
	transform: scale(1, 1) translate(50%,0);
	}
}

/* background scaling */
@media only screen and (min-width: 1261px) and (max-width: 1620px) {
.bg-scaling {
	background-size: 160px !important;
	}
}
@media only screen and (min-width: 767px) and (max-width: 1260px) {
.bg-scaling {
	background-size: 120px !important;
	}
}


/* change-country popup */
.block-country .brxe-text p {
	transition: all 0.3s ease;
}

.block-country:hover .brxe-text p {
	color: #ff6319;
}

/* posts */
.special-post .brxe-image {
	transition: 0.3s ease;
}
.special-post:hover .brxe-image {
	transform: scaleX(1.1) scaleY(1.1);
	transition: 0.3s ease;
}

/* post navigation */
.brxe-post-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;
    line-height: inherit;
    width: 100%;
}
.brxe-post-navigation.post-nav a {
	width: 50%;
    align-items: center;
    display: flex;
    gap: 0 !important;
}
.brxe-post-navigation a.prev-post .swiper-button {
	margin-right: 20px;
	order: 0;
}
.brxe-post-navigation a.prev-post .image {
	margin-right: 15px;
	order: 1;
}
.brxe-post-navigation a.prev-post .content {
	order: 2;
}
.brxe-post-navigation a.next-post .swiper-button {
	margin-left: 20px;
	order: 2;
}
.brxe-post-navigation a.next-post .image {
	margin-left: 15px;
	order: 1;
}
.brxe-post-navigation a.next-post .content {
	order: 0;
}
@media only screen and (max-width: 767px) {
.brxe-post-navigation a.next-post .swiper-button,
.brxe-post-navigation a.next-post .image {
	margin-left: 5px;
	}
.brxe-post-navigation a.prev-post .image,	
.brxe-post-navigation a.prev-post .swiper-button {
	margin-right: 5px;
	}	
}

/* next section */
.button-next {
	animation: 1.2s infinite mymove;  
}
@keyframes mymove {
	0%,100% {
		bottom: 110px
	}
	50% {
		bottom: 135px
	}
}

/* button animation */
.bricks-button.anim-button:not([class*="bricks-background-"]):not([class*="bricks-color-"]):not(.outline) {
    background-color: transparent;
}
.brxe-button.anim-button,
form .bricks-button {
	position: relative;
	background-color: #ffffff;
	color: #002776;
	overflow: hidden;
	z-index: 2;
	transition: all 0.3s ease;
}
.brxe-button.anim-button:before,
form .bricks-button:before {
	content: "";
  	position: absolute;
	inset: 0;
  	background-color: #002776;
  	transform: translateX(-100%);
  	z-index: -1;
	transition: all 0.3s ease;
}
.brxe-button.anim-button:hover,
form .bricks-button:hover {
	color: #ffffff;
}
.brxe-button.anim-button:hover:before,
form .bricks-button:hover:before {
  	transform: translateX(0);	
}

/* form */
.form-group input {
	box-shadow: 0 1px #fff,inset 0 1px 4px rgba(0,0,0,.15);	
}

/* list */
.list-style ul {
	padding: 0;
	margin: 0;
}
.list-style ul li {
	position: relative;
	list-style-type: none;
	padding-left: 20px;
}
.list-style ul li:before {
	position: absolute;
	top: 4px;
	left: 0;	
    content: "❯";
  	font-family: Font Awesome;
  	font-size: 15px;
  	line-height: 1;	
    color: #ff6319;
}

/* blog - social buttons */
.social-sharing-buttons {
	display: flex;
	justify-content: center;
    align-items: center;
    margin: 2em 0;
}
.social-sharing-buttons a, .social-sharing-buttons__button {
  text-decoration: none;
  margin: 0 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* footer */
.ftr-nav .bricks-nav-menu > li {
	position: relative;
}
.ftr-nav .bricks-nav-menu > li:before {
	content: "❯";
  	position: absolute;
  	left: 0;
  	top: 0;
  	color: #ff6319;
  	font-family: Font Awesome;
  	font-size: 15px;
  	line-height: 1;	
}
.ftr-nav .bricks-nav-menu > li > a {
	transition: all 0.3s ease !important;	
}

/*# sourceMappingURL=customstyles.css.map */