@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root{
    --blue-color-static: #1E78C6;
    --primary-site-color: #0A7C44;
    --black-color-static: #000000;
    --white-color-static: #ffffff;
    --grey-color-static: #e5e5e4;
    --outline-color-static: #cccccc;
    --transition-pattern: .2s ease-in-out;
    --roboto-font: "Roboto", sans-serif;
    --georgia: Georgia, 'Times New Roman', Times, serif;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
p{
    font-family: var(--roboto-font);
}
b, strong {
    font-weight: 400;
  }
h1,h2,h3,h4,h5,h6 {
    font-family: var(--georgia);
}
.bg-primary{
    background: var(--primary-site-color);
}
.primary-color{
    color: var(--primary-site-color);
}
/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #555; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--primary-site-color); 
  }
body{
    scroll-behavior: smooth;
}
@media only screen and (max-width: 700px){
    body.menuOpened{
        overflow-y: hidden;
    }
}
h1{
    color: var(--blue-color-static);
}
a{
    color: var(--blue-color-static);
    text-decoration: none!important;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
p:empty {
    display: none;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.btn{
    background: var(--primary-site-color);
    color: var(--white-color-static);
    outline: none;
    text-transform: uppercase;
    border: none;
    box-shadow: inset 0 1px 0 rgb(255, 255, 255 / 20%);
    padding: 0.9rem 2.5rem;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border-radius: 0px;
    transition: var(--transition-pattern);
}
.btn:hover{
    background: var(--black-color-static);
    color: #fff;
}

.width-100{
    width: 100%;
}
/*Header bar style start here */
header{
    border-bottom: 9px solid var(--primary-site-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white-color-static);
    z-index: 999;
    padding-top: 7rem;
}
/* @media only screen and (max-width: 700px){
    header{
        padding-top: 0;
    }    
} */
/* @media only screen and (max-width: 300px){
    header{
        height: 75px;
    }    
} */
.topbar{
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}
@media only screen and (max-width: 340px){
    .topbar{
        height: 100%;
    }    
}
@media only screen and (max-width: 489px){
    .topbar{
        padding: 0;
    }    
}
.logo{
    position: fixed;
    height: 150px;
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media only screen and (max-width: 856px){
    .logo{
        height: 120px;
    	width: 190px;
    }    
}
@media only screen and (max-width: 700px){
    .logo{
        top: 0%;
        height: 110px;
        width: 160px;
    }    
}
/* @media only screen and (max-width: 489px){
    .logo{
        width: 145px;
    }    
}
@media only screen and (max-width: 320px){
    .logo{
        height: 90px;
    }    
} */
/* @media only screen and (max-width: 300px){
    .logo{
        height: 75px;
    }    
}
@media only screen and (max-width: 283px){
    .logo{
        height: 60px;
    }    
} */
.logo a{
    width: 100%;
    height: 100%;
}
.logo img{
    width: 100%;
    height: 100%;
}
.top-menu{
    position: fixed;
    right: 0;
    top: 3%;
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 700px){
    .top-menu {
        top: 1%;
    }    
}
.top-menu div{
    margin-right: 2rem;
}
@media only screen and (max-width: 360px){
    .top-menu .menu_contact_bar{
        margin-right: 1rem;
    }    
}
@media only screen and (max-width: 343px){
    .top-menu .menu_contact_bar{
        margin-right: .5rem;
    }    
}
.menu_contact_bar{
    display: flex;
    flex-direction: column;
}
.menu_contact_bar a{
    transition: var(--transition-pattern);
    font-size: 22px;
    font-weight: 600;
}
@media only screen and (max-width: 700px){
    .menu_contact_bar a{
        padding: 13px 12px;
    }    
}
@media only screen and (max-width: 400px){
    .menu_contact_bar a{
        font-size: 18px;
    }    
}
@media only screen and (max-width: 335px){
    .menu_contact_bar a{
        font-size: 18px;
        padding: 14px 12px;
    }    
}
@media only screen and (max-width: 322px){
    .menu_contact_bar a{
        font-size: 16px;
        padding: 15px 12px;
    }    
}
@media only screen and (max-width: 310px){
    .menu_contact_bar a{
        font-size: 14px;
        padding: 16px 12px;
    }    
}
.menu_contact_bar a:hover{
    opacity: .6;
}
.social_nav_menu ul{
	
    display: flex;
    list-style: none;
    align-items: center;
    height: 100%;
    margin-bottom: 0;
	position: relative;
}
.social_nav_menu ul::before, .social_nav_menu ul::after{
	content: "";
    position: absolute;
    width: 9px;
    height: 130px;
    background-color: #ada5a580;
}
.social_nav_menu ul::before {
	left: -120%;
/* 	clip-path: polygon(40% 0%, 40% 20%, 100% 20%, 100% 80%, 40% 80%, 40% 100%, 0% 50%); */
	clip-path: polygon(0 0, 31% 0, 35% 0%, 65% 0%, 100% 0, 100% 21%, 100% 21%, 66% 21%, 65% 100%, 35% 100%, 35% 22%, 0 21%);
	transform: rotate(90deg);
}
.social_nav_menu ul::after {
	right: -120%;
/* 	clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%); */
	clip-path: polygon(0 0, 31% 0, 35% 0%, 65% 0%, 100% 0, 100% 21%, 100% 21%, 66% 21%, 65% 100%, 35% 100%, 35% 22%, 0 21%);
	transform: rotate(-90deg);
}
@media only screen and (max-width: 670px){
    .social_nav_menu{
        display: none;
    }      
}
.social_nav_menu ul li{
    margin: 0 5px;
    font-size: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
	height: 27px;
}
.social_nav_menu ul li a{
    transition: var(--transition-pattern);
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #000000;
}
.social_nav_menu ul li a span{
    display: none;
}
.social_nav_menu ul li a:hover{
    opacity: .6;

}
.social_nav_menu ul li i{
    width: 100%;
    height: 100%;
}
.social_nav_menu ul li img{
	height: 100%;	
}

.top-menu .top_right_shape{
    height: 20px;
    width: 80px;
    background: var(--primary-site-color);
    margin: 0 0 0 .5rem;
}
@media only screen and (max-width: 700px){
    .top-menu .top_right_shape {
        display: none;
    }      
}
.menu_toggler{
    background: var(--primary-site-color);
    padding: 5px 10px;
    color: #fff;
    display: none;
}
.menu_toggler i{
    font-size: 30px;
}
@media only screen and (max-width: 700px){
    .menu_toggler{
        display: block;
        margin: 0 0.5rem;
    }       
}
.main_menu{
    display: flex;
    justify-content: center;
    transform: translateX(0);
}
body.home_page_active .main_menu{
    border-bottom: none;
}
body.home_page_active .topbar{
    border-bottom: none;
}
@media only screen and (max-width: 700px){
    .main_menu {
        display: flex;
        justify-content: center;
        right: 0;
        position: fixed;
        height: calc(100vh - 79px);
        width: 90%;
        background: #1E1935;
        transition: var(--transition-pattern);
        transform: translateX(100%);
        z-index: 1;
        border-bottom: none;
        top: 79px;
    }
    #menu_toggler:checked ~ .main_menu{
        transform: translateX(5pX);
    }
    body.home_page_active .main_menu{
        border-bottom: none;
    }
    /* body.home_page_active .topbar{
        border-bottom: 5px solid var(--primary-site-color);
    } */
}
.main_menu ul{
    display: flex;
    list-style: none;
    margin-bottom: 0;
}
@media only screen and (max-width: 700px){
    .main_menu ul{
        flex-direction: column;
        padding: 2rem 0;
        width: 100%;
    }
    .main_menu ul:first-child{
        padding-bottom: 3rem;
        overflow-y: scroll;
    }
    .main_menu ul:first-child::-webkit-scrollbar {
        width: 2px;
    }     
}
.main_menu ul li{
    margin: 0 .2rem;
    padding: 0 1.2rem 0.3rem 1.2rem;
    border-bottom: 6px solid transparent;
    transition: var(--transition-pattern);
    cursor: pointer;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 15px;
    position: relative;
}
/* @media only screen and (max-width: 995px){
    .main_menu ul li{
        margin: 0.5rem 0rem;
    }       
} */
@media only screen and (max-width: 856px){
    .main_menu ul li{
        font-size: 12px;
    }
}
@media only screen and (max-width: 760px){
    .main_menu ul li{
        padding: 0 0.7rem 0.3rem 0.7rem;
    }
}
@media only screen and (max-width: 700px){
    .main_menu ul li{
        padding: 0;
        font-size: 16px;
        border-bottom: none;
        margin: 0;
    }
}
.main_menu ul li:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: -6px;
    left: 0;
}
.main_menu ul li.current-menu-item:before{
    background-color: var(--primary-site-color);
    display: block;
}

.main_menu ul li.current-menu-item:hover:before{
    background-color: var(--primary-site-color);
}
@media only screen and (max-width: 700px){
    .main_menu ul li:before{
        width: 12px;
        height: 5px;
        top: 23px;
    }
    .main_menu ul li.current-menu-item:before{
        display: block;
    }   
}

.main_menu ul li:hover:before{
    background-color: var(--grey-color-static);
}
@media only screen and (max-width: 700px){
    .main_menu ul li:hover:before{
        background-color: transparent;
    }      
}
.main_menu ul li a{
    display: block;
    text-decoration: none;
    font-weight: 400;
    color: #000000;
}
.main_menu ul li a:hover {
    color: var(--primary-site-color);
}
.main_menu ul li.current-menu-item a {
    color: var(--primary-site-color);
}
@media only screen and (max-width: 700px){
    .main_menu ul li a{
        color: var(--white-color-static);
        padding: 15px .7rem 15px 2rem;
    }        
}
.main_menu ul li .sub-menu li:hover a{
    color: var(--primary-site-color);
}
.main_menu ul li .sub-menu {
    background: #1E1935;
    padding: 10px 0;
    position: absolute;
    top: 150%;
    z-index: 10;
    left: 0;
    width: 280px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition-pattern);
    -moz-transition: var(--transition-pattern);
    -o-transition: var(--transition-pattern);
    transition: var(--transition-pattern);
    box-shadow: 10px 10px 0 var(--primary-site-color);
}
.submenu_toggler{
    position: absolute;
    right: 1.5rem;
    top: 0.5rem;
    padding: 2px 4px;
    background: #fff;
    display: none;
}
@media only screen and (max-width: 700px){
    .submenu_toggler{
        display: block;
    }
    .main_menu ul li .sub-menu{
        background: transparent;
        border-left: 2px solid var(--primary-site-color);
        padding: 0 0;
        align-items: start;
        opacity: 1;
        visibility: visible;
        position: static;
        box-shadow: none;
        display: none;
        margin-left: 2rem;
        width: calc(100% - 2rem);
    }
    .submenu_toggler i{
        transition: var(--transition-pattern);
    }
    .submenu_toggler.open i{
        transform: rotate(180deg);
    }
    .submenu_toggler.open ~ .sub-menu{
        display: block;        
    }   
}
.main_menu ul li .sub-menu li{
    margin-top: 1rem;
    padding-left: 3rem;
    padding-right: 0;
}
@media only screen and (max-width: 700px){
    .main_menu ul li .sub-menu li {
        margin: 0;
        padding: 0;
    }
}
.main_menu ul li .sub-menu li a{
    color: var(--white-color-static);
    display: block;
}
.main_menu ul li .sub-menu li a:hover {
    color: var(--primary-site-color);
}
@media only screen and (max-width: 700px){
    .main_menu ul li .sub-menu li a {
        padding: 15px .7rem 15px 3.5rem;
    }
    .main_menu ul li .sub-menu li a:hover{
        color: var(--primary-site-color);
    }
}
.main_menu ul li .sub-menu li::before{
    width: 20px;
    height: 5px;
    bottom: 10px;
}
.main_menu ul li.menu-item-has-children:hover .sub-menu{
    opacity: 1;
    visibility: visible;
}

