/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://tomusborne.com
Description: GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
Tags: two-columns,three-columns,one-column,right-sidebar,left-sidebar,footer-widgets,blog,e-commerce,flexible-header,full-width-template,buddypress,custom-header,custom-background,custom-menu,custom-colors,sticky-post,threaded-comments,translation-ready,rtl-language-support,featured-images,theme-options
Version: 3.3.1.1692733120
Updated: 2023-08-22 19:38:40

*/

/*****GLOBAL VARIABLES*****/
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: url(/wp-content/uploads/2023/12/Oswald-Regular.woff2);
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 800;
  src: url(/wp-content/uploads/2023/12/Oswald-Bold.woff2);
}
@font-face {
  font-family: 'Philosopher';
  font-style: normal;
  font-weight: 400;
  src: url(/wp-content/uploads/2023/12/Philosopher-Regular.woff2);
}
@font-face {
  font-family: 'Philosopher';
  font-style: normal;
  font-weight: 800;
  src: url(/wp-content/uploads/2023/12/Philosopher-Bold.woff2);
}

:root{
    /***GLOBAL COLORS****/
    --primary: #0c264c;
    --scondary: #2199d9;
    --dark: #050115;
    --white: #fff;
    --black: #000;
    --light-gray: #e8e8e8;

    /***GLOBAL FONT-SIZE****/
    --font-size--h1: clamp(26px, 3.4vw, 46px);
    --font-size--h2: clamp(24px, 2.5vw, 32px);
	--font-size--h3: clamp(23px, 3vw, 36px);
    --font-size--h4: clamp(20px, 2.5vw, 28px);
	--font-size--h5: clamp(18px, 2.2vw, 24px);
    --font-size--h6: clamp(18px, 1.9vw, 20px);
    --font-size--big: clamp(30px, 3.5vw, 40px);
    --font-size--body: 16px;
    --font-size--button: 18px;
	--font-size--little-text: 12px;
    /***GLOBAL FONT-WEIGHT****/
    --font-weight--h1: 900;
    --font-weight--h2: 900;
	--font-weight--h3: 900;
    --font-weight--h4: 900;
	--font-weight--h5: 900;
    --font-weight--h6: 900;
    --font-weight--button: ;
    /***GLOBAL FONT-FAMILY****/
    --font-family--h1: 'Philosopher';
    --font-family--h2: 'Philosopher';
	--font-family--h3: 'Philosopher';
    --font-family--h4: 'Oswald';
	--font-family--h5: 'Oswald';
    --font-family--h6: 'Oswald';
    --font-family--button: 'Oswald';
    --font-family--body: Arial,Helvetica,sans-serif;
    /***GLOBAL MARGIN-TITLE****/
    --margin-bottom--title: 32px;
    --margin-top--title: 0;
    --margin-bottom--p: 16px;
}

/******STRUCTURE*******/
body{
    margin: 0;
    box-sizing: border-box;
    font-family: var(--font-family--body);
    font-size: var(--font-size--body);
    background-color: white;
}
html {
  scroll-behavior: smooth;
}
.section{
    display: flex;
    justify-content: center;
    padding-right: 30px;
    padding-left: 30px;
    flex-wrap: wrap;
	background-size:cover;
}
.one-col{
    display: flex;
    justify-content: center;
    align-items: center;
	width: 100%;
	flex-direction:column
}
.two-col{
    width: 50%;
	  display: flex;
	  flex-wrap: wrap;
	flex-direction:column
}
.three-col {
    width: 33%;
    display: flex;
	  flex-wrap: wrap;
	flex-direction:column
}
.four-col {
    display: flex;
	flex-wrap: wrap;
	width: 25%;
	flex-direction:column
}
.three-quarters-col {
    display: flex;
	flex-wrap: wrap;
	width: 75%;
	flex-direction:column
}
.section-wrap{
	display: flex;
	justify-content: center;
	width: -webkit-fill-available;
	width: -moz-available;
	max-width:1350px;
    flex-wrap: wrap;
}
.entry-content {
    overflow: hidden;
}
@media(max-width: 800px){
	.three-col,
	.four-col{
    width: 50%;
}
}
@media(max-width: 500px){
	.two-col,
	.three-col,
	.four-col{
    width: 100%;
}
}

/***BACKGROUND***/
.parallax{
    background-attachment: fixed;
}

