@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500&display=swap');

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, a, abbr, address, big, cite, code, em, img, 
q, s, samp,small, strike, strong, sub, sup, var, u, center, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, footer, header, 
menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/*? HTML5 display-role reset for older browsers */

article, aside, details, footer, header, menu, nav, section {
	display: block;
}

img, source{
    max-width: 100%;
}

/* body {
	line-height: 1rem;
} */

/*? reset end */

:root{
    --var1: 1;
    --var2: 2;
    --var3: 3;
}

*{
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: white;
}

header>img{
    display: block;
    margin: 150px auto 0 auto;
}

:target::before
{
    display: block;
    height: 90px;
    margin-top: -90px;
    content: '';
}

.cont__main{
    width: 80vw;
    margin: 0 auto;
}

/*? nav start */

nav{
    font-family: 'Montserrat',sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    color:rgb(230, 230, 230);
    position: fixed;
    top: 0px;
    left: 0;
    width: 100vw;
    transition: top 0.5s ease;
    z-index: 10;
}

.nav__cont{
    margin: 0 auto;
    margin-top: 15px;
    width: 90vw; 
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
    background-color: rgba(0, 0, 0,0.85);
    border-radius: 20px;
    box-shadow: 1px 1px 6px 0 rgba(0,0,0,0.5);
}

.nav__cont--mobile{
    margin: 0px;
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: rgba(0, 0, 0,0.9);
    border-radius: initial;
    box-shadow: 1px 1px 6px 0 rgba(0,0,0,0.5);
}

.nav__cont a{
    line-height: 40px;
    padding: 0 10px;
    border-radius: 20px;
    color:rgb(230, 230, 230);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-align: center;
    white-space: nowrap;
}

.nav__cont--mobile a{
    line-height: 40px;
    padding: 0;
    border-radius: 0px;
    color:rgb(230, 230, 230);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100vw;
}

.dropdown__icon--mobile{
    margin: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.dropdown__content{
    position: absolute;
    top: 40px;
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0,0.85);
    border-radius: 20px;
    box-shadow: 1px 1px 6px 0 rgba(0,0,0,0.5);
}

.dropdown__content--mobile{
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0,0.9);
    box-shadow: 1px 1px 6px 0 rgba(0,0,0,0.5);
}

.dropdown__content--mobile div.lang{
    margin: .25rem 0;
}

.dropdown{
    position: relative;
    display:flex;
    flex-direction: column;
    align-items: center;
}

.dropdown:hover .dropdown__content{
    display: flex;
}

nav a:hover, .lang:hover{
    background-color: rgba(255, 255, 255,0.3);
    /* transform: scale(0.9); */
}

.dropdown--mobile--show{
    display: flex;
}

.lang{
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 20px;
    border: 1px solid rgb(230, 230, 230);
    padding: 5px;
    cursor: pointer;
    width: fit-content;
}

.lang__icon{
    margin: 0 5px;
    width: 20px;
    height: 20px;
}

.lang__span{
    padding-left: 5px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/*? nav end */

.h-1{
    /* font-family: 'bodoni moda',serif; */
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 2rem;
    margin: 3rem 0 2rem 0;
    color: rgb(50, 50, 50);
}

p,ul{
    font-size: 1rem;
    line-height: 2rem;
    letter-spacing: .3px;
    margin: 1rem 0;
    text-align: justify;
    color: rgb(70, 70, 70);
}

.link{
    /* display: inline-block; */
    font-style: italic;
    text-decoration: none;
    cursor: pointer;
}

.link:hover{
    transform: scale(1.01);
}

.indent{
    text-indent: 4rem;
}

ul{
    list-style: inside disc;
}

.color-red{
    color: red;
}

.color-blue{
    color: rgb(38, 112, 189);
}

.mark-black{
    color: white;
    background-color: black;
}

.translation{
    color: black;
    background-color: rgb(0, 253, 255);
}

.underline{
    text-decoration: underline;
    text-decoration-color: red;
    text-decoration-thickness: 3px;
    text-decoration-style: dotted;
    /* text-underline-offset: 5px; */
    text-underline-position: under;
}

q{
    font-style: italic;
    font-weight: bold;
}

.quote{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    row-gap: .5rem;
    margin: 2rem auto;
}

.quote__text{
    font-size: 1.3rem;
    line-height: 1.6rem;
    letter-spacing: 1px;
    text-align: center;
    font-style: italic;
    color: rgb(80, 80, 80);
}

.auth-icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 1rem 0 0;
    /* box-shadow: 3px 3px 7px 0 rgba(0,0,0,0.2); */
}

