:root {
    --color-White: #fff;
    --color-Black: #000;
    
    --font1: 'Alegreya Sans', sans-serif;

}
a, span {
    display: inline-block;
}
h2 {
    padding-left: 50px;
    font-weight: 300;
}
.img100 {
    width: 100%;
    height: auto;
}
.container {
    max-width: 95%;
}
body {
    font-family: var(--font1);
    color: var(--color-Black);
    font-size: 16px;
}
nav {
    padding: 40px 0px 20px 0px;
}
nav ul {
    display: flex;
    margin: 0px;
    padding: 0px;
    list-style: none;
}
nav ul li a {
    color: var(--color-Black);
    font-size: 24px;
    text-decoration: none;
    padding-top: 30px;
}
nav .logo {
    width: 130px;
    height: 200px;
    position: relative;
    margin-top: -60px;
}
header {
    position: relative;
}
.mySwiper img {
    width: 100%;
    height: auto;
}
.swiper-button-next:after, .swiper-button-prev:after {
    color: var(--color-Black);
}
.swiper-button-next {
    right: 100px;
}
.swiper-button-prev {
    left: 100px;
}
.section-1 {
    padding: 50px 0px;
}
.section-1 .row {
    margin-left: -5px;
    margin-right: -5px;
}
.section-1 .box-cont{
    padding-left: 5px;
    padding-right: 5px;
}
.section-1 .box {
    position: relative;
    margin-top: 10px;
    overflow: hidden;
}
.section-1 .box .img100 {

}
.section-1 .box .img-hover {
    opacity: 0;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: all 1s;
    width: 100%;
    height: auto;
}
.section-1 .box:hover .img-hover {
    opacity: 1;
    transition: all 1s;
}