@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Nunito&display=swap");

*,
*:after,
*:before {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Nunito", sans-serif;
	/* font-weight: 400; */
}

a,
li,
button {
	text-decoration: none;
	outline: none;
	list-style: none;
}

a {
	cursor: pointer;
}

hr {
	background-color: #59bae3;
	color: #59bae3;
	height: 1.5px;
	border-width: 0;
	width: 100px;
	margin: 30px 0;
}

#contact hr,
#services hr,
#support hr,
.tariff hr {
	margin: 20px auto;
}

h2,
h3 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
}

h2 {
	font-size: 1.5rem;
}

::placeholder {
	color: rgb(160, 160, 160);
	opacity: 1;
}

/* recaptcha v3 */
.grecaptcha-badge {
	visibility: hidden;
}

/* button effect */
.heading a>button,
.support_container a>button,
form a>button,
.product_info button,
.responsive_product_info button,
.tariffs_container button {
	background-color: #59bae3;
	border: 2px solid white;
	border-radius: 25px;
	color: white;
	padding: 7px 35px;
	/* animation: blinker 1.2s linear infinite alternate; */
	width: 230px;
	font-size: inherit;
	font-family: inherit;
	cursor: pointer;
}

form a>button {
	width: 150px;
}

.support_container a>button {
	/* background-color: #f8f8f8;
	border: 2px solid #59bae3; */
	width: 250px;
}

/* .support_container a > button > span {
	color: #59bae3;
} */
/* .support_container a > button:hover {
    background-color: #f8f8f8;
} */
.heading a {
	margin: auto 20px auto auto;
}

/* @media (max-width: 700px) {
	.heading a {
		margin-right: 0;
	}
} */

form a {
	margin: auto;
}

.heading a:nth-of-type(2)>button {
	background-color: white;
	border: 2px solid #59bae3;
}

.heading a:nth-of-type(2) span {
	color: #59bae3;
}

.heading a>button:hover,
form a>button:hover {
	animation: none;
}

@keyframes blinker {
	from {
		opacity: 0.7;
	}

	to {
		opacity: 1;
	}
}

.button span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
	color: white;
}

.button span:after {
	content: "\00bb";
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
}

.button:hover span {
	padding-right: 20px;
}

.button:hover {
	background-color: #59bae3;
}

.button:hover span:after {
	opacity: 1;
	right: 0;
}

/* navbar */
.flex_container {
	display: flex;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: space-between;
	position: fixed;
	top: 0;
	width: 100%;
	padding: 15px 10%;
	background-color: transparent;
	z-index: 100;
	font-family: "Montserrat", sans-serif;
	box-shadow: none;
	transition: all 0.5s ease;
	-webkit-animation: fadein 2s;
	/* Safari, Chrome and Opera > 12.1 */
	-moz-animation: fadein 2s;
	/* Firefox < 16 */
	-ms-animation: fadein 2s;
	/* Internet Explorer */
	-o-animation: fadein 2s;
	/* Opera < 12.1 */
	animation: fadein 2s;
}

#logo {
	font-size: 2.3rem;
	font-weight: lighter;
	color: #4faeee;
	transition: all 0.5s ease;
}

#logo span {
	font-weight: bold;
}

.nav_items {
	margin-top: 7px;
	display: inline-block;
}

.nav_items li {
	display: inline-block;
	margin-left: 90px;
	font-size: 1rem;
	font-weight: bold;
	letter-spacing: 0.05em;
}

.nav_items>ul>li>a {
	color: white;
}

.triangle_down {
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 7px solid white;
	display: inline-block;
	margin-left: 5px;
}

/* services dropdown */
.services_dropdown {
	position: relative;
	transition: all 0.4s ease;
}

.services_dropdown_content>a>.triangle_down {
	border-top: 7px solid rgb(79, 174, 238);
}

div.services_dropdown_content>a {
	color: rgba(89, 186, 227, 0.9);
	font-weight: 300;
	letter-spacing: 0;
}

