*{
    outline: none;
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body{
    overflow-x: hidden;
    background-color: var(--light-color);
}
html{
    overflow-x: hidden !important;
}


:root{
    --light-color:#FFF7EE;
    --hd-color: #FE9200;
    --bg-color:#0E0E0E;
}

/* ---------------------Loading */
.loading{
    position: fixed;
    top: 0;
    left: 0;
    z-index:99;
    height:100vh;
    width: 100%;
    background:rgb(0, 0, 0);
  }
  .loading .sizzdeLogo{
    width: 10%;
    display: block;
    margin-left: 46%;
    margin-right: auto;  
    padding-top:10%;
  }
  @keyframes flickerAnimation { /* flame pulses */
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
  }
  .animate-flicker {
      opacity:1;  
      animation: flickerAnimation 1.7s infinite;
  }
  /* -----------------------Loading F */
/* scroll-------------------- */
html {
    --scrollbarBG:#ffffff00;
    --thumbBG: #FE9200;
      }
      body::-webkit-scrollbar {
        width: 3px;

      }
      body {
        scrollbar-width:thick;
        scrollbar-color: var(--thumbBG) var(--scrollbarBG);
      }
      body::-webkit-scrollbar-track {
        background: var(--scrollbarBG);

      }
      body::-webkit-scrollbar-thumb {
        background-color: var(--thumbBG) ;
        border-radius: 6px;
        border: 1px solid var(--scrollbarBG);

      }

      /* scrollfnish--------------- */
 /* --------------------------NAV */

 .menuToggle{
     transition: 0.3s ease-in-out;
    position: fixed;
    top: 2px;
    right: 0;
    width: 60px;
    height: 60px;
    background: #ffffff00 url("https://raw.githubusercontent.com/denizsulmaz/portfoliocdn/main/menu.png");
    background-repeat: no-repeat;
    background-position: center;
    padding: inset 5px;
    background-size: 30px;
    cursor: pointer;
    z-index: 15;
}
.nav{
    backdrop-filter: blur(10px);
    border-radius: 0 0 15px 15px ;
    position: fixed;
    top: -100vh;
    width: 95%;
    height: 40vh;
    margin-left: 2.5%;
    margin-right: 2.5%;
    background: rgba(0, 0, 0, 0.342);
    z-index: 11;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
}
.nav.active{
    top: calc(100% - 91vh);
}
.nav.active ~ .tNav ul{
    display: none;
}
.nav ul{
    display: flex;
    flex-direction: row;

}
.nav ul li{
    padding-bottom: 20px;
    position: relative;
    list-style: none;
    text-align: left;
}
.nav ul li a{
    transition: 0.5s ease;
    padding: 0 17px;
    font-size: 25px;
    color: white;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.8px;
}
.nav .fa{
    font-size: 27px;
}
.nav ul li a:hover{
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.623);
    letter-spacing: 1.5px;
    color: var(--hd-color);
  }
.socialBar{
    position: absolute;
    top:0;
    left: 12px;
    width: 60px;
    height: 100%;
    border-right:1px solid rgba(0, 0, 0, 0.712) ;
    display: flex;
    justify-content: center;
    align-items: center;
}
.socialBar ul{
    display: flex;
    flex-direction: column;
}

.menuToggle.active{
    background: #ff001100 url("https://raw.githubusercontent.com/denizsulmaz/portfoliocdn/main/close.png");
    background-repeat: no-repeat;
    background-position: center;
    padding: 0px;
    background-size: 20px;
    right: 5px;
    margin-top: 0.5%;
    border-radius: 13px;
    cursor: pointer;
}
  /* ---------------------------NavFinish */
