
.social-icons {
    display: flex;
    margin-top: 10px;   
    margin-bottom: 15px;
}

.social-icons a {
    margin-right:6px;
    text-align: center;
}

.social-icons span {
    background-color: white;
    padding: 0;
}

.fa, .fa-brands {
    color: black;
    margin-right: 5px;
    font-size:18px;
}


.social-icon {
    margin-left: auto;
    margin-right: auto;
}

.website-icon,
.facebook-icon,
.instagram-icon,
.maps-icon,
.mail-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    background-color: white;
}

.website-icon:hover .website-tooltip,
.instagram-icon:hover .instagram-tooltip {
    opacity: 1;
}
.facebook-icon:hover .facebook-tooltip {
    opacity: 1;
}
.maps-icon:hover .maps-tooltip {
    opacity: 1;
}
.mail-icon:hover .mail-tooltip {
    opacity: 1;
}

.website-tooltip,
.facebook-tooltip,
.instagram-tooltip,
.maps-tooltip,
.mail-tooltip {
    background-color: gray;
    color: white;
    font-size: 12px;
    padding: 2px 4px;
    border-radius: 3px;
    position: absolute;
    bottom: -26px;
    opacity: 0;
    transition: opacity 0.15s;
    pointer-events: none;
    white-space: nowrap;
}

h4 a {
    font-size: 22px;
}

.header-section {
    background-color: black;
}

.blog-box {
    box-shadow: 4px 4px 8px rgba(0,0,0,0.1);
}

.form-inline .search-country {
    flex-direction:  column;
}

.input-form {
	display: flex;	
	width: 300px;
	height: auto;
	flex-direction: column;
	border: 1px solid #eb9cc8;
}

.input-item {
	display: flex;
	height: 30px;
}

.country-form {
    background: #fff none repeat scroll 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.3px;
    padding-bottom: 1.4rem;
    min-height: 50px;
    text-transform: none; 
	//border-bottom: 1px solid lightgrey;
}

.mainText {
    margin-bottom: 5px;
    text-align: justify;
}

.broken-link {
    width: 25px;
    position: absolute;
    top: 10px;
    right: 20px;
}

#map {
	height: 400px; /* The height is 400 pixels */
	width: 100%; /* The width is the width of the web page */
	margin-top: 10px;
	margin-bottom: 10px;
} 

.map {
	display: none;
}

.loadeffect {
	animation: load-effect 400ms ease-out;
}

@keyframes load-effect {
	0% {
		transform: translateX(100%);
		opacity: 0;
	}
	
	50% {
		opacity: 0.2;
	}
	
	100% {
		transform: translateX(0);	
		opacity: 1;
	}
}

.reveal {
	position: relative;
	transform: translatey(150px);
	opacity: 0;
	transition: All 1s ease;
	scale: 0.75;
	rotate: -5deg;
	animation-fill-mode: forwards;
}

.reveal.active {
	transform: translatey(0px);
	opacity: 1;
	scale: 1;
	rotate: 0deg;
}

.blog {
	font-size: 1.4em;
}

.cityName {
	margin: 0;
	margin-right: 10px;
}

.weatherLogo img {
	width: 40px;
}

.cityAndWeather {
	margin-top: 25px;
	margin-bottom: 15px;
	display: flex;
	gap: 5px;
	align-items: flex-end;
}