div.services_dropdown_content>a:hover {
	color: rgb(79, 174, 238);
}

div.services_dropdown_content>a:nth-of-type(1) {
	color: rgba(79, 174, 238, 1);
	font-weight: bold;
	margin: 15px auto 20px auto;
	letter-spacing: 0.800000011920929px;
}

.services_dropdown_content {
	position: absolute;
	top: -15px;
	left: -36px;
	width: 155px;
	text-align: center;
	/* border: 2px solid #59bae3; */
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	background-color: white;
	transition: all 0.5s;
	color: rgb(160, 160, 160);
	transition: all 0.4s ease;
}

.services_dropdown_content a {
	color: rgb(160, 160, 160);
	margin: 10px 15px;
	display: block;
}

/* submenu - responsive */
.submenu {
	background-color: white;
	position: fixed;
	top: 62px;
	left: 0;
	z-index: 90;
	width: 100%;
	text-align: center;
	display: block;
	transform: translateY(-140%);
	transition: all 0.5s ease;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.submenu_nav_items>li {
	margin: 20px;
}

.submenu_services_options {
	margin: 40px auto;
	width: 117px;
}

.submenu_nav_items>li>a,
.submenu_services_options>li>a {
	color: rgba(79, 174, 238, 1);
}

.submenu_services_options>li {
	margin: 20px auto 20px auto;
}

/* burger menu */
.burger_menu {
	display: none;
	cursor: pointer;
	margin-top: 5px;
}

.burger_lines {
	width: 25px;
	height: 2.5px;
	background-color: white;
	margin: 4px;
	transition: all 0.5s ease;
}

.toggle .line1 {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.toggle .line2 {
	opacity: 0;
}

.toggle .line3 {
	transform: rotate(45deg) translate(-5px, -4px);
}

@media (max-width: 1280px) {
	.nav_items {
		display: none;
	}

	.burger_menu {
		display: inline-block;
	}

	.submenu_active {
		display: block;
		transform: translateY(0%);
	}

	.burger_lines {
		background-color: rgb(79, 174, 238) !important;
	}

	#logo {
		font-size: 1.7rem !important;
	}

	.nav_items>ul>li>a {
		color: #4faeee !important;
	}

	.triangle_down {
		border-top: 7px solid #4faeee;
	}

	.heading a {
		margin: auto;
	}
}

/* section home */
#home {
	height: 100vh;
	overflow: hidden;
}

#particles-js,
#particles-js2 {
	position: relative;
	height: 100%;
	width: 100%;
}

#particles_content {
	position: absolute;
	width: 100%;
	padding: 7% 10%;
	top: 41%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-animation: fadein 2s;
	/* Safari, Chrome and Opera > 12.1 */
	-moz-animation: fadein 2s;
	/* Firefox < 16 */
	-ms-animation: fadein 2s;
	/* Internet Explorer */
	-o-animation: fadein 2s;
	/* Opera < 12.1 */
	animation: fadein 2s;
}

#rectangle {
	position: absolute;
	width: 1739px;
	height: 1756px;
	background-color: #59bae3;
	top: -1131px;
	right: -696px;
	left: 60vw;
	border-radius: 23%;
	transform: rotate(29deg);
	z-index: 0;
}

.home_content {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	width: 90%;
}

.home_content img {
	margin: 3% 0%;
	/* width: 500px; */
	height: 370px;
	z-index: 1;
}

.heading {
	margin-top: 5%;
}

.heading h2:nth-of-type(1),
.heading p:nth-of-type(1) {
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
	font-size: 2.5rem;
}

.heading p:nth-of-type(1) {
	font-weight: 400;
	color: #9ca0a3;
	font-size: 1.2rem;
	margin-top: 5px;
}

.heading p:nth-of-type(2) {
	color: #707070;
	text-align: justify;
}

.heading>div {
	display: inline-block;
	margin-top: 70px;
}

