*{
    box-sizing: border-box;
}
*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

::selection{
  color:#ffffff;
  background:  #000000;
}
html{
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
     scroll-behavior: smooth;
}
@media screen and (min-width:1200px){
::-webkit-scrollbar{
    width: 12px;
}
::-webkit-scrollbar-thumb{
    background:#000000;
    border-radius: 10px;
    border: 2px solid #ffffff;
}
::-webkit-scrollbar-thumb:hover{
   opacity: 0.8;
}
}

body {
    margin: 0;
    padding: 0;
    color: #000000;
    font-family: "Clarkson",Helvetica,sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: 0;
    text-rendering: geometricPrecision;
    text-transform: none;
    text-decoration: none;
    font-size: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 500;
    line-height: 1.5;
    width: 100%;
    background: #ffffff;
    overflow-x: hidden;
}

li{
    list-style: none;
}
a:focus,
a:hover,
a{
    text-decoration: none;
    color: rgba(250, 250, 250, 0.9);
    color: #000000;
}
a,button{
    outline: none;
    color: #000000;
    border: none;
    cursor: pointer;
}
h1,h2,h3,h4,h5,h6,ul,p{
    margin: 0;
    padding: 0;
    color: #000000;
}
a{
    line-height: 2em;
}
p{
    color: #000000;
    font-family: "Clarkson",Helvetica,sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: 2em;
    letter-spacing: 0;
    text-rendering: geometricPrecision;
    text-transform: none;
    text-decoration: none;
    font-size: 22px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width:500px){

    p,
    body {
        font-size: 18px !important;
        line-height: 1.5em !important;
    }
}


.site-content{
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    min-height: 100vh;
}
@media screen and (max-width:1200px){
    .site-content{
        min-height: auto !important;
    }
}
.site-container{
    position: relative;
    width: 80%;
    height: auto;
    margin-left: 10%;
}

.nav-container{
    position: relative;
    width: 90%;
    height: auto;
    margin-left: 5%;
}
@media screen and (max-width:800px){
   .site-container{
    width: 90% !important;
    margin-left: 5% !important;
   } 
}


/*site-nav*/
.site-nav{
    position: relative;
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
    user-select: none;
}
.site-nav .nav-container{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 80px;

}
.nav-brand{
    position: absolute;
    left: 0;
    z-index: 2000;
}
.nav-brand img{
    max-width: 170px;
}
@media screen and (max-width:800px){
   .nav-brand img{
    max-width: 130px !important;
   }
}

.site-nav ul{
    position: relative;
    display: inline-flex;
    align-items: center;
}
.site-nav ul li{
    display: inline-flex;
    margin-left: 50px;
    font-family: "Clarkson",Helvetica,sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: 0;
    text-rendering: geometricPrecision;
    text-transform: none;
    text-decoration: none;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: pointer;
}
.site-nav ul li:first-child{
    margin-left: 0px;
}
@media screen and (max-width:600px){
    .site-nav ul li:first-child{
        display: none !important;
    }
    .site-nav ul li{
        margin-left: 0px !important;
    }
    .site-nav .nav-container{
        padding-right: 50px !important;
    }
}
@media screen and (max-width:290px){
       .site-nav ul li{
        display: none !important;
    }
}
.toggler-btn{
    position: fixed;
    width: 30px;
    height: 30px;
    background:transparent;
    right: 5%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 2000;
}

#toggle-lines{
    position: relative;
    width: 100%;
     display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
}
#toggle-lines span{
    position: absolute;
    width: 100%;
    height: 2px;
    background: #000000;
}

.ChanegIcon span{
    background: #ffffff !important;
}
#toggle-lines span:nth-child(1){
    transform: translateY(-4px);
}
#toggle-lines span:nth-child(2){
    transform: translateY(4px);
}
.toggle-menu.toggler-btn .ChanegIcon span{
    background: #000000 !important;
}
.toggle-menu.toggler-btn #toggle-lines span:nth-child(1){
    transform: rotate(45deg);
    animation: Draw 0.5s ease-in-out;
}
.toggle-menu.toggler-btn #toggle-lines span:nth-child(2){
    transform: rotate(-45deg);
    animation: Draw 0.5s ease-in-out;
}

@keyframes Draw{
    from{
        width: 0px;
    }
    to{
        width: 100%;
    }
}

