/* @import url('http://example.com/example_style.css'); */



@import url('https://fonts.googleapis.com/css2?family=Fahkwang:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');



/* fallback */

@font-face {

  font-family: 'Material Icons';

  font-style: normal;

  font-weight: 400;

  src: url(https://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');

}



.material-icons {

  font-family: 'Material Icons';

  font-weight: normal;

  font-style: normal;

  font-size: 24px;

  line-height: 1;

  letter-spacing: normal;

  text-transform: none;

  display: inline-block;

  white-space: nowrap;

  word-wrap: normal;

  direction: ltr;

  -webkit-font-feature-settings: 'liga';

  -webkit-font-smoothing: antialiased;

}



/**

 * CSS @imports must be at the top of the file.      

 * Add them above this section.                             

 */



/* ==========================================================================





   1. BASE STYLES                                             





   ========================================================================== */





/** 

 * Box Sizing

 * 

 * Applies a natural box layout model to all elements so that width and padding 

 * are essentially combined, making responsive styles easier to manage.

 */



*, *:before, *:after { -webkit-box-sizing: border-box; box-sizing: border-box;

}



:root{

	--containerw: calc((100vw - 1440px) / 2);

}



html{

	font-size: 1rem;

}

html, body {

  min-height: 100%;

  margin: 0;

  padding: 0;

} 



/* Website background color and default font styles */

body {

  background: #202020;

  color: #fff;

  font-family: 'Fahkwang', sans-serif;

  font-size: 16px;

  line-height: 1.4;

}



/**

 * Page Center

 *

 * Apply .page-center to full-width modules.

 */



.container {

	float: none;

	max-width: 1220px;

	margin: 0 auto;

	padding-left: 20px;

	padding-right: 20px;

}



img{

    max-width: 100%;

    height: auto;

}



a { 

    text-decoration: none;

    outline: none;

    color: #D9181F;

    transition: all 0.5s ease-in-out;

    -moz-transition: all 0.5s ease-in-out;

    -webkit-transition: all 0.5s ease-in-out;

    -ms-transition: all 0.5s ease-in-out;

    -o-transition: all 0.5s ease-in-out;

}

a:hover, a:focus { 

    text-decoration: none;

    outline: none;

    color: #000; 

}



hr {

  color: #ccc;

  background-color: #ccc;

  height: 1px;

  border: none;

}



/* Highlighted Text */

::-moz-selection {

  color: #fff;

  background: #38B6FF;

  text-shadow: none;

}

::selection {

  color: #fff;

  background: #38B6FF;

  text-shadow: none;

}





/* ==========================================================================

   Typography

   ========================================================================== */





/* Basic text */

p {

    margin: 0 0 15px;

} 

p:last-child{

    margin: 0;

}

small {}

strong {

    font-weight: 700;

}

em {}

cite {}

code {}

pre {}



sup, sub {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}



sup { top: -0.5em; }

sub { bottom: -0.25em; }



/* Headings */

h1, h2, h3, h4, h5, h6 {

    margin: 0px 0 15px;

    font-weight: 700;

    font-family: 'Fahkwang', sans-serif;

}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {}





h1 {

    font-size: 60px;

	line-height: 75px;

}

h2 {

    font-size: 50px;

	line-height: 1.4;

}

h3 {

    font-size: 36px;

	line-height: 1.4;

}

h4 {

    font-size: 30px;

	line-height: 1.4;

}

h5 {

    font-size: 24px;

	line-height: 1.4;

}

h6 {

    font-size: 18px;

	line-height: 1.4;

}



/* Lists */

ul, ol {}

ul ul, ul ol, ol ol, ol ul {}

li {}



ul.unstyled, ol.unstyled {

  list-style: none;

  margin: 0;

  padding: 0;

}



/* Quotes */

blockquote {}

blockquote p {}

blockquote small {}

blockquote small:before {}



q:before, q:after, blockquote:before, blockquote:after {}



.cmn_padd{

    padding-top: 75px;

    padding-bottom: 75px;

}

.cmn_padd_top{

	padding-top: 75px;

	padding-bottom: 0;

}

.cmn_padd_bottom{

	padding-bottom: 75px;

	padding-top: 0;

}



/*=== Common Button Css ===*/



a.cmn_btn {

    background-color: #D9181F;

    display: inline-block;

	padding: 17px 30px 17px 30px;

    font-size: 18px;

	line-height: 1;

    text-transform: uppercase;

    color: #fff;

    font-weight: 600;

    position: relative;

	text-align: center;

	white-space: normal;

	overflow: hidden;

	z-index: 1;

}

a.cmn_btn:hover{

	background-color: #fff;

	color: #000;

}

a.cmn_btn:before,

a.cmn_btn:after {

    content: "";

    position: absolute;

    left: 0;

    height: 50%;

    width: 100%;

    background-color: #fff;

	z-index: -1;

	transition: all 0.5s ease-in-out;

	-moz-transition: all 0.5s ease-in-out;

	-webkit-transition: all 0.5s ease-in-out;

	-o-transition: all 0.5s ease-in-out;

	-ms-transition: all 0.5s ease-in-out;

}

a.cmn_btn_dark:hover{

	background-color: #fff;

	color: #fff;

}

a.cmn_btn_dark:before,

a.cmn_btn_dark:after{

	background-color: #333333;

}

a.cmn_btn:before {

    top: -50%;

}

a.cmn_btn:hover:before {

	top: 0;

}

a.cmn_btn:after {

    bottom: -50%;

}

a.cmn_btn:hover:after {

	bottom: 0;

}

a.cmn_btn_white{

	background-color: #fff;

	color: #D9181F;

}

a.cmn_btn_white:hover{

	background-color: #333333;

	color: #fff;

}

a.cmn_btn_white:before,

a.cmn_btn_white:after{

	background-color: #D9181F;

}

a.cmn_btn_black{

	background-color: #000;

	color: #fff;

}

a.cmn_btn_black:hover{

	color: #fff;

}

a.cmn_btn_black:before,

a.cmn_btn_black:after{

	background-color: #D9181F;

}



/*=== Common Button Css Ends ===*/



.alm-btn-wrap .alm-load-more-btn {

    background-color: #D9181F !important;

    display: inline-block !important;

    padding: 19px 50px 20px !important;

    font-size: 16px !important;

	line-height: 1 !important;

    text-transform: uppercase !important;

    color: #fff !important;

    font-weight: 600 !important;

    position: relative !important;

	text-align: center !important;

	white-space: normal !important;

	overflow: hidden !important;

	z-index: 1 !important;

	height: auto !important;

	border-radius: 0px !important;

	margin: 40px 0 0 !important;

}

.alm-btn-wrap .alm-load-more-btn:hover{

	background-color: #fff !important;

	color: #D9181F !important;

}







.title h6 {

    color: #FFC700;

    font-family: Inter;

    font-size: 22px;

    font-style: normal;

    font-weight: 700;

    line-height: normal;

    letter-spacing: 6.6px;

    text-transform: uppercase;

    margin: 0 0 20px;

}

.title h2 {

    line-height: normal;

    margin: 0;

}

.ubhide {

  display: none;

}

.ubhidden_item{

	display: none !important;

}

.ub_graybg{

	background-color: #f5f5f5;

}

.pg_cntwrap {

    color: #000;

}



/* ==========================================================================

   Header

   ========================================================================== */



.main_header {

    position: absolute;

    top: 0;

    left: 0;

	z-index: 50;

	width: 100%;

}

.main_header .container {

    max-width: 1620px;

}





/*=== Header Top Css ===*/



.header_top {

    background-color: #D9181F;

    color: #fff;

    padding: 10px 0;

}

.header_bottom .row,

.header_top .row {

    align-items: center;

}

.header_top .hcon {

    display: flex;

    align-items: center;

}

.header_top .hcon .hcon_item:not(:last-child) {

    margin-right: 50px;

}

.header_top .hcon .hcon_item span.cicon svg {

    height: 25px;

    width: 25px;

    margin-right: 5px;

}

.header_top .hcon .hcon_item a {

    font-size: 16px;

    font-weight: 400;

    color: #fff;

}

.social_icon {

    display: flex;

    align-items: center;

    justify-content: flex-end;

}

.social_icon .sicon_title {

    padding-right: 10px;

}

.social_icon .sicon_title p {

    color: #FFF;

    font-size: 16px;

    font-weight: 600;

    line-height: normal;

    text-transform: uppercase;

}

ul.social_list{

	list-style: none;

	margin: 0;

	padding: 0;

}

ul.social_list li {

    display: inline-block;

    vertical-align: middle;

    margin-right: 5px;

}

ul.social_list li a {

	height: 25px;

    width: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    background-color: transparent;

    border-radius: 100%;

    font-size: 14px;

    line-height: 20px;

    color: #fff;

    border: 2px solid #fff;

    text-align: center;

}

ul.social_list li:nth-child(1) a:hover{

	background-color: #4267B2;

} 

ul.social_list li:nth-child(2) a:hover{

	background: #d6249f;

	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);

}





