/*........ Connection font-face ........*/
@font-face {
   font-family: 'Ruberoid';
   src: url('../fonts/Ruberoid-Regular.woff2') format('woff2'),
      url('../fonts/Ruberoid-Regular.woff') format('woff');
   font-weight: normal;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'Ruberoid';
   src: url('../fonts/Ruberoid-Light.woff2') format('woff2'),
      url('../fonts/Ruberoid-Light.woff') format('woff');
   font-weight: 300;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'Ruberoid';
   src: url('../fonts/Ruberoid-SemiBold.woff2') format('woff2'),
      url('../fonts/Ruberoid-SemiBold.woff') format('woff');
   font-weight: 600;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'Ruberoid';
   src: url('../fonts/Ruberoid-ExtraLight.woff2') format('woff2'),
      url('../fonts/Ruberoid-ExtraLight.woff') format('woff');
   font-weight: 200;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'Magnolia Script';
   src: url('../fonts/Magnolia-Script.woff2') format('woff2'),
      url('../fonts/Magnolia-Script.woff') format('woff');
   font-weight: normal;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'Ruberoid';
   src: url('../fonts/Ruberoid-Medium.woff2') format('woff2'),
      url('../fonts/Ruberoid-Medium.woff') format('woff');
   font-weight: 500;
   font-style: normal;
   font-display: swap;
}

/* --------- Specification --------- */
body {
   font-family: 'Ruberoid';
   color: #ffffff;
   font-size: 16px;
   font-weight: 500;
   margin: 0;
   padding: 0;
   background-color: #325D9C;
}

body, html {
   height: 100%;
}

div, p, form, input, a, span, button, textarea, input {
   box-sizing: border-box;
}

ul, li {
   display: block;
   padding: 0;
   margin: 0;
}

p {
   margin: 0;
   font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
   margin: 0;
}

h1 {
   font-size: 36px;
}

h2 {
   font-size: 42px;
}

h3 {
   font-size: 24px;
}

h4 {
   font-size: 22px;
}

h5 {}

h6 {}

a, a:hover, a:active {
   text-decoration: none;
}

a, button, input {
   transition: all 0.5s ease;
}

input {
   font-family: inherit;
   border-radius: 0;
   -webkit-appearance: button;
}

input, input:hover, input:focus, input:active,
button, button:hover, button:focus, button:active,
textarea, textarea:hover, textarea:focus, textarea:active {
   outline: none;
}

textarea {
   outline: none;
   resize: none;
   font-family: inherit;
   border: none;
   display: block;
}

main {
   flex: 1 1 auto;
}

.wrapper {
   min-height: 100%;
   display: flex;
   flex-direction: column;
   overflow: hidden;
}

.container {
   margin: 0 auto;
   max-width: 1300px;
   padding: 0 12px;
}

.d-flex {
   display: flex;
}

.text-center {
   text-align: center;
}

.btn {
   font-family: inherit;
   width: 100%;
   display: block;
   text-align: center;
   cursor: pointer;
   border: none;
}

/* MOBILE MENU BUTTON */
.menu-btn {
   background-color: transparent;
   border: none;
   width: 40px;
   height: 30px;
   cursor: pointer;
   padding: 0;
   z-index: 99999;
   transition: all 0.5s ease;
   display: block;
   position: relative;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   margin-bottom: 5px;
}

.menu-btn .line {
   width: 100%;
   height: 4px;
   background-color: rgba(255, 255, 255, 0.8);
   display: block;
   -webkit-transition: all .5s ease;
   -o-transition: all .5s ease;
   transition: all .5s ease;
   border-radius: 10px;
}

.menu-btn.active .line:first-child {
   -webkit-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
   transform: rotate(-45deg);
   position: relative;
   top: 12px;
}

.menu-btn.active .line:nth-child(2) {
   -webkit-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   transform: rotate(45deg);
   margin-top: 8px;
   position: relative;
}

.menu-btn.active .line:nth-child(3) {
   opacity: 0;
}