@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Parkinsans:wght@300..800&display=swap');


/* default */
:root {
    --main-theme-color: #f7c324;
    --white-color: #fff;
    --black-color: #222;
}
body{
    font-family: 'Parkinsans', sans-serif!important;
}
section{
    position: relative;
    margin: auto;
    width: 100%;
    display: flex;
    padding: 80px;
    z-index: 3;
    overflow: hidden;
}
a{
    text-decoration: none;
}

/* main button */
.mainButton{
    background: var(--main-theme-color);
    color: #222;
    border-radius: 30px;
    padding: 16px 28px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    position: relative;
}

.mainButton:hover{
    
}

/* header */

header{
        position: relative;
    width: 100%;
    padding: 20px 0;
}
.headerWrap{
    display: flex;
}
.headerLogo{
    
}
.headerLogo img{
    
}
.headerAction{
    
}
.headerAction button{
    
}
/* footer */

/* home banner */
.homeBanner{
    padding-left: 0;
    padding-right: 0;
    height: 100vh;
        display: grid;
    align-items: center;
}
.HBContent{
    border: 2px dashed #222;
    padding: 60px;
    border-radius: 60px;
    height: 100%;
    display: grid;
    position: relative;
    align-content: space-between;
}
.homeBH1{
    font-size: 60px;
    line-height: 60px;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    max-width: 800px;
}
.homeBH1 b{
    color: var(--main-theme-color);
}
.homeBH1 span{
    align-items: center;
    margin-bottom: 0px;
    -webkit-text-fill-color: rgb(0 0 0 / 0%);
    -webkit-text-stroke: 2px var(--main-theme-color);
    opacity: 1;
}
.homeBLinkToPort{
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #fff;
    border-top: 2px dashed #222;
    border-left: 2px dashed #222;
    border-radius: 30px 0 0 0;
    padding: 30px;
}
.homeBLinkToPort:after{
    content:"";
  display: inline-block;
  width: 40px;
  height: 40px;
--svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' d='M42 24H6m24-12l12 12l-12 12'/%3E%3C/svg%3E");  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
    color: #222;
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}
.homeBLinkToPort a{
    
}
.HBMiddle{
        display: flex;
    grid-gap: 30px;
    justify-content: space-between;
}
.HBMiddle div{
    width: 100%;
    height: 200px;
    border-radius: 30px;
    color: #fff;
    align-items: center;
    display: flex;
    justify-content: center;
    transform: skewX(-5deg);
    background: linear-gradient(235deg, rgb(71 71 71) 0%, #222 100%);
}
.HBBottom{
    
}