/*=== Header Bottom Css ===*/



.header_bottom {

    background: rgba(0, 0, 0, 0);

    width: 100%;

    z-index: 100;

	padding: 10px 0; 

	transition: all 0.4s ease-in-out ;

}

.header_bottom.sticky{

	background-color: #000;

	position: fixed;

	top: 0;

}

.ct_logo_wrapper img.custom-logo{

	transition: all 0.4s ease-in-out ;

}

.ct_logo_wrapper .site-logo{

	display: inline-block;

}

.header_bottom.sticky .ct_logo_wrapper img.custom-logo{

	max-width: 60%;

}

.main_header .mainmenu .primary-menu-container > ul {

    list-style: none;

    margin: 0;

    padding: 0;

	text-align: right;

}

.main_header .mainmenu .primary-menu-container > ul > li {

    display: inline-block;

	position: relative;

}

.main_header .mainmenu .primary-menu-container > ul > li > a {

	color: #fff;

    font-size: 16px;

    font-weight: 500;

    text-transform: uppercase;

    line-height: 20px;

    display: block;

    padding: 10px 25px;

}

/*.main_header .mainmenu .primary-menu-container > ul > li.current-menu-item > a,*/

.main_header .mainmenu .primary-menu-container > ul > li:hover > a,

.main_header .mainmenu .primary-menu-container > ul > li > a:hover{

	color: #D9181F;

}

.main_header .mainmenu .primary-menu-container > ul > li.menu-item-has-children > a:after{

	content: "\f107";

	display: inline-block;

    font-family: FontAwesome;

    font-size: inherit;

	margin-left: 5px;

    text-rendering: auto;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

}



/*=== Submenu Css ===*/



.main_header .mainmenu .primary-menu-container > ul > li ul.sub-menu {

    position: absolute;

    top: 100%;

    left: 0;

    z-index: 10;

    background-color: #015963;

    min-width: 275px;

    list-style: none;

    margin: 0;

    padding: 0;

	display: none;

    box-shadow: 0px 0px 10px rgba(20 92 164 / 50%);

}

.main_header .mainmenu .primary-menu-container > ul > li:hover > ul.sub-menu > li:hover > ul.sub-menu,

.main_header .mainmenu .primary-menu-container > ul > li:hover > ul.sub-menu{

	display: block;

}

.main_header .mainmenu .primary-menu-container > ul > li > ul.sub-menu > li > ul.sub-menu {

    top: 0;

    left: 100%;

}

.main_header .mainmenu .primary-menu-container > ul > li ul.sub-menu li > a {

    color: #fff;

    font-size: 16px;

    font-style: normal;

    font-weight: 500;

    line-height: normal;

    display: block;

    padding: 50px 0px 51px;

    padding: 15px 40px 15px 15px;

    display: block;

    background-color: transparent;

	position: relative;

	text-align: left;

}

.main_header .mainmenu .primary-menu-container > ul > li ul.sub-menu li:hover > a, 

.main_header .mainmenu .primary-menu-container > ul > li ul.sub-menu li > a:hover {

    background-color: #35a5b9;

}

.main_header .mainmenu .primary-menu-container > ul > li ul.sub-menu li.menu-item-has-children > a:after{

	content: "\f0da";

    display: inline-block;

    font-family: FontAwesome;

    font-size: inherit;

    margin-left: 0px;

    text-rendering: auto;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

    position: absolute;

    right: 15px;

    font-size: 20px;

    line-height: 1;

    top: 10px;

}





.hmenu_bottom {

    display: flex;

    align-items: center;

    justify-content: flex-end;

}

.hmenu_bottom .sgf_findus {

    margin-left: 55px;

}

.hmenu_bottom .sgf_findus a.cmn_btn {

    padding: 12px 20px 8px 20px;

}





/* ==========================================================================

   Footer

   ========================================================================== */





/*=== Footer Top Css ===*/



.footer_top {

    background: #181818;

    padding: 70px 0;

    color: #fff;

}

.fcol_inner.foocol_last {

    text-align: right;

}

.fcol_title h6 {

    font-style: normal;

    font-weight: 700;

    line-height: 26px;

    margin: 0 0 30px;

}

.footer_logo {

    margin-bottom: 25px;

}

.foocol_second .fcol_cnt {

    text-align: center;

}

.fcol_cnt .site_shortdes p {

    font-size: 16px;

    font-weight: 400;

    line-height: 24px;

    margin: 0 0 20px;

}



.fcol_cnt .site_shortdes p:last-child {

    margin: 0;

}

.footer_menu ul {

    list-style: none;

    margin: 0;

    padding: 0;

}

.footer_menu ul li {

    display: block;

    margin: 0 0 25px;

}

.footer_menu ul li:last-child{

	margin-bottom: 0;

}

.footer_menu ul li a {

    color: #FFF;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 1.2;

}

/* .footer_menu ul li.current-menu-item a, */

.footer_menu ul li a:hover{

	color: #D9181F;

}

.footer_contact .fconitem{

    margin-bottom: 40px;

}

.footer_contact .fconitem {

    display: flex;

    align-items: flex-start;

    flex-wrap: wrap;

}

.footer_contact .fconitem .ficon {

	width: 30px;

    padding: 0;

}