/* mouse animation */
.mouse {
	height: 65px;
	width: 35px;
	background-color: white;
	border-radius: 150px;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	border: 2px solid #4faeee;
	margin: -2% auto auto auto;
	position: relative;
	animation: jump 3s infinite linear;
}

.mouse_line {
	width: 2px;
	height: 15px;
	background-color: #4faeee;
	position: absolute;
	top: 22%;
	left: 47%;
}

.mouse,
.mouse_line {
	display: none;
}

@media (max-width: 2000px) {
	.home_content img {
		margin: 8% -20%;
	}

	#particles_content {
		padding: 5% 10%;
	}

	.heading {
		margin-top: 8%;
	}

	.home_content img {
		height: 430px;
	}
}

@media (max-width: 1820px) {
	.home_content img {
		height: 370px;
	}

	.home_content {
		width: 100%;
	}
}

@media (max-width: 1600px) {
	#particles_content {
		padding: 5% 10%;
	}

	.home_content img {
		margin: 3% 0%;
	}

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

	.heading hr {
		margin: 20px 0;
	}

	.heading>div {
		margin-top: 40px;
	}

	.heading {
		margin-top: 4%;
		width: 50%;
	}

	#particles_content {
		top: 47%;
	}
}

@media (max-width: 1280px) {
	.mouse {
		display: none;
	}

	#home {
		height: 100vh;
		text-align: center;
	}

	.home_content {
		display: block;
		width: 100%;
	}

	.heading p:nth-of-type(2) {
		text-align: center;
	}

	.home_content img {
		display: none;
	}

	.home_content .special {
		display: none;
	}

	#rectangle {
		display: none;
	}

	.heading {
		width: 100%;
		margin-top: 10%;
	}

	.heading a>button {
		margin-top: 8%;
		/* margin-left: 17px; */
	}

	.heading hr {
		margin: 30px auto;
	}

	.heading>div {
		margin-top: 50px;
	}
}

@media (max-width: 1050px) {
	.heading {
		margin-top: 15%;
	}
}

@media (max-width: 600px) {
	.heading {
		margin-top: 40%;
	}

	#particles_content {
		top: 40%;
	}
}

@keyframes jump {

	from,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}

	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}

/* services */
#services {
	background-color: #f8f8f8;
	text-align: center;
	padding: 70px 10%;
	position: relative;
}

.services_container {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	/* margin: -260px auto 50px auto; */
	-webkit-transform: translateY(-260px);
	-webkit-animation: fadein 2s;
	/* Safari, Chrome and Opera > 12.1 */
	-moz-animation: fadein 2s;
	/* Firefox < 16 */
	-ms-animation: fadein 2s;
	/* Internet Explorer */
	-o-animation: fadein 2s;
	/* Opera < 12.1 */
	animation: fadein 2s;
}

@keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* Firefox < 16 */
@-moz-keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* Internet Explorer */
@-ms-keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.card {
	width: 14%;
	background-color: transparent;
	padding: 25px 15px;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	color: black;
}

.card_overlay {
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(248, 248, 248, 0.1);
	overflow: hidden;
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

.card_selected_css {
	box-shadow: none !important;
	transform: scale(1) !important;
}

.card.card_selected {
	box-shadow: 0px 2px 7px 7px rgba(79, 174, 238, 0.3);
	margin: 0 1%;
	transform: scale(1.1);
	color: #4faeee;
}

.card:hover {
	box-shadow: 0px 2px 7px 7px rgba(79, 174, 238, 0.3);
	transform: scale(1.1);
	color: #4faeee;
	margin: 0 1%;
}

.card img {
	height: 50px;
	margin-bottom: 10px;
}

.card p {
	font-size: 0.9rem;
}

.product_info {
	display: none;
	width: 100%;
	padding: 3% 0%;
}

.product_info p {
	text-align: justify;
}

.product_info h3,
.responsive_product_info h3 {
	margin: 30px auto 50px auto;
	border-radius: 25px;
	font-size: 1.7rem;
}

.product_info h3>span,
.tariff h4>span,
.responsive_product_info h3>span {
	color: #4faeee;
}

.product_info li {
	list-style: disc;
	text-align: left;
}

/* internet service */
.tariffs_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	width: 100%;
}

