:root {

    --black: #000;
    --off-black: #222222;
    /* --text: #101D32; */
    --text: #010A18;
    --blue: #009CCD;  
    --bright-blue: #03C2FE;  
    --white: #fff;
    --nav-white: #FAFAF9;
    --light-gray: #777777;
    --dark-gray : #3F3F3F;
    --font-isans : "Instrument Sans", sans-serif;
    --font-iserif : "Instrument Serif", serif;
    --font-ipm : "IBM Plex Mono", monospace;
    --font-ps : "Instrument Sans", sans-serif;
    --font-pbs: "Public Sans", sans-serif;
}




/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** body
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
body {
    font-family: var(--font-isans);
    font-style: normal;
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-gray);
    background: var(--white);
    line-height: 140%;
}
body.category,
body.tag ,
body.blog,
body.search ,
body.archive, 
body.page-template-default {
    background: var(--nav-white);
}


/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** pre-defined classes
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
h1, .h1 {
    font-size: 75px;
    line-height: 1.05;
    font-family: var(--font-iserif);
    font-weight: 400;
    color: var(--text);
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 0.01em;
}

h2, .h2 {
    font-size: 40px;
    line-height: 130%;
    font-weight: 400;
    color: var(--text);
    font-family: var(--font-iserif);
    margin: 0;
}

h3, .h3 {
    font-size: 30px;
    line-height: 130%;
    color: var(--text);
    font-family: var(--font-iserif);
    font-weight: 400;
    margin: 0;
}

h4, .h4 {
    font-size: 28px;
    line-height: 130%;
    margin: 0;
    font-family: var(--font-isans);
    font-weight: 700;
}

h5, .h5 {
    font-size: 25px;
    line-height: 130%;
    margin: 0;
    font-family:var(--font-iserif);
    font-weight: 400;
}

h6, .h6 {
    font-size: 20px;
    line-height: 130%;
    margin: 0;
    font-family: var(--font-iserif);
    font-weight: 400;
}

.lg-text {
    font-size: 24px;
}

.md-text {
    font-size: 20px;
}

.sm-text {
    font-size: 14px;
}

.black {
    color: var(--black);
}
.off-black {
    color: var(--off-black);
}
.white {
    color: var(--white);
}
.nav-white {
    color: var(--nav-white);
}
.blue {
    color: var(--blue);
}
.bright-blue {
    color: var(--bright-blue);
}
.dark-gray {
    color: var(--dark-gray);
}
.light-gray {
    color: var(--light-gray);
}
.text {
    color: var(--text);
}
.bg-nav-white {
    background-color: var(--nav-white);
}
.bg-black {
    background-color: var(--black);
}
.bg-off-black {
    background-color: var(--off-black);
}
.bg-white {
    background-color: var(--white);
}
.bg-blue {
    background-color: var(--blue);
}
.bg-bright-blue {
    background-color: var(--bright-blue);
}
.bg-dark-gray {
    background-color: var(--dark-gray);
}

.f-13 {
    font-size: 13px;
}
.f-14 {
    font-size: 14px;
}