@media screen and (min-width:1200px){
.toggler-btn:hover #toggle-lines{
    animation: movedelement2 5s linear infinite;
}

.toggle-menu.toggler-btn:hover #toggle-lines{
    animation: none;
}
@keyframes movedelement2 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    25% {
        -webkit-transform: translate(-5px, -5px);
        transform: translate(-5px, -5px);
    }
    50% {
        -webkit-transform: translate(-2.5px, -2.5px);
        transform: translate(-2.5px, -2.5px);
    }
    75% {
        -webkit-transform: translate(-5px, 2.5px);
        transform: translate(-5px, 2.5px);
    }
    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

}

/*menu-sec*/
.menu-sec{
    position: fixed;
    z-index: -1500;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.toggle-menu.menu-sec{
    opacity: 1;
    z-index: 1500;
}
.menu-body{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(238,238,238,.7);
    z-index: -10;
    cursor: pointer;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.toggle-menu.menu-sec .menu-body{
        opacity: 1;
}

/*menu-main*/
.menu-main{
    position: absolute;
    z-index: 100;
    right: -100%;
    width: 700px;
    height: 100%;
    background: #ffffff;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 5%);
    overflow-y: auto;
    transition: all 0.5s ease-in-out;
}
@media screen and (min-width:1200px){
.menu-main::-webkit-scrollbar{
    width: 8px;
    background: #F1F1F1;
}
.menu-main::-webkit-scrollbar-thumb{
    background:#C1C1C1;
    border-radius: 0px;
    border: 2px solid #ffffff;
}
.menu-main::-webkit-scrollbar-thumb:hover{
   opacity:1;
}
}

@media screen and (max-width:800px){
.menu-main{
    width: 100% !important;
}
}
.toggle-menu.menu-sec .menu-main{
    right: 0%;
}
.menu-main-cont{
    position: relative;
    width: 90%;
    margin-left: 5%;
    padding: 70px 0px;
    padding-bottom: 20px;
}
.menu-main-grid{
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    margin-bottom: 30px;
}

.menu-main-grid  p{
    padding: 20px 0px;
    color: rgba(0,0,0,.3);
    font-size: 18px;
}

.menu-main-grid ul{
    width: 100%;
    height: auto;
    display: block;
}

.menu-main-grid ul li{
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}
.menu-main-grid ul li a{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    font-size: 18px;
    height: 45px;
    letter-spacing: .00464286em;
    text-transform: capitalize;
    text-decoration: none;
}

.menu-main-grid ul li a span{
    transition: all 0.5s ease-in-out;
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    position: absolute;
}
.menu-main-grid ul li a .s-spin{
   transform: translateY(120%) rotate(7deg);
}
.menu-main-grid ul li a:hover .f-spin{
   transform: translateY(-120%) rotate(7deg);
}
.menu-main-grid ul li a:hover .s-spin{
   transform: translateY(0%);
}

/*menu-search-sec*/
.menu-search-sec{
    position: relative;
    width: 100%;
    height: auto;
    margin: 10px 0px;
}
.menu-search-sec form{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
}
.menu-search-sec form input{
    position: relative;
    width: 100%;
    height: auto;
    display: inline-flex;
    padding: 10px 20px;
    height: 60px;
    border: 1px solid #919191;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    outline: none;
}
.menu-search-sec form button{
    position: relative;
    width: 60px;
    height: 60px;
    background: #000000;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid #000000;
     border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    cursor: pointer;
}

.reg-btn{
    position: relative;
    width: 100%;
    height: auto;
    margin: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reg-btn a{
    position: relative;
    width: 200px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 30px;
    background: #FF374F;
    color: #ffffff !important;
    -webkit-box-shadow: rgb(255 55 79 / 30%) 0px 10px 30px;
     -moz-box-shadow: rgb(255 55 79 / 30%) 0px 10px 30px;
    box-shadow: rgb(255 55 79 / 30%) 0px 10px 30px;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .125rem;
}
.reg-btn a:hover{
    letter-spacing: 2px;
    background: #FF1533;
}
@media screen and (max-width:500px){
   .reg-btn a{
    width: 100% !important;
   } 
}

.menu-footer{
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 20px;
    display: block;
}

.menu-footer p{
    color: rgba(0,0,0,.3);
    font-size: 18px;
}
.menu-footer a{
    position: relative;
    display: inline-flex;
    width: auto;
    height: auto;
    padding: 8px 0px;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.menu-footer a:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,.3);
    bottom: 0;
    z-index: -2;
}
.menu-footer a:after{
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background: #000000;
    bottom: 0;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}
.menu-footer a:hover::after{
    width: 100%;
}













.h1-big{
    font-size: calc(2vw + 2vh + 3.5vmin);
  }
.h1-medium{
    font-size: calc(1.5vw + 1.5vh + 1.8vmin);

}

@supports (-webkit-text-stroke: 1px #000000) {
.h1-big span{
    -webkit-text-stroke: 1px  #000000;
    color: transparent;
    font-weight: 900;
  }
  .h1-big-wht span{
    -webkit-text-stroke: 1px  #ffffff;
  }
}
@media screen and (max-width:410px){

.h1-medium{
    font-size: calc(1.8vw + 1.8vh + 2vmin) !important;
}
.h1-big{
     font-size: calc(2.5vw + 2.5vh + 4vmin) !important;
}
}



























/*site-footer*/
.site-footer{
    position: relative;
    width: 100%;
    height: auto;
    padding: 200px 0px;
}
@media screen and (max-width:1100px){
    .site-footer{
        padding: 150px 0px !important;
    }
}
.t-foot {
    position: relative;
    width: 100%;
    height: auto;
}


.t-foot h2{
    margin: 0;
    padding: 0;
}
.t-foot a{
    margin:10px 0;
    padding: 0;
    line-height: 1.2em;
    position: relative;
    display: inline-flex;
    width: auto;
    height: auto;
    align-items: center;
    justify-content: center;
}

.t-foot a:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    background: #000000;
    transition: all 0.3s ease-in-out;
}
.t-foot a:hover::before{
    width: 0%;
}

.s-foot{
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    margin-top: 100px;
}
@media screen and (max-width:800px){
    .s-foot{
        display: block !important;
        margin-top: 70px !important;
    }
}
.l-s-foot{
    position: relative;
    width: 100%;
    height: auto;
}

.l-s-foot a{
    position: relative;
    display: inline-flex;
    width: auto;
    height: auto;
    align-items: center;
    justify-content: center;
}

.l-s-foot a:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    background: #000000;
    transition: all 0.3s ease-in-out;
}

