@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,600;1,400&display=swap');

@font-face {
    font-family: Signature;
    src: url(assets/font/Signature.ttf);
}

html, 
body {
    background: black;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-weight: 600;
}

a {
    cursor: pointer;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

bg-corporateyellow {
    background-color: #FDC500 !important;
}

/* LANG BUTTON */

/* Dropdown Button */
.lang-dropdown {
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* The container <div> - needed to position the dropdown content */
.lang {
  position: absolute;
  display: inline-block;
  z-index: 999;
  margin: 1em;
  top: 0;
  right: 0;
}

/* Dropdown Content (Hidden by Default) */
.lang-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.lang-dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.lang-dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
    display:block;
}

/* HEADER */

.header {
    background: #141618;
    border-bottom: 1px solid rgba(48,49,51,1);
}

.navbar {
    transition: .5s;
}

/* HOME */

#video {
    max-width: none !important;
    min-width: 100%;
}

.desktop li {
    transition: .5s;
}

.desktop li:hover {
    transform: scale(1.05);
}

.navbar {
    transition: .5s;
}

button {
    transition: .5s;
}

button:hover {
    transform: scale(1.05) !important;
}

/* ABOUT */

.about-sx { 
    background: black;
}

.paragraph > * {
    margin-bottom: 2vw;
}

/* SERVICES */

#services {
    background: #1B1D1F;
}

#slider-content {
    background-image: url("assets/img/slider/1.jpg");
    background-position: center;
    background-size: cover;
    transition: all 1s;
}

.instagram-container {
    padding-top: 125%;
}
  
@media (min-width: 768px) {
    .instagram-container {
        padding-top: 100%;
    }
}

/* CONTACT */

#contact {
    background: #1B1D1F;
}

input[type=submit] {
    transition: .5s;
}

input[type=submit]:hover {
    cursor: pointer;
    transform: scale(1.05);
}

input:focus,
textarea:focus { 
    border: transparent solid 2px;
    outline: none !important;
    -webkit-appearance: none;
    box-shadow: 0 0 0 2px #FDC500;
    -webkit-box-shadow: 0 0 0 2px #FDC500;
    -moz-box-shadow: 0 0 0 2px #FDC500;
}