.font-ipm {
    font-family: var(--font-ipm);
}
.fw-100 {
    font-weight: 100;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fs-normal {
    font-style: normal;
}
.lt-space-5 {
    letter-spacing: 0.05em ;
}


.fs-italic {
    font-style: italic;
}

.tt-upper {
    text-transform: uppercase;
}

.tt-lower {
    text-transform: lowercase;
}

.ta-center {
    text-align: center;
}

.ta-left {
    text-align: left;
}

.ta-right {
    text-align: right;
}

.ls-1 {
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}

.ls-3 {
    letter-spacing: 3px;
}

.fl {
    display: flex;
    gap: 1rem;
} 

.fl-ai-center {
    align-items: center;
} 

.fl-ai-fs {
    align-items: flex-start;
} 

.fl-ai-fe {
    align-items: flex-end;
} 

.fl-jc-sb {
    justify-content: space-between;
}

.fl-jc-fs {
    justify-content: flex-start;
}

.fl-jc-fe {
    justify-content: flex-end;
}

.fl-jc-center {
    justify-content: center;
}

.fl-dir-row {
    flex-direction: row;
}

.fl-dir-col {
    flex-direction: column;
}

.fl-dir-row-rev {
    flex-direction: row-reverse;
}

.fl-dir-col-rev {
    flex-direction: column-reverse;
}
.fl-wr-wrap {
    flex-wrap: wrap;
}
.gd {
    display: grid;
}
.gd-col-2 {
    grid-template-columns: 1fr 1fr;
}
.gd-col-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.m-auto {
    margin-left: auto;
    margin-right: auto;
}

.m-0 {
    margin: 0;
}

.m-1 {
    margin: 1rem;
}

.m-2 {
    margin: 2rem;
}

.m-3 {
    margin: 3rem;
}

.m-4 {
    margin: 4rem;
}

.m-5 {
    margin: 5rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.mx-1 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx-2 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.mx-3 {
    margin-left: 3rem;
    margin-right: 3rem;
}

.mx-4 {
    margin-left: 4rem;
    margin-right: 4rem;
}

.mx-5 {
    margin-left: 5rem;
    margin-right: 5rem;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.my-3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.my-4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.my-5 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.p-3 {
    padding: 3rem;
}

.p-4 {
    padding: 4rem;
}

.p-5 {
    padding: 5rem;
}

.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pt-4 {
    padding-top: 4rem;
}

.pt-5 {
    padding-top: 5rem;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.pb-4 {
    padding-bottom: 4rem;
}

.pb-5 {
    padding-bottom: 5rem;
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.px-1 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-2 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-3 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.px-4 {
    padding-left: 4rem;
    padding-right: 4rem;
}

.px-5 {
    padding-left: 5rem;
    padding-right: 5rem;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.py-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}


/* Button */
.btn{
    color: var(--off-black);
    font-family: var(--font-ipm);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.65px;
    text-transform: uppercase;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    width: fit-content;
    text-align: center;
}
.btn.primary{
    border-radius: 4px;
    border: 1px solid var(--off-black);
    line-height: 1.1;
}
.primary:hover{
    background: #CCEBF5;
    color: var(--text);
    border-color: #03C2FE;
}

.btn.black {
    background-color:var(--black);
    color: #fff;
    border-radius: 4px;
    border: 1px solid var(--off-black);
}
.btn.black:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}
.btn.secondary {
    border-radius: 4px;
    border: 1px solid var(--bright-blue);
    background-color:#fff;
    color: var(--text);
}
/* .btn.secondary:hover{
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
} */



.btn.dark-blue{
    border-radius: 4px;
    background: linear-gradient(332deg, rgba(11, 23, 50, 0.95) 59.93%, rgba(27, 42, 76, 0.95) 78.91%);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.10);
    padding: 10px 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 0.3s ease;
    font-family: var(--font-isans);
    letter-spacing: 0.02em;
}
.btn.dark-blue:hover{
    background:rgba(0, 156, 205, 1);
}


.subtitle {
    font-family: var(--font-isans);
    font-size: 13px;
    line-height: 120%;
    color: var(--text);
}
.subheading {
    font-family: var(--font-ipm);
    font-weight: 600;
    font-size: 13px;
    line-height: 120%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
}
.subheading a {
    text-decoration: none;
    color: inherit;
}
.subheading.blue {
    color: var(--blue);
}
.subheading.dark-gray {
    color: var(--dark-gray);
}
.bg-blue .subheading,
.research_banner_section .subheading {
    color: var(--white);
}

/* Layout */
.container {
    max-width: 1380px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}
.guttenberg-page {
    padding: 4rem 0;
}
.guttenberg-page h1,
.guttenberg-page h2,
.guttenberg-page h3,
.guttenberg-page h4,
.guttenberg-page h5, 
.guttenberg-page h6 {
	margin: 1rem 0 0.5rem;
    font-family:var(--font-iserif);
    color: var(--text);
}
.guttenberg-page ul li,
.guttenberg-page ol li {
	margin-bottom: .1em;
}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** 404 Page
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.error-404 {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.error-page-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.error-page-content p {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Header
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
#masthead {
    background-color: transparent;
    transition: all .25s linear;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    padding: 30px 0 0 0 !important;
}
.admin-bar #masthead {
    top: 32px;
}
#masthead.scrolled {
    background-color: var(--white);
    /* background: linear-gradient(184.36deg, var(--white) 78.43%, var(--blue) 117.1%); */
    box-shadow: 0 0 10px #009ccd33;
    padding: 10px 0 0px 0 !important;
}
#masthead.white-header.scrolled {
    background-color: var(--text);
    /* background: linear-gradient(184.36deg, var(--text) 78.43%, var(--blue) 117.1%); */
    box-shadow: unset;
}
body.home #masthead.white-header.scrolled {
    min-height: 74px;
}
.main-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--text);
}
.white-header .main-header {
    border-color: var(--white);
    transition: all .25s linear;
}
#masthead.scrolled .main-header {
    border: 0;
    align-items: center;
    min-height: 54px;
}
.header-adjust {
    min-height: 94px;
}

