html {
    font-size: 100%;
    line-height: 1.625em;
    color: rgb(102, 102, 102);
}

body {
    font-size: inherit;
    line-height: inherit;
    font-family: Hind Madurai;
    font-weight: 300;
    font-style: normal;
    color: rgb(102, 102, 102);
}

p {
    margin-top: 0rem;
    margin-bottom: 0.8125rem
}

h1 {
    font-size: 3.0517578125rem;
    line-height: 3.25rem;
    margin-top: 1.625rem;
    margin-bottom: 0.8125rem;
    color: #000;
    font-family: Montserrat;
    font-weight: 600;
    font-style: normal;
}

h2 {
    font-size: 2.44140625rem;
    line-height: 2.84375rem;
    margin-top: 1.625rem;
    margin-bottom: 0.8125rem;
    color: #000;
    font-family: Montserrat;
    font-weight: 600;
    font-style: normal;
}

h3 {
    font-size: 1.953125rem;
    line-height: 2.03125rem;
    margin-top: 1.625rem;
    margin-bottom: 0.8125rem;
    color: #000;
    font-family: Montserrat;
    font-weight: 600;
    font-style: normal;
}

h4 {
    font-size: 1.5625rem;
    line-height: 1.625rem;
    margin-top: 0.8125rem;
    margin-bottom: 0.8125rem;
    color: #000;
    font-family: Montserrat;
    font-weight: 600;
    font-style: normal;
}

h5 {
    font-size: 1.25rem;
    line-height: 1.625rem;
    margin-top: 0.8125rem;
    margin-bottom: 0.8125rem;
    color: #000;
    font-family: Montserrat;
    font-weight: 600;
    font-style: normal;
}

h6 {
    font-size: 1rem;
    line-height: 1.625rem;
    margin-top: 0.8125rem;
    margin-bottom: 0.8125rem;
    color: #000;
    font-family: Montserrat;
    font-weight: 600;
    font-style: normal;
}

ul {
    margin-top: 0rem;
    margin-bottom: 0.8125rem;
}

pre {
    margin-top: 0rem;
    margin-bottom: 0.8125rem;
}

table {
    margin-top: 0rem;
    margin-bottom: 0.8125rem;
}

blockquote {
    margin-top: 0rem;
    margin-bottom: 0.8125rem;
    font-size: 1.15rem;
    color: #666;
    font-family: Hind Madurai;
    font-weight: 400;
    font-style: normal;
}

ul ul {
    margin-top: 0rem;
    margin-bottom: 0rem;
}

ol ol {
    margin-top: 0rem;
    margin-bottom: 0rem;
}

ul ol {
    margin-top: 0rem;
    margin-bottom: 0rem;
}

ol ul {
    margin-top: 0rem;
    margin-bottom: 0rem;
}

label {
    margin-top: 0rem;
    margin-bottom: 0rem;
}

small {
    margin-top: 0rem;
    margin-bottom: 0rem;
    font-size: 0.85rem;
    font-family: Hind Madurai;
    font-weight: 400;
    font-style: normal;
    color: #666;
    vertical-align: bottom;
}

tr {
    line-height: 2.640625rem;
}

td {
    line-height: 2.640625rem;
}

.zanaya-link {
    color: var(--primary);
    text-decoration: none;
}
.zanaya-link:hover {
    color: var(--primary);
    text-decoration: line-through;
}
.zanaya-link:focus {
    color: var(--primary);
    text-decoration: line-through;
}



/* CUSTOM CLASSES */

.zanaya-uppercase{
    text-transform: uppercase;
} 
.zanaya-lowercase{
    text-transform: lowercase;
} 
.zanaya-dropcap:first-of-type:first-letter {
  height: 0.7em;
  margin: 0.08em 0 -0.05em 0;
  padding: 0 0.065em 0 0;
  font-size: 5em;
  line-height: 0.85em;
  float: left;
} 