/* Navbar */
.logo{
    margin-top: -5px;
    padding: 0;
    width: 105px;
}
.logoa{
    margin-left: 46.5%;
}
.navbar{
    z-index: 14;
    top: 0px;
    position: fixed !important;
    height: 9vh;
    width: 101% !important;
    background-color: black;
}
.tNav{
    position: fixed;
    z-index: 16;
}
.tNav ul{
    padding-left: 35px;
    margin-bottom: -80px;
    display: flex;
    flex-direction: row;
}
.tNav ul li{
    list-style: none;
    padding: 25px 20px;
}
.tNav ul li a{
    font-weight: 200;
    color: rgba(255, 255, 255, 0.918);
    font-size: 23px;
}
.tNav ul li a:hover{
    color: var(--hd-color);
}

label{
    position: absolute;
    width: 45px;
    height: 22px;
    right: 80px;
    top: 20px;
    border: 3px solid var(--hd-color);
    border-radius: 20px;
    box-sizing: content-box;
}
label:before{
    position: absolute;
    content: '';
    width:20px;
    height: 20px;
    left: 1px;
    top: 1px;
    border-radius: 50%;
    background: var(--hd-color);
    cursor: pointer;
    transition: 0.4s;
}
label.active:before{
    left: 24px;
    background: var(--hd-color);
}
body.night{
    background-color: var(--bg-color);
    color: white;
}
/* ---Main-- */
.slider {
    overflow: hidden;
    padding: 10px 15px;
    margin: 0 auto;
    max-width: 94%;
  }
  
  .slide_viewer {
      border-radius: 27px;
    height: 85vh;
    overflow: hidden;
    position: relative;
  }
  
  .slide_group {
    height: 100%;
    position: relative;
    width: 100%;
  }
  
  .slide {
    display: none;
    height: 100%;
    position: absolute;
    width: 100%;
  }
  .slide h1{
      font-size: 45px;
      padding: 50px 10px 10px 45px;
  }
  .slide p{
      color: rgb(240, 227, 204);
      font-size: 25px;
      padding: 20px 45px;
      width: 40%;
  }
  
  .slide:first-child {
    display: block;
  }
  
  .slide:nth-of-type(1) {
    background: var(--hd-color);
  }
  
  .slide:nth-of-type(2) {
    background: #000000;
    color: var(--hd-color);
  }
  .moto{
      width: 38%;
      position: absolute;
      bottom: 20px;
      right: 100px;
  }
  .car{
    width: 50%;
    position: absolute;
    bottom: 50px;
    right: 20px;
}
  
 
  
  .slide_buttons {
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
  }
  
  a.slide_btn {
    color: rgb(211, 211, 211);
    font-size: 42px;
    margin: 0 0.175em;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  
  .slide_btn.active, .slide_btn:hover {
    color: var(--hd-color);
    cursor: pointer;
  }
  
  .directional_nav {
    height: 340px;
    margin: 0 auto;
    max-width: 1500px;
    position: relative;
    top: -250px;
  }
  
  .previous_btn {
    bottom: 0;
    left: 100px;
    margin: auto;
    position: absolute;
    top: 0;
  }
  
  .next_btn {
    bottom: 0;
    margin: auto;
    position: absolute;
    right: 100px;
    top: 0;
  }
  
  .previous_btn, .next_btn {
    cursor: pointer;
    height: 65px;
    opacity: 0.5;
    -webkit-transition: opacity 0.4s ease-in-out;
    -moz-transition: opacity 0.4s ease-in-out;
    -ms-transition: opacity 0.4s ease-in-out;
    -o-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
    width: 65px;
  }
  
  .previous_btn:hover, .next_btn:hover {
    opacity: 1;
  }
  .que{
      margin: 5% auto;
      border-top: 2px solid var(--hd-color);
      border-bottom: 3px solid var(--hd-color);
      height: 20vh;
      background-color: black;
  }
  .que h1{
      margin-left: 5%;
      color: var(--hd-color);
      padding-right: 50px;
  }
  .que input{
      background-color: rgba(255, 255, 255, 0.034);
    border: 1px solid var(--hd-color);
  }
  .que ::placeholder{
      color: var(--hd-color);
  }
  .que button{
      transition: 0.3s ease-in-out;
      font-size: 18px;
      background-color: var(--hd-color);
      color: black;
      font-weight: 500;
      border: 1px solid var(--hd-color);
      padding: 6px 15px;
  }
  .que button:hover{
      cursor: pointer;
      border-radius: 20px;
      border: 3px solid;
      background-color: black;
      color: var(--hd-color);
  }
  .que .row{
      margin: 4vh;
      justify-content: start;
      align-items: center;
  }

  
  @media only screen and (max-width: 767px) {
      .que{
          text-align: center;
          height: auto;
      }
      .que h1{
          text-align: center;
        margin-left: 0%;
        color: var(--hd-color);
        padding-right: 0px;
    }
    .que .row{
        margin: 4vh;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
      .tNav{
          display: none;
      }
    .slide h1{
        font-size: 30px;
        padding: 50px 10px 10px 25px;
    }
    .slide p{
        font-size: 18px;
        padding: 0px 25px;
        width: 98%;
    }
    .moto{
        width: 65%;
        position: absolute;
        bottom: 80px;
        right: 25px;
    }
    .car{
        width: 90%;
        position: absolute;
        bottom: 100px;
        right: 20px;
    }
      .slider{
          margin-top: 0vh;
      }
    a.slide_btn {
        display: none;
    }
    .previous_btn {
      left: 50px;
    }
    .next_btn {
      right: 50px;
    }
  }

/* Main test */
.main{
    overflow: hidden;
    padding-top: 1%;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
}

.mainres{
    display: none;
}
.landing{
    margin-left: 8%;
    margin-top: -83vh;
}
.landing h1{
    margin-bottom: 2.5%;
    font-weight: 500;
    font-size: 55px;
    color: white;
}
.sizzde{
    animation: spark 5s ease-in-out;
    color: var(--hd-color);
}
@keyframes spark {
    0%{text-shadow: 0 0 0px var(--hd-color);}
    25%{text-shadow: 0 0 0px var(--hd-color);}
    50%{text-shadow: 0 0 2px var(--hd-color);}
    75%{text-shadow: 0 0 5px var(--hd-color);}
    100%{text-shadow: 0 0 0px var(--hd-color);}
}
.landing p{
    font-size: 28px;
    color: rgba(255, 255, 255, 0.89);
    width: 38%;
    margin-bottom: 3%;
}

.space{
    height: 70vh;
}
/* -------FirstCard--- */
.row{
    display: flex;
    flex-direction: row;
}
.column{
    display: flex;
    flex-direction: column;
}
.firstCards{
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}
.firstCards .card{
    background-color: rgba(255, 255, 255, 0.021);
    border-radius: 30px;
    padding: 50px 25px;
    width: 30%;
    height: auto;
    padding-bottom: 70px;
    margin-left: 3%;
    margin-right: 3%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.103);
}
.firstCards .card h1{
    font-weight: 400;
    text-align: center;
    color: var(--hd-color);
    font-size: 23px;
    padding-bottom: 20px;
}
.firstCards .card p{
    text-align: center;
font-size: 16px;
}
.cfc{
    font-size: 23px !important;
}


/* ------ */
.secondCards{
    margin-top: 10%;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}
.secondCards .row{
    justify-content: center;
    margin-left: auto;
    width: 100%;
    margin-right: auto;
}
.secondCards .card{
    width: 20%;
    transition: 0.3s ease-in-out;
    border-radius: 20px;
    padding: 30px 20px;
    margin: 1% auto;
}
.secondCards .card:hover{
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.075);
}
.secondCards h2{
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 15px;
}
.secondCards p{
    font-size: 15px;
}
.scimg{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
    width: 220px;
}
/* ---- */
.tklf{
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin-top: -12%;
}
/* The Modal (background) */
.modal {
    animation: modal 0.5s ease-in-out;
    transition: 2s ease-in-out;
    display: none; 
    position: fixed; 
    z-index: 20; 
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.733);
  }
  @keyframes modal {
      from{opacity: 0;}
      to{opacity: 1;}
  }
  /* Modal Content */
  .modal-content {
      transition: 2s ease-in-out;
    background-color: #000000;
    margin: auto;
    padding: 20px;
    border: 5px solid var(--hd-color);
    box-shadow: 0 0 3px var(--hd-color);
    width: 80%;
  } 
  .modal-content a{
      color: var(--hd-color);
  }
  /* The Close Button */
  .close {
    color: #e4e4e4;
    float: right;
    font-size: 35px;
    font-weight: bold;
  }
  .close:hover,
  .close:focus {
    color: var(--hd-color);
    text-decoration: none;
    cursor: pointer;
  }