.footer_contact .fconitem .fcontext {

    max-width: calc(100% - 30px);

    padding-left: 10px;

    color: #FFF;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}

.footer_contact .fconitem .fcontext a{

	color: #fff;

}

.footer_contact .fconitem .fcontext a:hover{

	color: #D9181F;

}

.fcol_inner.foocol_first .social_icon .sicon_title {

    padding: 0 0 15px;

}

.fcol_inner.foocol_first .social_icon ul.social_list li a {

    height: 35px;

    width: 35px;

}

.fcol_inner.foocol_first .social_icon{

	display: block;

}



/*=== Footer Bottom Css ===*/



.footer_bottom {

    background-color: #333333;

    color: #fff;

    padding: 20px 0;

}

.footer_bottom .row {

    align-items: center;

}

.footer_bottom .copyright p {

    color: #FFF;

	font-size: 16px;

	font-weight: 400;

	line-height: normal;

}

.nextgen_logo {

    text-align: right;

}



/*=== Instagram Css ===*/



.inst_bottom {

    background-color: #D9181F;

    padding: 25px 0;

    color: #fff;

}

.inst_bottom p {

    font-size: 16px;

    font-weight: 500;

    line-height: 24px;

}

.instagram_image img {

    width: 100%;

    object-fit: cover;

    object-position: center center;

}

.instagram_sec .inst_top {

    margin-bottom: 50px;

}

.instagram_sec .inst_top .row {

    align-items: center;

}

.instagram_sec .inst_top h2 {

    margin: 0;

    font-size: 44px;

    line-height: normal;

}

.instagram_sec .inst_top .btnwrap {

    text-align: right;

}





/* ==========================================================================

   Forms

   ========================================================================== */

   

 

   

   





/* All Global Forms

   ========================================================================== */





/* Labels */



body label {

    margin: 0 0 10px;

    display: block;

    font-size: 16px;

    font-weight: 500;

    color: #000;

}







/* One Line Inputs */





body input[type="text"],

body input[type="password"], 

body input[type="datetime"], 

body input[type="datetime-local"], 

body input[type="date"], 

body input[type="month"], 

body input[type="time"], 

body input[type="week"], 

body input[type="number"], 

body input[type="email"], 

body input[type="url"], 

body input[type="search"], 

body input[type="tel"], 

body input[type="color"],

body input[type="file"],

body textarea,

body select {

    width: 100%;

    background-color: transparent;

    padding: 10px 15px;

    height: auto;

    min-height: auto;

    line-height: 1;

    border: 1px solid #000000;

    margin-bottom: 20px;

    border-radius: 0;

    color: #000;

	font-style: normal;

	font-weight: 400;

	font-size: 16px;

	line-height: 15px;

    outline: none;

    -webkit-box-shadow: none !important;

            box-shadow: none !important;

}





body textarea.form-control{

    height: 145px;

    resize: none;

	border-radius: 0;

	background-color: transparent;

}

body select.form-control {

    appearance: auto;

    -moz-appearance: auto;

    -ms-appearance: auto;

    -o-appearance: auto;

    -webkit-appearance: auto;

}



body input[type="text"]:focus,

body input[type="password"]:focus, 

body input[type="datetime"]:focus, 

body input[type="datetime-local"]:focus, 

body input[type="date"]:focus, 

body input[type="month"]:focus, 

body input[type="time"]:focus, 

body input[type="week"]:focus, 

body input[type="number"]:focus, 

body input[type="email"]:focus, 

body input[type="url"]:focus, 

body input[type="search"]:focus, 

body input[type="tel"]:focus, 

body input[type="color"]:focus,

body input[type="file"]:focus,

body textarea:focus,

body select:focus {

    border-color: #000;

}



/* Separate Styles for Multiple Line Inputs */

body textarea {}

body textarea:focus {}



/* Separate Styles for Drop Downs */

body select {}

body select:focus {}



/* Multiple Selection Inputs */



body input[type="radio"] {}

body input[type="checkbox"] {}











/* Placeholder Text */

.form-control::-webkit-input-placeholder { /* Webkit Browsers */

   color: #c8c8c8 !important;

   opacity: 1; 

}

.form-control:-moz-placeholder { /* Firefox 18- */

   color: #c8c8c8 !important;

   opacity: 1;

}

.form-control::-moz-placeholder { /* Firefox 19+ */

   color: #c8c8c8 !important;

   opacity: 1;

}

.form-control:-ms-input-placeholder { /* IE10 */

   color: #c8c8c8 !important;

   opacity: 1;

}



.bann_form .main_form form label.error {

    position: relative;

    top: -8px;

    color: #f00;

}



/* ==========================================================================

   Buttons                                              

   ========================================================================== */





/* All Global Buttons (Excluding CTAs)

   ========================================================================== */



.alm-btn-wrap button.blogload_more,

body input[type="submit"],

body input[type="button"] {

    cursor: pointer;

    -webkit-appearance: none;

	background-color: #D9181F;

    padding: 17px 30px 17px 30px;

    font-size: 18px;

    line-height: 1;

    text-transform: uppercase;

    color: #fff;

    font-weight: 600;

    position: relative;

    text-align: center;

    white-space: normal;

    overflow: hidden;

    z-index: 1;

    border-radius: 0;

    width: auto;

    font-family: 'Fahkwang', sans-serif;

    white-space: normal;

	text-transform: uppercase;

    border: 0 none;

    outline: none;

    -webkit-box-shadow: none;

            box-shadow: none;

	display: block;

	transition: all 0.5s ease-in-out;

	-moz-transition: all 0.5s ease-in-out;

	-webkit-transition: all 0.5s ease-in-out;

	-o-transition: all 0.5s ease-in-out;

	-ms-transition: all 0.5s ease-in-out;

}



.alm-btn-wrap button.blogload_more:hover,

body input[type="submit"]:hover,

body input[type="button"]:hover {

    background: #fff;

    color: #000;

}



.alm-btn-wrap button.blogload_more:focus,

body input[type="submit"]:focus,

body input[type="button"]:focus {

    background: #000;

    color: #fff;

}



.alm-btn-wrap button.blogload_more{

	display: inline-block;

	background: #38B6FF !important;

	font-size: 1.125rem;

}

.alm-btn-wrap button.blogload_more:hover{

	background: #145CA4 !important;

}





.wpcf7-not-valid-tip {

    position: relative;

    top: -12px;

	color: #fff;

}

.wpcf7 form.failed .wpcf7-response-output, 

.wpcf7 form.aborted .wpcf7-response-output,

.wpcf7 form.invalid .wpcf7-response-output, 

.wpcf7 form.unaccepted .wpcf7-response-output, 

.wpcf7 form.payment-required .wpcf7-response-output {

    border: 0 none;

    color: #fff;

    margin: 20px 0 30px;

    padding: 0;

}



/*===== Main Content Css =====*/



/*=== Home Page Css ===*/





.home_banner_wrapper{

	position: relative;

	overflow-x: hidden;

}

.bannslider_item {

    height: 100vh;

    width: 100%;

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    position: relative;

    display: table;

    padding: 200px 0 100px;

    color: #fff;

}

.bannslider_item .slider_inner {

    display: table-cell;

    vertical-align: middle;

    position: relative;

    z-index: 1;

}

.bannslider_item:before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    height: 100%;

    width: 100%;

    background-color: rgba(36 36 36 / 60%);

}

.home_banner_slider .banncnt {

	margin-bottom: 50px;

}

.home_banner_slider .banncnt h1 {

    color: #FFF;

    font-weight: 300;

    line-height: 1.2em;

	margin: 0 0 25px;

}

.home_banner_slider .banncnt h1 strong{

	color: #FFC700;

}

.home_banner_slider .owl-item.active .banncnt h1{

	-webkit-animation-duration: 1s;

	animation-duration: 1s;

	-webkit-animation-fill-mode: both;

	animation-fill-mode: both;

	-webkit-animation-name: fadeInLeft;

	        animation-name: fadeInLeft;

	-webkit-animation-delay: 1s;

	        animation-delay: 1s;

}

.home_banner_slider .banncnt p {

	color: #FFF;

	font-size: 20px;

	font-weight: 400;

	line-height: 30px;	

	margin-bottom: 15px;

}

.home_banner_slider .banncnt h1 b {

    font-weight: 700;

}

.home_banner_slider .owl-item.active .banncnt p{

	-webkit-animation-duration: 1s;

	animation-duration: 1s;

	-webkit-animation-fill-mode: both;

	animation-fill-mode: both;

	-webkit-animation-name: fadeInRight;

	        animation-name: fadeInRight;

	-webkit-animation-delay: 1s;

	        animation-delay: 1s;

}

