.colText {
    width: fit-content;
    font-family: "Barlow", "sans-serif";
    font-size: 16px;
}
h1 {
    font-size: 3.5rem;
}
h2 {
    font-size: 3rem;
}
h3 {
    font-size: 2.5rem;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Cinzel", "sans-serif";
}

.container {
    max-width: 100%;
    min-width: 350px;
    width: 100vw;
    min-height: 75vh;
    padding: 0px;
}

.owl-stage-outer {
    max-height: 93vh;
}

.owl-carousel {
    margin-bottom: -30px;
}

.owl-dots {
    position: relative;
    display: flex;
    justify-content: center;
    bottom: 40px;
    padding: 0;
}

.owl-dot.active {
    background: white;
}

.row {
    max-width: 100% !important;
    padding: 0px;
    margin: 0px;
}

.owl-item img {
    display: block;
}

@keyframes camera-zoom {
    0% {
        transform:scale(1)
}
    100% {
        transform:scale(1.2)
    }
}
/*.owl-item.active img {*/
/*    -webkit-animation-name: camera-zoom;*/
/*    animation-name: camera-zoom;*/
/*    animation-duration: 6s;*/
/*    animation-timing-function: linear;*/
/*    animation-delay: 0;*/
/*    animation-fill-mode: forwards*/
/*}*/

.instagramSectionIcon {
    width: 100%;
    font-size: 8em;
}

.instagramSectionIcon i{
    font-style: normal;
}

.instagramImage {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.instagramImageLink {
}

.instagramSectionIcon {
   height: auto;
}

.colImage {
    object-fit: cover;
    max-width: 100%;
}

@media (max-width: 778px) {
    .sectionColumnContent {
        margin-left: auto;
        margin-right: auto;
    }
    .imageContainer {
        margin-left: auto;
        margin-right: auto;
    }
    .colImage {
        max-height: 600px;
    }
    .pageColumnsSection {
        width: 100%;
    }
}

@media (max-width: 580px) {
    .colImage {
        max-height: 450px;
    }
}

@media (min-width: 778px) {
    .pageColumnsSection>div:nth-child(even) {
        text-align: left !important;
    }
    .pageColumnsSection>div:nth-child(odd) {
        text-align: right !important;
    }
    .colImage {
        max-height: 450px;
    }
}

@media (min-width: 1000px) {
    .colImage {
        max-height: 600px;
    }
    .pageColumnsSection {
        width: 80%;
    }
}

@media (min-width: 1200px) {
    .colImage {
        max-height: 750px;
    }
}

.sectionColumnContent  {
    max-width: 500px;
    overflow: hidden;
}

.imageContainer {
    width: fit-content;
}

.skew {
    top: 100%;
    left: 0;
    width: 100%;
    height: 80px;
}
.skewPolygon {
    fill: #fff;
}

.instagramButton {
    background-color: #F8F9FA;
    border-color: #273A4E;
    border-radius: 50%;
    height: 125px;
    width: 265px;
    font-size: 3.5rem;
    text-align: center;
    color: #273A4E;
    font-family: 'cityStreetWearSemiBold', 'sans-serif';
    transition: 0.3s;
}

.instagramButton:hover {
    background-color: #273A4E;
    color: #F8F9FA;
}


.frame {
    @nSliceX:8;
    @nSliceY:8;
    @nSlice:@nSliceX * @nSliceY;
    display:grid;
    width:var(--w);
    height:var(--h);
    background:pink;
    grid-template-columns:repeat(@nSliceX, 1fr);
    grid-template-rows:repeat(@nSliceY, 1fr);
    .slice {
        width:calc(100% + 0.5px);
        height:calc(100% + 0.5px);
        background-image:var(--img);
        background-size:percentage(@nSliceX) percentage(@nSliceY);
        position:relative;
        each(range(@nSlice), {
            &:nth-of-type(@{value}) {
                transition:all unit(`1 + Math.random()`, s);
                background-position:
                    percentage(mod(@value - 1, @nSliceX)/ (@nSliceX - 1))
                    percentage(floor((@value - 1) / @nSliceX)/ (@nSliceX - 1));
                transform:
                    translateX(unit(`Math.random() * 100 - 50`, vw))
                    translateY(unit(`Math.random() * 50 - 25`, vh))
                    rotate(unit(`Math.random()`, turn));
            }
        })
    }
    &:hover .slice {
        transform:translate(0, 0)rotate(0);
    }
}