.ll-1 a{
    font-size: 25px;
}
.ll-1 a:before{
   background: rgba(0,0,0,.3);
}

.ll-1 a:after{
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background: #000000;
    bottom: 0;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.ll-1 a:hover::after{
    width: 100%;
}

.ll-2{
    position: relative;
    padding: 20px 0px;
    width: 100%;
    height: auto;
}
.ll-2 p{
    color: #818181;
    font-size: 18px;
}

.ll-3 a{
    font-size: 18px;
    justify-content: flex-end;
}
.ll-3 a:before{
    transform-origin: right;
    width: 0%;
}
.ll-3 a:hover::before{
    width: 100%;
}
.ll-3 a:hover{
    justify-content: flex-start;
}

/*r-s-foot*/
.r-s-foot{
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width:800px){
    .r-s-foot{
        margin-top: 40px !important;
    }
}
.r-s-foot ul:first-child{
    margin-top: 0px;
}
.r-s-foot ul{
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    margin-top: 50px;
}

@media screen and (max-width:300px){
  .r-s-foot{
    display: none !important;
  }

  .ll-1 a{
    font-size: calc(1.5vw + 1.5vh + 2vmin) !important;
  }
}


.r-s-foot ul li{
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}
.r-s-foot ul li a{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    font-size: 18px;
    height: 45px;
    letter-spacing: .00464286em;
    text-transform: capitalize;
    text-decoration: none;
}

.r-s-foot ul li a span{
    transition: all 0.5s ease-in-out;
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    position: absolute;
}
.r-s-foot ul li a .s-spin{
   transform: translateY(120%) rotate(8deg);
}
.r-s-foot ul li a:hover .f-spin{
   transform: translateY(-120%) rotate(8deg);
}
.r-s-foot ul li a:hover .s-spin{
   transform: translateY(0%);
}



.llk-footer{
    padding-top: 100px !important;
}