.home_banner_slider .owl-item.active .bann_btnwrap{

	-webkit-animation-duration: 1s;

	animation-duration: 1s;

	-webkit-animation-fill-mode: both;

	animation-fill-mode: both;

	-webkit-animation-name: fadeInUp;

	        animation-name: fadeInUp;

	-webkit-animation-delay: 1s;

	        animation-delay: 1s;

}

.home_banner_wrapper a.slidenav {

    background-color: rgba(217 24 31 / 30%);

	position: absolute;

    top: 50%;

    transform: translateY(-50%);

    color: #fff;

    height: 85px;

    width: 45px;

    text-align: center;

    padding: 10px;

    font-size: 40px;

    z-index: 10;

    display: flex;

    align-items: center;

    justify-content: center;

	transition: all 0.5s ease-in-out;

	-moz-transition: all 0.5s ease-in-out;

	-webkit-transition: all 0.5s ease-in-out;

	-o-transition: all 0.5s ease-in-out;

	-ms-transition: all 0.5s ease-in-out;	

}

.home_banner_wrapper a.slidenav.slide_prev {

    left: -100%;

}

.home_banner_wrapper a.slidenav.slide_next {

    right: -100%;

}

.home_banner_wrapper:hover a.slidenav.slide_prev {

    left: 50px;

}

.home_banner_wrapper:hover a.slidenav.slide_next {

    right: 50px;

}

.home_banner_wrapper a.slidenav:hover {

    background: rgba(217 24 31 / 100%);

}



/*=== About Section Css ===*/



.sgf_aboutus {

    padding-bottom: 155px;

}

.sgf_aboutus .about_main {

    position: relative;

}

.sgf_aboutus .about_main .sgf_abbg {

    position: absolute;

    left: 0;

    top: 0;

    height: 100%;

    width: calc(100% - 180px);

}

.sgf_aboutus .about_main > .row {

    position: relative;

    z-index: 1;

}

.sgf_abcnt_wrap {

    padding: 60px 35px 60px 60px;

}

.sgf_abimg {

    position: relative;

    padding-top: 80px;

    height: 100%;

}

.sgf_abimg .sgf_freeimg {

    position: absolute;

    top: 20px;

    left: -60px;

	z-index: 1;

	-webkit-animation-name: customRotate;

    animation-name: customRotate;

    -webkit-animation-duration: 10s;

    -webkit-animation-iteration-count: infinite;

    -webkit-transition-property: -webkit-transform;

    -webkit-animation-timing-function: linear;

    -webkit-transition-duration: 10s;

    -moz-animation-duration: 10s;

    -moz-animation-iteration-count: infinite;

    -moz-animation-timing-function: linear;

    -moz-transition-property: -moz-transform;

    -moz-transition-duration: 10s;

}

@-webkit-keyframes customRotate {

from {-webkit-transform: rotate(0deg);}

to {-webkit-transform: rotate(-360deg);}

}

@-moz-keyframes customRotate {

from {-moz-transform: rotate(0deg);}

to {-moz-transform: rotate(-360deg);}

}

.sgf_aboutus .about_main .star_img {

    position: absolute;

	z-index: 0;

}

.sgf_abimg .mimg img {

	width: 100%;

    object-fit: cover;

    object-position: center center;

    position: absolute;

	left: 0;

	top: 80px;

    height: 100%;

}

.sgf_aboutus .about_main .star_img.star_img_right {

    right: 0;

    top: 10px;

    z-index: 1;

}

.sgf_aboutus .about_main .star_img.star_img_left {

    bottom: -70px;

    left: -40px;

}

.shadow_title {

    position: relative;

}

.shadow_title h2 {

    font-weight: 600;

    line-height: normal;

    margin: 0 0 5px;

    position: relative;

    z-index: 1;

}

.shadow_title span.shtitle_bg {

    position: absolute;

    top: -58px;

    left: -42px;

    font-size: 100px;

    font-weight: 600;

    line-height: 1.2em;

    -webkit-text-stroke: 2px #fff;

    color: transparent !important;

    opacity: 0.1;

    z-index: 0;

}

.sgf_subtitle h5 {

    color: #D9181F;

    font-weight: 600;

    line-height: normal;

    margin: 0 0 25px;

}



.sgf_abcnt {

    margin-bottom: 40px;

}

.sgf_abcnt p {

    font-size: 18px;

    font-weight: 400;

    line-height: 28px;

    margin-bottom: 20px;

}

.sgf_abcnt p:last-child {

    margin: 0;

}



/*=== Counter Section Css ===*/



.sgf_spec_sec .sgfcount_col:not(:last-child) {

    border-right: 1px solid #cdcdcd;

}

.sgf_spec_sec .sgfcount_col .ub_specitem {

    padding: 0px 25px 15px;

    text-align: left;

    position: relative;

}

.sgf_spec_sec .sgfcount_col .ub_specitem .shadow_num {

    position: absolute;

    left: 0;

    top: -60px;

    font-size: 100px;

    font-weight: 600;

    -webkit-text-stroke: 2px #fff;

    color: transparent !important;

    opacity: 0.1;

    z-index: 0;

}

.sgf_spec_sec .sgfcount_col .ub_specitem .number {

    color: #FFF;

    font-size: 60px;

    font-weight: 600;

    line-height: normal;

    letter-spacing: 4.8px;

    text-transform: uppercase;

    margin: 0 0 2px;

}

.sgf_spec_sec .sgfcount_col .ub_specitem .txt {

    color: #D9181F;

    font-size: 24px;

    font-weight: 600;

    line-height: normal;

}



/*=== Why Choose Us Section ===*/



.sgf_wcu_sec {

    background-size: cover;

    background-position: center;

    position: relative;

}

.sgf_wcu_sec:before{

	position: absolute;

	left: 0;

	top: 0;

	height: 100%;

	width: 100%;

	content: "";

	background-image: url(../images/bg-overlay.png);

}

.sgf_wcu_sec .sgf_wcuinn {

    position: relative;

    z-index: 1;

}







/*=== Features Section Css ===*/



.sgf_features_sec {

    background-color: #1A1A1A;

    padding: 40px;

}

.sgf_features_sec .featcol{

	border-style: solid;

    border-width: 0px 1px 0px 0px;

    border-color: #848484;

}

.sgf_features_sec .featcol .ub_fitem {

    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;

    padding: 15px;

	text-align: center;

} 

.sgf_features_sec .featcol:last-child {

	border: 0 none;

}

.sgf_features_sec .featcol .ub_fitem .featureicon {

    margin-bottom: 25px;

}

.sgf_features_sec .featcol .ub_fitem .featuretxt h5 {

    color: #FFF;

    text-align: center;

    font-weight: 600;

    line-height: normal;

	margin: 0;

}

.sgf_wcu_sec .wcu_maincnt {

    padding: 200px 0 350px;

    text-align: center;

}

.sgf_wcu_sec .wcu_maincnt .shadow_title span.shtitle_bg {

    left: 50%;

    transform: translateX(-50%);

    width: 100%;

}

.sgf_wcu_sec .wcu_maincnt .shadow_title h2 {

    margin-bottom: 15px;

}

.sgf_wcu_sec .wcu_maincnt .sgf_abcnt {

    margin-bottom: 30px;

}

.sgf_wcu_sec .wcu_maincnt .sgf_tagline {

    margin-bottom: 30px;

}

