@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;
}
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 {
	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;
}

/* navbar */
.flex_container {
	display: flex;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: space-between;
	position: fixed;
	top: 0;
	width: 100%;
	/* height: 70px; */
	padding: 15px 10%;
	background-color: transparent;
	z-index: 100;
	font-family: "Montserrat", sans-serif;
	box-shadow: none;
	transition: all 0.5s ease;
}
#logo {
	font-size: 2.3rem;
	font-weight: 300;
	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: rgb(79, 174, 238) !important;
}
.triangle_down {
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 7px solid rgb(79, 174, 238) !important;
	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, .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;
}
.services_dropdown_content {
    position: absolute;
    top: -15px;
    left: -43px;
    width: 163px;
    text-align: center;
    /* border: 2px solid #59bae3; */
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
    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 20px;
	display: block;
}

/* submenu */
.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 {
	text-align: center;
	margin: 30px auto;
	width: 140px;
}
.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);
}
/* max-width: 900px */
@media (max-width: 1280px) {
	.nav_items {
		display: none;
	}
	.burger_menu {
		display: inline-block;
	}
	.submenu_active {
		display: block;
		transform: translateY(0%);
	}
	/* .flex_container {
		background-color: white !important;
	} */
	.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;
	}
}

/* section home */
#home {
	height: 40vh;
	width: 100%;
	overflow: hidden;
}
#particles-js {
	position: relative;
	height: 40vh;
	width: 100%;
}
#particles_content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -13%);
}
#particles_content h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 2.3rem;
}
@media (max-width: 1280px) {
	.heading {
		width: 100%;
		margin-top: 10%;
	}
	.heading a > button {
		margin-top: 8%;
		margin-left: 17px;
	}
	.heading hr {
		margin: 30px auto;
	}
	#particles_content {
		width: 100%;
		text-align: center;
	}
}
@media (max-width: 1050px) {
	.heading {
		margin-top: 15%;
	}
}
@media (max-width: 600px) {
	.heading {
		margin-top: 30%;
	}
}

/* content */
#content {
	background-color: #f8f8f8;
	text-align: justify;
	padding: 70px 10%;
}
#content h3 {
	margin-bottom: 30px;
	font-weight: 600;
}
#content p {
	margin-bottom: 30px;
}
#content ul { 
	list-style-type: disc; 
	list-style-position: inside; 
	margin-left: 5%;
	margin-bottom: 30px;
 }
#content li {
	list-style: circle;
}
#content a {
	color: #59bae3;
}


/* 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: 4% 10% 2% 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;
}