.auth-cont{
    margin: 2rem 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    font-size: .9rem;
    font-weight: 100;
    line-height: 1.1rem;
    letter-spacing: .2rem;
}

.auth-cont__name{
    /* color: blueviolet; */
}

.auth-cont__job-title{
    font-size: .75rem;
    color: rgb(50, 50, 50);
}

.img-main{
    display: block;
    border-radius:20px;
    margin-top: 70px;
    width: 100%;
    height: auto;
}

.img-std{
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.img-cont{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem auto;
    width: 100%;
    height: auto;
}

.width-big, .width-medium, .width-small, .width-tiny{
    width: 100%;
}

.img-title{
    width: 100%;
    font-weight: 100;
    font-size: .85rem;
    font-style: italic;
    color: rgb(90, 90, 90);
    letter-spacing: .05rem;
    line-height: 1rem;
    text-align: center;
    margin-top: .5rem;
}

.emoji{
    font-size: 1.5rem;
}

mark{
    background-color: aquamarine;
    padding: 1px 3px;
    border-radius: 5px;
}

.bold{
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: .5px;
    color: black;
}

/*? footer - start */

.foot__cont--main{
    font-family: 'Montserrat',sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: rgb(29, 29, 31);
    margin-top: 5rem;
}

.foot__cont--menu{
    width: 80vw;
    padding: 3rem 0;
    border-bottom: .3px solid rgb(148,141,129);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 2rem;
}

.foot__cont--bottom{
    width: 80vw;
    padding: .5rem 0;
    margin-bottom: 1rem;
    color: rgb(148,141,129);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.foot__cont--bottom a{
    text-decoration: none;
    color: rgb(38, 112, 189);
}

.foot__elem--content{
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.5rem;
    flex-basis: 100%;
}

.foot__elem--content a{
    color: rgb(216, 214, 211);
    text-decoration: none;
    letter-spacing: .2px;
}

.foot__elem--content a:first-child{
    font-weight: 500;
    color: rgb(38, 112, 189);
    letter-spacing: .2px;
}

.foot__elem--content a:first-child:hover{
    text-decoration: none;
}

.foot__elem--content a:hover{
    text-decoration: underline;
    transform: scale(1.05);
}

.foot__elem--content a:hover{
    text-decoration: underline;
}

/*? footer - end */

/*? blog - start */

.h-1--blog{
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 2rem;
    margin: 0 0 2rem 0;
    color: rgb(50, 50, 50);
    display: flex;
    align-items: center;
}

.blog-intro{
    font-size: .9rem;
    font-style: italic;
    color: rgb(80, 80, 80);
    letter-spacing: .1rem;
}

.blog-icon{
    margin-left: .5rem;
}

.blog-card{
    margin: 3rem 0;
    padding: 2rem;
    width: 100%;
    border-radius:20px;
    box-shadow: 1px 2px 8px 0 rgba(197, 197, 197, 0.6), 1px 1px 1px 0 rgba(197, 197, 197, 0.2);
}

.blog-text{
    line-height: 2rem;
}

.blog-read-more{
    display: inline-block;
    font-style: italic;
    text-decoration: none;
    cursor: pointer;
}
.blog-read-more:hover{
    transform: scale(1.03);
}

/*? blog - end */

/*? filter — start*/

.btn__blog__filter--active{
    position: relative;
    padding: 10px;
    border: solid 2px royalblue;
    border-radius: 2rem;
    background-color: royalblue;
    color: white;
    letter-spacing: 1px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 1px 2px 5px 0 rgba(65, 105, 225, 0.6), 1px 1px 1px 0 rgba(65, 105, 225, 0.2);
    overflow: hidden;
    /* z-index: 0; */
}

.btn__blog__filter--inactive{
    position: relative;
    padding: 10px;
    border: solid 2px rgb(150, 150, 150);
    border-radius: 2rem;
    background-color: transparent;
    color: rgb(150,150,150);
    letter-spacing: 1px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 1px 2px 5px 0 rgba(150,150,150, 0.6), 1px 1px 1px 0 rgba(150,150,150, 0.2);
    overflow: hidden;
    /* z-index: 0; */
}

.filters-cont{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0;
}

.circle{
	position: absolute;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	transform: translate(-50%,-50%) scale(0);
	animation: zoom .3s;
}

@keyframes zoom{
	to{
		transform: translate(-50%,-50%) scale(2);
		opacity: 0;
	}
}

/*? filter - end */

/*? slider app start */

.slider{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.slider__middle-col{
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-wrap: nowrap;
	width: 75%;
	overflow: hidden;
}

.slider__display{
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: nowrap;
	transform: translateX(0);
	transition: transform .7s;
	width: 100%;
}

.slider__slide{
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	text-decoration: none;
	width: 100%;
}

.slide__title{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 4em;
	font-size: 1em;
    letter-spacing: 1px;
    font-style: italic;
	color: black;
	text-align: center;
}

.slide__img{
	width: 100%;
	height: auto;
	border-radius: 2em;
	object-fit: cover;
}

.slider__dots-cont{
	height: 4em;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	width: 100%;
	border: none;
}

.slider__dot{
	width: .5em;
	height: .5em;
	/* margin: .2em; */
	border: none;
	border-radius: 50%;
	background-color: black;
	cursor: pointer;
	transition-delay: .5s;
	transition-timing-function: ease-out;
	transition: transform .3s;
}

.slider__dot--active{
	transform: scale(1.5);
	background-color: red;
}

.slider__dot:hover{
	transform: scale(1.15);
}

.slider__dot--active:hover{
	transform: scale(1.5);
}

.slider__btn{
	width: 7.5%;
	height: auto;
	margin: 0 2.5%;
    border-radius: 50%;
	cursor: pointer;
    animation: pulse 10s ease infinite;
	/* transition: all .05s ease-in-out; */
}

@keyframes pulse{
    0%{
        transform: scale(1.1);
        box-shadow: 0 0 .5em rgb(0, 0, 0,.9);
    }
    10%,100%{
        transform: scale(1);
        box-shadow: 0 0 0 rgb(0, 0, 0,.9);
    }
}

.slider__btn:hover{
    animation: none;
	transform: scale(1.1);
    box-shadow: 0 0 .5em rgb(0, 0, 0,.9);
}

/* MQ */
/* min-width: 480px (30rem)	Mobile-landscape (and larger) */
@media only screen and (min-width: 30rem) {
    .slider{
		width: 50%;
    }
	/* .slider__dot{
		width: .7em;
		height: .7em;
		margin: .4em;
	} */
	.slide__title{
		font-size: 1.5em;
	}
}

/* min-width: 768px (48rem)    Tablet-portrait (and larger) */
@media only screen and (min-width: 48rem) {
    .slider__dot{
		width: .75em;
		height: .75em;
	}
	.slide__title{
		font-size: 1.7em;
	}
}

/* min-width: 992px (62rem)    Tablet-landscape (and larger) */
@media only screen and (min-width: 62rem) {
    /* .slider{
		width: 70%;
    } */
}

/*? slider app end */

/* MQ */
/* min-width: 480px (30rem)	Mobile-landscape (and larger) */
@media only screen and (min-width: 30rem) {
    p,ul{
        font-size: 1.1rem;
    }
    .img-title{
        font-size: 1rem;
        margin-top: .5rem;
    }
}

/* min-width: 768px (48rem)    Tablet-portrait (and larger) */
@media only screen and (min-width: 48rem) {
    .foot__elem--content{
        flex-basis: 50%
    }
    .blog-card{
        margin: 3rem 0;
        padding: 5rem;
    }
    .h-1--blog{
        font-size: 1.5rem;
    }
    .slider-cont{
        width: 60%;
        height: 23rem;
    }
}
/* min-width: 992px (62rem)    Tablet-landscape (and larger) */
@media only screen and (min-width: 62rem) {
    .cont__main{
        width: 70vw;
    }
    .nav__cont{
        width: 80vw;
    }
    .foot__cont--menu{
        width: 70vw;
    }
    .foot__cont--bottom{
        width: 70vw;
    }
    .foot__elem--content{
        align-items: flex-start;
        flex-basis: auto;
    }
    .width-big{
        width:85%;
    }
    .width-medium{
        width:75%;
    }
    .width-small{
        width: 50%;
    }
    .width-tiny{
        width: 25%;
    }
    .h-1--blog{
        font-size: 1.5rem;
    }
    .quote__text{
        font-size: 1.7rem;
        line-height: 2rem;
    }
}

/* min-width: 1200px (75rem)	Laptops (and larger) */
@media only screen and (min-width: 75rem) {
    .cont__main{
        width: 60vw;
    }
    .nav__cont{
        width: 70vw;
    }
    .foot__cont--menu{
        width: 60vw;
    }
    .foot__cont--menu{
        width: 60vw;
    }
    .foot__cont--bottom{
        width: 60vw;
    }
}