.sgf_wcu_sec .wcu_maincnt .sgf_tagline h6 {

	margin: 0;

}





/*=== Content With Image Section Css ===*/



.sgf_cwi_sec {

    padding: 35px 0;

	position: relative;

}

.sgf_cwi_sec:after{

	content: "";

    position: absolute;

    left: 50%;

    bottom: -140px;

    height: 475px;

    width: 50%;

    background-image: url(../images/cwi-anim.png);

    background-size: 100% 100%;

    background-position: center center;

    transform: translateX(-50%);

}

.sgf_cwi_sec .cwi_item {

    position: relative;

	z-index: 1;

}

.sgf_cwi_sec .cwi_item:after{

	content: "";

	position: absolute;

	left: 0;

	top: 40px;

	height: 470px;

	width: 50%;

	background-image: url(../images/wholesale-bg.jpg);

	background-size: cover;

	background-position: center center;

}

.sgf_cwi_sec .cwi_item.cwi_item_img_right:after{

	left: auto;

	right: 0;

}

.sgf_cwi_sec .cwi_item.cwi_item_img_left:after {

    top: auto;

    bottom: 40px;

}

.sgf_cwi_sec .cwi_item .leaf_img {

    position: absolute;

    right: 0;

    top: 0;

}

.sgf_cwi_sec .cwi_item.cwi_item_img_right .leaf_img{

	left: 0;

	right: auto;

}

.sgf_cwi_sec .cwi_item > .container {

    position: relative;

    z-index: 1;

}

.sgf_cwi_sec .cwi_item.cwi_item_img_right .cwi_colimg {

    order: 2;

}

.sgf_cwi_sec .cwi_item .cwi_cnt {

    max-width: 75%;

    padding: 75px 30px 100px 0px;

}

.sgf_cwi_sec .cwi_item .cwi_cnt .shadow_title {

    margin-bottom: 20px;

}

.sgf_cwi_sec .cwi_item .cwi_cnt .sgf_cwicnt {

    margin-bottom: 50px;

}

.sgf_cwi_sec .star_img.cwi_star {

    position: absolute;

}

.sgf_cwi_sec .cwi_item .cwi_imgwrap {

    position: relative;

    height: 100%;

    padding-top: 50px;

}

.sgf_cwi_sec .cwi_item.cwi_item_img_right .star_img.cwi_star {

    top: 15px;

    left: 40px;

}

.sgf_cwi_sec .cwi_item .cwi_img {

	position: absolute;

	left: 0;

	top: 50px;

	height: 100%;

	width: 100%;

}

.sgf_cwi_sec .cwi_item .cwi_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    max-width: 500px;
}


.sgf_cwi_sec .cwi_item.cwi_item_img_left .cwi_img {

    bottom: 50px;

    top: auto;

    position: relative;

}

.sgf_cwi_sec .cwi_item.cwi_item_img_left .cwi_img img {

    right: auto;

    left: 0;

}

.sgf_cwi_sec .cwi_item.cwi_item_img_left .cwi_imgwrap {

    padding: 0;

    min-height: 560px;

}

.sgf_cwi_sec .cwi_item.cwi_item_img_left .star_img.cwi_star {

    bottom: 25px;

    left: auto;

    right: 30px;

}

.sgf_cwi_sec .cwi_item.cwi_item_img_left .cwi_cnt {

    padding: 75px 0px 100px 30px;

}

.sgf_cwi_sec .cwi_item.cwi_item_img_left .cwi_cnt .sgf_cwisubtitle h6 {

    color: #D9181F;

    font-weight: 700;

    line-height: 28px;

    margin: 0;

}

.sgf_cwi_sec .cwi_item .cwi_cnt .sgf_cwicnt p{

	color: #FFF;

	font-size: 18px;

	font-weight: 400;

	line-height: 28px;

}





/*=== Free Delivery Section Css ===*/



.sgf_mdd_sec {

    position: relative;

    z-index: 1;

}

.sgf_mdd_top {

    padding: 15px 0 50px;

}

.sgf_mdd_top h2 {

    line-height: normal;

    margin: 0;

}

.sgf_mdd_top .sgf_mdt_cnt {

    padding-top: 7px;

}

.sgf_mdd_top .sgf_mdt_cnt p {

    font-size: 24px;

    font-weight: 400;

    line-height: 36px;

}

.sgf_mdd_bottom {

    padding: 135px 0;

    position: relative;

    background-size: cover;

    background-position: center center;

}

.sgf_mdd_bottom:before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    height: 100%;

    width: 100%;

    background-color: rgba(0 0 0 / 50%);

}

.sgf_mdd_bottom .curve_svg.curve_svg_top {

    position: absolute;

    top: -1px;

    left: 0;

    width: 100%;

    height: 25px;

    z-index: 1;

}

.sgf_mdd_bottom .curve_svg.curve_svg_top svg {

    width: 100%;

    height: 25px;

}

.sgf_mdd_bottom .curve_svg.curve_svg_bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 25px;
    width: 100%;
    transform: rotate(180deg);
}

.sgf_mdd_bottom .curve_svg.curve_svg_bottom svg {

    width: 100%;

    height: 25px;

    transform: rotateY(180deg);

}

.sgf_mdd_bottom .curve_svg.curve_svg_bottom svg path,

.sgf_mdd_bottom .curve_svg.curve_svg_top svg path {

    transform-origin: center;

    transform: rotateY(0deg);

    fill: #202020;

}

.sgf_mdd_bottom .container {

    position: relative;

    z-index: 2;

}

.sgf_mdd_bottom .delivery_cntbox {

    border: 1px solid #FFF;

    backdrop-filter: blur(7.5px);

    width: 100%;

}

.sgf_mdd_bottom .delivery_cntbox .delbox_top {

    background: rgba(217, 24, 31, 0.50);

    backdrop-filter: blur(7.5px);

    padding: 30px;

    display: flex;

    flex-wrap: wrap;

}

.sgf_mdd_bottom .delivery_cntbox .delbox_top .del_window {

    width: 40%;

    border-right: 1px solid #fff;

    padding-right: 20px;

}

.sgf_mdd_bottom .delivery_cntbox .delbox_top .del_daysloc {

    width: 60%;

    padding-left: 80px;

}

.sgf_mdd_bottom .delivery_cntbox .delbox_top .del_window .delw_txt p {

    font-size: 18px;

    font-weight: 600;

    line-height: 30px;

}

.sgf_mdd_bottom .delivery_cntbox .delbox_top .del_window .time_txt p small {

    font-size: 16px;

    font-weight: 400;

    line-height: 30px;

}

.sgf_mdd_bottom .delivery_cntbox .delbox_top .del_daysloc .daysloc_item {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    margin-bottom: 10px;

}

.sgf_mdd_bottom .delivery_cntbox .delbox_top .del_daysloc .daysloc_item:last-child {

    margin: 0;

}

.sgf_mdd_bottom .delivery_cntbox .delbox_top .del_daysloc .daysloc_item .delloc {

    width: 50%;

    font-size: 18px;

    font-weight: 500;

    line-height: 30px;

}

.sgf_mdd_bottom .delivery_cntbox .delbox_top .del_daysloc .daysloc_item .deldays {

    width: 50%;

    font-size: 18px;

    font-weight: 700;

    line-height: 30px;

}

.sgf_mdd_bottom .delivery_cntbox .delbox_middle {

    padding: 80px 25px;

    text-align: center;

}



.sgf_mdd_bottom .delivery_cntbox .delbox_middle .freedel_txt {

    font-size: 28px;

    font-weight: 600;

    line-height: normal;

    margin-bottom: 35px;

}

