*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
.webfont{
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  /* font-weight: <weight>; */
  font-style: normal;
}
.arial{
    font-family: Arial, Helvetica, sans-serif !important;
}
.segio{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.webcontainer{
    max-width: 1230px;
    padding-inline: 40px;
    margin-inline: auto;
}
@media screen and (max-width: 640px){
    .webcontainer{
        padding-inline: 20px;
    }
}
p, li{
    font-size: 17px;
}

.xborder{
    border: 2px solid black;
}
.xxborder{
    border: 2px solid white;
}
.left-center{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.pointer{
    cursor: pointer;
}
.caption{
    font-size: 3rem;
    /* font-weight: bolder; */
    font-weight: 800;
}
/* .xcaption{
    font-size: 4rem;
} */
.webholder{
    padding-block: 3rem;
    margin-block: 4rem;
}
.input-holder{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.input-design{
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.195);
    border-radius: 5px;
    padding: 5px 10px;
    outline: none;
    font-size: 16px;
    width: 100%;
    resize: none;
}

.btn{
    height: 40px;
    padding: 5px 20px;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #C28F59;
    color: white;
    border-radius: 5px;
    transition: 0.15s linear;
    width: fit-content;
}
.btn:hover{
    background-color: orange;
}

@keyframes slideleft{
    0%{
        transform: translateX(30px);
        opacity: 0;
    } 100%{
        transform: translateX(0)
    }
}
.slideleft{
    animation: slideleft 0.3s linear;
}

@keyframes slideup{
    0%{
        transform: translateY(30px);
        opacity: 0;
    } 100%{
        transform: translateY(0)
    }
}
.slideup{
    animation: slideup 0.3s linear;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px white;
}
.xoutline-text {
  color: black;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
}


/* swiper class */
.swiper {
    width: 100%;
    height: 100%;
}

/* .swiper-slide {

} */
/* .swiper-slide::before{
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.462);
    z-index: -1;
} */

.swiper-slide img {
    /* display: block; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: -1;
}

.xslideup {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.1s ease;
}

.swiper-slide-active .xslideup {
  opacity: 1;
  transform: translateY(0);
}


