.customCont{
    position: relative;
    display: flex;
    min-height: 50vh;
    background: #fff;
}
.customCont .bgIMG{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(/images/resources/bottlesCustom.png) no-repeat;
    background-position: right;
    background-size: contain;
}
@media(max-width:1200px){
    .customCont .bgIMG{
        background-position: bottom;
    }
}

.customCont .textCnt{
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    z-index: 5;
}
.customCont .textCnt h1{
    font-size: clamp(1.6rem, 4vw, 10rem);
    color: var(--suncolor);
    font-weight: 600;
    border: 2px solid #fff;
    border-bottom: 1px solid #ddd;
}
.customCont .textCnt h2{
  color: #52555e;
  text-shadow:
    2px 0 0 #fff,
   -2px 0 0 #fff,
    0 2px 0 #fff,
    0 -2px 0 #fff,
    2px 2px 0 #fff,
   -2px 2px 0 #fff,
    2px -2px 0 #fff,
   -2px -2px 0 #fff;
}

.customCont .textCnt a{
    width: max-content;
    padding: .5rem 3rem;
    border-radius: 25px;
    background: #1395c9;
    color: #fff;
    box-shadow: 0 0 6px #1395c9;
    font-weight: 600;
    letter-spacing: 1px;
}
.customCont .textCnt a:hover{
    background: #07aaeb;
    box-shadow: 0 0 10px #0aa7e6;
}