.sgf_mdd_bottom .delivery_cntbox .delbox_middle .freedel_loc_item {

    font-size: 18px;

    font-weight: 500;

    line-height: 36px;

}

.sgf_mdd_bottom .delivery_cntbox .delbox_middle .freedel_loc_wrap {

    margin-bottom: 45px;

}

.sgf_mdd_bottom .delivery_cntbox .delbox_bootm {

    background: rgba(255, 255, 255, 0.30);

    backdrop-filter: blur(7.5px);

    padding: 30px;

}

.sgf_mdd_bottom .delivery_cntbox .delbox_bootm p {

    font-size: 18px;

    font-weight: 500;

    line-height: 26px;

}



/*=== Testimonial Section Css ===*/



.testimonial_slider_sec {

    background-size: cover;

    background-position: center;

    position: relative;

}

.testimonial_slider_sec:before{

	position: absolute;

    right: 0;

    top: 0;

    height: 460px;

    width: 298px;

    content: "";

    background-image: url(../images/hanin.png);

	background-position: center center;

	background-size: cover;

	z-index: 1;

}

.testimonial_slider_sec:after{

	position: absolute;

    right: 0;

    top: 0px;

    height: 100%;

    width: 100%;

    content: "";

	background-position: center center;

	background-size: cover;

    background-image: url(../images/tshadow.png);

}

.testimonial_slider_sec .container {

    position: relative;

    z-index: 2;

}

.reviewslider_wrap .slitem {

    padding: 60px;

    background: #101010;

    position: relative;

}

.reviewslider_wrap .slitem .slrating {

    margin: 0 0 30px;

    font-size: 22px;

    color: #F0EA2D;

}

.reviewslider_wrap .slitem .slrating i.fa {

    margin-right: 10px;

}

.reviewslider_wrap .slitem .sl_des {

    font-size: 18px;

    font-weight: 500;

    line-height: 28px;

    margin: 0 0 50px;

}

.reviewslider_wrap .slitem .slimgtitle .img {

    margin-bottom: 30px;

    display: none;

}

.reviewslider_wrap .slitem .slimgtitle .img img {

    height: 80px;

    width: 80px;

    border-radius: 100%;

    object-fit: cover;

    object-position: center center;

}

.reviewslider_wrap .slitem .slimgtitle h4 {

    font-size: 28px;

    font-weight: 700;

    line-height: 28px;

}

.reviewslider_wrap .slitem .slimgtitle span.date {

    font-size: 16px;

    font-weight: 500;

    line-height: 28px;

}

.testimonial_slider_sec .review_img{

	padding-top: 60px;

}

.testimonial_slider_sec .review_img img {

    width: 100%;

    object-fit: cover;

    object-position: center center;

}

.reviewslider_wrap .slitem .quote_icon {

    position: absolute;

}

.reviewslider_wrap .slitem .quote_icon.quote_icontop {

    top: 10px;

    left: 60px;

}

.reviewslider_wrap .slitem .quote_icon.quote_iconbottom {

    bottom: 10px;

    left: 60px;

    transform: rotate(180deg);

}

.reviewslider_nav {

    padding: 55px 0 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 60px;

}

.reviewslider_nav a.slidenav {

    color: #fff;

    opacity: 0.3;

}

.reviewslider_nav a.slidenav:hover {

    opacity: 1;

}



/*=== Form Section Css ===*/



.bottom_formwrap {

    position: relative;

    background-size: cover;

    background-position: center center;

}

.bottom_formwrap:before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    height: 100%;

    width: 100%;

    background-color: rgba(0 0 0 / 80%);

}

.bottom_formwrap .container {

    position: relative;

}

.bottom_formwrap .mainform .form_wrap:before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    height: 100%;

    width: 100%;

    background-color: rgba(0 0 0/ 80%);

}

.bottom_formwrap .mainform .form_wrap > div {

    position: relative;

    z-index: 1;

}

.bottom_formwrap .mainform .form_wrap .formtitle {

    margin: 0 0 40px;

}

.bottom_formwrap .mainform .form_wrap .formtitle h4 {

    font-style: normal;

    font-weight: 400;

    line-height: normal;

    margin: 0;

}

.bottom_formwrap .mainform .form_wrap .formtitle h4 strong {

    font-weight: 700;

}

.bottom_formwrap .mainform {

    background-color: #015963;

}

.bottom_formwrap .mainform .form_wrap {
    padding: 50px 40px;
	position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

.bottom_formwrap .mainform .form_wrap:before,
.conpg_formwrap .form_wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2D2D2D;
    opacity: 0.85;
}

.conpg_formwrap .form_wrap {
    height: 100%;
}

.bottom_formwrap .mainform .fq_col.fq_right {

    padding-right: 0;

}

.bottom_formwrap .mainform .fq_col.fq_col_left {

    padding-left: 0;

}

.bottom_formwrap .mainform .form_wrap .form-control {

    background: rgba(255, 255, 255, 0.25);

	backdrop-filter: blur(7.5px);

    border: 0 none;

    padding: 15px 15px;

    color: #FFF;

	font-size: 16px;

	font-style: normal;

	font-weight: 400;

	line-height: normal;

    border-radius: 0;

    transition: all 0.5s ease-in-out;

    -moz-transition: all 0.5s ease-in-out;

    -webkit-transition: all 0.5s ease-in-out;

    -o-transition: all 0.5s ease-in-out;

    -ms-transition: all 0.5s ease-in-out;

}

.bottom_formwrap .mainform .form_wrap textarea.form-control{

	background: rgba(255, 255, 255, 0.25);

	backdrop-filter: blur(7.5px);

	height: 100px;

	resize: none;

}

.bottom_formwrap .mainform .form_wrap select.form-control{

	-webkit-appearance: none;

	-moz-appearance: none;

	background-image: url(../images/selarr.png);

	background-repeat: no-repeat;

	background-position: right 22px top 20px;

	color: #FFF;

}

.bottom_formwrap .mainform .form_wrap select.form-control option{

	color: #FFF;

}

.bottom_formwrap .mainform .form_wrap select.form-control::-webkit-input-placeholder,

.bottom_formwrap .mainform .form_wrap .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */

	color: #FFF !important;

	opacity: 1 !important;

}

.bottom_formwrap .mainform .form_wrap select.form-control::-moz-placeholder,

.bottom_formwrap .mainform .form_wrap .form-control::-moz-placeholder { /* Firefox 19+ */

	color: #FFF !important;

	opacity: 1 !important;

}

.bottom_formwrap .mainform .form_wrap select.form-control:-ms-input-placeholder,

.bottom_formwrap .mainform .form_wrap .form-control:-ms-input-placeholder { /* IE 10+ */

	color: #FFF !important;

	opacity: 1 !important;

}

.bottom_formwrap .mainform .form_wrap select.form-control:-moz-placeholder,

.bottom_formwrap .mainform .form_wrap .form-control:-moz-placeholder { /* Firefox 18- */

	color: #FFF !important;

	opacity: 1 !important;

}

.bottom_formwrap .mainform .form_wrap .form-control:focus{

	border-color: #FFC700;

}

.bottom_formwrap .mainform .form_wrap .btn_grp{

	position: relative;

}

.bottom_formwrap .mainform .form_wrap .btn_grp span.wpcf7-spinner {

    position: absolute;

    right: 0;

    top: 50%;

    z-index: 1;

    transform: translateY(-50%);

}

.bottom_formwrap .formlogo_wrapper {

    height: 100%;

    width: 100%;

    position: relative;

    padding: 20px;

    background-size: cover;

    background-position: center;

}