.internet_options {
	display: inline-block;
	margin-bottom: 50px;
}

.internet_options a {
	margin: auto 20px;
	color: #707070;
}

.internet_options a:hover {
	color: black;
	font-weight: bold;
}

.internet_option_selected {
	color: #4faeee !important;
	font-weight: bold;
}

.tariff {
	width: 255px;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
	text-align: center;
	padding: 30px 20px;
	text-align: center;
	margin: 10px 10px;
	height: 440px;
}

.tariff>h4 {
	margin: auto;
	font-size: 1.2rem;
	font-weight: bold;
}

.tariff>p {
	color: #707070;
	margin: 20px auto;
	text-align: center;
	height: 50px;
}

.tariff>h5 {
	font-size: 1.3rem;
}

.tariff>h5>span {
	font-size: 1rem;
	color: #707070;
	font-weight: lighter;
}

.it-devices:hover {
	color: #4faeee;
}

#internet-divider {
	display: inline-flex;
	gap: 24px;
	margin-bottom: 40px;
	align-items: center;
}

#internet-divider span {
	color: #707070;
	cursor: pointer;
}

#internet-divider span:hover {
	color: #4faeee;
}

.internet-divider-active {
	color: #4faeee !important;
	border: 1px solid #4faeee;
	padding: 8px 16px;
	border-radius: 5px;
	background-color: aliceblue;
}

@media (max-width: 1280px) {
	.tariff ul {
		margin-left: 14%;
	}
}

.product_info button,
.responsive_product_info button,
.tariffs_container button {
	width: 70%;
	font-size: 0.9rem;
	margin: 30px auto 20px auto;
	padding: 7px 15px;
}

.discount {
	background-color: white !important;
	border: 1px solid #4faeee !important;
}

.discount span {
	color: #4faeee;
}

.product_info ul {
	margin-left: 22px;
}

.product_info li,
.responsive_product_info li {
	list-style: none;
	text-align: left;
	color: #707070;
}

#internet-divider-wifi-content li {
	text-align: left;
	margin-left: 1.4em;
}

.product_info li,
#home li {
	color: black;
	margin-top: 5px;
}

.product_info li::before,
.responsive_product_info li::before,
#internet-divider-wifi-content li::before,
#home li::before {
	content: "+ ";
	color: #4faeee;
	margin-left: -0.9em;
	width: 1em;
}

#home ul {
	margin-left: 22px;
	text-align: left;
}

.vdsl_internet,
.wireless_internet {
	display: none;
}

.product_info.television h2:nth-of-type(1) {
	display: none;
}

.product_info.television .more-info {
	display: none;
}

.loader_tv {
	border: 4px solid #f8f8f8;
	border-radius: 50%;
	border-top: 4px solid #4faeee;
	width: 40px;
	height: 40px;
	-webkit-animation: spin 2s linear infinite;
	/* Safari */
	animation: spin 2s linear infinite;
	text-align: center;
	margin: 0 auto 40px auto;
}

#sledovanitv {
	overflow: hidden;
	max-width: 85%;
	margin: auto;
}

#sledovanitv h1,
#sledovanitv h3 {
	font-size: 1.7rem;
	text-align: left;
}

#sledovanitv h4 {
	font-size: 1rem;
	text-align: left;
}

#sledovanitv h3 {
	font-size: 1.3rem;
}

#sledovanitv .line {
	margin: none;
	width: 100%;
}

.snippet .snippet-container-fluid.md .snippet-col-md-7 {
	width: 103% !important;
}

.sledovanitv_mobile {
	text-align: left;
}

.sledovanitv_mobile p {
	margin-bottom: 30px;
}

/* responsive services design */
.responsive_services_container {
	width: 100%;
	margin: auto;
	margin-top: 50px;
	display: none;
}