/*Footer style start here*/

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    width: 100%;
}
.footer_content{
    width: 950px;
}
@media only screen and (max-width: 1120px){
    .footer_content{
        width: 800px;
    }      
}
@media only screen and (max-width: 900px){
    .footer_content{
        width: 650px;
    }     
}
@media only screen and (max-width: 750px){
    .footer_content{
        width: 500px;
    }     
}
@media only screen and (max-width: 603px){
    .footer_content{
        width: 70%;
    }     
}
@media only screen and (max-width: 450px){
    .footer_content{
        width: 80%;
    }    
}

.footer_content p{
    text-align: justify;
    font-size: 22px;
    line-height: 32px;
}
@media only screen and (max-width: 1120px){
    .footer_content p {
        font-size: 20px;
        line-height: 30px;
    }       
}
@media only screen and (max-width: 603px){
    .footer_content p{
        font-size: 16px;
        line-height: 22px;
    }       
}
.footer_logo{
    height: 150px;
    width: 220px;
}
.footer_logo a {
    display: block;
    width: 100%;
    height: 100%;
}
.footer_logo img{
    width: 100%;
    height: 100%;
}
.footer_menu ul{
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
@media only screen and (max-width: 400px){
    .footer_menu ul{
        list-style: none;
        display: flex;
    }      
}
.footer_menu ul li{
    border-left: 1.6px solid var(--black-color-static);
    font-weight: 600;
    font-size: 13px;
}
@media only screen and (max-width: 400px){
    .footer_menu ul li{
        font-size: 10px;
    }      
}
.footer_menu ul li:nth-child(1){
    border-left: none;
}
.footer_menu ul li a{
    transition: var(--transition-pattern);
    padding: 19px 8px;
    color: #000000;
}
.footer_menu ul li a:hover{
    color: var(--primary-site-color);
}
.footer_copyright{
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    background: var(--black-color-static);
    color: var(--white-color-static);
    border-top: 5px solid var(--primary-site-color);
}
@media only screen and (max-width: 980px){
    .footer_copyright {
        font-size: 14px;
    }       
}
@media only screen and (max-width: 800px){
    .footer_copyright {
        padding: 1rem 10rem;
    }       
}
@media only screen and (max-width: 700px){
    .footer_copyright {
        padding: 1rem 8rem;
    }       
}
@media only screen and (max-width: 643px){
    .footer_copyright {
        padding: 1rem 5rem;
    }       
}
@media only screen and (max-width: 520px){
    .footer_copyright {
        padding: 1rem 4rem;
    }       
}

@media only screen and (max-width: 700px){
    .footer_copyright p {
        font-size: 12px;
    }       
}
.separator {
    padding-bottom: 2.5rem;
    border-bottom: 5px solid #CDCFD0;
    width: 200px;
}
.wp-block-separator {
	border: none;
	margin-top: 20px;
	border-top: none;
    margin-bottom: 0;
	padding-bottom: 2.5rem;
	border-bottom: 5px solid #CDCFD0;
    width: 200px;	
}