.altbtn{
    margin-top: 0;
    color: var(--hd-color);
    border: 3px solid var(--hd-color);
    padding: 15px 25px;
    text-decoration: none;
    font-size: 30px;
    text-align: center;
    font-weight: 500;
    border-radius: 8px;
    transition: 0.4s ease-in-out !important;
    box-shadow: 0 0 2px #fe9000c4;
}
.altbtn:hover{
    background-color: var(--hd-color);
    color: var(--light-color);
}
.modal-content img{
    width: 25%;   
    display: block;
  margin-left: auto;
  margin-right: auto;
}
form .column{
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
form .row{
    display: flex;
    justify-content: center;
}
form input{
    color: var(--hd-color);
    background-color: rgba(255, 255, 255, 0.164);
    border-radius: 8px;
    border: none;
    margin: 20px 15px;
    font-size: 20px;
    height: 40px;
    width: 250px;
    outline: none;
}
::placeholder{
    color: #fe900083;
    padding-left: 10px;
}
textarea::placeholder{
    padding-top: 6px;
}
textarea{
    color: var(--hd-color);
    background-color: rgba(255, 255, 255, 0.164);
    border: none;
    border-radius: 8px;
    outline: none;
    font-size: 20px;
    width: 810px;
    margin-left: auto;
    margin-right: auto;
}
.butn{
    cursor: pointer;
    transition: 0.4s ease-in-out;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0);
    color: var(--hd-color);
    border: 2px solid var(--hd-color);
    border-radius: 30px;
    padding: 5px 10px;
    width: 10%;
    margin-top: 2%;
    margin-left: 45%;
    margin-right: auto;
}
.butn:hover{
    background-color: var(--hd-color);
    color: black;
}

