/*
** Theme Variables
*/
:root {
    --white: #ffffff;
    --black: #000000;
    --blue: #0E1784;
    --blue-a: #0a115f;
    
    --primary: var(--black);
    --primary-a: #262323;
    
    --body: var(--primary);
    
    --lightgray: #F6F6F6;
    --gray: #D9D9D9;
    
    --link: var(--blue);
    --link-a: var(--blue-a);
    
    --formfieldbg: var(--white);
    --formfieldplaceholder: rgba(0,0,0, 0.4);
    --formtextcolor: var(--body);
    --formfieldborder: rgba(0,0,0, 0.2);
    --formfieldheight: 74px;
 
    --siteradius: 0px;
    
    scroll-behavior: unset;
}

@font-face {
    font-family: 'barlowc-bd';
    src: url('../fonts/BarlowCondensed-Bold.woff2') format('woff2'),
        url('../fonts/BarlowCondensed-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'barlowc-md';
    src: url('../fonts/BarlowCondensed-Medium.woff2') format('woff2'),
        url('../fonts/BarlowCondensed-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'barlowc-sb';
    src: url('../fonts/BarlowCondensed-SemiBold.woff2') format('woff2'),
        url('../fonts/BarlowCondensed-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'barlowc';
    src: url('../fonts/BarlowCondensed-Regular.woff2') format('woff2'),
        url('../fonts/BarlowCondensed-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'barlowsc';
    src: url('../fonts/BarlowSemiCondensed-Regular.woff2') format('woff2'),
        url('../fonts/BarlowSemiCondensed-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'bs';
    src: url('../fonts/icons/bs.woff?co0hz6') format('woff'),
    url('../fonts/icons/bs.ttf?co0hz6') format('truetype');  
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'bs';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-plus:before {
    content: "\e904";
}
.icon-pin:before {
    content: "\e922";
}
.icon-phone:before {
    content: "\e921";
}
.icon-envelope:before {
    content: "\e920";
}
.icon-whatsapp:before {
    content: "\e91e";
}
.icon-clock:before {
    content: "\e91c";
}
.icon-calendar:before {
    content: "\e91d";
}
.icon-angle-down:before {
    content: "\e918";
}
.icon-search:before {
    content: "\e908";
}
.icon-country:before {
    content: "\e90a";
}
.icon-arrow-right:before {
    content: "\e916";
}
.icon-angle-arrow:before {
    content: "\e917";
}
.icon-twitter:before {
    content: "\e900";
}
.icon-facebook-f:before {
    content: "\e901";
}
.icon-instagram:before {
    content: "\e902";
}
.icon-linkedin:before {
    content: "\e903";
}

/*
** Custom Reset
*/
img { max-width: 100%; height: auto; }
a, span, i, label { display: inline-block; }
a { color: var(--link); text-decoration: none; transition: 0.3s ease-in-out; }
.transition { transition: 0.3s ease-in-out; }
a:hover { color: var(--link-a); text-decoration: underline; }
a:focus { outline: none; }
strong, b { font-family: 'barlowc-sb', sans-serif; font-weight: normal; }

header ul,
footer ul,
.social-menu ul,
.foo-contact ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

p:last-child,
ul:last-child,
li:last-child {
    margin-bottom: 0;
}

button,
button:focus {
    outline: 0;
    box-shadow: none;
}

input:focus {
    outline: none;
    box-shadow: none;
}

ul, ol { padding-left: 20px; }

li { margin-bottom: 10px; }

header li,
footer li {
    margin-bottom: 0;
}

/*
** Globals
*/
body {
    font-family: 'barlowsc', sans-serif;
    font-size: 20px;
    line-height: 32px;
    color: var(--body);
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'barlowc-sb', sans-serif;
    font-weight: normal;
    font-style: normal;
    text-transform: uppercase;
}

h1, .h1, h2, .h2 {
    font-size: 75px;
    line-height: 1em;
    margin-bottom: 40px;
}

h3, .h3 {
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 30px;
}

h4, .h4 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 20px;
}

h5, .h5 {
    font-size: 24px;
    line-height: 1.32em;
    margin-bottom: 16px;
}

h6, .h6 {
    font-size: 20px;
    line-height: 1.32em;
    margin-bottom: 16px;
}

/* Form Fields */
input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
input[type="num"],
input[type="tel"],
select,
textarea {
    font-family: 'barlowsc', sans-serif;
    font-size: 28px;
    line-height: calc(var(--formfieldheight) - 2px);
    color: var(--formtextcolor);
    height: var(--formfieldheight);
    width: 100%;
    padding: 0 25px;
    border-radius: 0px;
    background-color: var(--formfieldbg);
    border: 1px solid var(--formfieldborder);
    outline: 0 !important;
    vertical-align: top;
}

input::placeholder,
textarea::placeholder {
    color: var(--formfieldplaceholder);
}

textarea {
    padding-top: 11px;
    line-height: 34px;
    min-height: 200px;
    max-height: 200px;
    resize: vertical;
}

select {
    width: 100%;
    padding-right: 30px;
    background-image: url('../images/angle-down.svg');
    background-size: 10px;
    background-position: right 15px center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    appearance: none;
}

.requote-form .row { row-gap: 40px; }

span.wpcf7-form-control-wrap { display: block; }
.wpcf7-not-valid-tip { font-size: 16px; line-height: 20px; }
.wpcf7 form .wpcf7-response-output { line-height: 1.15; padding: 0; margin: 10px 0 0; border: 0; }
.wpcf7 form.invalid .wpcf7-response-output { color: #dc3232; }
.wpcf7 form.sent .wpcf7-response-output { color: #0d921a; }

/*Background Utilities*/
.bg--primary { background-color: var(--primary); color: var(--white); }
.bg--blue { background-color: var(--blue); color: var(--white); }
.bg--lightgray { background-color: var(--lightgray); }


/*Text Utilities*/
.text-reg { font-family: 'barlowc', sans-serif; }
.text-md { font-family: 'barlowc-md', sans-serif; }
.text-sb { font-family: 'barlowc-sb', sans-serif; }
.text-bd { font-family: 'barlowc-bd', sans-serif; }
.text-sc { font-family: 'barlowsc', sans-serif; }

.text-italic { font-style: italic; }

.text--primary { color: var(--primary); }
.text--white { color: var(--white); }

.font-20 { font-size: 20px; line-height: 40px; }
.font-24 { font-size: 24px; line-height: 1.5; }
.font-32 { font-size: 32px; line-height: 40px; }
.font-45 { font-size: 45px; line-height: 50px; }

/*
** Bootstrap Extends & Overrides
*/
.container, .container-fluid, .row>* { padding-left: 20px; padding-right: 20px; }
.row { margin-left: -20px; margin-right: -20px; }
.gx-0.row>* { padding-left: 0; padding-right: 0; }
.gx-0.row { margin-left: 0; margin-right: 0; }

.overflow-hidden { overflow: hidden; }

.visually-hidden,
.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/*WP Align*/

img.alignright {
    float: right;
    margin: 0 0 16px 16px;
}

img.alignleft {
    float: left;
    margin: 0 16px 16px 0;
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignright { float: right; }

.alignleft { float: left; }

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

figure {
    max-width: 100%;
    height: auto;
}

figure figcaption {
    font-size: 14px;
    line-height: 20px;
    padding: 5px 10px;
    text-align: center;
    font-style: italic;
}

/*
** Buttons
*/
.bttn {
    --bttnsize: 64px;
    font-family: 'barlowc-bd', sans-serif;
    font-size: 20px;
    line-height: calc(var(--bttnsize) - 4px);
    min-width: 145px;
    height: var(--bttnsize);
    padding: 0 45px;
    text-align: center;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--siteradius);
    transition: all 0.3s ease-in-out;
}

.bttn-auto { min-width: 0; }

.bttn-primary {
    color: var(--white);
    border-color: var(--primary);
    background-color: var(--primary);
}

.bttn-primary:hover {
    color: var(--white);
    border-color: var(--primary-a);
    background-color: var(--primary-a);
    text-decoration: none;
}

.bttn-white {
    color: var(--white);
    border-color: var(--white);
    background-color: transparent;
}

.bttn-white:hover {
    color: var(--black);
    border-color: var(--white);
    background-color: var(--white);
    text-decoration: none;
}

.bttn-sm {
    --bttnsize: 45px;
    padding: 0;
}

.bttn-rounded {
    border-radius: 20px;
}

.bttn-sitecta {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 20px;
    margin: 0 auto;
    width: 150px;
    border: 2px solid #424242;
}


/*
** Header
*/

.site-header {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--primary);
    transition: all 0.3s ease-in-out;
    z-index: 10;
}

.home .site-header { background-color: var(--blue); }

.custom-logo-link { position: relative; z-index: 2; }

.secondary-logo { display: none; }

.site-menutoggle { margin-left: auto; }

.sitemenu {
    --topOff: 105px;
    display: flex;
    position: fixed;
    top: var(--topOff);
    left: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100vh - var(--topOff));
    padding: 0 0 var(--topOff);
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.sitemenu .container { padding: 0 20px; }

.menu-toggle {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    width: 23px;
    height: 23px;
    cursor: pointer;
    margin-left: auto;
    z-index: 2;
    transition: 0.3s ease-in-out;
}

.menu-toggle span {
    --bgcolor: var(--white);
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    height: 5px;
}

.menu-toggle span strong,
.menu-toggle span::before,
.menu-toggle span::after {
    content: "";
    width: 5px;
    height: 5px;
    background-color: var(--bgcolor);
    transition: all 0.2s ease;
}

.menu-toggle:hover span:first-of-type::before, input:checked ~ span:first-of-type::before { transform: translate(9px, 9px); }
.menu-toggle:hover span:first-of-type::after, input:checked ~ span:first-of-type::after { transform: translate(-9px, 9px); }
.menu-toggle:hover span:last-child::before, input:checked ~ span:last-child::before { transform: translate(9px, -9px); }
.menu-toggle:hover span:last-child::after, input:checked ~ span:last-child::after { transform: translate(-9px, -9px); }

.menu-toggle input:checked ~ span { --bgcolor: var(--black); }

.headernav {
    font-size: 22px;
    line-height: 38px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.headernav > li > a {
    font-size: 55px;
    line-height: 75px;
}

.headernav a {
    color: var(--black);
    text-decoration: none !important;
}

/*Menu Open*/
.menu-open .site-header { background-color: var(--white); }
.menu-open .primary-logo { display: none; }
.menu-open .secondary-logo { display: block; }
.menu-open .sitemenu { opacity: 1; visibility: visible; }
.menu-open .menu-toggle { transform: rotate(45deg); }

body:not(.menu-open) .headernav {
    transform: translateX(50px);
    transition: all .75s ease-out;
}

/*
** Hero
*/
.hero-slide {
    min-height: calc(100vh - 105px);
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 105px);
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--blue);
}

.hero-container {
    position: relative;
    width: 100%;
    padding-bottom: 8vh;
    text-align: center;
    z-index: 2;
}

.hero-slideimg {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    /* animation: fade 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s forwards; */
    opacity: 0;
    overflow: hidden;
}

.hero-slideimg img {
    width: auto;
    width: 100%;
    max-height: calc(100% - 4%);
}

.hero h1 {
    position: relative;
    font-size: 150px;
    font-size: 9.8vw;
    line-height: 138px;
    line-height: 0.99em;
    margin-bottom: 30px;
    letter-spacing: 0.11em;
}

.hero h1 .plus {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 14vw;
    bottom: 80%;
    /* width: 124px;
    height: 124px; */
    z-index: 3;
}

.hero h1 .plus::before {
    content: "\e904";
    font-family: 'bs';
    font-size: 0.66em;
    line-height: 1;
    padding-left: 0;
    color: #EC5A07;
    letter-spacing: 0;
    overflow: hidden;
}

.hero h1 span {
    /*animation: revealY 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.3s forwards;*/
    opacity: 0;
    overflow: hidden;
}

.hero .h1big {
    display: block;
    font-size: 1.5em;
    line-height: 0.85em;
    letter-spacing: 0;
}

.hero-cta {
    /*animation: revealY 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.8s forwards;*/
    opacity: 0;
    overflow: hidden;
}

.scrollReveal {
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.fade.revealIt {
    animation: fade 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s forwards;
}

.moveY.revealIt {
    animation: moveY 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s forwards;
}

.fadeRotate.revealIt {
    animation: fadeRotate 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.3s forwards;
}

@keyframes fade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes moveY {
    0% { opacity: 0; transform: translate(0,70%); }
    100% { opacity: 1; transform: translate(0,0); }
}

@keyframes fadeRotate {
    0% { opacity: 0; transform: rotate(2024deg); }
    100% { opacity: 1; transform: rotate(0deg); }
}

/*General*/
section.section {
    padding: 70px 0;
}

section.section h2 {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

section.section h2::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    width: 75px;
    height: 5px;
    background-color: var(--black);
}

section .text-center h2::after {
    margin-left: auto;
    margin-right: auto;
    right: 0;
}

section.bg--primary h2::after { background-color: var(--white); }


/*Online P*/
.onlinep { position: relative; display: flex; flex-wrap: wrap; align-items: center; min-height: 100vh; }
.onlinep > .container { width: 100%; }
.onlinep p { font-size: 32px; line-height: 38px; margin-bottom: 70px; }
.onlinep-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    max-width: 50%;
    text-align: right;
}

.onlinep-bg .plus {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 96%;
    bottom: 100%;
    width: 93px;
    height: 93px;
    z-index: 3;
}

.onlinep-bg .plus::before {
    content: "\e904";
    font-family: 'bs';
    font-size: 93px;
    font-size: 4.65em;
    line-height: 1;
    color: #F2CC47;
}

.onlinep-bg img {
    height: auto;
}

/*BS Slides*/
/* .bsslides { overflow: hidden; } */

.bgslide {
    position: relative;

    position: sticky;
    top: 0;

    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 70px 0;
}

.bgslide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bgslide-img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.2;
    z-index: 1;
}

.bgslide-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.bgslide .container-fluid {
    position: relative;
    text-align: center;
    z-index: 2;
}

section.bsslides h2 {
    font-size: 150px;
    max-width: 1030px;
    font-size: 70px;
    padding-bottom: 0;
    margin: 0 auto;
    color: var(--white);
}

section.bsslides h2::after { display: none; }

.bscollap-head {
    padding: 14px 0;
    cursor: pointer;
}

.bscollap-head .container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bscollap-head i {
    display: inline-block;
    flex: 0 0 38px;
    font-size: 12px;
    line-height: 38px;
    width: 38px;
    height: 38px;
    padding: 0;
    margin-left: auto;
    border: 0;
    text-align: center;
    background: transparent;
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
}

.bsacc-active i { transform: rotate(180deg); }

.bscollap-body {
    display: none;
    padding: 5px 0 40px;
}

/*FAQ*/
.faq-item {
    padding: 20px;
    padding: 15px;
    border-bottom: 1px solid var(--gray);
    border-radius: var(--siteradius);
    /* background-color: var(--lightgray); */
}

.faq-item+.faq-item {
    margin-top: 15px;
}

.faq-item.faqopen {
    background-color: var(--lightgray);
}

.faq-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-head h3 {
    margin-right: 20px;
    margin-bottom: 0;
}

.faq-btn {
    font-size: 16px;
    line-height: 28px;
    transform: rotate(0deg);
    transition: all .3s ease-in-out;
}

.faqopen .faq-btn {
    color: var(--secondary);
    transform: rotate(180deg);
}

.faq-body {
    display: none;
    padding: 15px 0 0;
}

/*About*/
.aboutbs {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background-image: url('../images/icon-b.svg');
    background-repeat: no-repeat;
    background-size: 410px;
    background-position: bottom left;
}
.aboutquote { font-size: 38px; line-height: 45px; }
.aboutquote span { font-size: 24px; line-height: 30px; font-style: normal; }

.bsexpert p { margin-bottom: 60px; }
.bsexpert p a { color: var(--white); text-decoration: underline; }

/*Contact*/
.bscontact p {
    font-size: 32px;
    line-height: 38px;
    /* max-width: 600px; */
    margin-bottom: 40px;
}

.bscontact-inner p {
    max-width: 100%;
}

.contact_quiz label {
    display: flex;
    align-items: center;
}

.contact_quiz label>span {
    flex: 0 0 auto;
    padding-right: 15px;
}

.contact_quiz label>input {
    flex: 0 0 80px;
    margin-left: 10px;
    width: 80px;
}

/*
** Footer
*/

.site-footer {
    padding: 70px 0 60px;
}

.foo-logo img {
    width: 150px;
    height: auto;
}

.foonav {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.foonav a { color: var(--white); }

.foosocial { gap: 40px; margin-bottom: 60px; }

.foo-contact {
    font-size: 20px;
    line-height: 24px;
}

.foo-contact a { color: var(--white); }

.fooptlinks { font-size: 16px; gap: 16px; margin-top: 20px; }

.fooptlinks a { color: rgba(255, 255, 255, 1); }

.foo-cdetails a { color: rgba(255, 255, 255, 1); }

.btmtop {
    display: block;
    position: fixed;
    right: 10px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    font-size: 10px;
    line-height: 40px;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    border: 0;
    border: 2px solid #424242;
    outline: none;
    border-radius: 100%;
    box-shadow: 0px 0px 15px 0px rgb(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    z-index: 10;
}

.btmtop .icon-angle-down {
    color: var(--white);
    transform: rotate(180deg);
}

.btmtop:hover {
    background-color: var(--primary-a);
    border: 2px solid #525252;
    outline: none;
    box-shadow: 0px 0px 28px 0px rgb(0, 0, 0, 0.1);
}

.btmtop.showin {
    opacity: 1;
    visibility: visible;
}

/*
** About US
*/

.hero-inner {
    padding: 110px 0;
}

.hero-about img {
    border-radius: 20px;
}

.makeimgsr img {
    border-radius: 20px;
    filter: grayscale(1);
    transition: 0.3s ease-in-out;
}

.makeimgsr:hover img { filter: grayscale(0); }

/*Blog*/
.bloglist {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.blogc {
    display: flex;
    flex: 1 0 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
}

.blogc-box {
    display: flex;
    flex-direction: column;
    position: relative;
}

.blogc-media {
    overflow: hidden;
    height: 250px;
}

.blogc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1) rotate(0deg);
    transition: 0.8s cubic-bezier(0, 0.03, 0, 0.9);
}


.blogc:hover .blogc-media img {
    transform: scale(1.2) rotate(-1deg);
}

.blogc-info {
    flex: 1px;
    padding: 20px;
    color: #fff;
    background: #000;
}

.blogc-meta {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.blogc h3 a {
    font-size: 30px;
    line-height: 1.36em;
    margin-bottom: 0;
    color: #fff;
    text-decoration: none;
}

.blogc h3 {
    margin: 0 0 10px;
}

.blogc-date {
    position: absolute;
    top: 10px;
    left: 15px;
    padding: 0px 5px;
    background: #000;
    border-radius: 4px;
}

.blogc-cats a {
    color: #fff;
    text-decoration: none;
}

.blogc-cats a:not(:first-child)::before {
    content: " | ";
    margin: 0 5px;
}

.blogc-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 18px;
    line-height: 1.6;
    overflow: hidden;
}

.blogc-cta { margin-top: auto; }

.blogc-cta a { margin-top: 20px; }


/* Pagination */
.pagination .nav-links { display: flex; flex-wrap: wrap; margin-top: 50px; justify-content: center; }
.pagination .page-numbers {
    display: inline-flex;
    font-size: 16px;
    line-height: 1.2;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 10px;
    margin: 0 4px;
    color: var(--primary);
    background-color: var(--lightgray);
    text-decoration: none;
    transition:0.3s all ease-in-out;
}
.pagination .page-numbers:not(span):hover{ opacity:0.8; }
.pagination span.page-numbers { background-color: var(--primary); color: var(--white); opacity: 1; }
.pagination .page-numbers.next, .pagination .page-numbers.prev { font-size: 14px; }
.pagination .page-numbers.prev i { display: inline-block; transform: rotate(180deg); transform-origin: center center; }
.pagination .page-numbers.next i { display: inline-block; transform-origin: center center; }

/*Blog Single*/

.blogthumb img {
    border-radius: 20px;
}

.blogcats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.blogcats a {
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    padding: 4px 11px;
    border-radius: 3px;
    color: var(--white);
    text-decoration: none;
    background-image: linear-gradient(0deg, var(--primary), #575353 100%);
    background-size: 100%;
    background-position: center;
    transition: 0.3s ease-in-out;
}

.blogcats a:hover {
    color: var(--white);
    background-size: 400%;
}

.blogtags {
    justify-content: flex-start;
    margin-top: 40px;
}

.blogmeta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 16px;
}

.blogmeta span + span {
    position: relative;
}

.blogmeta span + span::before {
    content: "|";
    margin-left: 6px;
    margin-right: 6px;
}

.bspage h2, .bspage .h2 { font-size: 62px; margin-bottom: 24px; }
.bspage h3, .bspage .h3, .bspage h4, .bspage .h4, .bspage h5, .bspage .h5, .bspage h6, .bspage .h6 { margin-bottom: 20px; }
.bspage .table-responsive { border: 0; width: 100%; max-width: 100%; padding-bottom: 5px; margin: 20px 0; overflow: auto; }
.bspage table { width: 100%; margin-bottom: 20px; border-collapse: collapse; }
.bspage .table-responsive table { width: auto; max-width: unset; margin: 0 0; }
.bspage table td, .bspage table th { font-size: 18px; line-height: 1.4em; padding: 8px 12px; border: 1px solid #000000; }
.blogsec a { display: inline; }
.blogsec .breaklinks a { word-break: break-all; }
.blogsec p img + img { margin-top: 30px; }
.blogsec p a, .blogsec p span { display: inline; }

.blogsec .gallery-columns-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/*Share Block*/
.shareblock {
    max-width: 894px;
    margin: 100px auto 0;
}

.shareblock--inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 15px 20px;
    border-radius: 10px;
    background-color: var(--lightgray);
    margin-top: 40px;
}

.shareonsocial {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.shareonsocial ul {
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 20px;
    padding: 0;
    margin: 0 0 0 15px;
}

.shareonsocial li { line-height: 26px; margin-bottom: 0; }

.shareonsocial ul li + li { margin-left: 15px; }

.shareonsocial { margin-top: 20px; }

.shareonsocial .icon-email { font-size: 17px; }

.shareonsocial li a, .shareonsocial li a i { vertical-align: top; line-height: 26px; }

.shareblock .author {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    align-items: flex-start;
    column-gap: 15px;
}

.author-desc { font-size: 18px; line-height: 26px; }

.author-name { font-size: 24px; line-height: 32px; margin-top: 6px; margin-bottom: 6px; }

.author-info {
    flex: 1 0 100%;
    justify-content: center;
    text-align: center;
}

.author-media {
    display: flex;
    width: 100px;
    height: 100px;
    margin: -65px auto 10px;
    background: var(--white);
    border-radius: 100%;
    padding: 0;
    overflow: hidden;
}

.author-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-default table td,
.page-default table th {

    padding: 5px 10px;

    border: 1px solid #ccc;

    text-align: left;

}

.grecaptcha-badge { opacity: 0; visibility: hidden; }