/****BUTTONS*****/
a.btn,
input[type="submit"].btn{
    min-width: 118px;
    font-family: var(--font-family--button);
    display: flex;
    justify-content: center;
    width: fit-content;
    padding: 8px 16px;
    font-size: var(--font-size--button);
    font-weight: var(--font-weight--button);
}
a.btn.btn-lightblue {
    background: var(--scondary);
    color: var(--white);
}
a.btn.btn-lightblue:hover {
    background: var(--white);
    color: var(--scondary);
}
.btn.btn-white {
    background-color: var(--white);
    color: var(--scondary)
}
.btn.btn-white:hover {
    color: var(--white);
    background-color: var(--scondary)
}
.btn.btn-darkblue{
    background-color: var(--primary);
    color: var(--white)
}
.btn.btn-darkblue:hover{
    background-color: var(--white);
    color: var(--primary);
}

/****FONTS*****/
.h1-style{
    font-size: var(--font-size--h1);
    font-weight: var(--font-weight--h1);
    font-family: var(--font-family--h1);
    margin-bottom: var(--margin-bottom--title);
    margin-top: var(--margin-top--title);
    line-height: 1.2;
}
.h2-style{
    font-size: var(--font-size--h2);
    font-weight: var(--font-weight--h2);
    font-family: var(--font-family--h2);
    margin-bottom: var(--margin-bottom--title);
    margin-top: var(--margin-top--title);
    line-height: 1.2;
}
.h3-style{
    font-size: var(--font-size--h3);
    font-weight: var(--font-weight--h3);
    font-family: var(--font-family--h3);
    margin-bottom: var(--margin-bottom--title);
    margin-top: var(--margin-top--title);
    line-height: 1.2;
	color:var(--primary);
}
.h4-style{
    font-size: var(--font-size--h4);
    font-weight: var(--font-weight--h4);
    font-family: var(--font-family--h4);
    margin-bottom: var(--margin-bottom--title);
    margin-top: var(--margin-top--title);
    line-height: 1.2;
}
.h5-style{
    font-size: var(--font-size--h5);
    font-weight: var(--font-weight--h5);
    font-family: var(--font-family--h5);
    margin-bottom: var(--margin-bottom--title);
    margin-top: var(--margin-top--title);
    line-height: 1.2;
}
.h6-style{
    font-size: var(--font-size--h6);
    font-weight: var(--font-weight--h6);
    font-family: var(--font-family--h6);
    margin-bottom: var(--margin-bottom--title);
    margin-top: var(--margin-top--title);
    line-height: 1.2;
}
a {
	color:var(--primary);
}
.p-style{
    margin-bottom: var(--margin-bottom--p);
}
.textalign-center{
    text-align: center;
}
.aligncenter{
    margin-right: auto;
    margin-left: auto;
}
a{
    transition: 0.3s ease;
    text-decoration: none;
}

/**toggle**/
summary:hover{cursor:pointer}
details summary::-webkit-details-marker {display: none;}
details summary{list-style:none!important;counter-increment: none!important;list-style-type: none!important;}