.bottom_formwrap .mainform .frm_icon {

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    bottom: -50px;

}

.bottom_formwrap .mainform .row {

    position: relative;

    z-index: 1;

}



/*=== Map Section Css ===*/



.sgf_location_sec {

    background-size: cover;

    background-position: center center;

    position: relative;

}

.sgf_location_sec:before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    height: 100%;

    width: 100%;

    background-color: rgba(0 0 0 /80%);

}

.sgf_location_sec .container {

    position: relative;

    z-index: 1;

}

.main_locationcnt {

    background-size: cover;

    background-position: center center;

    position: relative;

    padding: 40px;

	color: #fff;

}

.main_locationcnt:before {

	content: "";

    position: absolute;

    left: 0;

    top: 0;

    height: 100%;

    width: 100%;

    background-color: rgba(0 0 0 /80%);

}

.main_locationcnt .location_inner {

    position: relative;

    z-index: 1;

}

.main_locationcnt .location_inner .sgf_add,

.main_locationcnt .location_inner .sgf_number {

	display: flex;

    align-items: center;

}

.main_locationcnt .location_inner .sgf_add {

    margin-bottom: 35px;

}

.main_locationcnt .location_inner .sgf_add .icon,

.main_locationcnt .location_inner .sgf_number .icon{

	width: 60px;

}

.main_locationcnt .location_inner .sgf_hrs p,

.main_locationcnt .location_inner .sgf_hrs .sstext,

.main_locationcnt .location_inner .sgf_add .sstext,

.main_locationcnt .location_inner .sgf_number .sstext{

	width: calc(100% - 60px);

	padding-left: 15px;

	color: #FFF;

	font-size: 18px;

	font-weight: 400;

	line-height: normal;

}

.main_locationcnt .location_inner .sgf_hrs .txt{

	margin: 0 0 30px;

	display: block;

}

.main_locationcnt .location_inner .sgf_hrs p{

	padding: 0;

	width: 100%;

}

.main_locationcnt .location_inner .sgf_hrs .sstext,

.main_locationcnt .location_inner .sgf_add .sstext span.txt,

.main_locationcnt .location_inner .sgf_number .sstext span.txt{

	display: block;

	font-weight: 700;

	margin: 0 0 5px;

}

.main_locationcnt .location_inner .sgf_add .sstext a,

.main_locationcnt .location_inner .sgf_number .sstext a{

	color: #fff;

	font-weight: 400;

}

.main_locationcnt .location_inner .sgf_add .sstext a:hover,

.main_locationcnt .location_inner .sgf_number .sstext a:hover{

	color: #D9181F;

}

.location_name {

    margin: 0 0 30px;

}

.location_name h4{

    margin: 0px;

}

.main_locationcnt .orderbtn_wrap {

	padding-top: 45px;

	text-align: center;

}

.sgf_location_sec .sgfmap {

    position: relative;

    height: 550px;

}

.sgf_location_sec .sgfmap iframe {

    position: absolute;

    top: 0;

    left: 0;

    height: 100%;

    width: 100%;

}

.sgf_location_sec .loc_title_sec {

    margin-bottom: 50px;

    text-align: center;

}

.sgf_location_sec .loc_title_sec h2 {

    line-height: normal;

    margin: 0 0 5px;

}

.sgf_location_sec .loc_title_sec p {

    font-size: 18px;

    font-weight: 400;

    line-height: normal;

}



/*=== Blog Section Css ===*/



.ccblog_section {

    padding-left: 80px;

	padding-right: 80px;

}

.ccblog_section .title {

    text-align: center;

    margin-bottom: 50px;

}

.ccblog_section .title h6 {

    margin-bottom: 15px;

}

.ccblog_section .blog_items .pro_img {

	max-height: 375px;

    overflow: hidden;

	position: relative;

}

.ccblog_section .blog_items .pro_img img{

	width: 100%;

    height: 375px;

    object-fit: cover;

    object-position: center center;

    transition: 0.3s ease-in-out;

    transform: scale(1);

}

.ccblog_section .blog_items:hover .pro_img img{

	transform: scale(1.1);

}

.ccblog_section .blog_items .post_cnt_wrap {

    padding: 55px 0 40px;

	position: relative;

}

.ccblog_section .blog_items .post_cnt_wrap .postdate {

    position: absolute;

    top: -22px;

    left: 30px;

    z-index: 2;

    background: #D9181F;

    padding: 10px;

    text-align: center;

    font-size: 16px;

    font-weight: 400;

    line-height: 26px;

}

.ccblog_section .blog_items .post_cnt_wrap h5 {

    color: #fff;

    font-weight: 700;

    line-height: 30px;

	margin-bottom: 10px;

}

.ccblog_section .blog_items .post_cnt_wrap h6 a {

    color: #fff;

}

.ccblog_section .blog_items .post_cnt_wrap h6 a:hover {

    color: #D9181F;

}

.ccblog_section .blog_items .post_cnt_wrap p {

    color: #fff;

    font-size: 16px;

    font-weight: 400;

    line-height: 26px;

}

.ccblog_section .blog_items .post_cnt_wrap .srt_des {

    margin-bottom: 40px;

}

.ccblog_section .blog_items .post_cnt_wrap .knowmore_wrap a.morelink {

    color: #D9181F;

    font-size: 18px;

    font-weight: 400;

    line-height: normal;

}

.ccblog_section .blog_items .post_cnt_wrap .knowmore_wrap a.morelink:hover {

    color: #fff;

}

.ccblog_section .blog_sliderwrapper{

	position: relative;

}

.ccblog_section .blog_sliderwrapper a.slidenav {

	background-color: rgba(217 24 31 / 60%);

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    color: #fff;

    height: 95px;

    width: 55px;

    text-align: center;

    padding: 10px;

    font-size: 50px;

    z-index: 10;

    display: flex;

    align-items: center;

    justify-content: center;

}

.ccblog_section .blog_sliderwrapper a.slidenav.bslide_prev {

    left: -75px;

}

.ccblog_section .blog_sliderwrapper a.slidenav.bslide_next {

    right: -75px;

}

.ccblog_section .blog_sliderwrapper a.slidenav:hover {

    background-color: rgba(217 24 31 / 100%);

}





/*========== Inner Page Css ==========*/



/*=== Inner Banner Css ===*/



.inner_banner {

    height: 550px;

    width: 100%;

    padding: 200px 0 50px;

    position: relative;

    background-size: cover;

    background-position: center;

    display: table;

}

.inner_banner .innbann_inner {

    display: table-cell;

    vertical-align: middle;

    position: relative;

    z-index: 1;

    text-align: center;

    color: #fff;

}

.inner_banner:before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    height: 100%;

    width: 100%;

    background-color: rgba(0 0 0 / 40%);

}

.inner_banner .innbann_inner h1 {

    color: #fff;

    font-weight: 800;

    margin: 0 0 10px;

}

.inner_banner .innbann_inner p {

    color: #FFF;

    text-align: center;

    font-size: 18px;

    font-weight: 600;

    line-height: normal;

}

.inner_banner .innbann_inner .breadcrumb_wrap{

	color: #FFF;

	font-size: 16px;

	font-style: normal;

	font-weight: 500;

	line-height: normal;

} 

.inner_banner .innbann_inner .breadcrumb_wrap a{

	color: #fff;

}

.inner_banner .innbann_inner .breadcrumb_wrap a:hover{

	color: #D9181F;

}



/*=== Contact page Css ===*/

.conpg_formwrap {
    padding: 120px 0;
}

.conpg_formwrap .form_wrap {

    padding: 40px;

    background-size: cover;

    background-position: center center;

    position: relative;

}

