/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: 01
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

blockquote,
dl,
figure,
form,
ol,
p,
pre,
ul {
    margin-bottom: 0;
}

#header {
    background-color: white;
}

#masthead {
    background-color: white;
}

.has-dropdown .icon-angle-down {
    display: none;
}

.col-footer {
    margin: 0;
    padding: 0 15px 0;
    display: flex;

    > .col-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.absolute-footer {
    display: none;
}

.section-banner-home {
    min-height: calc(100vh - 183px);
}

.tab-series {
    > ul > li {
        width: 25%;
    
        > a {
            width: 100%;
            height: 60px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0;
            background-color: #072f5c;
            color: white;
            transition: all 0.3s ease-in-out;

            &:hover {
                color: #f7941d;
                background-color: #0a3a6b;
            }
        }

        &.active {
            > a {
                background-color: #f7941d;
                transition: all 0.3s ease-in-out;

                &:hover {
                    color: #072f5c;
                    background-color: #e6851a;
                }
            }
        }
    }

    > .tab-panels {
        padding-top: 0;
    }
}

.gallery-service {
    position: relative;

    .gallery-col {
        padding: 0;
    }

    .flickity-prev-next-button {
        top: unset;
        bottom: 30px;
        opacity: 1;
        height: 65px;
        width: 65px;
        color: #f7941d;
		
		&:hover {
			.arrow, svg {
				fill: #f7941d;
			}
		}
    }
}

.action-button-service {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;

    h5 {
        color: white;
        vertical-align: middle;
        text-transform: none;
    }

    .icon-box {
        flex-wrap: nowrap;
    }

    .icon-box-text {
        color: white;
        vertical-align: middle;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .col {
        padding-bottom: 0;
    }
}


@media only screen and (max-width: 48em) {
    /*************** ADD MOBILE ONLY CSS HERE  ***************/
}