.responsive_card {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	background-color: white;
	margin: auto;
	height: 120px;
	margin-bottom: 30px;
	cursor: pointer;
}

.responsive_card_details {
	text-align: left;
	width: 40%;
}

.card_display_arrow {
	border: solid black;
	border-width: 0 3px 3px 0;
	display: inline-block;
	padding: 10px;
	transform: rotate(314deg);
	-webkit-transform: rotate(314deg);
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.product_arrow_active {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.responsive_product_info {
	width: 100%;
	margin-top: -30px;
	margin-bottom: 30px;
	padding: 30px 0;
	border-top: solid 1.5px #59bae3;
	display: none;
}

.services_heading {
	display: none;
}

@media (max-width: 1280px) {
	.card {
		padding: 25px 3px;
	}

	.services_container {
		display: none;
	}

	.product_info {
		display: none !important;
	}

	.responsive_services_container {
		display: block;
	}

	.services_heading {
		display: block;
	}

	.responsive_card>img {
		width: 60px;
	}
}

@media (max-width: 680px) {
	.responsive_card_details h3 {
		font-size: 0.8rem;
	}

	.responsive_card_details p {
		font-size: 0.7rem;
	}

	.responsive_card>img {
		/* transform: scale(.7); */
		width: 50px;
	}

	.responsive_card_details {
		width: 45%;
	}

	.card_display_arrow {
		padding: 7px;
	}

	.internet_options a {
		margin: auto 10px;
	}
}

@media (min-width: 1600px) {
	.product_info_points {
		margin-left: 214px !important;
	}

	.card img {
		height: 70px;
		margin-bottom: 10px;
	}

	.product_info_first_p {
		padding: 0 200px;
	}
}

/* contact */
#contact {
	text-align: center;
	height: 780px;
}

.contact_content {
	position: absolute;
	width: 100%;
	top: 100px;
}

.contact_content_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#circle {
	position: absolute;
	top: 65px;
	right: 150px;
	width: 150px;
	height: 150px;
	background-color: #59bae3;
	border-radius: 50%;
	animation: upAndDown 12s linear infinite alternate;
}

@keyframes upAndDown {
	from {
		transform: translate(0, 0);
	}

	to {
		transform: translate(70px, 120px);
	}
}

#big_circle {
	position: absolute;
	bottom: -126px;
	left: -110px;
	width: 400px;
	height: 400px;
	background-color: #59bae3;
	border-radius: 50%;
	z-index: -1;
	animation: leftAndRight 5s linear infinite alternate;
}

@keyframes leftAndRight {
	from {
		transform: translate(0, 0);
	}

	to {
		transform: translate(50px, 30px);
	}
}

#contact p {
	margin: 40px auto;
}

#contact form>input {
	margin-bottom: 10px;
	background-color: #f8f8f8;
	border-radius: 10px;
	outline: none;
	border: none;
	text-align: center;
	padding: 10px 20px;
	font-size: 0.9rem;
	width: 350px;
}

#contact form>select {
	width: 350px;
	margin-bottom: 10px;
	background-color: #f8f8f8;
	border-radius: 10px;
	outline: none;
	border: none;
	text-align: center;
	padding: 10px 74px 10px 124px;
	font-size: 0.9rem;
	font-family: "Nunito", sans-serif;
	color: inherit;
}

#contact form>textarea {
	width: 350px;
	min-width: 350px;
	max-width: 350px;
	height: 100px;
	min-height: 100px;
	max-height: 150px;
	margin-bottom: 10px;
	background-color: #f8f8f8;
	border-radius: 10px;
	outline: none;
	border: none;
	text-align: center;
	padding: 10px;
	font-size: 0.9rem;
	font-family: "Nunito", sans-serif;
}

#contact form>button {
	background-color: #59bae3;
	color: white;
	padding: 7px 30px;
	border-radius: 25px;
	border: none;
	margin: 30px auto;
	font-size: 0.9rem;
	cursor: pointer;
	outline: none;
}