.zanaya-regular{
    font-weight: 400;
}

.zanaya-bold{
    font-weight: bold; 
} 
.zanaya-thin{
    font-weight: 300;
} 

.zanaya-pad0{
    padding: 0;
} 
.zanaya-margin0{
    margin: 0;
}

/* primary colors */
.zanaya-primary-text-color{
    color: var(--primary);
} 
.zanaya-primary-text-color.hover:hover{
    color: var(--secondary);
} 
.zanaya-primary-bg-color{
    background-color: var(--secondary);
}
.zanaya-primary-bg-color.bg-hover:hover{
    background-color: var(--primary);
}
.zanaya-primary-bg-color.bg-gradient{
    background-image: linear-gradient(160deg, var(--primary) 37%, var(--secondary) 100%);
}
.zanaya-primary-bg-color.bg-gradient.bg-hover:hover{
    background-image: linear-gradient(340deg, var(--primary) 37%, var(--secondary) 100%);
}

/* hover effects */

.transition{
    transition: all .3s ease;
}

.hover-shadow:hover {
    -webkit-box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.2);
}

.col-hover-wider:hover{
    margin-left: -15px !important;
    width: calc(100% + 30px) !important; 
}

.polygon-right{
    -webkit-clip-path: polygon(-webkit-calc(100% - 120px) 0,100% 50%,-webkit-calc(100% - 120px) 100%,0 100%,0 0);
    clip-path: polygon(calc(100% - 120px) 0,100% 50%,calc(100% - 120px) 100%,0 100%,0 0);
} 

.polygon-left{
    -webkit-clip-path: polygon(120px 0,100% 0,100% 100%,120px 100%,0 50%);
    clip-path: polygon(120px 0,100% 0,100% 100%,120px 100%,0 50%);
}    

.triangle-up{
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.triangle-down{
    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.vertical-center{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: calc(100% - 30px);
}

/* SELER ONLY */

/* bordered images 1 */
.bordered-img_1{border-top-left-radius: 30px; border-top-right-radius: 30px; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; }

/* bordered images 2 */
.bordered-img_2_span{font-weight: 400; font-family: Playfair Display; }
.bordered-img_2{border: 10px solid var(--primary);}
.bordered-img_2.white{border-color: var(--white); }
.bordered-img_2.shadow{box-shadow: rgb(102, 102, 102) 0px 0px 10px 0px;}

/* bordered images 3 */
.bordered-img_3{background-image: linear-gradient(90deg, var(--secondary) 0.1%, var(--primary) 51%, rgb(255, 118, 118) 97%); padding: 15px;}
.bordered-img_3_span{font-weight: 400; font-family: Playfair Display; }

/* bordered images 4 */
.bordered-img_4.full-shadow{box-shadow: rgb(102, 102, 102) 5px 5px 8px 0px; }
.bordered-img_4.half-shadow{box-shadow: var(--primary) -13px -12px 0px 0px; }
.bordered-img_4_span{font-weight: 400; }

/* bordered images 5 */
.bordered-img_5_span{font-weight: 400; font-family: Playfair Display; }
.gradient-divider{background-image: linear-gradient(90deg, var(--primary) 0.1%, var(--pink) 77%); }
.bordered-img_5_bg{background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("../../data/uploads/img/face3.jpg"); min-height: 360px; }
.bordered-img_5_bg .border{position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px; width: calc(100% - 20px); border: 7px solid var(--primary); }
.bordered-img_5_bg .border.pink{border-color: var(--pink); }

/* bordered images 6 */
.bordered-img_6_bg{background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("../../data/uploads/img/face3.jpg"); min-height: 360px; }
.bordered-img_6_bg .border{position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px; width: calc(100% - 20px); border: 3px solid var(--primary); }
.bordered-img_6_bg .border.white{border-color: var(--white); }
.bordered-img_6_span{font-weight: 400; }