/* ----------Footer */
footer{
    z-index: 10;
    margin-right: 0.5%;
    margin-left: 0.5%;
    margin-top: 5%;
    background-color: #1C1812;
    border-radius: 35px 35px 0 0 ;
}
footer .row{
    display: grid;
    grid-template-columns: 10fr 1fr 5fr;
    grid-template-rows: 2fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    justify-items: start;
    align-items: stretch;
    padding-top: 3%;
    padding-bottom: 3%;
    width: 98.5%;
    margin-left: 30px;
}
footer .row h2{
   color: white;
   margin-bottom: 12px;
   padding-bottom: 5px;
   border-bottom: 1px solid white;
}
footer .row ul{
    margin-right: 10%;
}
footer .row li{
    list-style: none;
    padding: 5px 0;
}
a{
    text-decoration: none;
}
footer .row a{
    color: rgba(255, 255, 255, 0.76);
}
footer .row a:hover{
    color: var(--hd-color);
}
.mapHeader{
    color:#fe9000bb;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 400;
}
.map{
    margin-top: -2vh;
    width: 94%;
    float: right;
    margin-right: 20px;
}
.mapIf{
    height: 250px;
    border-radius: 20px;
    filter: invert(100%) grayscale(100%);

}
/* ----------Footer Social */
.ftSocial{
    width: 25%;
    float: right;
    margin-right: 10px;
}
.ftSocial ul{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.ftSocial li{
    list-style: none;
    padding: 5px 20px;
}
.ftSocial i{
    color: var(--hd-color);
    font-size: 25px;
}
.ftSocial i:hover{
    color: white;
}
.ftLogo{
    width: 15%;
    margin-left: 50px;
}
.copyright{
    font-size: 14px;
    color: rgba(255, 255, 255, 0.445);
    margin-top: -25px;
    margin-left: 50px;
    padding-bottom: 20px;
}
.ds{
    margin-top: -90px;
    width: 2.5%;
    float: right;
    margin-right: 20px;
}

@media only screen and (max-width:800px) {
     .firstCards .row{
        flex-direction: column;
    }
    .firstCards .card{
        background-color: rgba(255, 255, 255, 0.021);
        border-radius: 30px;
        padding: 50px 25px;
        width: 95%;
        height: auto;
        padding-bottom: 70px;
        margin-left: 3%;
        margin-right: 3%;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.103);
    }
    .mainres{
        display: block;
        margin-top: -3px;
        height: auto;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .main{
        display: none;
    }
    .landing{
        margin-left: 5vh;
        margin-top: -87vh;
    }
    .landing h1{
        margin-bottom: 2.5%;
        font-weight: 500;
        font-size: 35px;
        color: white;
    }
    .sizzde{
        color: var(--hd-color);
    }
    .landing p{
        font-size: 20px;
        color: rgba(255, 255, 255, 0.89);
        width: 85%;
        margin-bottom: 10%;
    }
    .landing a{
        font-size: 25px;
        text-decoration: none;
        background-color: rgba(0, 0, 0, 0);
        color: var(--hd-color);
        padding: 10px 20px;
        border: 2px solid var(--hd-color);
        transition: 0.3s ease-in-out;
        border-radius: 10px;
    }
    .logoa{
        margin-left: 2%;
    }
    .logo{
        margin-left: auto;
        margin-right: auto;
        margin-top: -5px;
        width: 95px;
    }

   /* --------------------------NAV */

   .menuToggle{
    transition: 0.3s ease-in-out;
   position: fixed;
   top: 2px;
   right: 5px;
   width: 60px;
   height: 60px;
   background: #ffffff00 url("https://raw.githubusercontent.com/denizsulmaz/portfoliocdn/main/menu.png");
   background-repeat: no-repeat;
   background-position: center;
   padding: inset 5px;
   background-size: 30px;
   cursor: pointer;
   z-index: 15;
}
.navbar{
    z-index: 14;
    top: 0px;
    position: fixed !important;
    height: 9vh;
    width: 101% !important;
    background-color: black;
}
.nav{
   backdrop-filter: blur(10px);
   border-radius: 0 0 15px 15px ;
   position: fixed;
   top: -100vh;
   width: 95%;
   height: 90vh;
   margin-left: 2.5%;
   margin-right: 2.5%;
   background: rgba(0, 0, 0, 0.39);
   z-index: 11;
   display: flex;
   justify-content: center;
   align-items: center;
   transition: 0.4s ease;
}
.nav.active{
   top: 9vh;
}
.nav ul{
   display: flex;
   flex-direction: column;

}
.nav ul li{
   padding: 15px 0px;
   position: relative;
   list-style: none;
   text-align: left;
}
.nav ul li a{
   padding: 30px 5px;
   font-size: 25px;
   color: white;
   text-decoration: none;
   font-weight: 500;
}
.nav .fa{
   font-size: 27px;
}
.nav ul li a:hover{
   font-weight: 800;
   color: #4755b1;
 }
.socialBar{
   position: absolute;
   top:0;
   left: 12px;
   width: 60px;
   height: 100%;
   border-right:1px solid rgba(0, 0, 0, 0.712) ;
   display: flex;
   justify-content: center;
   align-items: center;
}
.socialBar ul{
   display: flex;
   flex-direction: column;
}
 .nav .socialBar ul li a i{
    font-size: 20px ;
}

.menuToggle.active{
   background: #ff001100 url("https://raw.githubusercontent.com/denizsulmaz/portfoliocdn/main/close.png");
   background-repeat: no-repeat;
   background-position: center;
   padding: 0px;
   background-size: 20px;
   border-radius: 13px;
   cursor: pointer;
}
 /* ---------------------------NavFinish */
 .firstCards{
     margin-top: -35%;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}
.firstCards .card{
    background-color: rgba(255, 255, 255, 0.021);
    border-radius: 30px;
    padding: 50px 25px;
    padding-bottom: 70px;
    margin-left: 1%;
    margin-right: 1%;
    margin-top: 3%;
    margin-bottom: 9%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.103);
}
.firstCards .card h1{
    color: var(--hd-color);
    font-size: 25px;
    padding-bottom: 20px;
}
.cfc{
    font-size: 23px !important;
}

   .secondCards .row{
       flex-direction: column;
   }
   .secondCards .card{
    width: 95%;
    transition: 0.3s ease-in-out;
    border-radius: 20px;
    padding: 30px 20px;
    margin: 1% auto;
}
/* ---- */
.tklf{
    display: flex;
    justify-content: center;
    margin-top: -60%;
    margin-bottom: 10%;
}
.altbtn{
    margin-top: 0%;
    color: var(--hd-color);
    border: 3px solid var(--hd-color);
    padding: 15px 25px;
    text-decoration: none;
    font-size: 25px;
    text-align: center;
    font-weight: 500;
    border-radius: 8px;
    transition: 0.4s ease-in-out;
    box-shadow: 0 0 2px #fe9000c4;
}
.altbtn:hover{
    background-color: var(--hd-color);
    color: black;
}
/* ----------Footer */
footer{
    margin-right: 0% !important;
    margin-left: 0% !important;
    margin-top: 20%;
    background-color: #1C1812;
    border-radius: 35px 35px 0 0 ;
}
footer .row{
    margin-bottom: -30%;
    display: flex !important;
    flex-direction: column;
    padding-top: 3%;
    padding-bottom: 70%;
    width: 90%;
    margin-left: 30px;
}
footer .row h2{
    font-size: 20px;
   color: white;
   margin-bottom: 5px;
   padding-bottom: 5px;
   border-bottom: 1px solid white;
}
footer .row ul{
    margin-top: 5%;
    margin-bottom: 8%;
    margin-right: 35%;
}
footer .row li{
    font-size: 14px;
    list-style: none;
    padding: 5px 0;
}
a{
    text-decoration: none;
}
footer .row a{
    color: rgba(255, 255, 255, 0.76);
}
footer .row a:hover{
    color: var(--hd-color);
}
.map{
    width: 80%;
    margin-left: -5%;
    height: 20%;
    float: right;
    margin-right: 20px;
    
}
.mapIf{
    height: 150px;
    border-radius: 20px;
    filter: invert(100%) grayscale(100%);

}
/* ----------Footer Social */
.ftSocial{
    margin-top: -30%;
    width: 45%;
    float: left;
    margin-right: 0px;
    margin-bottom: -20%;
}
.ftSocial ul{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.ftSocial li{
    list-style: none;
    padding: 5px 10px;
}
.ftSocial i{
    color: var(--hd-color);
    font-size: 20px;
}
.ftSocial i:hover{
    color: white;
}
.ftLogo{
    margin-top: 5%;
    width: 36%;
    margin-left: 32%;
    margin-right: 32%;
}
.copyright{
    font-size: 14px;
    color: rgba(255, 255, 255, 0.445);
    margin-top: 0;
    display: flex;
    margin-left: 0;
    justify-content: center;
    padding-bottom: 30px;
}
.ftBlack{
    z-index: 8;
    width: 100%;
    height: 9vh;
    background-color: black;
}
.ds{
    margin-top: 10px;
    width: 6%;
    float: center;
    margin-right: 47%;
    margin-left: 47%;
}
/* ---------------------Loading */
.loading{
    position: fixed;
    top: 0;
    left: 0;
    z-index:99;
    height:100%;
    width: 100%;
    background:rgb(0, 0, 0);
  }
  .loading .sizzdeLogo{
    width: 20%;
    display: block;
    margin-left: 38%;
    margin-right: 0%;  
    padding-top:40%;
  }
  @keyframes flickerAnimation { /* flame pulses */
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
  }
  .animate-flicker {
      opacity:1;  
      animation: flickerAnimation 1.7s infinite;
  }
  /* -----------------------Loading F */


}