@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

:root {
    --menu: rgba(230,230,230,1);
    --yellow: #fbe116;
    --blue: #4a65b4;
}

html {
    scroll-behavior: smooth;
}

.widget-holder {
    padding-top: 100px;
    width: 90%;
    max-width: 1200px;
    display: flex;
}

.Big-Header {
    font-size: 32px;
}

.img-holder {
    margin-top: 90px;
    width: 90%;
    max-width: 1200px;
}
.img-holder img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 999;
    background-color: #FFFF;
    border-bottom: solid 1px rgba(230,230,230,1);
}
nav .logo {
    position: fixed;
    top: 5px;
    left: 5px;
    width: 70px;
    height: 70px;
}
nav .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
nav .hamburger{
    position: fixed;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    text-align: center;
}
nav .hamburger span {
    font-size: 42px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    user-select: none;
    cursor: pointer;
}
nav .links {
    padding-top: 80px;
    width: 100%;
    height: calc(100vh - 80px);
    background: #FFFF;
    display: none;
}
nav .link {
    position: relative;
    width: 100%;
    height: 80px;
    border-bottom: solid 1px rgba(200,200,200,1);
    line-height: 80px;
    user-select: none;
    cursor: pointer;
}

nav .link .text {
    padding: 0 30px;
    display: flex;
}
nav .link .text span {
    width: 50px;
    margin: 0;
    line-height: 80px;
}
nav .link .text p {
    margin-left: 0;
    text-align: left;
}
nav .link span.arrow {
    position: absolute;
    top: 0;
    width: 50px;
    line-height: 80px;
    right: 0;
    color: rgba(130,130,130,1);
}

nav .hidden {
    padding-top: 80px;
    width: 100%;
    height: calc(100vh - 80px);
    background: #FFFF;
    display: block;
    display: none;
}

.news {
    width: 90%;
}
.news h2 {
    font-size: 32px;
    line-height: 32px;
}
.news h2 span {
    position: relative;
    top: 7px;
    font-size: 32px;
}

.container {
    position: relative;
    padding-top: 50px;
    width: 100%;
    height: 500px;
    overflow: hidden;
}
.container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	-webkit-user-drag: none;
	user-drag: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}
.container .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 1;
}
.container .text h1 {
    font-size: 42px;
    margin: 0;
}
.container .text p {
    font-size: 18px;
    margin: 0;
}

.logo-block {
	position: relative;
}
.logos {
	margin: 70px 0;
	overflow: hidden;
	padding: 0;
	background: #FFFF;
	white-space: nowrap;
	position: relative;
	user-select: none;
	-webkit-user-drag: none;
}  
.logos:before,
.logos:after {
	position: absolute;
	top: 0;
	width: 250px;
	height: 100%;
	content: "";
	z-index: 2;
}  
.logos:before {
	left: 0;
	background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}  
.logos:after {
	right: 0;
	background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}
.logos:hover .logos-slide {
	animation-play-state: paused;
}
.logos-slide {
	display: inline-block;
	animation: 35s slide infinite linear;
}
.logos-slide img {
	height: 50px;
	margin: 0 40px;
	user-select: none;
	-webkit-user-drag: none;
	filter: grayscale(1);
}

@keyframes slide {
	from {
	  transform: translateX(0);
	}
	to {
	  transform: translateX(-100%);
	}
}

@media screen and (min-width: 1200px) {
    nav .hamburger{
        display: none;
    }
    nav .links {
        padding-top: 0;
        margin-left: 80px;
        width: 700px;
        height: 80px;
        background: #FFFF;
        display: flex;
    }
    nav .links span {
        padding-top: 25px;
        transform: rotate(90deg);
    }
    nav .links .text span {
        display: none;
    }
    nav .link {
        width: 150px;
        border-bottom: none;
        border-right: solid rgba(210,210,210,1) 1px;
        transition: all .3s;
        box-sizing: border-box;
    }
    nav .link:hover {
        background-color: var(--blue);
        color: var(--yellow) !important;
    }
    nav .link:hover span {
        color: var(--yellow) !important;
    }
    nav .link .text {
        padding: 0 30px;
        display: flex;
    }
    nav .link .text span {
        width: 50px;
        margin: 0;
        line-height: 80px;
    }
    nav .link .text p {
        margin-left: 0;
        text-align: left;
    }
    nav .link span.arrow {
        position: absolute;
        top: 0;
        width: 50px;
        line-height: 80px;
        right: 0;
        color: rgba(130,130,130,1);
    }
    
    nav .hidden {
        padding-top: 0;
        width: 280px;
        height: 100%;
        display: none;
    }
    nav .hidden .link {
        width: 280px;
        background: #FFFF;
        border: none;
        border: solid rgba(210,210,210,1) 1px;
        border-top: none;
        box-sizing: border-box;
    }
    nav .hidden .link:last-of-type {
        border-radius: 0 0 25px 25px;
    }
    nav .hidden .link:hover {
        background-color: var(--blue);
        color: var(--yellow) !important;
    }
    nav .hidden .link:hover span {
        color: #FFFF;
    }
    .container {
        height: 900px;
    }
    .container .text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        z-index: 1;
    }
    .container .text h1 {
        font-size: 92px;
        margin: 0;
        text-align: center;
    }
    .container .text p {
        font-size: 32px;
        margin: 0;
        text-align: center;
    }
    .logos {
        margin: 30px 0 10px 0;
        overflow: hidden;
        padding: 0;
        background: #FFFF;
        white-space: nowrap;
        position: relative;
        user-select: none;
        -webkit-user-drag: none;
      }  
      .logos:before,
      .logos:after {
          position: absolute;
          top: 0;
          width: 250px;
          height: 100%;
          content: "";
          z-index: 2;
      }  
      .logos:before {
          left: 0;
          background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
      }  
      .logos:after {
          right: 0;
          background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
      }
      .logos:hover .logos-slide {
          animation-play-state: paused;
      }
      .logos-slide {
          display: inline-block;
          animation: 35s slide infinite linear;
      }
      .logos-slide img {
          height: 50px;
          margin: 0 40px;
          user-select: none;
          -webkit-user-drag: none;
      }
    
    .Big-Header {
        margin-top: 50px;
        font-size: 72px;
    }
    
}