/*---Header---*/
.hdr-main {position: absolute;width: 100%;padding: 10px 5% 0 30px;display: flex;justify-content: center;z-index:1000}
.hdr-wrp {width: 100%; display: flex; flex-wrap: wrap;}
.hdr-col2 {width: 70%; padding:20px 0;}
.hdr-col1 {width: 30%;}
.menu {list-style: none; margin: 0;}
.menu li a {color: white; font-family: var(--font-family--h4);}
.mobile_menu summary {color: white; font-size: 3em;}
header .menu {display: flex; flex-wrap: wrap; column-gap: 22px; justify-content: flex-end;}
.spt-mn {width: 100%;}
.spt-mn hr {margin-top: 5px; margin-bottom: 5px; border: 0; background: no-repeat;}
.phn-mn a {font-weight: bold;}
.phn-mn {border-left: 1px solid white; padding-left: 18px;}
#menu-main-menu {font-size: clamp(16px, 1.8vw, 20px)}
.menu .menu2-itm a{font-size: clamp(20px, 2vw, 24px)}
@media (max-width: 1024px) {
	.hdr-wrp {align-items: center; justify-content: space-between;}
	.hdr-main {padding-right: 30px;}
	.hdr-col1 {max-width: 211px;}
}
@media (min-width:801px) {
	.mobile_menu summary {display: none;}
	.top-hdr {display:none}
}
@media (max-width: 800px) {
	.brg_mn {display: flex; flex-direction: column; width: 35px; height: 30px; justify-content: space-between; cursor: pointer;}
	.brg_mn>span {width: 100%;height: 4px;background: var(--white);}
	.menu_tgl {position: absolute;background: var(--color--dark-blue);width: 0;height: auto;top: 130px;padding: 0;overflow-y: scroll;left: 100%;transition: all 0.3s ease-out;visibility: hidden;background: white;}
	.hdr-col2 {display: flex; justify-content: flex-end;}
	.mobile_menu[open] .menu_tgl {left: 0;transition: all 0.3s ease-out;visibility: visible;width: 100%;/* padding: 82px 20px 45px; *//* padding: 0; */box-shadow: 0 6px 19px 3px rgba(0,0,0,0.25);}
	.spt-mn {display: none;}
	.menu_tgl .menu li a {color: var(--primary);}
	header .menu_tgl .menu {flex-direction: column;}
	.menu_tgl .menu li a {font-size: 19px;}
	.phn-mn {display: none;}
	.menu_tgl .menu li {padding: 5px 20px; border-bottom: 2px solid var(--primary);}
	.menu_tgl .menu li:last-child {border: 0;}
	.hdr-main {position: relative; padding-bottom: 10px;background: var(--primary);}
	.top-hdr {display: flex; justify-content: space-between;}
	.top-hdr>div {flex-grow: 1;}
	.top-hdr>div>a {display: flex; padding: 12px 20px; justify-content: center; align-items: center; gap: 5px; line-height: 1; font-weight: bold; font-family: var(--font-family--h4); background: var(--scondary); color: white; letter-spacing: 1px;}
	.top-hdr>div>a svg {position: relative; fill: white;}
	.top-hdr .ctc-btn>a {background: white; color: var(--primary);}
	.top-hdr .ctc-btn>a>svg {fill: var(--primary);}
	.mobile_menu summary::marker {content: '☰';}
	.mobile_menu[open] summary::marker {content: '✕';}
}
@media (max-width: 500px) {
	.hdr-col2 {width: 18%;}
	.hdr-col1 {flex-grow: 1; max-width: 180px;}
}
/***sub menu***/
.sub-menu li a {color: var(--scondary);font-size: 14px!important;font-weight: normal;line-height: 1.2;}
.sub-menu li a:hover {color: var(--primary);}
.sub-menu>li {border-bottom: 2px solid var(--primary);padding: 4px 15px;}
ul.sub-menu {overflow: visible;}
.menu .sub-menu .sub-menu {left: 100%;top: 0;}
.menu li:hover .sub-menu>li ,
.menu .sub-menu li:hover .sub-menu {display: block;}
.menu .sub-menu li .sub-menu, .sub-menu>li {display: none;}
.sub-menu>li>a{color: var(--scondary);}
@media (min-width:1025px) {
	.sub-menu {opacity: 0;position: absolute;margin-left: 0;width: auto;list-style: none;display: flex;flex-direction: column;width: 100%;z-index: 1;transition: all 0.3s ease-out;height: 0;overflow: hidden;min-width: 150px;max-width: 300px;}
	.menu li:hover .sub-menu {opacity: 1; background: white; transition: all 0.3s ease-out; height: auto;}
}
@media (max-width: 1024px) {
	.menu ul.sub-menu {margin-left: 0; list-style: none; margin-bottom: 3px;}
	.menu_tgl .sub-menu li {border-bottom: 0;}
	header .menu_tgl .sub-menu li a {color: var(--scondary); font-weight: normal!important;}
}

/*----Footer----*/
.ftr-main {background: var(--dark);display: flex; justify-content: center; padding: 30px 30px 0 30px;overflow: hidden;}
.ftr-wrp {width: 100%; max-width: 1400px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;}
.ftr-col4 {width: 100%; color: white; padding: 16px 0; position: relative; margin-top: 30px;}
.ftr-col4 a {color: white;}
.ftr-col4 p {margin: 0; text-align: center;}
.ftr-col4:before {content: '';  width: 120%; height: 2px;  background: var(--scondary); position: absolute; top: 0; left: -10%;}
.ftr-col3 {width: 40%; display: flex; gap: 15%; align-items: center; padding-left: 4%;}
.ftr-col2 {width: 30%; display: flex; flex-direction: column; align-items: center; gap: 17px; border: 4px solid white; border-radius: 18px;    max-width: 329px;}
.ftr-col1 {width: 30%; padding-right: 30px;}
footer .menu {display: flex; flex-wrap: wrap; flex-direction: column;}
footer .menu>li {padding: 10px 0; border-bottom: 2px solid var(--scondary);}
footer .menu>li>a {font-family: var(--font-family--h1); font-size: 17px;}
.ftr-col3>div {flex-grow: 1;}
footer .menu-footer-menu-1-container>.menu>li>a {font-weight: 800;}
.menu-footer-menu-2-container>ul>li:last-child {border: 0;}
.ftr-col2 p {color: white; text-align: center; margin-bottom: 0; background: var(--dark); padding: 0 10px; margin-top: -13px; width: 100%; max-width: 250px;}
.ftr-bnt>a {background: var(--scondary); display: flex; padding: 9px 20px; justify-content: center; border-radius: 50px; font-size: 19px; text-transform: uppercase; font-weight: 900; color: white;letter-spacing: 1px;}
.ftr-bnt {width: 100%;  max-width:250px}
.ftr-bnt.ftr-bnt-2>a {background: white;    color: var(--scondary);}
.ftr-bnt.ftr-bnt-2 {margin-bottom: -4px; outline: 10px solid var(--dark); border-radius: 50px;}
.ftr-bnt>a:hover {background: var(--primary);}
@media (max-width: 1024px) {
.ftr-col1 {width: 100%; text-align: center; padding-right: 0; margin-bottom: 34px;}
.ftr-col2 {width: 50%;}
.ftr-col3 {flex-grow: 1;gap: 6%;padding-left: 8%;}
.ftr-col4:before {width: 100%;  left: 0;}
footer.ftr-main {padding: 30px 5% 0 5%;}
}
@media (max-width: 800px) {
.ftr-col3 {width: 100%; padding-left: 0; max-width: 474px; margin-top: 30px;}
.ftr-wrp {justify-content: center;}
.ftr-col2 {width: 100%;}
}
@media (max-width: 400px) {
.ftr-col3 {flex-direction: column; text-align: center;}
.ftr-col3>div {width: 100%;}
}

