@charset "utf-8";   
@import url('../../_pages/fonts.googleapis.com/css2/index_3107f07e.html'); 
@import url('../../_pages/fonts.googleapis.com/css2/index_6ba381a7.html');
:root{
    --color-main:#8d8d96;
    --color-blue:#002768; 
    --color-ylw:#c1b11e; 
    --color-gray:#373737; 
    --color-dark-gray:#2d2d2d; 
    --color-white:#fff;
    --color-black:#000;
    --body-font: 'Poppins', sans-serif;
    --heading-font:'Poppins', sans-serif;
    --heading-font2: 'black_bones_personal_use';
    --heading-font3: "Jost", sans-serif;
    --heading-font4: "Jost", sans-serif;
}
*, *:after, *:before {box-sizing: border-box;} 

body {
    font-family: var(--heading-font4);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    padding: 0;
    margin: 0; 
}

body, html{overflow-x: hidden;} 
 
.container:after, .clearfix:after{content: ""; display: block; clear: both;}
.container .container{width: 100%;padding: 0;}
.spacer, .clear {height: 0; line-height: 0; clear: both; font-size: 0; display: block;}
::-webkit-scrollbar{width: 10px;}
::-webkit-scrollbar-track{background: #f5f5f5; -webkit-border-radius: 10px;  border-radius: 10px;}
::-webkit-scrollbar-thumb{background: var(--color-main); -webkit-border-radius: 10px;  border-radius: 10px; /* box-shadow: 0 0 10px #000000; */}
::selection {
    background-color: var(--color-main);
    color: #ffffff !important;
}
/* defult css Styles
---------------------------------*/

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, blockquote {margin: 0; padding: 0; border: 0; display: block;}

h1, h2, h3, h4, h5, h6 {font-weight:normal; line-height: normal;}

h1 {font-size: 28px; margin: 0 0 15px;}

h2 {font-size: 24px; margin: 0 0 15px;}

h3 {font-size: 20px; margin: 0 0 12px;}

h4 {font-size: 18px; margin: 0 0 12px;}

h5 {font-size: 16px; margin: 0 0 10px;}

h6 {font-size: 14px; margin: 0 0 10px;}

ul, ol {margin-bottom: 10px; padding-left: 15px;}

li {margin: 0 0 10px; padding: 0;}

p {padding-bottom: 0;margin: 0 0 15px;}

p:last-child{margin-bottom: 0;}

label, span, strong {display: inline-block; vertical-align: top;}

p label, p span, p strong {display: inline;}

strong{font-weight: 700;}

a {

	color: var(--color-main);

	text-decoration: none;

	border: none;

	outline: none;

	display: inline-block;

	-moz-transition: all 300ms ease-in-out;

	-webkit-transition: all 300ms ease-in-out;

	transition: all 300ms ease-in-out;

}

a:hover, a:focus{color: var(--color-ylw);text-decoration: none;outline: none;}
 

img {border: none; outline: none; display: inline-block; max-width: 100%;}

legend{display: block; width: auto; max-width: 100%; padding: 0 10px; margin: 0; font-size: 16px; color: inherit; white-space: normal;}

form {margin: 0; padding: 0;}

label{

	text-align: left;

	line-height: 20px;

	margin: 0 0 8px;

	padding: 0;

	font-weight: normal;

}

input, select, textarea {

    padding: 5px 10px;

    width: 100%;

    height: 50px;

    border: 1px solid #dddddd;

    -webkit-border-radius: 3px;

    border-radius: 3px;

    background-color: #ffffff;

    color: #191919;

    font-size: 16px;

    line-height: 24px;

    font-family: 'Montserrat';

    font-weight: 300;

    position: relative;

    vertical-align: top;

    outline: none;

    -moz-transition: all 300ms ease-in-out;

    -webkit-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

}

input::-moz-placeholder, textarea::-moz-placeholder{color: #191919; opacity: 1;}

input::-webkit-placeholder, textarea::-webkit-placeholder{color: #191919; opacity: 1;}

input::placeholder, textarea::placeholder{color: #191919; opacity: 1;}

/* BUTTONs

---------------------------------*/

.btn{ 
    background: var(--color-black); 
    border: 1px solid var(--color-black); 
    -webkit-border-radius: 0; 
    border-radius: 0; 
    color: var(--color-white); 
    font-size: 14px; 
    line-height: 42px; 
    height: 44px; 
    min-width: 125px; 
    padding: 0 30px;
    text-align: center;
    font-family: var(--body-font);
    font-weight: 700;
    outline: none;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    vertical-align: top;
    position: relative;
    text-transform: uppercase;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; 
    z-index: 0;

    /* font-variant: small-caps; */

}
.btn.btn-blue{
    background-color: var(--color-blue);
    border-color: var(--color-blue);
    color: var(--color-white);
}
.btn.btn-blue:hover{
    background-color: var(--color-main);
    border-color: var(--color-main);
    color: var(--color-white);
}
.btn.btn-white{
    background-color: var(--color-white);
    border-color: var(--color-gray);
    color: var(--color-gray);
}
.btn.btn-white:hover{
    background-color: var(--color-main);
    border-color: var(--color-main);
    color: var(--color-white);
}
button i, .btn i{
    vertical-align: middle; margin: -4px 5px 0 0; position: relative; top: 0;  -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.btn:hover, .btn:focus{

    outline: none;

    background-color: var(--color-main);

    border-color: var(--color-main);

    color: var(--color-white);

}

.btn_center{text-align: center; margin-top: 30px;}

.btn_left{text-align: left;	margin-top: 30px;}

.btn_right{text-align: right; margin-top: 30px;}



/* OWL

---------------------------------*/

.owl-carousel{ display: block;} 
.owl-carousel .owl-nav [class*="owl-"] {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    left: 0;

    margin: 0;

    padding: 0;

    width: 30px;

    height: 30px;

    line-height: 32px;

    text-align: center; 

    background: transparent;

    border: 1px solid transparent;

    -webkit-border-radius: 100%;

    border-radius: 100%;

    float: left;

    cursor: pointer;

    opacity: 1;
    font-size: 34px;
    color: #d3d3d3;
    -moz-transition: all 300ms ease-in-out;

    -webkit-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

}

.owl-carousel .owl-nav .owl-next{float: right; padding: 0 0 0 4px; left: auto; right: 0;}

.owl-carousel .owl-nav .owl-prev.disabled, .owl-carousel .owl-nav .owl-next.disabled{pointer-events: none; opacity: 0.4;}

.owl-carousel .owl-nav [class*="owl-"]:hover{ color: var(--color-ylw); opacity: 1;}

.owl-carousel .owl-nav.disabled + .owl-dots{margin-top: 30px;}

.owl-carousel .owl-dots{text-align: center;}

.owl-carousel .owl-dots .owl-dot{

    width: 12px;

    height: 12px;

    background: #ccc;

    border: 1px solid #ccc;

    outline: none;

    -webkit-border-radius: 100%;

    border-radius: 100%;

    margin: 0 5px;

	-moz-transition: all 300ms ease-in-out;

	-webkit-transition: all 300ms ease-in-out;

	transition: all 300ms ease-in-out;

}

.owl-carousel .owl-dots .owl-dot.active{background: #ffffff; border-color: #ffffff;}

.owl-carousel .owl-item img{width: auto; margin: 0 auto;}

/*OWL END*/



/* COMMON STYLE

---------------------------------*/

.scroll_effect{position: relative; display: none;}

.scrollup {

    position: fixed;

    bottom: 50px;

    right: 10px;

    z-index: 5;

    width: 40px;

    height: 40px;

    line-height: 40px;

    font-size: 22px;

    color: #fff;
    background: var(--color-main);

    text-align: center;

    -webkit-border-radius: 100%;

    border-radius: 100%;

    display: none;

    -moz-transition: all 300ms ease-in-out;

    -webkit-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

}

.scrollup:hover {-webkit-border-radius: 50%; border-radius: 50%; -webkit-transform: rotate(360deg); transform: rotate(360deg);  background: var(--color-green); color: #fff;}

.editor_text p a {
    color: #548744;
    font-weight: 600;
}
.editor_text p a:hover{text-decoration: underline;}

/* SECTION_HEADING

----------------------*/

.sec-space{width: 100%; padding: 50px 0; position: relative;}

.sec-space:before{position: absolute;	content: ""; display: block; bottom: 0; left: 0; right: 0; top: 0; z-index: -1;}

h1, h2, .heading { 
    color: var(--color-gray);
    font-size: 37px;
    letter-spacing: normal;
    line-height: normal;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-family: var(--heading-font3); 
    position: relative; 
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
h1 strong, h2 strong, .heading strong{
    color: var(--color-main);
    /* font-family: var(--heading-font2); */
    font-weight: normal;
    vertical-align: middle;
    /* font-size: 100px; */
}
.subheading{    

    font-family: var(--heading-font);

    font-weight: 600;

    font-size: 24px;

    line-height: 37px;

	color: #000080;

	margin-bottom: 20px;

	position: relative;

    text-transform: capitalize;

	-moz-transition: all 300ms ease-in-out;

	-webkit-transition: all 300ms ease-in-out;

	transition: all 300ms ease-in-out;

}

.subheading span{

    font-family: 'antonregular';

    font-weight: normal;

}

.heading:last-child, .subheading:last-child, .heading_tag:last-child{margin-bottom: 0;}

.heading a, .subheading a{color: inherit;display: inline;}

.heading a:hover, .heading a:focus, .subheading a:hover, .subheading a:focus, a:hover .heading, a:hover .subheading{color: #000080;}
 

/* MENU*/
.navbar-collapse{
    position: fixed;
    padding: 50px;
    right: -100%;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    top: 0;
    overflow-y: auto;
    height: 100vh;
    z-index: 999;
    display: block !important;
    transition: all 300ms ease-in-out;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}
.navbar-collapse.show{right: 0;}
.navbar-toggler{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #fff;
    border-radius: 0;
    height: 60px;
    width: 64px;
    font-size: 45px;
    padding: 0;
    text-align: center;
    color: var(--color-main);
    outline: none !important;
}
.navbar-toggler[aria-expanded="true"] .fa::before{
    content: '\f00d';
    font-family: 'FontAwesome';
}
.navbar-toggler .fa{margin: 0;}
.navbar-collapse > ul { 
    margin: 0;
    padding: 40px 20px;
    font-family: var(--heading-font4); 
    font-weight: normal;
    font-size: 48px;
    color: #C9C9C9;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1.5px;
} 
.navbar-collapse > ul li {list-style: none; margin: 0; padding: 0; position: relative;}

.navbar-collapse > ul > li {

    margin:20px 0px 20px 0;
    width: 100%;
    display: block;   

}

.navbar-collapse > ul > li:last-child{margin-right: 0;}

.navbar-collapse > ul > li a{color: inherit; }

.navbar-collapse > ul > li > a { 

    padding: 10px 14px !important; 
    margin: 0; 
    text-align: center; 
    position: relative; 
    z-index: 1;  
    background: transparent;

} 
.navbar-collapse > ul > li .fa{
    position: absolute;
    right: -10px;
    top: 10px;
    font-size: 22px;
}
.navbar-collapse ul li a > span{display: block;position: relative;z-index: 1;}

.navbar-collapse > ul > li > a i.fa-home{font-size: 18px;}
.dropdown-toggle::after{
    content: "\f107";
    font-family: 'FontAwesome';
    border: none;
    width: 10px;
    height: 10px;
    padding: 0;
    line-height: 10px;
    position: absolute;
    right: 0;
    top: 18px;
}
.navbar-collapse  ul li:hover > a, .navbar-collapse ul li.active > a, .navbar-collapse ul li.current-menu-item > a{color:  var(--color-white);} 
.dropdown-menu{ 
    background-color: #ffffff;
    width: 300px;
    margin: 0 auto; 
}
.submenu ul li a{
    font-size: 15px;
}
.navmenu{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding-top: 22px;
    z-index: 9;
    font-size: 30px;
    font-weight: 700;
}
body{padding-top: 70px;}
.absolutebody{padding-top: 0;}
.absolutebody .navmenu{padding: 30px;}
.logotext{color: var(--color-white) !important;}
.logotext.text-dark{color: #000 !important;}
/* menu design start */
.gheader__item__burger {
    padding: 10px;
    line-height: 1;
    text-align: center;
    color: #fff;
    /* width: 28px; */
    cursor: pointer;
    display: block;
    position: fixed;
    right: 15px;
    top: 15px;
    outline: none !important;
    border: none;
    z-index: 9; 
    box-shadow: none !important;
    background: transparent;
}

.gheader__item__burger > div {
    width: 16px;
    height: 17px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    pointer-events: none;
}
.gheader__item__burger > div span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.gheader__item__burger.black > div span{background: #000;}
.gheader__item__burger.black[aria-expanded="true"] > div span{
    background: #fff;
}
.gheader__item__burger > div span:nth-child(1) {
    top: 0;
}   
.gheader__item__burger > div span:nth-child(2), .gheader__item__burger > div span:nth-child(3) {
    top: 7px;
    width: 75%;
    left: 25%;
    right: 0;
}
.gheader__item__burger > div span:nth-child(4) {
    top: 14px;
    width: 50%;
    left: 50%;
    right: 0;
}
 
[aria-expanded="true"].gheader__item__burger { 
    margin-right: 0;
    z-index: 1001;
}
[aria-expanded="true"].gheader__item__burger > div {
    pointer-events: none;
}
[aria-expanded="true"].gheader__item__burger > div span:nth-child(1), [aria-expanded="true"].gheader__item__burger > div span:nth-child(4) {
    top: 50%;
    width: 0%;
    left: 50%;
}
[aria-expanded="true"].gheader__item__burger > div span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
[aria-expanded="true"].gheader__item__burger > div span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* menu design end */
/* .color-green{color: #169716;} */

/*RESPONSIVE MENU*/

.responsive_btn {

    display: none;

    cursor: pointer;

    text-align: center;

    width: 40px;

    height: 40px;

    margin: -2px 0;

    position: absolute;

    top: 13px;

    right: 0;

    background: #000080;

    -webkit-border-radius: 5px;

    border-radius: 5px;

    z-index: 20;

    -moz-transition: all 300ms ease-in-out;

    -webkit-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

}

.responsive_btn span {display: block; height: 2px; width: 20px; position: relative; top: 50%; margin: -1px auto;}

.responsive_btn span:before,.responsive_btn span:after {content: ""; display: inline-block; height: 100%; width: 100%; position: absolute; left: 0;}

.responsive_btn span:before {top: -6px;}

.responsive_btn span:after {bottom: -6px;}

.responsive_btn span,.responsive_btn span:before,.responsive_btn span:after {

    background: #fff;

    -webkit-border-radius: 1px;

    border-radius: 1px;

    -moz-transition: all 300ms ease-in-out;

    -webkit-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

}

.responsive_btn:hover span, .responsive_btn:hover span:before, .responsive_btn:hover span:after {background: #014baf;}



.responsive_nav {

    display: block;

    position: fixed;

    left: -280px;

    top: 0;

    bottom: 0;

    width: 280px;

    min-height: 100%;

    z-index: 20;

    background: #000080;

    -moz-transition: all 300ms ease-in-out;

    -webkit-transition: all 300ms ease-in-out;

    transition: all 300ms ease-in-out;

}

.responsive_nav ul {margin: 0; padding: 0; text-align: left;}

.responsive_nav ul li {

    border-top: 1px solid rgba(255, 255, 255, 0.2);

    list-style-type: none;

    margin: 0;

    padding: 0;

    position: relative;

    text-transform: capitalize;

    font-size: 15px;

    line-height: 20px;

    color: #fff;

}

.responsive_nav ul li:first-child {border-top: none;}

.responsive_nav ul li:after{display: none;}

.responsive_nav ul li > a {display: block; padding: 12px 10px 8px; color: inherit; position: relative;}

.responsive_nav ul li a:hover, .responsive_nav ul li a:focus, .responsive_nav ul li.active > a {
    color: #000080;
    background: #ffffff;
}
.responsive_nav ul ul {padding: 0 0 15px 15px;}

.responsive_nav ul .sub-menu,.responsive_nav ul li a i {display: none;}

.responsive_nav .subarrow {display: block; pointer-events: inherit; width: 30px; height: 40px; line-height: 40px !important; right: 0;}

.responsive_nav ul .sub-menu .container {width: 100%; padding: 0;}

.bodyOverlay {

    position: fixed;

    left: 0;

    top: 0;

    right: 0;

    bottom: 0;

    z-index: 20;

    transform: none;

    background: rgba(0, 0, 0, 0.6);

    opacity: 0;

    visibility: hidden;

    -webkit-transition: all 500ms ease 0s;

    transition: all 500ms ease 0s;

}

html.responsive,.responsive body {overflow-y: hidden;}

.responsive .wrapper {-webkit-transform: translate(-280px, 0) !important; transform: translate(-280px, 0) !important;}

.responsive .bodyOverlay {opacity: 1; visibility: visible;}

.responsive .responsive_nav {left: 0;}

.responsive .responsive_btn {pointer-events: none;}

.responsive .responsive_btn span {-webkit-transform: rotate(45deg); transform: rotate(45deg);}

.responsive .responsive_btn span:after {-webkit-transform: rotate(270deg); transform: rotate(270deg); top: 0;}

.responsive .responsive_btn span:before {opacity: 0;}

.responsive_nav .opened > .subarrow {-webkit-transform: rotate(180deg); transform: rotate(180deg);}

.responsive_nav .mCSB_outside + .mCSB_scrollTools{right: 0;}

.responsive .responsive_nav .mCSB_outside + .mCSB_scrollTools{right: -4px;}

/*MENU END*/



/* SLIDER

---------------------------------*/

.common_banner{position: relative; overflow: hidden; background: #f7f7f7;height: auto;}

.common_banner img{width: 100%; display: block; opacity: 1;}

.homebanner{ 
    position: relative;
    height: auto; 
    z-index: 1;  
} 
.innerbanner{ overflow: hidden;}
.innerbanner img{
    object-fit: cover;
    width: 100%;
    height: 320px;
}

.banner-video{
    width: 100%;
    height: 550px;
}
.banner-video video{
    width: 100%; 
    height: 100%;
    object-fit: cover;
}
.bannerbox{position: relative;}
.bannertext{
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    left: 0;
    padding-top: 30px;
    width: 100%;
    z-index: 2;
}
.bannerWrap h2{
    color: #fff;
    font-size: 90px; line-height: 100px;
    font-family: 'Fredericka the Great', cursive;
}
.bannerWrap{max-width: fit-content; margin: 0 auto; padding: 30px; color: #fff; text-align: center;} 
.bannerpara{
    font-family: var(--heading-font);
    font-size: 27px;
    position: relative;
    z-index: 1;
}
.bannertext .btn{
    margin-top: 24px;
    text-transform: capitalize;
   min-width: auto;
   font-size: 20px;
   font-family: var(--heading-font);
   width: 100%; font-weight: normal;
   height: 40px; line-height: 40px;
}
.bannertext .btn.btn-white{
    border-width: 2px; line-height: 38px;
}
.bannertext .btn i{font-size: 24px;}  
.bannertext .heading, .bannertext h1{
    color: var(--color-white);
    font-size: 39px; 
    line-height: normal; 
    margin-bottom: 25px;  
    padding: 0;
    max-width: fit-content;
    text-align: left;
} 
.bannertext h1 span{text-align: left;}
.homeslider.owl-carousel{padding: 0;}

.homeslider.owl-carousel .owl-nav{width: auto;}

.homeslider.owl-carousel .owl-nav [class*="owl-"]{

	margin: -30px 0 0;

    font-size: 0;

    min-width: inherit;

	width: 35px;

	height: 62px;

	background: url(../images/sprite.png) no-repeat -300px -100px;

	opacity: 1;

}

.homeslider.owl-carousel .owl-nav .owl-prev{left: -70px;}

.homeslider.owl-carousel .owl-nav .owl-next{right: -70px; background-position: -400px -100px;}

.homeslider.owl-carousel:hover .owl-nav .owl-prev{left: 10px;}

.homeslider.owl-carousel:hover .owl-nav .owl-next{right: 10px;}

.homeslider.owl-carousel .owl-dots{position: absolute; left: 0; right: 0; bottom: 50px;}

.homeslider .bannerimg {

    width: 100%;
    height: 100vh;

    position: relative;

    overflow: hidden;

}

.homeslider .bannerimg img, .bannerimg video{

    width: 100%;

    height: 100%;

    object-fit: cover;

    position: absolute;

    top: 0;

    left: 0;

}

.homeslider .bannerimg::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: rgb(0 0 0 / 50%);

    z-index: 1;

}

/*SLIDER END*/



/* FOOTER

---------------------------------*/

.mainFooter {  
    width: 100%;  
    font-size: 18px; 
    line-height: normal;  
    padding: 0; 
    color: #fff; 
    z-index: 1;  
    background: #000;
    
} 
.homebody  .mainFooter{
    position: fixed; 
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
}
/* .mainFooter::before{
    content: "";
    position: absolute;
    top: -180px;
    left: 0;
    bottom: 0;
    width: 100%; 
    background: url(../images/fbg.png) repeat-x top center;
} */
.fnav.clm2{
    max-width: 200px;
}
.fbox h3{
    color: var(--color-main); margin-bottom: 20px;
    font-size: 24px; line-height: normal; 
    font-family: var(--heading-font); font-weight: 600;
}
.fnav.clm2 ul{
    column-count: 2;
}
.fbox a{color: inherit;}
.fbtn{
    width: 155px;
    margin-left: auto;
}
.fcontact li a{display: flex; align-items: center; font-weight: 500;}
.fbottom{
    /* background-color: #000; */
    padding: 10px 0; 
    font-size: 10px; font-weight: 300; line-height: normal; 
    /* color: #fff;  */
} 
.fbottom p{margin-bottom: 0;}
.mainFooter a:hover, .mainFooter .active > a, .mainFooter .current-menu-item > a, .companyname:hover{color: var(--color-ylw);}

.ftop{padding-bottom: 40px;}
 

.ftop ul{list-style: none; margin: 0; padding: 0;}
 
.fbottom a{color: var(--color-main);} 
.flogo a{display: block;}
 
.fnav li:last-child, .f-form li:last-child, .solutions li:last-child, .f_contact li:last-child{margin: 0;}
.fnav li a{color: inherit;}
.fnav li a span{
    width: 26px; flex-shrink: 0; margin-right: 8px;
}
.ft1{
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 17%;
}
.ft2{
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 45%;
}
.fnav li:not(:last-child){margin-bottom: 20px;}
.fnav li a:hover{color: var(--color-main);}
 
.ftop .social li{display: flex; align-items: center; margin-bottom: 10px;}
.ftop .social li:last-child{margin-bottom: 0;}
.social a {
    font-size: 0;
    vertical-align: top;
}

.social a i {
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 20px;
    margin-right: 10px;
    color: #fff;
    text-align: center;
    background-color: var(--color-ylw);
    border-radius: 100%;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    position: relative;
    z-index: 1;
}
.social a:hover i{transform: rotate(360deg);}
.social a.facebook i{

    background-color: #3b5999;

    border-color: #3b5999;

    color: #fff;

}
.social a.linkedin i{background-color: #006fa6; border-color: #006fa6; color: #fff;}
.social .instagram i{background-color: #A4765C; border-color: #A4765C; color: #fff;}
.social a.twitter i {
    background-color: #1da1f2;
    border-color: #1da1f2;
    color: #fff;
}
.social li span{
    font-size: 14px;
    line-height: 32px;
    text-transform: capitalize;
    vertical-align: top;
}
.f-form ul{

    padding: 0;

    margin: 0;

    list-style: none;

    display: flex;

    flex-wrap: wrap;

}

.f_logo-side .para {

    padding-right: 30px;

}

.f-form li {

    flex: 1;

    margin: 0 15px 0 0;

}

.f-form li .label_Wrap {

    margin: 0;

}

.copyright {

    padding: 0px;

    font-size: 14px;

    line-height: 20px; 

    font-weight: 500; 

    text-transform: capitalize;

}

.copyright-wrapper{padding: 15px 0; border-top: 1px solid #5a5a8c;}

.copyright p{padding: 0; text-align: inherit; display: block; margin-bottom: 0;} 

.copyright a{color: #548744;}

.copyright a:hover{color: #000000;}

/*FOOTER END*/
/* ==================*/
 
.testimonial-sec{
    background: rgb(247, 247, 247);
    height: 100vh;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.testi-text{
    text-align: center;
    padding: 30px;
    font-weight: 300;
}
.testi-text h3{
    font-size: 16px;
    color: #2d2d2d;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
}
.testi-text h3 span{
    display: block;
    color: #ccc;
    font-size: 70%;
}
#thumbs figure{
    width: 70px;
    height: 70px;
    margin: 0 10px;
    border-radius: 100%;
    overflow: hidden;
}
#thumbs figure img{
    width: 100%;
    width: 100%;
    object-fit: cover;
}
#thumbs.owl-carousel .owl-stage{
    margin: 0 auto;
}
#thumbs .item{
    filter: brightness(0.7);
}
#thumbs .active.current .item{
    filter: none;
}
/* =======================
========================== */
.img-ratio{
    position: relative;
    padding-top: 100%;
    width: 100%;
    overflow: hidden;
}
.img-ratio img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.img-ratio:hover img{
    transform: scale(1.2);
}
.fp-slider.owl-carousel .owl-nav .owl-prev{
    left: -40px;
}
.fp-slider.owl-carousel .owl-nav .owl-next{
    right: -40px;
}
.fp-box{display: block;}
.fp-box .img-ratio{
    padding-top: 130%;
}
.fp-box:hover .img-ratio img{
    transform: scale(1.2);
}
.fp-list{
    position: relative;
}
.fp-list::before{
    content: "";
    position: absolute;
    left: -95px;
    bottom: -100px;
    width: 592px; height: 444px;
    background: url(../images/fp-shape.png) left bottom;
}
.fp-section .sec-head h2{max-width: 908px; margin: 30px auto 0;}
.right-icon{
    position: absolute;
    right: 5%;
    bottom: 0;
}
.fp-section{
    padding-bottom: 120px;
}
/* ============================
=============================== */
.abt-left{
    position: relative;
    width: 526px;
    padding-right: 140px; padding-bottom: 100px;
}
.abt-left img:nth-child(1){
    width: 374px; height: 466px;
}
.abt-left img:nth-child(2){
    width: 230px; height: 348px;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 8px solid #fff;
}
.about-section .sec-para{
    text-align: center;
    font-size: 17px; line-height: 32px;
    color: #232323;  
    max-width: 500px;
}
.about-section .btn-center{margin-top: 35px;}
.social-abt{
    margin-top: -138px;
    position: relative;
    padding-left: 80px;
}
.social-abt a{margin-right: 6px;}
.abtright-shape{ 
    position: absolute;
    right: 0;
    bottom: -60px;
}
.abtleft-shape{ 
    position: absolute;
    left: 0;
    bottom: -40px;
}
.about-section{
    padding-bottom: 180px;
}
.bg{
    background: url(../images/bg.png) repeat-x top 300px center;
}
.insta-list{
    max-width: 1140px;
    padding: 0 70px;
}
.insta-list .col{
    flex: auto;
    max-width: 100%;
    width: 20%;
    padding: 6px;
}
.insta-list .row{
    margin: -6px;
}
.ishape1{ 
    position: absolute;
    left: 0;
    bottom: -260px;
}
.instagram-sec .sec-head p{
    margin-bottom: 5px; font-weight: 600;
    font-family: var(--body-font); text-transform: uppercase;
    font-size: 18px; color: #232323;
}
.ishape2{
    position: absolute;
    left: -50px;
    bottom: -50px;
}
.more-gap{
    margin: -40px;
}
.more-gap [class*="col-"]{
    padding: 40px;
} 
.work-sec .img-ratio{
    padding-top: 130%;
}
.txt-bottom{
    text-align: center;
    padding-top: 15px;
}
.txt-bottom h3{
    margin-bottom: 0;
    font-weight: normal;
    font-family: var(--heading-font2);
    font-size: 38px; line-height: normal;
    color: #232323;
    margin-top: -14px;
}
.txt-bottom .btn{
    margin-top: 24px; font-size: 11px;
    height: 40px; line-height: 38px;
    padding: 0 20px;
}
.txt-bottom h3 strong{
    font-family: var(--heading-font);
    font-weight: 500;
    color: var(--color-ylw);
    vertical-align: baseline;
    font-size: 54px;
}
.work-sec{
    position: relative; 
}
.work-sec::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    top: auto;
    right: 0;
    margin: 0 auto;
    height: 250px;
    width: 250px;
    background: url(../images/dot-top.png) no-repeat bottom center / 250px;
    animation: animName 20s linear infinite;
}
@keyframes animName {
0%{
    transform: rotate(0deg);
    }
100%{
    transform: rotate(360deg);
    }
}
.fr-shape{
    position: absolute;
    right: -50px;
    bottom: -180px;
    max-width: 400px;
}
.txt-rcp h3{
    font-family: var(--heading-font);
    font-weight: 600;
    color: #232323;
    font-size: 30px; line-height: normal;
}
.txt-rcp{
    text-align: center;
    padding-top: 20px;
}
.rcp-slider .item{
    margin-top: 80px;
}
.center .item{
    transform: translateY(-80px);
}
.center .item .d-block{
    animation-duration: 2s;
    animation-name: zoomIn;
}
.recipes-sec .sec-head{
    margin-bottom: -80px;
}
.rcp-slider{
    padding: 0 70px;
}
.rcp-slider.owl-carousel .owl-nav [class*="owl-"]{
    font-size: 34px;
    color: #d3d3d3;
}
.rcp-slider.owl-carousel .owl-nav [class*="owl-"]:hover{
    color: var(--color-ylw);
}
.rcp-slider.owl-carousel .owl-nav .owl-prev{
    left: 20px; 
}
.rcp-slider.owl-carousel .owl-nav .owl-next{
    right: 20px; 
}
.recipes-sec{
    background: url(../images/green-shape.png) repeat-x center bottom;
}
/* =================================
==================================== */ 

/* ============ */
/* Remove for prod */ 
.rtl-slider-flex{
    padding: 0 70px;
}
.slider-content {
    font-size: 17px;
    line-height: 32px;
    color: #232323;
    font-weight: 300;
}
.slider-content h3{
    font-size: 28px;
    line-height: normal;
    font-weight: 600;
    font-family: var(--heading-font);
    color: #232323;
}
.thumb-prev{
    position: absolute; 
    left: 67px;
    bottom: 0; 
    cursor: pointer; 
    font-size: 20px;
    color: #d3d3d3;
}  
.thumb-next{
    position: absolute; 
    bottom: 0; 
    left: 115px;
    cursor: pointer;
    font-size: 20px;
    color: #d3d3d3;
}  
.thumb-next:hover, .thumb-prev:hover{
    color: var(--color-ylw);
}
  .rtl-slider-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
  }
  .rtl-slider-flex .rtl-slider {
    width: 56%;
    margin-right: 1%;
  }
  .rtl-slider-flex .rtl-slider-nav {
    width: 35%;
    margin-top: -2px;
  }
  .rtl-slider-flex .rtl-slider-nav .rtl-slider-slide a{ 
    display: flex;
    padding: 30px;
    align-items: center;
    cursor: pointer;
  }
  .rtl-slider-slide a figure{
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: 100%;
    width: 55px;
    height: 55px;
  }
.slick-current a{
    background-color: #fff;
    box-shadow: 10px 0 10px #efefef;
  }
  .rtl-slider-flex .rtl-slider-nav .slick-slide.slick-current.slick-active .rtl-slider-slide {
    opacity: 1;
  }   
  .slick-list{margin-bottom: 30px;}
  .abt-img{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .about-head{
    padding-bottom: 100px;
    max-width: 620px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .about-head h2{
    background: #f3f3f3;
  }
  .abt-sec{ 
    position: relative;
    min-height: 100vh;
    display: flex;
    overflow: hidden;
    align-items: center;
    flex-wrap: wrap; 
    padding: 60px 0 10vw;
  }
  .client-img{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    padding: 10px;
    background: #fff;
    filter: filter(value);
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: all 300ms ease-in-out;
    /* box-shadow: 0 0 15px #ebebeb; */
  }
  .client-img:hover{
    filter: none;
  }
  .coninfo-head h3{
    font-family: 'Roboto Slab', serif;
    font-size: 24px; line-height: normal;
    color: #1a1a1a;
    font-weight: 500;
}
.coninfo-head i{
    font-size: 28px;
    width: 28px;
    flex-shrink: 0;
    margin-right: 20px;
    color: var(--color-green);
} 
.coninfo ul{ 
    padding-left: 0;
    position: relative;
    list-style: none;
    font-size: 16px;
    font-weight: 500;
} 
.coninfo ul::before{
    content: "";
    position: absolute;
    left: 12px;
    height: 100%;
    width: 1px;
    background-color: var(--color-pink);
}
.coninfo ul li{
    margin-bottom: 4px;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #ccc;
}
.coninfo ul li:last-child{border: none;}
.coninfo ul a{
    color: inherit;
    font-size: 16px;
    width: 100%;
}
.coninfo .fa{ 
    background-color: #000;
    color: #fff;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 10px;
} 
.shadowbox{
    box-shadow: 0px 0px 10px 1px rgba(205.5, 205.5, 205.5, 0.5);
    padding: 30px;
    border-radius: 10px 10px 10px 10px;
    min-height: 100%;
    background: rgb(255 255 255 / 70%);
    backdrop-filter: blur(3px);
}

.con-form input, .con-form textarea{
    color: #666;
    padding: .75em;
    height: auto;
    border-width: 1px;
    border-style: solid;
    border-color: #dddddd;
    border-radius: 2px;
    background: #fafafa;
    box-shadow: none;
    box-sizing: border-box;
    transition: all .2s linear;
    font-family: 'Roboto', sans-serif;
    font-size: 16px; color: #000;
}
.con-form textarea{
    height: 120px;
}
.con-form input::placeholder{color: #666;}
.con-form .labelWrap{margin-bottom: 24px;}
.map iframe{width: 100%;}

/* ============ */
.form-box {
    padding: 30px 30px;
    background: #000000;
    margin-top: -130px;
    border-radius: 8px;
    color: #fff;
    border: 2px solid #fff;
}
.form-box input, .form-box textarea, .form-box select{
    background-color: #ffffff;
    border-color: #ffffff;
}
.contact-page{
    padding: 100px 0;
    background: url(../images/contact-banner_baf4e6bf.jpg) no-repeat center;
    background-size: cover;
}
/* =================== */
/* =================== */
/* .sidebar{
    background-color: #8d8d96;
    padding: 25px; 
} */
.sidebar ul{
    list-style: none;
    margin-bottom: 0;
}
.sidebar ul li a{
    color: #5e5d5d;
    padding: 10px 15px;
    display: block;
    position: relative;
    font-size: 20px;
    line-height: normal;
    background: #fafafa;
    margin: 7px 0;
}
.sidebar ul li a.active{background-color: #cfcfcf;}
/* .sidebar ul li a.active::after{
    content: "";
    position: absolute;
    right: -37px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12.5px 0 12.5px 12px;
    border-color: transparent transparent transparent #8d8d96;
} */
.sidebar ul li:last-child a{
    border: none;
} 
.cms-content{padding-right: 40px;}
.cms-content h2{
    color: #000;
}
.cms-content h3{
    color: #000;
    font-size: 22px;
    line-height: normal;
}
.cms-content ul{
    list-style: none;
}
.cms-content ul li{
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.cms-content ul li::before{
    content: "\f0da";
    font-size: 20px;
    color: #000;
    position: absolute;
    left: 0;
    top: 1px;
    font-family: 'FontAwesome';
} 
.navbar-nav .dropdown-menu ul{
    padding: 10px 15px !important;
}
.navbar-nav .dropdown-menu ul li a{
    font-size: 14px;
}
.career-body{padding-top: 0;} 
.career-body .navmenu{position: absolute;}
.career-sec{
    background: url(../images/career-img_94a9e35a.jpg) no-repeat center;
    background-size: cover;
    min-height: 100vh;
    padding-top: 120px;
}
.career-head{
    margin: auto 0 auto auto;
    padding: 10px; 
    max-width: 600px;
}
.career-head a{color: #014baf;}
.career-sec .container{ height: 100%; display: flex; align-items: center; justify-content: flex-end;}
.cms-page{min-height: 100vh; overflow: hidden;}
.cms-content{
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    visibility: hidden;
}
.cms-content.show { 
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    visibility: visible;
}