/* custom dropdown */
.custom_select_wrapper {
	position: relative;
	user-select: none;
	width: 350px;
	margin: auto auto 10px auto;
}

.custom_select_wrapper span {
	font-family: "Nunito", sans-serif;
	font-size: 0.9rem;
	margin: auto;
	color: rgb(160, 160, 160);
}

.custom_select {
	position: relative;
	display: flex;
	flex-direction: column;
}

.custom_select_trigger {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	color: #3b3b3b;
	cursor: pointer;
	background-color: #f8f8f8;
	border-radius: 10px 10px 0 0;
	text-align: center;
}

.select_borders {
	border-top: 2px solid #59bae3;
	border-left: 2px solid #59bae3;
	border-right: 2px solid #59bae3;
}

.custom_options {
	position: absolute;
	display: block;
	top: 100%;
	left: 0;
	right: 0;
	border: 2px solid #59bae3;
	border-top: 0;
	border-radius: 0 0 10px 10px;
	background: #f8f8f8;
	transition: all 0.5s;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 2;
}

.custom_select.open .custom_options {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

.custom_option {
	position: relative;
	display: block;
	padding: 0 22px 0 22px;
	font-size: 22px;
	font-weight: 300;
	color: #3b3b3b;
	padding: 10px 20px;
	cursor: pointer;
	transition: all 0.5s;
}

.custom_option:hover {
	cursor: pointer;
	color: #59bae3;
}

.custom_option.selected {
	color: #ffffff;
	background-color: #305c91;
}

.arrow {
	position: absolute;
	height: 15px;
	width: 15px;
	right: 20px;
}

.arrow::before,
.arrow::after {
	content: "";
	position: absolute;
	bottom: 0px;
	width: 0.15rem;
	height: 100%;
	transition: all 0.5s;
}

.arrow::before {
	left: -5px;
	transform: rotate(45deg);
	background-color: #59bae3;
}

.arrow::after {
	left: 5px;
	transform: rotate(-45deg);
	background-color: #59bae3;
}

.open .arrow::before {
	left: -5px;
	transform: rotate(-45deg);
}

.open .arrow::after {
	left: 5px;
	transform: rotate(45deg);
}

/* contact details */
#contact_details {
	text-align: left;
	margin-left: 8%;
}

#contact_details p {
	margin: 15px auto;
}

.single_info {
	background-color: rgba(255, 255, 255, 0.8);
}

/* placeholder */
.red::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: crimson;
	opacity: 1;
	/* Firefox */
}

.red:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: crimson;
}

.red::-ms-input-placeholder {
	/* Microsoft Edge */
	color: crimson;
}

.loader {
	border: 4px solid #f8f8f8;
	border-radius: 50%;
	border-top: 4px solid #4faeee;
	width: 20px;
	height: 20px;
	-webkit-animation: spin 2s linear infinite;
	/* Safari */
	animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@media (max-width: 1300px) {
	#big_circle {
		display: none;
	}

	#circle {
		display: none;
	}
}

@media (max-width: 745px) {
	#contact {
		min-height: 1350px;
	}

	#contact_details {
		margin-top: 80px;
	}

	.contact_content {
		padding: 70px 11%;
		top: 30px;
	}

	#contact form>input,
	.custom_select_wrapper {
		width: 100%;
	}

	#contact form>textarea {
		min-width: 0;
		width: 100%;
	}

	#contact p {
		text-align: justify;
	}

	#contact_span {
		color: #4faeee;
	}
}

/* support */
#support {
	background-color: #f8f8f8;
	text-align: center;
	padding: 100px 10%;
}

.support_container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
}

.support_container div {
	width: 55%;
	text-align: left;
}

.support_container li {
	list-style: circle;
	margin: 20px auto auto 15px;
	color: #59bae3;
}

.support_container a {
	color: #4faeee;
}