/* Header Search bar */
header .main-header {
  position: relative !important;
}

.main-navigation.toggled {
  position: absolute;
  right: 0;
  z-index: 999;
}

header .main-navigation.opened-search {
  max-width: 500px;
}

header .search_form-wrap form button {
  cursor: pointer !important;
}

header .search_form-wrap input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

ul.nav-menu li:has(.sub-menu) > a {
  position: relative;
  padding-right: 24px !important;
  transition: all 0.3s ease;
}
body.home ul.nav-menu li:has(.sub-menu) > a::after {
  content: "";
  width: 14px;
  height: 8px;
  background-image: url("../img/arrow_white.svg");
  position: absolute;
  right: 0;
  top: 20px;
  right: 0px;
  background-repeat: no-repeat;
}

ul.nav-menu li:has(.sub-menu) > a:hover::after {
  transform: rotate(180deg);
  background-image: url("../img/arrow_blue.svg");
}

ul.nav-menu li:has(.sub-menu) > a::after {
  content: "";
  width: 14px;
  height: 8px;
  background-image: url("../img/arrow_dark_blue.svg");
  position: absolute;
  right: 0;
  top: 20px;
  right: 0px;
  background-repeat: no-repeat;
}

/*  */
/* .search-results #masthead.scrolled {
    padding: 10px 0 0 0 !important; 
    min-height: 54px !important;
} */



/* Logo */
.site-branding {
    line-height: 0;
    margin-bottom: 10px;
}
.site-branding img {
    max-height: unset;
    width: 200px;
    transition: all .25s linear;
}
body.home .white-header .site-branding img {
    width: 250px;
}
#masthead.scrolled .site-branding img {
    width: 150px;
}

/* Menu */
.main-navigation li {
    position: relative;
}
.main-navigation li.current-menu-item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 9px;
    background-color: var(--bright-blue);
    bottom: -6px;
}
.site-header.scrolled .main-navigation li.current-menu-item:after {
    bottom: 0px;
}
.main-navigation a {
    color: var(--text);
    padding: 10px 10px 20px 10px;
    transition: all .25s linear;
}
body.home .white-header .main-navigation a {
    padding: 10px 10px 30px 10px;
}
.white-header .main-navigation a {
    color: var(--white);
}
.main-navigation a:hover {
    color: var(--bright-blue);
}


/* Search Icon */
.header_src_icon {
    margin-top: 10px;
    cursor: pointer;
}
img.search-icon{
    min-width: 24px !important;
    min-height: 24px !important;
    width: 24px !important;
    height: 24px !important;
}
.opened-search .header_src_icon {
    opacity: 0;
}
header .search_form-wrap {
    display: none;
    position: absolute;
    right: 0;
    top: -2.2px;
    width: 100%;
    border-bottom: 1px solid var(--text);
}
header .search_form-wrap form {
    display: flex;
}
header .search_form-wrap form button {
    padding: 0;
    background: transparent;
    border: 0;
    position: relative;
    z-index: 3;
}
header .search_form-wrap input {
    border: 0 !important;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-family: var(--font-ipm);
    font-weight: 600;
    font-size: 13px;
    line-height: 120%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    width: 100%;
    padding: 10px 10px 10px 20px;
    line-height: 2.34;
    border-radius: 0 !important;
}
header .search_form-wrap input:-internal-autofill-selected {
  background-color: transparent !important;
  color: inherit !important;
}

header .search_form-wrap input::placeholder {
    color: inherit;
}
.white-header .search_form-wrap input {
    color: var(--white);
}

