ul{
    margin-left: 0;
    list-style-type: disc;
}
ul ul{
    list-style: circle;
}
ol{
    margin-left: 0;
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1150px;
    }
}

/* Font */
.fontFamily-heading {
    font-family: var(--heading-family), Helvetica, sans-serif;
}

.fontFamily-body {
    font-family: var(--body-family), Helvetica, sans-serif;
}

.fontFamily-Oswald {
    font-family: var(--fontFamily-Oswald), Helvetica, sans-serif;
}

.fontFamily-Anton {
    font-family: var(--fontFamily-Anton), Helvetica, sans-serif;
}

/* Color */
.color-white {
    color: white !important;
}

.accent-color {
    color: var(--accent-color) !important;
}

.accent-color2 {
    color: var(--accent-color2) !important;
}

.accent-color3 {
    color: var(--accent-color3) !important;
}

.accent-color4 {
    color: var(--accent-color4) !important;
}


/* footer-link  */
.footer-link {
    column-count: 3;
    column-gap: 10px;
}

.footer-link a {
    display: block;
    padding: 8px;
    width: 100%;
    font-size: 12px;
    border-bottom: 1px dotted #ddd;
    opacity: 1;
    transition: all ease-in-out 180ms;
}

.footer-link a:hover {
    opacity: 0.8;
}

@media only screen and (max-width: 575px) {
    .footer-link {
        column-count: 2;
    }
}


/* responsive-video */
.responsive-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    z-index: 0;
}

.responsive-video iframe,
.responsive-video object,
.responsive-video embed,
.responsive-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* divider-line */
.divider-line{
    height: 5px;
    width: 80%;
    margin: 30px 0;
    background-color: var(--accent-color3);
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}

/* title */
.custom-title-01 {
    position: relative;
    text-align: center;
}

.custom-title-01 .title {
    margin: 0;
    color: var(--accent-color);
    font-size: clamp(42px, 2.75vw + 22.2px, 75px);
    font-family: var(--fontFamily-Anton);
    text-shadow: #111 1px 1px 3px;
}


/* custom-img-01 */
.custom-img-01 {
    margin: 20px 0 35px;
    box-shadow: rgb(195 84 35 / 80%) 5px 5px, rgb(195 84 35 / 40%) 10px 10px, rgb(195 84 35 / 20%) 15px 15px, rgb(195 84 35 / 10%) 20px 20px, rgb(195 84 35 / 5%) 25px 25px;
}

/* custom-img-02 */
.custom-img-02 {
    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.4));
}

/* custom-img-03 */
.custom-img-03 {
    box-shadow: #000000 0px 0px 4px 1px;
}
    

/* custom-button-01 */
body .custom-button-01 {
    display: inline-block;
    padding: 8px 24px;
    color: var(--button-color1);
    font-size: 20px;
    line-height: 1.42857143;
    background: var(--button-bgColor1);
    border: 1px solid var(--button-borderColor1);
    border-radius: 3px;
    transition: all ease-in-out 180ms;
    text-decoration: none;
}

body .custom-button-01:hover {
    opacity: 0.6;
}


/* custom-button-02 */
body .custom-button-02 {
    display: inline-block;
    padding: 10px 15px;
    font-weight: 300;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--button-color2);
    border-radius: 5px;
    text-decoration: none;
    background-color: var(--button-bgColor2);
    border: 1px solid var(--button-borderColor2);
    box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.45);
    transition: all ease-in-out 180ms;
}

body .custom-button-02:hover {
    text-decoration: none;
    box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.15);
	filter: brightness(120%);
}


/* custom-infoBox-01 */
.custom-infoBox-01{
    position: relative;
}
.custom-infoBox-01 .box-header{
    padding: 8px 8px 8px 43px;
    border-left: 7px solid #D5A43D;
    background-image: url("/Portals/0/CoverAlls-Background/custom-infoBox-01-icon.png");
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: 10px;
}
.custom-infoBox-01 .box-header .title{
    margin: 0 0 0;
    font-size: 20px;
    line-height: 1.42857143;
}
.custom-infoBox-01 .box-content{
    padding: 8px;
    border-top: 1px dotted #cccccc;
    border-radius: 0 0 8px 8px;
}


/* custom-blockquote-01 */
.custom-blockquote-01{
    border-left: 6px solid #333;
    padding-left: 25px;
}



/* custon-iconList-01 */
.custon-iconList-01{
    position: relative;
}
.custon-iconList-01 > .item{
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 15px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #000;
}
.custon-iconList-01.style-white > .item{
    border-bottom-color: #fff;
}
.custon-iconList-01 > .item > .icon{
    flex-shrink: 0;
    align-self: flex-start;
    width: 75px;
}
.custon-iconList-01 > .item > .content{
    flex-grow: 1;
}


/* custon-iconList-02 */
.custon-iconList-02{
    position: relative;
}
.custon-iconList-02 > .item{
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 15px 0;
}
.custon-iconList-02 > .item > .icon{
    flex-shrink: 0;
    width: 40px;
}
.custon-iconList-02 > .item > .icon img{
    width: 100%;
    max-width: 100%;
}
.custon-iconList-02 > .item > .content{
    flex-grow: 1;
}


/* custom-table-01 */
.custom-table-01{
    position: relative;
}
@media only screen and (max-width: 575px) {
    .custom-table-01, 
    .custom-table-01 thead, 
    .custom-table-01 tbody, 
    .custom-table-01 th, 
    .custom-table-01 td, 
    .custom-table-01 tr{
        display: block !important;
        width: 100% !important;
    }
}


/* custom-bannerBox-01 */
.custom-bannerBox-01{
    position: relative;
    padding: clamp(90px, 5vw + 54px ,150px) 30px;
    z-index: 1;
}
.custom-bannerBox-01 > .pic{
    position: absolute;
    inset: 0;
    z-index: -1;
    display: flex;
}
.custom-bannerBox-01 > .pic::after{
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.custom-bannerBox-01 > .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.custom-bannerBox-01 > .content{
    text-align: center;
    color: #fff;
}
.custom-bannerBox-01 > .content .title{
    color: #fff;
}