@import url("https://fonts.googleapis.com/css2?family=Alata&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'Blanka';
    src: url('/fonts/Blanka-Regular.woff') format('woff2'),
        url('/fonts/Blanka-Regular.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('/fonts/GlacialIndifference-Bold.woff') format('woff2'),
        url('/fonts/GlacialIndifference-Bold.woff2') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('/fonts/GlacialIndifference-Regular.woff') format('woff2'),
        url('/fonts/GlacialIndifference-Regular.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
  }

body {
    font-family: 'Glacial Indifference', sans-serif;
    height: 100vh;
    background-color: #ececec;
}

.container {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    background-color: #ececec;
    overflow: hidden;
}

.line {
    position: absolute;
    top: 50%;
    width: 110%;
    height: 2px; 
    transform-origin: center;
    box-shadow: inset 0 0 10px black;
    animation: expandLine 4s forwards;
    z-index: 1; 
}

@keyframes expandLine {
    0% {
    height: 2px;
    top: 50%; 
    }
    100% {
    height: 200px;
    top: 0; 
    }
}

.mainpart {
    display: flex;
    width: 100%;
    justify-content: center;
    position: fixed;
    z-index: 2; 
    clip-path: inset(50% 0 50% 0); 
    animation: revealContent 4s forwards;
    color:rgb(0, 0, 0) 
}

@keyframes revealContent {
    0% {
    clip-path: inset(50% 0 50% 0);
    }
    100% {
    clip-path: inset(0 0 0 0);
    }
}

.logo {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
}

.overlogo {
    position: absolute;
    background-color: #ececec;
    padding: 8px 4px;
    top: 40%;
    font-size: 75%;
    letter-spacing: 5px;
    border-radius: 5px;
    box-shadow: inset -1px 3px 3px #ffffff,
                inset 1px -3px 3px #a1a1a1;
}

.logoa, .logor {
    font-family: 'Blanka', sans-serif;
    letter-spacing: 10px;
    color: #ececec;
    text-shadow: -2px 0px 1px rgb(255, 252, 223),
                 -4px 1px 2px rgb(170, 170, 170),
                 -5px 2px 3px rgb(171, 171, 171),
                 -6px 3px 3px rgb(172, 172, 172),
                 -7px 4px 3px rgb(173, 173, 173),
                 -8px 5px 3px rgb(174, 174, 174),
                 -9px 6px 3px rgb(175, 175, 175),
                 -10px 7px 3px rgb(176, 176, 176),
                 -11px 8px 3px rgb(177, 177, 177),
                 -12px 9px 3px rgb(178, 178, 178),
                 -13px 10px 3px rgb(179, 179, 179),
                 -14px 11px 3px rgb(180, 180, 180),
                 -15px 12px 3px rgb(181, 181, 181),
                 -16px 13px 3px rgb(182, 182, 182),
                 -17px 14px 3px rgb(183, 183, 183),
                 -18px 15px 3px rgb(184, 184, 184),
                 -19px 16px 3px rgb(185, 185, 185),
                 -20px 17px 3px rgb(186, 186, 186),
                 -21px 18px 3px rgb(187, 187, 187),
                 -22px 19px 3px rgb(188, 188, 188),
                 -23px 20px 3px rgb(189, 189, 189),
                 -24px 21px 3px rgb(190, 190, 190),
                 -25px 22px 3px rgb(191, 191, 191),
                 -26px 23px 3px rgb(192, 192, 192),
                 -27px 24px 3px rgb(193, 193, 193),
                 -28px 25px 3px rgb(194, 194, 194),
                 -29px 26px 3px rgb(195, 195, 195),
                 3px -3px 12px #fffbe5, 
                 4px -4px 13px #fffbe5, 
                 5px -5px 13px #fffbe5;
    font-size: 8rem;
    padding-bottom: 45px;
    width: 50%;
}

.logoa p, .logor p {
    margin-top: 0;
    margin-bottom: 0;
}

.logoa {
    border-right: 0.5px solid black;
}

.logor {
    border-left: 1px solid black;
    padding-left: 30px;
}

.menu-icon {
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: fixed;
    right: 10%;
    top: 8%;
    z-index: 100;
}

.lines {
    width: 25px;
    height: 2px;
    background-color: #333;
    transition: all 0.5s ease;
}

.line1 {
    transform-origin: left center;
}

.line2 {
    margin-top: 11px;
    margin-left: 20px;
    transform-origin: left center;
}

.open .line1 {
    transform: rotate(45deg) translate(3px, 3px);
    margin-left: 20px;
    margin-bottom: 13px;
}

.open .line2 {
    transform: rotate(-45deg) translate(3px, -3px);
}

.menu-list {
    display: flex;
    position: fixed;
    top: 4%;
    right: 19%;
    left: 15%;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 1s ease-in-out;
}

.menu-list a {
    text-decoration: none;
    color: #333;
    text-align: center;
    box-shadow: inset 0 0 0 rgb(255, 255, 255);
    width: 80px;
    height: 80px;
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center;
    transition: all 0.5s ease-in-out;
}

.menu-list a:hover {
    box-shadow: inset 0 0 10px 1px rgb(183, 183, 183);
}

.menu-list.show {
    opacity: 1;
    max-height: 500px;
}

.fitbox {
    display: flex;
    width: 100%;
    height: 350px;
    position: relative;
    top: 30%;
}

.tagline {
    display: flex;
    width: 100%;
    position: absolute;
    top: 60%;
    justify-content: center;
    font-size: 1.2rem;
}

@media screen and (max-width: 500px) {
    
    .tagline{
    font-size: 1rem;
    }   
}

.servicesbtn {
    display: flex;
    width: 100%;
    position: absolute;
    bottom: 0%;
    justify-content: center;
}

.btn-12{
    background-color: #ececec;
    position: relative;
    right: 20px;
    bottom: 20px;
    border:none;
    width: 130px;
    height: 40px;
    line-height: 42px;
    -webkit-perspective: 230px;
    perspective: 230px;
  }
  .btn-12 span {
    display: block;
    position: absolute;
    background-color: #af4045;
    color: white;
    border-radius: 2px;
    width: 130px;
    height: 40px;
    border: none;
    margin:0;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
  }
  .btn-12 span:nth-child(1) {
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: 50% 50% -20px;
    -moz-transform-origin: 50% 50% -20px;
    transform-origin: 50% 50% -20px;
  }
  .btn-12 span:nth-child(2) {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: 50% 50% -20px;
    -moz-transform-origin: 50% 50% -20px;
    transform-origin: 50% 50% -20px;
  }
  .btn-12:hover span:nth-child(1) {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }
  .btn-12:hover span:nth-child(2) {
    background: #af4045;
    color: #af4045;
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
  }  