/*Blog shortcode*/
.recent-post-list-tle {list-style: none; margin: 0;}
.recent-post-list-tle>li {display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px;}
.recent-post-list-tle h4 {font-size: 16px; margin-bottom: 0;line-height: 1.2;display: flex;}
.recent-post-list-tle>li>svg {fill: var(--scondary);}
.recent-post-list {display: flex; list-style: none; margin: 0; gap: 68px;}
.recent-post-list>li {display: flex; flex-direction: column;}
.recent-post-list .text {order: 1;background: #ededed;padding: 20px;}
.recent-post-list .featured-image img {width: 100%; object-fit: cover; object-position: center;}
.recent-post-list .text h4 {font-size: 16px;margin-bottom: 13px;}
.recent-post-list .text .read-more {color: var(--scondary);font-weight: bold;}
.recent-post-list .text h4>a {color: var(--black); font-weight: bold;}
.recent-post-list-tle a {color: var(--black);    font-weight: bold;}
.recent-post-list-tle>li:last-child {margin: 0;}
@media (max-width: 1200px) {
.recent-post-list {gap: 30px; width: 100%;}
}
@media (max-width: 1024px) {
.recent-post-list .text h4 {font-size: 16px;}
}
@media (max-width: 800px) {
.recent-post-list-tle {max-width: 500px; margin-left: auto; margin-right: auto;}
}
@media (max-width: 500px) {
.recent-post-list {flex-wrap: wrap; gap: 20px;}
}



/***INTERNAL TOP BANNER***/
.internalbanner {
    padding-top: 172px;
    background: linear-gradient(90deg, #050016 0%, #0c264c 74%);
    padding-bottom: 72px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}
.internalbanner .maintitle{
    color: var(--white);
    margin-bottom: 0;
	text-align:center;
	font-size: var(--font-size--h2)
}
.internalbanner hr {
    height: 4px;
    background-color: var(--scondary);
    width: 50%;
    margin-top: 16px;
    margin-bottom: 0;
}
.internalbanner .inner-col{
    flex-direction: column;
    align-items: center;
	max-width: 900px;
}
@media(max-width: 800px){
    .internalbanner {
        padding-top: 32px;
        padding-bottom: 52px;
    }
}


/**Posts***/
.single-post h1 {
    font-size: clamp(22px, 3vw, 32px)!important;
}
.single-post h2 {
    font-size: clamp(22px, 2.4vw, 26px)!important;
    margin-bottom:20px;
    line-height:1.2;
    font-family: var(--font-family--h3);
    font-weight: 900;
}
.single-post h3 {
    font-size: clamp(18px, 2vw, 22px)!important;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: var(--font-family--h3);
    font-weight: 900;
}
.single-post h4 {
    font-size: 18px!important;
    margin-bottom:20px;
    line-height:1.2;
    font-family: var(--font-family--h3);
    font-weight: 900;
}
.single-post .site-content{
    flex-wrap:wrap;
    justify-content: center;
}
.single-post .site-content .section{
    max-width: 1200px;
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
}
.single-post  .all-post{
    padding-top: clamp(32px, 4%, 72px)
}
.single-post .post-card{
    padding-bottom:  clamp(32px, 4%, 72px)
}
.single-post .related-post{
    padding-bottom:  clamp(32px, 4%, 72px)
}
.single-post .related-post h3{
    width: 100%
}
@media(max-width: 600px){
    .recent-post-list>li{
        width: 100%
    }
    .recent-post-list{
        flex-wrap:wrap;
    }
    .single-post .related-post h3{
        text-align:center;
        margin-bottom: 0;
    }
}