.support_container_buttons {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.support_container_buttons button {
	margin-top: 30px;
}

.support_container_buttons a {
	margin-right: 30px;
}

@media (max-width: 1080px) {
	#support {
		padding: 100px 10%;
	}

	.support_container div {
		width: 100%;
	}

	.support_container img {
		margin-top: 50px;
		width: 50%;
	}

	.support_container ul {
		margin: auto;
		width: 170px;
	}

	.support_container p {
		text-align: justify;
	}

	.support_container_buttons a {
		margin: auto;
	}
}

@media (max-width: 680px) {
	.support_container img {
		width: 80%;
	}
}

/* footer */
footer {
	background-color: #59bae3;
	color: white;
}

footer hr {
	background-color: white;
	color: white;
	margin: 10px 0;
	width: 30px;
}

footer li,
.footer_container p {
	margin: 10px auto;
	color: #aeeeff;
}

.footer_container {
	display: flex;
	flex-wrap: wrap;
	align-items: top;
	justify-content: space-around;
	padding: 100px 10% 50px 10%;
	margin: auto;
}

.footer_container>div {
	width: 250px;
	text-align: justify;
	margin-bottom: 20px;
}

footer .responsive_links {
	display: none;
}

footer>hr {
	width: 100%;
	color: #aeeeff;
	background-color: #aeeeff;
	height: 0.5px;
}

#credentials {
	text-align: center;
	padding: 20px 0 30px 0;
	background-color: #59bae3;
	color: #aeeeff;
}

footer a {
	color: #aeeeff;
}

footer a:hover {
	color: white;
}

.footer_container li>a::before,
.submenu_services_options li>a::before {
	content: "\00bb";
	color: white;
	margin-right: 5px;
	vertical-align: 5%;
}

.submenu_services_options li>a::before {
	color: rgba(79, 174, 238, 1);
}

@media (max-width: 1280px) {
	.footer_links {
		display: none;
	}

	footer .responsive_links {
		display: block;
	}
}

@media (max-width: 1000px) {
	.footer_container {
		justify-content: left;
		padding: 15% 10% 2% 10%;
	}
}

@media (max-width: 700px) {
	.footer_container {
		justify-content: space-around;
	}
}

/* cookie-banner */
#cookies-eu-banner {
	background-color: rgba(237, 250, 251, 1);
	color: #59bae3;
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 100%;
	z-index: 1000;
	text-align: center;
	font-size: 14px;
	/* border-radius: 10px; */
	/* border-top: 2px solid #59bae3; */
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: space-around;
	padding: 15px;
}

#cookies-eu-banner_text,
#cookies-eu-banner_buttons {
	margin: auto 10px;
}

#cookies-eu-accept,
#cookies-eu-more,
#cookies-eu-reject {
	background-color: rgba(237, 250, 251, 1);
	color: #59bae3;
	border: 1px solid #59bae3;
	padding: 5px 10px;
	border-radius: 10px;
	cursor: pointer;
}

#cookies-eu-more {
	padding: 4px 10px;
	color: #59bae3;
	font-size: 11px;
}

#cookies-eu-accept:hover,
#cookies-eu-more:hover,
#cookies-eu-reject:hover {
	background-color: #59bae3;
	color: white;
	transition: all 0.2s ease-in-out;
}

/* email error block */
#info_block {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 30%;
	border: 2px solid rgb(79, 174, 238);
	color: rgb(79, 174, 238);
	text-align: center;
	background-color: white;
	padding: 15px 10px;
	border-radius: 10px;
	z-index: 1000;
	font-size: 0.9rem;
	display: none;
}

#info_block h4 {
	margin-bottom: 10px;
}

#info_block #cross {
	position: absolute;
	top: 5px;
	right: 15px;
}

@media (max-width: 700px) {
	#info_block {
		right: 10px;
		bottom: 5px;
		width: 100%;
	}
}

@media (min-width: 1600px) {
	.heading {
		width: 60%;
	}

	.home_content {
		width: 80%;
		margin-top: 4%;
	}
}

@media (min-width: 2000px) {
	.home_content {
		width: 95%;
	}

	.home_content img {
		height: 430px;
	}
}