.conpg_formwrap .form_wrap .form_f,

.conpg_formwrap .form_wrap .formtitle {

    position: relative;

    z-index: 1;

}

.conpg_formwrap .form_wrap .formtitle {

    margin-bottom: 35px;

}

.conpg_formwrap .form_wrap .formtitle h2 {
    line-height: 1.2;
    margin: 0 0 5px;
}

.conpg_formwrap .form_wrap .formtitle p {

    font-size: 24px;

    font-weight: 400;

    line-height: normal;

}

.conpg_formwrap .mainform .form_wrap .form-control {

    background: rgba(255, 255, 255, 0.25);

	backdrop-filter: blur(7.5px);

    border: 0 none;

    padding: 15px 15px;

    color: #FFF;

	font-size: 16px;

	font-style: normal;

	font-weight: 400;

	line-height: normal;

    border-radius: 0;

    transition: all 0.5s ease-in-out;

    -moz-transition: all 0.5s ease-in-out;

    -webkit-transition: all 0.5s ease-in-out;

    -o-transition: all 0.5s ease-in-out;

    -ms-transition: all 0.5s ease-in-out;

}

.conpg_formwrap .mainform .form_wrap textarea.form-control{

	background: rgba(255, 255, 255, 0.25);

	backdrop-filter: blur(7.5px);

	height: 100px;

	resize: none;

}

.conpg_formwrap .mainform .form_wrap select.form-control{

	-webkit-appearance: none;

	-moz-appearance: none;

	background-image: url(../images/selarr.png);

	background-repeat: no-repeat;

	background-position: right 22px top 20px;

	color: #FFF;

}

.conpg_formwrap .mainform .form_wrap select.form-control option{

	color: #FFF;

}

.conpg_formwrap .mainform .form_wrap select.form-control::-webkit-input-placeholder,

.conpg_formwrap .mainform .form_wrap .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */

	color: #FFF !important;

	opacity: 1 !important;

}

.conpg_formwrap .mainform .form_wrap select.form-control::-moz-placeholder,

.conpg_formwrap .mainform .form_wrap .form-control::-moz-placeholder { /* Firefox 19+ */

	color: #FFF !important;

	opacity: 1 !important;

}

.conpg_formwrap .mainform .form_wrap select.form-control:-ms-input-placeholder,

.conpg_formwrap .mainform .form_wrap .form-control:-ms-input-placeholder { /* IE 10+ */

	color: #FFF !important;

	opacity: 1 !important;

}

.conpg_formwrap .mainform .form_wrap select.form-control:-moz-placeholder,

.conpg_formwrap .mainform .form_wrap .form-control:-moz-placeholder { /* Firefox 18- */

	color: #FFF !important;

	opacity: 1 !important;

}

.conpg_formwrap .mainform .form_wrap .form-control:focus{

	background: rgba(255, 255, 255, 0.60);

}

.conpg_formwrap .mainform .form_wrap .btn_grp{

	position: relative;

}

.conpg_formwrap .mainform .form_wrap .btn_grp span.wpcf7-spinner {

    position: absolute;

    right: 0;

    top: 50%;

    z-index: 1;

    transform: translateY(-50%);

}

.conpg_formwrap .contactdetails_wrap {

    background-color: #131313;

    padding: 35px;

}

.conpg_formwrap .contactdetails_wrap .formcnttitle {

    margin-bottom: 35px;

}



.conpg_formwrap .contactdetails_wrap .formcnttitle h2 {

    margin: 0 0 5px;

}



.conpg_formwrap .contactdetails_wrap .formcnttitle p {

    font-size: 18px;

    font-weight: 400;

    line-height: normal;

}

.conpg_formwrap .contactdetails_wrap .con_det .con_item {

    display: flex;

    align-items: center;

    margin: 0 0 30px;

}

.conpg_formwrap .contactdetails_wrap .con_det .con_item .con_icon {

    width: 60px;

}

.conpg_formwrap .contactdetails_wrap .con_det .con_item .contxt {

    width: calc(100% - 60px);

    padding-left: 15px;

}

.conpg_formwrap .contactdetails_wrap .con_det .con_item .contxt .title {

    font-weight: 700;

    margin: 0 0 2px;

}

.conpg_formwrap .contactdetails_wrap .con_det .con_item .contxt a {

    color: #fff;

}

.conpg_formwrap .contactdetails_wrap .con_det .con_item .contxt a:hover {

    color: #D9181F;

}

.conpg_formwrap .contactdetails_wrap .sstext {

    font-size: 18px;

    font-weight: 400;

    line-height: 30px;

}

.conpg_formwrap .contactdetails_wrap .sstext span.txt {

    display: block;

    margin: 0 0 20px;

    font-weight: 700;

}

.conpg_formwrap .contactdetails_wrap .sstext p {

    margin: 0;

}

.sgfmap.conpg_map {

    margin-top: 50px;

}



/*=== Blog Page Css ===*/





.ccblog_section.blogpg .alm-listing.ctpost_listwrap{

    display: flex;

    flex-wrap: wrap;

    margin-left: -15px;

    margin-right: -15px;

}

.ccblog_section.blogpg .alm-listing.ctpost_listwrap > div.blogpost_item {

    padding-left: 15px;

    padding-right: 15px;

}

.ccblog_section.blogpg .alm-btn-wrap {

    margin: 0;

    padding: 0;

}

.alm-btn-wrap .alm-load-more-btn.done {

    display: none !important;

}

.ccblog_section.blogpg .blog_items_wrap {

    margin-bottom: 30px;

}



/*=== Single Post Page Css ===*/





.ct_singlepost_pg p {

    margin-bottom: 25px !important;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}



section.container-fluid.about_content_wrp.blogs.cmn_padd .col-sm-12.blog_featured_image {
    height: 100%;
	margin-bottom:40px;
}
.date_wrapper {
    display: inline-flex;
    justify-content: space-between;
	    margin-bottom: 20px;
}
.date_wrapper h3 {
    color: #FFF;
    font-family: Fahkwang;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.date_wrapper span {
    z-index: 2;
    background: #D9181F;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
.col-sm-12.about_content p {
    color: #FFF;
    font-family: Fahkwang;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.post_middle_images_section {
    display: inline-flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: flex-start;
	  margin-bottom: 60px;
}
.post_middle_images_section .left_image {
    width: 99%;
    margin-right: 1%;
}
.post_middle_images_section .right_image {
    width: 99%;
    margin-left: 1%;
}
.post_middle_images_section .left_image img, .post_middle_images_section .right_image img {
   max-height: 530px;
    width: 100%;
    height: 530px;
    object-fit: cover;
}
.post_left_image_right_content_section {
    display: flex;
}
.left_section_image {
    flex: 0 0 auto;
    width: 60%;
    padding-right: 5%;
}
.post_left_image_right_content_section .right_content {
    padding-top: 20px;
}
.post_description {
    margin-bottom: 40px;
}
.after_image_section_content {
    margin-bottom: 25px;
}
.post_left_image_right_content_section {
    margin-bottom: 35px;
}
.pg_inncnt_wrap.ccblog_section.blogpg.cmn_padd h3.rb {
    color: #FFF;
    text-align: center;
    font-family: Fahkwang;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
	padding-bottom:50px;
}
section.container-fluid.about_content_wrp.blogs.cmn_padd {
    background-image: url(/wp-content/uploads/2023/09/image-min-scaled.jpg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.ccblog_section.blogpg {
    background: url(/wp-content/uploads/2023/09/bbg1-scaled.jpg) no-repeat top center;
}