.white-header .search_form-wrap {
    border-color: var(--white) !important;
}
.opened-search .menu-primary-menu-container {
    opacity: 0;
}

/* search active state */
.search-field:focus::placeholder {
    color: #009CCD;
}

.wpb_wrapper ul:has(.entry-title) {
    padding: 0;
    width:100%;
}


/* ************************************ ********************************************
    *********************************************************************************************************** */
/* remove clear button */
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}
input[type="search"]::-moz-search-clear {
    display: none;
}
input[type="search"]::-ms-clear {
    display: none;
}
input[type="search"]::-ms-reveal {
    display: none;
}




/* Submenu */
.main-navigation .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0 10px 20px;
}
#masthead.scrolled .sub-menu {
    background: var(--white);
}
#masthead.white-header.scrolled .sub-menu {
    background: var(--text);
}
.main-navigation .sub-menu a {
    color: var(--text);
    padding: 15px 5px !important;
    text-align: left;
    font-size: 16px;
}
.white-header .main-navigation .sub-menu a {
    color: var(--white);
}
.main-navigation .sub-menu a:hover {
    color: var(--bright-blue);
}

/* image */
.nav-image img {
  height: 20px;        
  width: auto;
  display: block;
}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** toggle memu
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */

.toggle-menu {
    display: none;
}
.toggle-menu-inner{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.toggle-menu-inner span {
    width: 30px;
    height: 3px;
    background-color: var(--text);
    transition: transform .25s linear;
}
.white-header .toggle-menu-inner span {
    background-color: var(--white);
}
.toggle-menu.active span:first-child {
    transform: translateY(9px) rotate(45deg);
}

.toggle-menu.active span:nth-child(2) {
    opacity: 0;
}

.toggle-menu.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}




/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Post Details
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.post-page {
    padding: 100px 0;
}
.post-page .post-content-con {
    max-width: 990px;
    width: 100%;
    margin: 0 auto;
    gap: 100px;
    display: flex;
    flex-direction: column;
}
.post-page .entry-title {
    text-align: center;
	font-family: "Barlow", sans-serif !important;

}
.post-page .post-conten-con {
    text-align: center;
}
.post-date-and-hd {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.post-body {
    position: relative;
}
.post-page .post-content {
    font-size: 20px;
    line-height: 1.6;
    color: var(--black);
/*     font-weight: 500; */
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
}
.post-page .post-content p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--black);
    font-weight: 500;
}
.post-page .post-content a {
    color: var(--black);
}
.post-date {
    font-size: 20px;
    line-height: 1.2;
    color: var(--black);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.post-thumbnail {
    margin-bottom: 1.5rem;
}
.post-thumbnail img {
    width: 100%;
}
/* Social Share */
.social-share {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: sticky;
    left: 0;
    top: 150px;
}
.social-share a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--off-black);
    color: var(--black);
    transition: all .25s linear;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    font-size: 20px;

}
.social-share a:hover {
    background-color: var(--off-black);
    color: var(--white)
}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Footer
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
#colophon {
  background-image: url("../img/footer_bg_image.svg"),
    linear-gradient(184deg, var(--text) 78.43%, #009ccd 117.1%);
  background-repeat: no-repeat;
  background-position: bottom left 20px, center;
  background-size: auto, cover;
  padding: 62px 0px 32px 0px;
}

.footer-logo-con img {
  height: 70px;
  object-fit: contain;
}

#colophon .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: 60px;
}

#colophon .container a,
#colophon .container div {
  color: var(--white);
  font-weight: 700;
  /* font-size: 18px; */
  line-height: 1.2em;
  letter-spacing: 0.02em;
}

#colophon .container a:hover {
    color: var(--bright-blue);
}
#colophon .footer-menus {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

#colophon .footer-menus ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 0;
  margin: 0;
}

#colophon .footer-menus ul li a {
  text-decoration: none;
  font-size: 16px !important;
  letter-spacing: 0.32px;
  line-height: 120% !important;
}

#colophon .footer-info a {
  color: var(--bright-blue);
  font-weight: 400 !important;
  line-height: 145% !important;
}

.footer-info p {
  margin: 0;
  padding: 0;
}

.form-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 0px 25px 25px 25px;
}

.site-footer .bottom-links a {
  color: var(--white);
}

