/**
 * My Custom Design
*/

:root {
    --primary-font: "Poppins", sans-serif;
    --secondary-font: "Poppins", sans-serif;
    --body-cl: rgb(0,0,0);
    --body-bg: rgb(255,255,255);
    --body-ft-size: 16px;
    --primary-cl: rgb(0,0,0);
    --secondary-cl: rgb(25,25,83);
    --tertiary-cl: rgb(235,235,251);
    --white-cl: #ffffff;
    --black-cl: #000000;
    --gray-cl: #e1e2e1;
}
body {
    font-family: var(--primary-font);
    background-color: var(--body-bg);
    color: var(--body-cl);
    font-size: var(--body-ft-size);
    font-weight: 400;
}
.sec-font {
    font-family: var(--secondary-font);
}
.primary-cl,
.primary-cl a,
.primary-cl a:hover,
.primary-cl a:focus {
	color: var(--primary-cl);
}
.secondary-cl,
.secondary-cl a,
.secondary-cl a:hover,
.secondary-cl a:focus {
	color: var(--secondary-cl);
}
.tertiary-cl,
.tertiary-cl a,
.tertiary-cl a:hover,
.tertiary-cl a:focus {
	color: var(--tertiary-cl);
}
.c-white,
.c-white a,
.c-white a:hover,
.c-white a:focus {
    color: var(--white-cl);
}
.c-black,
.c-black a,
.c-black a:hover,
.c-black a:focus {
    color: var(--black-cl);
}
.c-gray,
.c-gray a,
.c-gray a:hover,
.c-gray a:focus {
    color: var(--gray-cl);
}
a {
    text-decoration: none;
    color: rgb(0,115,229);
    transition: none;
}
:focus {
    color: initial;
    outline: transparent solid 0px;
}
a:focus,
a:hover {
    color: rgb(0,115,229);
    text-decoration: none;
}

/* Heading */
h1,
h2,
h3,
h4,
h5 {
    position: relative;
    font-weight: 600;
    font-family: var(--secondary-font);
}
.site-inner h1,
.entry-content h1,
h1 {
    font-size: 30px;
    color: rgb(0,0,0);
    text-align: center;
}
h2 {
    font-size: 26px;
    color: rgb(0,0,0);
}
h3 {
    font-size: 24px;
    color: rgb(0,0,0);
}
h4 {
    font-size: 22px;
    color: rgb(0,0,0);
}
h5 {
    font-size: 20px;
    color: rgb(0,0,0);
}
h6 {
    font-size: 20px;
    color: rgb(0,0,0);
}

/* Button */
button,
.button,
input[type="submit"] {
    display: inline-block;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    font-family: var(--primary-font);
    padding: 20px 30px 20px 30px;
    border-radius: 0;
    line-height: 1;
    color: rgb(255,255,255);
    background: rgb(25,25,83);
    outline: 1px solid rgb(25,25,83);
    outline-offset: -1px;
    transition: none;
}
button:hover,
button:focus,
.button:hover,
.button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
    color: rgb(255,255,255);
    background: rgb(0,0,0) !important;
    outline: 1px solid rgb(0,0,0);
    outline-offset: -1px;
}
.button.check:after {
    content: "\f058";
}
.button.arrow:after {
    content: "\f105";
}
.button:after {
    font-family: 'Font Awesome\ 6 Free';
    margin-left: 5px;
    font-weight: 900;
    line-height: 1;
}
.button.btn-v1 {
    font-size: 16px;
    color: rgb(25,25,83);
    background: rgb(255,255,255);
    padding: 20px 30px 20px 30px;
    border-radius: 0;
    outline: 1px solid rgb(255,255,255);
    outline-offset: -1px;
}
.button.btn-v1:hover,
.button.btn-v1:focus {
    color: rgb(255,255,255);
    background: rgb(25,25,83) !important;
    outline: 1px solid rgb(25,25,83);
    outline-offset: -1px;
}
.button.btn-v2 {
    font-size: 16px;
    color: rgb(255,255,255);
    background: rgb(25,25,83);
    padding: 20px 30px 20px 30px;
    border-radius: 0;
    outline: 1px solid rgb(255,255,255);
    outline-offset: -1px;
}
.button.btn-v2:hover,
.button.btn-v2:focus {
    color: rgb(255,255,255);
    background: rgb(0,0,0) !important;
    outline: 1px solid rgb(0,0,0);
    outline-offset: -1px;
}
.button.btn-v3 {
    font-size: 16px;
    color: rgb(25,25,83);
    background: rgb(255,255,255);
    padding: 20px 30px 20px 30px;
    border-radius: 0;
    outline: 1px solid rgb(255,255,255);
    outline-offset: -1px;
}
.button.btn-v3:hover,
.button.btn-v3:focus {
    color: rgb(255,255,255);
    background: rgb(0,0,0) !important;
    outline: 1px solid rgb(0,0,0);
    outline-offset: -1px;
}
.button.btn-v4 {
    font-size: 16px;
    color: rgb(255,255,255);
    background: transparent;
    padding: 20px 30px 20px 30px;
    border-radius: 0;
    outline: 1px solid rgb(255,255,255);
    outline-offset: -1px;
}
.button.btn-v4:hover,
.button.btn-v4:focus {
    color: rgb(25,25,83);
    background: rgb(255,255,255) !important;
    outline: 1px solid rgb(255,255,255);
    outline-offset: -1px;
}

