@import url('https://fonts.googleapis.com/css?family=Poppins:400,400i,500,500i,600,700,800,800i,900&amp;display=swap');
/*New Loader*/
.hnp-loader-opacity {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.7);
    z-index: 99999;
    display: none;
}
.hnp-loader {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.loader {
    width: 50px;
    height: 50px;
    position: absolute;
}

.item-1 {
    background-color: #c6294c;
    top: 0;
    left: 0;
    z-index: 1;
    animation: item-1_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
	-webkit-animation: item-1_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
	-moz-animation: item-1_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
}

.item-2 {
    background-color: #253960;
    top: 0;
    right: 0;
    animation: item-2_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
    -webkit-animation: item-2_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
    -moz-animation: item-2_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
}

.item-3 {
    background-color: #c6294c;
    bottom: 0;
    right: 0;
    z-index: 1;
    animation: item-3_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
    -webkit-animation: item-3_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
    -moz-animation: item-3_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
}

.item-4 {
    background-color: #253960;
    bottom: 0;
    left: 0;
    animation: item-4_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
    -webkit-animation: item-4_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
    -moz-animation: item-4_move 1.8s cubic-bezier(.6,.01,.4,1) infinite;
}

@keyframes item-1_move {
    0%, 100% {
		transform: translate(0, 0);
		-ms-transform: translate(0,0);
		-webkit-transform: translate(0,0);
		-moz-transform: translate(0,0);
}
    25% {
		transform: translate(0, 50px);
		-ms-transform: translate(0, 50px);
		-webkit-transform: translate(0, 50px);
		-moz-transform: translate(0, 50px);
	} 
    50% {
		transform: translate(50px, 50px);
		-ms-transform: translate(50px, 50px);
		-webkit-transform: translate(50px, 50px);
		-moz-transform: translate(50px, 50px);
	} 
    75% {
		transform: translate(50px, 0);
		-ms-transform: translate(50px, 0);
		-webkit-transform: translate(50px, 0);
		-moz-transform: translate(50px, 0);
	} 
}

@keyframes item-2_move {
    0%, 100% {
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		-moz-transform: translate(0, 0);
}
    25% {
		transform: translate(-50px, 0);
		-ms-transform: translate(-50px, 0);
		-webkit-transform: translate(-50px, 0);
		-moz-transform: translate(-50px, 0);
	} 
    50% {
		transform: translate(-50px, 50px);
		-ms-transform: translate(-50px, 50px);
		-webkit-transform: translate(-50px, 50px);
		-moz-transform: translate(-50px, 50px);
	} 
    75% {
		transform: translate(0, 50px);
		-ms-transform: translate(0, 50px);
		-webkit-transform: translate(0, 50px);
		-moz-transform: translate(0, 50px);
	} 
}

@keyframes item-3_move {
    0%, 100% {
		transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(0, 0);
}
    25% {
		transform: translate(0, -50px);
		-ms-transform: translate(0, -50px);
		-webkit-transform: translate(0, -50px);
		-moz-transform: translate(0, -50px);
	} 
    50% {
		transform: translate(-50px, -50px);
		-ms-transform: translate(-50px, -50px);
		-webkit-transform: translate(-50px, -50px);
		-moz-transform: translate(-50px, -50px);
	} 
    75% {
		transform: translate(-50px, 0);
		-ms-transform: translate(-50px, 0);
		-webkit-transform: translate(-50px, 0);
		-moz-transform: translate(-50px, 0);
	} 
}

@keyframes item-4_move {
    0%, 100% {
		transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(0, 0);
}
    25% {
		transform: translate(50px, 0);
		-ms-transform: translate(50px, 0);
		-webkit-transform: translate(50px, 0);
		-moz-transform: translate(50px, 0);
	} 
    50% {
		transform: translate(50px, -50px);
		-ms-transform: translate(50px, -50px);
		-webkit-transform: translate(50px, -50px);
		-moz-transform: translate(50px, -50px);
	} 
    75% {
		transform: translate(0, -50px);
			-ms-transform: translate(0, -50px);
			-webkit-transform: translate(0, -50px);
			-moz-transform: translate(0, -50px);
	} ;
}
/*end*/ 
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
*{outline:none;}
body {
    background-color:#f9f8f7;
    color: #222;
    padding-right:0 !important;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
}
#wrapper{position:relative;overflow-x:hidden}
/* .container{max-width:1280px;} */
a {
    color: #253960;
    transition: 0.5s;
}
a:hover, a:active, a:focus {
    outline: none;
    text-decoration: none;
}
a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    outline: 0;
}
a.bg-primary:hover, a.bg-primary:focus, button.bg-primary:hover, button.bg-primary:focus{background-color:#c6294c}
p {
    padding: 0;
    margin: 0 0 20px 0;
    font-size:0.9375rem;
    font-weight:400;
    font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    margin: 0 0 10px 0;
    padding: 0;
}

.form-control{
    display: block;
	height: auto;
    width: 100%;
    padding: 0.495rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus, .custom-select:focus{border-color:#253960;box-shadow:none;outline:0;}
.btn{display:inline-block;
     font-weight: 400;
     text-align: center;
     box-shadow:none !important;
     outline:none !important;
     white-space: nowrap;
     padding: 0.625rem 1.85rem;
     vertical-align: middle;
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
     border: 1px solid transparent;
     transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
     border-radius:30px;}
.btn:focus
{
    box-shadow:none;
    outline:0;
}
select.form-control:not([size]):not([multiple]){height:auto;}
.text-primary{color:#c6294c !important}
.text-secondary{color:#253960 !important}
.text-blue{color:#253960 !important}
.text-orange{color:#ef8f07 !important}
.text-success{color:#7ed321 !important}
.text-green{color:#168a09 !important}
.text-red{color:#168a09 !important}
.text-black{color:#000000 !important}

/*start primary button*/
.btn-primary
{
    background-color:#c6294c;
    border-color:#c6294c;
    color:#fff
}
.btn-primary:hover
{
    background-color:#c31d42;
    border-color:#a20f30;
    color:#fff
}
.btn-primary:focus, .btn-primary.focus {
    box-shadow:none;
    outline: none;
}
.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #d9365a;
    border-color: #a20f30;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #c31d42;
    border-color: #a20f30;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow:none;
    outline: none;
}
/*end primary button*/

/*start secondary button*/
.btn-secondary
{
    background-color:#253960;
    border-color:#253960;
    color:#fff
}
.btn-secondary:hover
{
    background-color:#192a4a;
    border-color:#0f1e3a;
    color:#fff
}
.btn-secondary:focus, .btn-secondary.focus {
    box-shadow:none;
    outline: none;
}
.btn-secondary.disabled, .btn-secondary:disabled {
    color: #fff;
    background-color: #2a4b8c;
    border-color: #0f1e3a;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #192a4a;
    border-color: #0f1e3a;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow:none;
    outline: none;
}
/*end secondary button*/

/*start white button*/
.btn-white
{
    background-color:#fff;
    border-color:#fff;
    color:#253960
}
.btn-white:hover
{
    background-color:#fafafa;
    border-color:#f1f1f1;
    color:#253960
}
.btn-white:focus, .btn-white.focus {
    box-shadow:none;
    outline: none;
}
.btn-white.disabled, .btn-white:disabled {
    color: #253960;
    background-color: #f1f1f1;
    border-color: #f1f1f1;
}
.btn-white:not(:disabled):not(.disabled):active, .btn-white:not(:disabled):not(.disabled).active,
.show > .btn-white.dropdown-toggle {
    color: #253960;
    background-color: #fafafa;
    border-color: #fafafa;
}
.btn-white:not(:disabled):not(.disabled):active:focus, .btn-white:not(:disabled):not(.disabled).active:focus,
.show > .btn-white.dropdown-toggle:focus {
    box-shadow:none;
    outline: none;
}
/*end white button*/

/*start green button*/
.btn-green
{
    background-color:#7ed321;
    border-color:#7ed321;
    color:#fff;
}
.btn-green:hover
{
    background-color:#78ca1f;
    border-color:#6fbd19;
    color:#fff;
}
.btn-green:focus, .btn-green.focus {
    box-shadow:none;
    outline: none;
}
.btn-green.disabled, .btn-green:disabled {
    color: #fff;
    background-color: #a3f14e;
    border-color: #98e247;
}
.btn-green:not(:disabled):not(.disabled):active, .btn-green:not(:disabled):not(.disabled).active,
.show > .btn-green.dropdown-toggle {
    color: #fff;
    background-color: #78ca1f;
    border-color: #6fbd19;
}
.btn-green:not(:disabled):not(.disabled):active:focus, .btn-green:not(:disabled):not(.disabled).active:focus,
.show > .btn-green.dropdown-toggle:focus {
    box-shadow:none;
    outline: none;
}
/*end green button*/

/*start orange button*/
.btn-orange
{
    background-color:#f6921e;
    border-color:#dc7f13;
    color:#fff;
}
.btn-orange:hover
{
    background-color:#f58606;
    border-color:#e47a00;
    color:#fff;
}
.btn-orange:focus, .btn-orange.focus {
    box-shadow:none;
    outline: none;
}
.btn-orange.disabled, .btn-orange:disabled {
    color: #253960;
    background-color: #fba33e;
    border-color: #ea850f;
}
.btn-orange:not(:disabled):not(.disabled):active, .btn-orange:not(:disabled):not(.disabled).active,
.show > .btn-orange.dropdown-toggle {
    color: #253960;
    background-color: #f6921e;
    border-color: #ea850f;
}
.btn-orange:not(:disabled):not(.disabled):active:focus, .btn-orange:not(:disabled):not(.disabled).active:focus,
.show > .btn-orange.dropdown-toggle:focus {
    box-shadow:none;
    outline: none;
}
/*end orange button*/

/*start gray button*/
.btn-gray
{
    background-color:#dbdbdb;
    border-color:#b9b9b9;
    color:#5f5f5f;
}
.btn-gray:hover
{
    background-color:#cac8c8;
    border-color:#b9b9b9;
    color:#5f5f5f;
}
.btn-gray:focus, .btn-gray.focus {
    box-shadow:none;
    outline: none;
}
.btn-gray.disabled, .btn-gray:disabled {
    color: #5f5f5f;
    background-color: #dbdbdb;
    border-color: #b9b9b9;
}
.btn-gray:not(:disabled):not(.disabled):active, .btn-gray:not(:disabled):not(.disabled).active,
.show > .btn-gray.dropdown-toggle {
    color: #253960;
    background-color: #dbdbdb;
    border-color: #b9b9b9;
}
.btn-gray:not(:disabled):not(.disabled):active:focus, .btn-gray:not(:disabled):not(.disabled).active:focus,
.show > .btn-gray.dropdown-toggle:focus {
    box-shadow:none;
    outline: none;
}
/* end orange button */

/* start outline primary button */
.btn-outline-primary
{
    background-color: transparent;
    background-image: none;
    border-color:#c6294c;
    color:#c6294c;
}
.btn-outline-primary:hover
{
    background-color:#c6294c;
    border-color:#c6294c;
    color:#fff;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow:none;
    outline: none;
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #fff;
    background-color: #d9365a;
    border-color: #a20f30;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #c31d42;
    border-color: #a20f30;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow:none;
    outline: none;
}
/* end outline primary button */

/* start outline secondary button*/
.btn-outline-secondary
{
    background-color: transparent;
    background-image: none;
    border-color:#253960;
    color:#253960;
}
.btn-outline-secondary:hover
{
    background-color:#253960;
    border-color:#253960;
    color:#fff;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow:none;
    outline: none;
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #fff;
    background-color: #2a4b8c;
    border-color: #0f1e3a;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #192a4a;
    border-color: #0f1e3a;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow:none;
    outline: none;
}
/* end outline secondary button*/

/* start outline white button*/
.btn-outline-white
{
    background-color:transparent;
    background-image:none;
    border-color:#fff;
    color:#fff;
}
.btn-outline-white:hover
{
    background-color:#fff;
    border-color:#f1f1f1;
    color:#253960;    
}
.btn-outline-white:focus, .btn-outline-white.focus {
    box-shadow:none;
    outline: none;
}
.btn-outline-white.disabled, .btn-outline-white:disabled {
    color: #253960;
    background-color: #f1f1f1;
    border-color: #f1f1f1;
}
.btn-outline-white:not(:disabled):not(.disabled):active, .btn-outline-white:not(:disabled):not(.disabled).active,
.show > .btn-outline-white.dropdown-toggle {
    color: #253960;
    background-color: #fafafa;
    border-color: #fafafa;
}
.btn-outline-white:not(:disabled):not(.disabled):active:focus, .btn-outline-white:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-white.dropdown-toggle:focus {
    box-shadow:none;
    outline: none;
}
/* end outline white button*/

/* strat outline green button*/
.btn-outline-green
{
    background-color:transparent;
    background-image:none;
    border-color:#7ed321;
    color:#7ed321;
}
.btn-outline-green:hover
{
    background-color:#7ed321;
    border-color:#7ed321;
    color:#fff; 
}
.btn-outline-green:focus, .btn-outline-green.focus {
    box-shadow:none;
    outline: none;
}
.btn-outline-green.disabled, .btn-outline-green:disabled {
    color: #253960;
    background-color: #a3f14e;
    border-color: #98e247;
}
.btn-outline-green:not(:disabled):not(.disabled):active, .btn-outline-green:not(:disabled):not(.disabled).active,
.show > .btn-outline-green.dropdown-toggle {
    color: #253960;
    background-color: #78ca1f;
    border-color: #6fbd19;
}
.btn-outline-green:not(:disabled):not(.disabled):active:focus, .btn-outline-green:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-green.dropdown-toggle:focus {
    box-shadow:none;
    outline: none;
}
/* end outline green button*/

/* start outline orange button*/
.btn-outline-orange
{
    background-color:transparent;
    background-image:none;
    border-color:#f6921e;
    color:#f6921e;
}
.btn-outline-orange:hover
{
    background-color:#f6921e;
    border-color:#f6921e;
    color:#fff; 
}
.btn-outline-orange:focus, .btn-outline-orange.focus {
    box-shadow:none;
    outline: none;
}
.btn-outline-orange.disabled, .btn-outline-orange:disabled {
    color: #253960;
    background-color: #fba33e;
    border-color: #ea850f;
}
.btn-outline-orange:not(:disabled):not(.disabled):active, .btn-outline-orange:not(:disabled):not(.disabled).active,
.show > .btn-outline-orange.dropdown-toggle {
    color: #253960;
    background-color: #f6921e;
    border-color: #ea850f;
}
.btn-outline-orange:not(:disabled):not(.disabled):active:focus, .btn-outline-orange:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-orange.dropdown-toggle:focus {
    box-shadow:none;
    outline: none;
}
/* end outline orange button*/

/* start outline gray button*/
.btn-outline-gray
{
    background-color:transparent;
    background-image:none;
    border-color:#dbdbdb;
    color:#5f5f5f;
}
.btn-outline-gray:hover
{
    background-color:#dbdbdb;
    border-color:#dbdbdb;
    color:#5f5f5f; 
}
.btn-outline-gray:focus, .btn-outline-gray.focus {
    box-shadow:none;
    outline: none;
}
.btn-outline-gray.disabled, .btn-outline-gray:disabled {
    color: #5f5f5f;
    background-color: #dbdbdb;
    border-color: #b9b9b9;
}
.btn-outline-gray:not(:disabled):not(.disabled):active, .btn-outline-gray:not(:disabled):not(.disabled).active,
.show > .btn-outline-gray.dropdown-toggle {
    color: #253960;
    background-color: #dbdbdb;
    border-color: #b9b9b9;
}
.btn-outline-gray:not(:disabled):not(.disabled):active:focus, .btn-outline-gray:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-gray.dropdown-toggle:focus {
    box-shadow:none;
    outline: none;
}
/* end outline gray button */
.control-focus-none:focus{box-shadow:none;}

.bg-transparent{background-color: transparent !important}
.bg-primary{background-color:#c6294c !important}
.bg-secondary{background-color:#253960 !important}
.bg-green{background-color:#7ed321 !important}
.bg-cyen{background-color:#34EDEA !important}
.bg-orange{background-color:#f6921e !important}
.bg-red{background-color:#f92d34 !important}
.bg-white{background-color:#fff !important;/*color:#53565a !important;*/}
.bg-black{background-color:#000 !important;}
.bg-offwhite{background-color:#f9f9f9 !important;}
.border-radius-none{border-radius:0 !important;}
.border{border:1px solid #f1f1f1 !important}
.border-radius-3{border-radius:3px;}
.b-b-gray-color{border-bottom-color:#c1c1c3}
.fs-12{font-size:12px !important;}
.section-block{padding:50px 0;width:100%;display:block;}
.section-header{width:100%;display:block;}
.main-header{position:relative;z-index:10;background-color:#fff;width:100%;border-bottom:1px solid #f5f5f5;}
/*BLOG LIST PAGE CSS*/
.blog-header{background-color:#fff;}
.blog-header .blog-logo{display:inline-block;padding:1rem 0}
.trustpilo-logo{padding:1rem 0}
.trustpilo-logo h5{font-weight:500;font-size:1rem;margin-bottom:5px;}
.trustpilo-logo a{font-size:14px;font-weight:500;color:#253960}
.trustpilo-logo a:hover{color:#c72d4b}

.menu-stiky{position:fixed;width:100%;top:0;z-index:9;
-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-keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@-moz-keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}


.blog-menu-wrapper{background-color:#253960}
.blog-menu .navbar{    
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style:none;}

.blog-menu nav .navbar-nav .nav-item .nav-link{
    height:3.125rem;
    line-height:3.125rem;
    font-size:.975rem;
    padding:0 1rem;
    text-align:center;
    float:left;
    width:100%;
    color:#fff;
    text-decoration: none;
}
.blog-menu nav .navbar-nav .nav-item .nav-link:hover {
    background-color: #c6294c;
}
.blog-search{height:50px;width:50px;border-radius:0;text-align:center;padding:0;background-color:#c72d4b;color:#fff;display:flex;justify-content:center;align-items:center;cursor:pointer}
.blog-serach-box{
	position: absolute;
    right: 0;
    top: 50px;
    background-color: #253960;
    padding: 15px;
    z-index: 1;
}
.blog-list{margin-top:0.325rem}
.blog-box{background-color:#fff;border:1px solid #E0DEDE;border-radius:5px;overflow:hidden;display:flex;flex-direction:column;height:100%;}
.blog-box .blog-img a{display:block}
.blog-box .blog-img img{min-height:262px;}
.blog-box .blog-info{display:flex;flex-direction:column;flex-grow:1;padding-top:20px;}
.blog-box .blog-info .blog-post-info{flex-grow:1;padding:0 20px;margin-bottom:10px}
.blog-box .blog-info .blog-post-info .blog-published-date{font-size:14px;color:#9F9F9F;}
.blog-box .blog-info .blog-post-info .blog-published-date i{margin-right:5px;}
.blog-box .blog-info .blog-post-info .blog-author{font-size:14px;}
.blog-box .blog-info .blog-post-info .blog-author span,
.blog-box .blog-info .blog-post-info .blog-author i{color:#9F9F9F}
.blog-box .blog-info .blog-post-info .blog-author .blog-author-name{color:#222;font-weight:500;margin-left:5px;}
.blog-box .blog-info .blog-title{flex-grow:1;padding:0 20px}
.blog-box .blog-info .blog-title h3{font-size:22px;font-weight:600}
.blog-box:hover .blog-info .blog-title h3 a{color:#c6294c}
.blog-box .blog-info .blog-short-desc{flex-grow:1;padding:0 20px}
.blog-box .blog-info .blog-short-desc p{text-overflow:ellipsis;overflow:hidden;display: -webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;}
.blog-box .blog-info .blog-footer{font-size:14px;padding:12px 20px;border-top:1px solid #e0dede;display:flex;color:#3f3f3f;position:relative;background-color:#fbfbfb;}
.blog-box .blog-info .blog-footer .blog-footer-left{ display:flex;padding-right:27px;}
.blog-footer-left .blog-comment{margin-right:10px;}
.blog-footer-left .blog-view{margin-right:10px;}
.blog-footer-left .blog-like{margin-right:10px;}
.blog-box .blog-info .blog-footer .blog-footer-right{ padding-left:20px;text-align:right;}
.blog-box .blog-info .blog-footer-category i, .blog-box .blog-info .blog-footer-category .blog-category-tag{color:#9f9f9f;}
.blog-footer{padding:50px 0}
.blog-footer h4{padding-bottom:10px;margin-bottom:0;position:relative;line-height:30px;font-size:20px;font-weight:500;margin-bottom:15px;}
.blog-footer h4:after,.blog-footer h4:before{position:absolute;content:'';height:5px;left:25%;bottom:0;}
.blog-footer h4:before{background-color:#c6294c;width:13%;z-index:1;-webkit-transform:skew(-45deg) translateX(-50%);transform:skew(-45deg) translateX(-50%);}
.blog-footer h4:after{width:50%;background-color:#253960;-webkit-transform:translateX(-50%);transform:translateX(-50%);}

.blog-footer-aboutus p{font-size:.925rem;margin-bottom:5px}
.blog-footer-aboutus p{font-size:.925rem;margin-bottom:5px}
.blog-footer-aboutus .blog-social-link{margin-top:20px;}
.blog-footer-aboutus .blog-social-link ul{padding:0;list-style-type:none}
.blog-footer-aboutus .blog-social-link ul li{display:inline-block}
.blog-footer-aboutus .blog-social-link ul li a{width: 46px;
    height: 46px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #c6294c;
    display: block;
    margin-right: 0.825rem;
    color: #222;
    position: relative;}
.blog-footer-aboutus .blog-social-link ul li a i{width: 38px;
    height: 38px;
    border: 1px solid #d4d4d4;
    border-radius: 50%;
    position: absolute;
    left: 2px;
    top: 2px;
    font-size: 1rem;
    line-height: 36px;}

.blog-footer-aboutus .blog-social-link > ul > li > a.facebook i:hover{background-color:#3b5796;color:#fff}
.blog-footer-aboutus .blog-social-link > ul > li > a.twitter i:hover{background-color:#55aded;color:#fff}
.blog-footer-aboutus .blog-social-link > ul > li > a.google-plus i:hover{background-color:#db4a37;color:#fff}
.blog-footer-aboutus .blog-social-link > ul > li > a.instagram i:hover{background-color:#e23f5c;color:#fff}
.blog-footer-aboutus .blog-social-link > ul > li > a.youtube i:hover{background-color:#cd1f1e;color:#fff}

.blog-footer-recent .recent-comment{padding:0;list-style-type:none }
.blog-footer-recent .recent-comment .cname{font-weight:500;display:inline-block}
.blog-footer-recent .recent-comment .date-label{padding:5px 8px;background-color:#253960;font-size:12px;border-radius:3px;margin-bottom:5px;display:inline-block;color:#fff;}

.blog-footer-latest ul{padding:0;list-style-type:none}
.blog-footer-latest ul li{position:relative;margin-bottom:10px}
.blog-footer-latest ul li a{display:block}
.blog-footer-latest ul li .post-img{width:80px;height:80px;line-height:0;text-align:center;float:right;position:relative;}
.blog-footer-latest ul li .post-img img{width:100%;height:100%;}
.blog-footer-latest ul li .post-info{margin-right:80px;padding:5px 15px;background:#f2f0eb;position:relative;height:80px;}
.blog-footer-latest ul li .post-info:after{content:"";display:block;position:absolute;right:0;top:0;width:4px;height:100%;background-color:#253960;webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;}
.blog-footer-latest ul li .post-info:hover:after{width:100%;}
.blog-footer-latest ul li .post-info h6{border-bottom:1px solid #ddd;padding-bottom:3px;}
.blog-footer-latest ul li .post-info h6, .blog-footer-latest ul li .post-info .date{font-size:13px;line-height:19px;font-weight:400;letter-spacing:0px;z-index:2;position:relative}
.blog-footer-latest ul li .post-info:hover h6, .blog-footer-latest ul li .post-info:hover .date{color:#fff}
.blog-footer-latest ul li .view-count{position: absolute !important;right:-13px;bottom:15px;width:26px;height:26px;line-height:26px;text-align:center;background-color:#c6294c;color:#fff;border-radius:3px;font-size:12px;z-index:3;}

.blog-main-title{padding:20px 0;background-color:#fff !important}
.blog-main-title h1{font-size:26px;font-weight:600;padding:0 10%;margin:0}
.blog-main-title ol{margin:0;background-color:#fff;padding-bottom:0}


.blog-main-img{margin-bottom:1rem}

.blog-left-content .author-date{background-color:#fff;border-radius:3px;position: relative}
.blog-left-content .author-date .post-author{padding:1.5rem 0 1.5rem 1rem;display:inline-block;font-size:15px;}
.blog-left-content .author-date .post-author .fn{border-bottom:1px dotted #ccc;}
.blog-left-content .author-date .date{font-size:15px;}
.blog-left-content .author-date .blog-next-prev-btn{position:absolute;top:13px;right:1rem;}
.blog-left-content .author-date .blog-next-prev-btn a:first-child{margin-right:0.5rem}
.blog-left-content .author-date .blog-next-prev-btn .btn{font-size:1rem;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    box-shadow: none !important;
    outline: none !important;
    white-space: nowrap;
    padding: 0.625rem 1.15rem;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-radius:30px;}

.blog-right-sidebar .card-body h5{border-left:5px solid #253960;padding-left:12px;}
.blog-categories ul{padding:0;list-style-type:none}
.blog-categories ul li{display:block}
.blog-categories ul li a{padding:10px 0px;border-bottom:1px dashed #ccc;display:block;transition:ease all 0.5s;}
.blog-categories ul li a > i{margin-right:5px;display:inline-block}
.blog-categories ul li a:hover{color:#c6294c;padding-left:1rem}

.blog-tag ul{padding:0;list-style-type:none}
.blog-tag ul li{display:inline-block}
.blog-tag ul li a{display:block;padding:6px 10px;font-size:13px;border:1px solid #ccc;border-radius:4px;margin-bottom:4px;transition:ease all 0.5s;
    -webkit-transition: ease all 0.5s;}
.blog-tag ul li a:hover{border-color:#c6294c;color:#fff;background-color:#c6294c}

.blog-share-now ul{padding:0;list-style-type:none;display:flex;justify-content:space-between;width:100%;}
.blog-share-now ul li{display:block;width:110px;}
.blog-share-now ul li a{display:block;padding:10px 0;font-size:16px;color:#fff;display:block;border-radius:4px;text-align:center;}
.blog-share-now ul li a:hover{margin-top:-7px;}


.blog-share-now ul li:nth-child(1) a {background-color:#3b5796}
.blog-share-now ul li:nth-child(2) a {background-color:#55aded}
.blog-share-now ul li:nth-child(3) a {background-color:#cd1f1e}
.blog-share-now ul li:nth-child(4) a {background-color:#e23f5c}

.blog-comment-form{position:relative;margin:1.5rem 0 3rem;border-top:1px solid #ddd;padding-top:10px;}

.blog-author-box{background-color:#fff;padding:1rem;display:flex;align-items:center;border-radius:4px;position:relative}
.blog-author-box .author-box-img{height:60px;width:60px;border:4px solid #ddd;border-radius:50px;display:flex;align-items:center;justify-content:center;}
.blog-author-box .author-box-name{font-weight:500;margin-left:0.5rem}
.blog-author-box .blog-bottom-nextprev-btn{position:absolute;right:1rem;}
.blog-author-box .blog-bottom-nextprev-btn .btn{padding:0.625rem 1.15rem;}
.blog-author-box .blog-bottom-nextprev-btn .btn:first-child{margin-right:0.5rem}

.blog-details-info h2{font-size:30px;font-weight:500}
.blog-details-info h3{font-size:22px;font-weight:500}
.blog-details-info h4{font-size:18px;font-weight:500}
.blog-details-info a{color:#007bff}
.blog-details-info a:hover{text-decoration:underline}

.scrollTop {
    position: fixed;
    z-index:99;
    right: 20px;
    bottom: 60px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    background-color:#c6294c;
    height:40px;
    line-height:10px;
    width:40px;
    text-align:center;
    border-radius:50%;
    opacity: 0;
	padding:10px 0;
    transition: all 0.4s ease-in-out 0s;
    box-shadow: 0 0 0 rgba(204,169,44,0.4);
    animation: scrollToppulse 2s infinite;
}
.scrollTop:hover{background-color:#c6294c;box-shadow:0 16px 22px 0 rgba(90,91,95,.3);animation: none}
.scrollTop a {
    font-size: 18px;
    color: #fff;
}

/*----- New Search CSS from (chris-search.php) - 18-03-2021 -----*/
i { margin-right: 0.25rem; }
.filter-grayscale { filter: grayscale(1); }
.filter-blur { filter:blur(5px); }
.product-delivery-status { font-size: 0.875rem; }
.product-stock .product-stock-status { font-weight: 700; }
.product-delivery-status { font-weight: 700; }
.product-rating { color: #f9d241; }
.search-results-nav { background-color: #d1d1d1; }
.nav-pills .nav-link.active, .nav-pills .show>.nav-link { background-color: #c6294c; }
.product-favourite-btn > i { padding-left: 4px; }


@-webkit-keyframes scrollToppulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(198,41,76,0.4);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(198,41,76,0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(198,41,76,0);
    }
}
@keyframes scrollToppulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(198,41,76,0.4);
        box-shadow: 0 0 0 0 rgba(198,41,76,0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(198,41,76,0);
        box-shadow: 0 0 0 10px rgba(198,41,76,0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(198,41,76,0);
        box-shadow: 0 0 0 0 rgba(198,41,76,0);
    }
}

.blog-pagination{text-align:center;margin:1rem 0 1.5rem;}
.blog-pagination a{padding:8px 12px;background-color:#ffffff;border-radius:4px;display:inline-block;margin:0 3px;min-width:44px;border:1px solid #ddd;}
.blog-pagination a:hover, .blog-pagination a.active{background-color:#253960;color:#fff;border-color:#1d2d4a;}
.category-title{position:relative;
    font-size:30px;
    font-weight:normal;
    color:#fff;
    border-left:8px solid #c82b53;
    padding:5px 15px;
    background-color:#253960;
    display:inline-block;
    margin-top:0.5rem;}


@media (min-width:2080px){}
@media (max-width: 1366px){}
@media (max-width: 1024px){}
@media only screen and (device-width:768px) {}
/*----------- iPhone X -----------*/ 

@media only screen and (min-device-width: 375px) and (max-device-width: 823px) and (-webkit-min-device-pixel-ratio: 3) { }
@media(min-width:768px) {}
@media (max-width:767px){
    /*HOME PAGE RESPONSIVE CSS*/
    .header-logo{display:none}
    .blog-menu-wrapper{background-color:#fff}
    .blog-menu nav .navbar-nav .nav-item .nav-link{color: #fff;background-color:#253960;text-align:left;border-bottom:1px dashed #3259a5;}
    .blog-header .blog-logo{width:50%;margin:0;padding:0.5rem 0 0.5rem 1rem;}
    .blog-menu{padding:0}
    .blog-menu .navbar-toggler{position:absolute;right:1rem;top:7px;}

    .blog-left-content .author-date{padding:1rem;text-align:center;}
    .blog-left-content .author-date .post-author{padding:0;display:block;font-size:15px;}
    .blog-left-content .author-date .blog-next-prev-btn{position:relative;margin-top:10px;top:0;width:100%;text-align:center;right:0;}
    .blog-author-box{display:block}
    .blog-author-box .author-box-img{display:inline-flex;margin:0;}
    .blog-author-box .blog-bottom-nextprev-btn{position:relative;right:0;width:100%;text-align:center;margin-top:10px;}
    .blog-share-now ul li{width:85px;}
    .blog-details-info h2{font-size:24px;}
    .blog-details-info h3{font-size:20px;}
    .blog-details-info h4{font-size:18px;}
    .category-title{font-size:24px;padding:6px 10px;margin:0;display:block}

}
@media only screen and (min-width:375px) and (max-width:812px){}
@media (max-width:568px){}
@media (max-width:360px){}


/* customize - 3sep 2021 */
.blog-serach-box{
    left: 0;
}
.blog-serach-box  .form-control{
    width: calc(100% - 90px);
}
.blog-serach-box  button.btn.btn-blog-serach.my-sm-0 {
    background: #fff;
    border-radius: 5px;
    height: 42px;
}
/* 11sep21 */
.blog-menu nav .navbar-nav .nav-item .nav-link{
    font-size: 13px;
    line-height: 1.3;
    display: flex;
    align-items: center;
}
.blog-author-box .blog-bottom-nextprev-btn {
    position: static;
    right: 1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    background: #fff;
    border-radius: 6px;
}
.blog-author-box {
    padding: 0;
}
ul.blog-sidebar-list {
    list-style: none;
    background: #fff;
    border: 1px solid #dfdfdf;
    padding: 20px;
}

.blog-sidebar-list li {
    border-bottom: 1px dashed #cccccc;
    padding: 10px 0;
}
.blog-sidebar-list li a:hover{
    color: #c72d4b;
}
.blog-footer-latest ul li .post-info h6{
    flex: 1;
}
.blog-footer-latest ul li .post-info{
    display: flex;
    flex-direction: column;
}