.site-footer .footer-menus {
  width: 100%;
}

.site-footer .logo_menus {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.site-footer .footer-logo-con {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 460px;
  width: 100%;
}

.site-footer .footer_right {
  display: flex;
  padding-top: 9px;
}

.footer-bottom-menu ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 0;
  margin: 0;
}

#colophon .footer-info p {
  font-weight: 400 !important;
  line-height: 1.4em;
}

#colophon .footer-bottom-menu ul li a {
  font-size: 12px;
  font-weight: 400 !important;
}

#colophon .footer-bottom .copyright p {
  margin: 0;
  font-size: 12px;
  font-weight: 400 !important;
  line-height: 1.4em;
}

.site-footer .footer-bottom {
  display: flex;
  gap: 16px;
  align-items: end;
}

.footer-bottom_2 {
  display: none !important;
}

#colophon .footer-bottom_2 .copyright p {
  margin: 0 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
}

.site-footer .footer-bottom_2 {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social-flex {
  font-size: 13px !important;
  letter-spacing: 0.05em !important;
  display: flex;
  /* justify-content: center; */
  align-items: center !important;
  gap: 30px;
  padding-bottom: 9px;
}

/* .footer-social-flex .social-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
} */
.footer-social-flex .social-icon .footer-sc-icon {
    width: 30px;
    height: 30px;
    background-color: var(--white); 
    transition: all .3s linear;
}
.footer-social-flex .social-icon .footer-sc-icon:hover {
    background-color: var(--bright-blue);
}

.footer-social-icons {
  display: flex;
  gap: 20px;
}
.social-icon {
    display: flex;
    gap: 20px;
}
.follow-btn {
    text-decoration: none;
    text-transform: capitalize;
    border: 2px solid white;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}
.follow-btn:hover {
    border-color: var(--bright-blue);
    color: var(--bright-blue);
}
.follow-text {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2em;
  letter-spacing: 0.05em;
}
.footer-menus-wrapper {
  display: flex;
  flex-direction: row;
  gap: 60px;
}

.footer-menu-title {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2em;
  letter-spacing: 0.05em;
}

.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-list li {
  margin-bottom: 20px;
}

.footer-menu-list li a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s;
  font-weight: bold;
}

.footer-menus-wrapper .footer-menu-row:nth-child(3) .footer-menu-title {
  visibility: hidden;
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** responsive styles
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
@media only screen and (max-width: 1200px) {
    /* Header Responsive */
    .main-navigation {
        align-items: center !important;
        justify-content: end !important;
    }

    body.home .white-header .main-navigation a,
    .main-navigation a {
        /* padding: 10px; */
    }

    .search_form-wrap {
        margin-right: 90px;
    }

    .main-navigation.opened-search .toggle-menu {
        opacity: 0;
        pointer-events: none;
    }

    .main-navigation.opened-search .search_form-wrap {
        margin-right: 0;
    }

    /* Footer */
    #colophon .container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-menus-wrapper {
        gap: 40px;
    }

    .footer-social-flex {
        flex-wrap: wrap;
    }
}


@media only screen and (max-width: 1024px) {
    /* GLobal */
    h1, .h1 {
        font-size: 50px;
    }

    h2, .h2 {
        font-size: 34px;
    }

    h3, .h3 {
        font-size: 28px;
    }

    h4, .h4 {
        font-size: 25px;
    }

    h5, .h5 {
        font-size: 20px;
    }

    h6, .h6 {
        font-size: 16px;
    }


    /* Header  */
    .toggle-menu {
        display: flex;
        order: 2;
    }
    .site-branding img {
        max-width: 70%;
    }
    .main-navigation a {
        /* padding: 10px !important; */
    }
    #masthead .main-header {
        align-items: center;
        padding: 10px 0;
    }
    #masthead.scrolled  {
        padding: 10px 0;
    }
    .site-branding {
        margin: 0;
    }

    #primary-menu {
        display: flex;
        gap: 20px;
        position: fixed;
        max-width: 300px;
        width: 100%;
        background: linear-gradient(184.36deg, var(--white) 78.43%, var(--blue) 117.1%);
        box-shadow: 0 0 10px #009ccd33;
        left: 0;
        top: 0;
        height: 100%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 30px 50px;
        transition: all .3s linear;
        translate: -300px 0;
    }
    .white-header #primary-menu {
        background: linear-gradient(184.36deg, var(--text) 78.43%, var(--blue) 117.1%);
        box-shadow: unset;
    }
    .active #primary-menu {
        translate: 0 0;
    }

    .main-navigation a {
        font-size: 20px;
        padding: 10px 0 !important;
    }

    /* footer  */
    #colophon .container {
        gap: 30px;
    }

    .footer-menus-wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }
    .footer-social-flex {
        justify-content: flex-start;
    }


}