/* Section Design */
.section-title {
	font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 5px;
}
.section-btn {
    margin-top: 30px;
}

/* Back To Top */
div.to-top-progress {
    position: fixed;
    right: 5px;
    bottom: 120px;
    z-index: 199;
    --size: 40px;
    --fg: var(--white-cl);
    --bg: var(--secondary-cl);
    --pgPercentage: var(--value);
    animation: growProgressBar 0.5s 1 forwards;
    width: var(--size);
    height: var(--size);
    display: grid;
    place-items: center;
    background: radial-gradient(closest-side, var(--secondary-cl) 75%, transparent 0 100%, var(--secondary-cl) 0), conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
    font-size: 18px;
    color: var(--white-cl);
    border-radius: 3px;
    cursor: pointer;
    display: none;
    border: 1px solid var(--white-cl);
}
div.to-top-progress i {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--white-cl);
}

/* Search Result */
article.search-result-item .search-result-title,
article.search-result-item .search-result-title a {
    font-size: 40px;
    line-height: 1.2;
    color: var(--primary-cl);
}
article.search-result-item .search-result-excerpt a {
    margin: 0;
}
.entry-content .search-form {
    width: 100%;
}

/* Background Style */
.background-fixed {
    background-attachment: fixed;
}
.background-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.background-image-repeat {
    background-position: center center;
    background-repeat: repeat;
    background-size: contain;
}
.background-image-top-left {
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
}
.background-image-top-center {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}
.background-image-left-cover {
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}
.background-image-right-cover {
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
}
.background-image-bottom-cover {
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.background-image-bottom-contain {
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
}
.background-image-right-bottom {
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.background-image-right-center-inherit {
    background-position: right center;
    background-repeat: no-repeat;
    background-size: inherit;
}
.background-image-center-contain {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.background-image-bottom-left {
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: inherit;
}
.site-flex-nowrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
}
.site-flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
   -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
.justify-content {
    -webkit-justify-content: space-between;
    -ms-flex-pack: inherit;
    justify-content: space-between;
    align-items: center;
}
.justify-content-center {
    -webkit-justify-content: center;
    -ms-flex-pack: inherit;
    justify-content: center;
    align-items: inherit;
    flex-wrap: wrap;
}
.justify-content-center-center {
    -webkit-justify-content: center;
    -ms-flex-pack: inherit;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.justify-content-end {
    -webkit-justify-content: right;
    -ms-flex-pack: inherit;
    justify-content: right;
    align-items: center;
    flex-wrap: wrap;
}
.justify-content-center-left {
    -webkit-justify-content: center;
    -ms-flex-pack: inherit;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}
.justify-content-left {
    -webkit-justify-content: left;
    -ms-flex-pack: inherit;
    justify-content: left;
    align-items: inherit;
    flex-wrap: wrap;
}
.justify-content-top {
    -webkit-justify-content: space-between;
    -ms-flex-pack: inherit;
    justify-content: space-between;
    align-items: inherit;
}
.justify-content-bottom {
    -webkit-justify-content: space-between;
    -ms-flex-pack: inherit;
    justify-content: space-between;
    align-items: flex-end;
}
.justify-content-bottom-center {
    -webkit-justify-content: space-between;
    -ms-flex-pack: inherit;
    justify-content: center;
    align-items: flex-end;
}
.relative {
    position: relative;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.uppercase {
    text-transform: uppercase;
}
.medium {
    font-weight: 500;
}
.semi-bold {
    font-weight: 600;
}
.bold {
    font-weight: 700;
}
.italic {
    font-style: italic;
}
.full-width {
    width: 100%;
    margin: 0 auto;
    max-width: 1920px;
}
.full-width-section {
    width: 100%;
}
.inner-width {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    padding: 0 15px;
    z-index: 1;
}
a.link-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.show-item-mobile {
    display: block;
}
.hide-item-mobile {
    display: none;
}
.mobile-center {
    text-align: center;
}
.site-section.full-padding {
    padding: 60px 15px;
}
.site-section.top-bot-padding {
    padding: 60px 0;
}
ul.list-col-2,
ul.list-col-3 {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
    list-style: inside;
}

/* Slick Button */
.slide-control {
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide-control .slick-arrow {
    line-height: 1;
    height: 40px;
    width: 40px;
    background-color: transparent;
    color: var(--black-cl);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    margin: 2px;
    z-index: 1;
    border-radius: 0;
    border: 1px solid var(--white-cl);
    color: var(--white-cl);
}
.slide-control .slick-arrow:hover {
    background-color: var(--white-cl);
    color: var(--secondary-cl);
}
.slick-arrow.slick-hidden {
    display: none !important;
}
.slide-control > div {
    display: none;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        -moz-transform: translateY(-100px);
        -o-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

/* Column */
.col-1-12,.col-2-12,.col-3-12,.col-4-12,.col-5-12,.col-6-12,.col-7-12,.col-8-12,.col-9-12,.col-10-12,.col-11-12,.col-12-12,.col-1-5,.col-2-5,.col-3-5,.col-4-5,.col-5-5,.col-1,.col-2,.col-3,.col-4,.col-5 {
    width: 100%;
}
@media only screen and (min-width: 768px) {
    /* Common Class */
    ul.list-col-2,
    ul.list-col-3 {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
        list-style: inside;
    }

    /* Heading */
	.site-inner h1,
	.entry-content h1,
	h1 {
	    font-size: 32px;
	}
	h2 {
	    font-size: 26px;
	}
	h3 {
	    font-size: 24px;
	}
	h4 {
	    font-size: 22px;
	}
	h5 {
	    font-size: 20px;
	}
	h6 {
	    font-size: 20px;
	}

	/* Section Design */
	.section-title {
		font-size: 32px;
	}
}
@media only screen and (min-width: 1024px) {
    /* Common Classes */
    .fadeInDown {
        -webkit-animation-name: fadeInDown;
        -moz-animation-name: fadeInDown;
        -o-animation-name: fadeInDown;
        animation-name: fadeInDown;
        -webkit-animation-fill-mode: both;
        -moz-animation-fill-mode: both;
        -o-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-duration: 1s;
        -moz-animation-duration: 1s;
        -o-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-delay: 1s;
        -moz-animation-delay: 1s;
        -o-animation-duration: 1s;
        animation-delay: 1s;
    }
    ul.list-col-3 {
        columns: 3;
        -webkit-columns: 3;
        -moz-columns: 3;
        list-style: inside;
    }
    .site-section.top-bot-padding {
        padding: 100px 0;
    }
    .site-section.full-padding {
        padding: 100px 0;
    }
    .show-item-mobile {
        display: none;
    }
    .hide-item-mobile {
        display: block;
    }
    
    /* Column By 5 */
    .col-1-5 {
        width: 100%;
    }
    .col-2-5 {
        width: 50%;
    }
    .col-3-5 {
        width: 33.33%;
    }
    .col-4-5 {
        width: 25%;
    }
    .col-5-5 {
        width: 20%;
    }

    /* Column Edge to Edge with Space */
    .col-2 {
        width: 49%;
    }
    .col-3 {
        width: 32%;
    }
    .col-4 {
        width: 23.5%;
    }
    .col-5 {
        width: 18.4%;
    }

    /* Column By 12 */
    .col-1-12 {
        width: 8.333%;
    }
    .col-2-12 {
        width: 16.666%;
    }
    .col-3-12,.col-1-4 {
        width: 25%;
    }
    .col-4-12 {
        width: 33.333%;
    }
    .col-5-12 {
        width: 41.666%;
    }
    .col-6-12,.col-2-4 {
        width: 50%;
    }
    .col-7-12 {
        width: 58.333%;
    }
    .col-8-12 {
        width: 66.666%;
    }
    .col-9-12 {
        width: 75%;
    }
    .col-10-12 {
        width: 83.333%;
    }
    .col-11-12 {
        width: 91.666%;
    }

    /* Heading */
	.site-inner h1,
	.entry-content h1,
	h1 {
	    font-size: 36px;
	}
	h2 {
	    font-size: 26px;
	}
	h3 {
	    font-size: 24px;
	}
	h4 {
	    font-size: 22px;
	}
	h5 {
	    font-size: 20px;
	}
	h6 {
	    font-size: 20px;
	}

	/* Section Design */
    .section-btn {
        margin-top: 60px;
    }
    
	.section-title {
		font-size: 36px;
	}
}
@media only screen and (max-width: 990px) {
    .wp-block-image .aligncenter,
    .wp-block-image .alignleft,
    .wp-block-image .alignright,
    figure.wp-block-image {
        margin: 0 auto 20px !important;
        float: none;
        text-align: center;
    }
}