@media only screen and (max-width: 998px) {
    /* Global */
    h1, .h1 {
        font-size: 40px;
    }


    /* Footer */
    #colophon .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-right {
        margin-top: 30px;
    }

    .footer-menus-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .site-footer .footer-form {
        width: 100% !important;
        max-width: 100% !important;
    }

    .site-footer .footer-bottom_2 {
        display: flex !important;
        gap: 16px;
        align-items: center;
    }

    .footer-bottom_2 {
        display: block !important;
    }

    .site-footer .logo_menus {
        max-width: 100% !important;
        width: 100%;
    }


    /* error page */
    .error-page-content h1 {
        font-size: 50px;
    }
	
	
	/* Post Details Page	 */
	.post-page .post-content {
		font-size: 16px;
	}
	.post-page .post-content p {
		font-size: 16px;
	}

	.post-date {
		font-size: 18px;
	}

}


@media only screen and (max-width: 767px) {
    /* Buttton */
    .btn.dark-blue {
        font-size: 16px;
    }

	
	/* 	guttenberg */
	.guttenberg-page {
		padding: 2rem 0 4rem;
	}


    

    /* Footer */

    .footer-menu,
    #footer-menu {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    #colophon .container a, 
    #colophon .container p, 
    #colophon .container div {
        text-align: left;
        align-items: flex-start;
        text-decoration: none;
    }

    #colophon {
        padding: 40px 20px 20px 20px;
    }

    #colophon .container {
        gap: 30px;
        grid-template-columns: 1fr !important;
        padding: 0;
    }

    .site-footer .logo_menus {
        gap: 20px !important;
    }

    .site-footer .footer-menus {
        gap: 25px;
        display: grid !important;
        gap: 30px !important;
    }

    .site-footer #footer-menu-3 {
        margin-top: 0 !important;
    }

    .site-footer .form-content {
        font-size: 14px !important;
        padding: 24px 26px !important;
    }

    .site-footer input#gform_submit_button_2 {
        width: 100%;
    }

    .footer-logo-con img {
        height: 70px;
    }

    .footer-menus-wrapper {
        gap: 20px;
    }

    .footer-menu-title {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .footer-menu-list li a {
        font-size: 14px !important;
    }

    .follow-btn {
        font-size: 14px !important;
        padding: 10px 16px;
    }

    .footer-social-flex {
        gap: 15px;
        grid-row: 3;
        justify-content: flex-start;
    }

    .follow-btn {
        font-size: 12px;
        padding: 8px 12px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-social-flex {
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-content: flex-start;
        gap: 20px;
        flex-wrap: wrap;
    }

    .follow-text {
        padding: 0px;
        margin: 0px 40px 0 0;
    }

    .footer-menus-wrapper .footer-menu-row:nth-child(3) .footer-menu-title {
        display: none;
    }



    

    /* Single Post */
    .post-page {
        padding: 50px 0;
    }
    .post-page .post-content-con {
        gap: 30px;
    }
    .post-body {
        grid-template-columns: 100%;
    }
    .social-share {
        flex-direction: row;
        position: static;
        justify-content: center;
        margin-bottom: 45px;
    }
    .post-page .post-content p ,
    .post-page .post-content ul, 
    .post-page .post-content ol {
        font-size: 16px;
    }
    .post-date {
        font-size: 16px;
    }



}

@media only screen and (max-width: 480px) {
  #colophon .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-logo-con img {
    height: 60px;
  }

  .footer-menu-title {
    font-size: 11px;
  }

  .footer-menu-list li a {
    font-size: 13px !important;
  }

  .follow-btn {
    font-size: 12px !important;
    padding: 5px 10px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-social-flex {
    gap: 20px;
  }
}

