/*
Theme Name: Delete the Divide
Theme URI: 
Author: Kosish Bhandari
Author URI: https://techchart.io/
Description: Custom WordPress Framework and Theme developed by Rigorous Web Services
Version: 1.0.0
Text Domain:deleteTheDivide
Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/


/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
5.1 Links
5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
10.1 Posts and pages
10.2 Asides
10.3 Comments
11.0 Infinite scroll
12.0 Media
12.1 Captions

13.0 Miscellaneous
13.1 Basic Styles
14.0 Extra Styles


--------------------------------------------------------------*/


/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
span,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    border: 0;
    /*font-family: inherit;*/
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    font-size: 62.5%;
    /* Corrects text resizing ospanly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
    overflow-y: scroll;
    /* Keeps page centered in all browsers regardless of content height */
    -webkit-text-size-adjust: 100%;
    /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
    -ms-text-size-adjust: 100%;
    /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
    box-sizing: border-box;
    /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    color: var(--text-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    word-wrap: break-word;
    background: var(--white);
    font-family: var(--body_Font);
    /* Fallback for when there is no custom background color defined. */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

table {
    /* tables still need 'cellspacing="0"' in the markup */
    border-collapse: separate;
    border-spacing: 0;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
}

blockquote,
blockquote p {
    font-style: italic;
}

blockquote p {
    margin-bottom: 0;
    padding: 5px 0;
}

blockquote {
    background: #f5f5f5;
    border-left: 4px solid;
    margin: 20px 0px 20px 25px;
    padding: 15px;
    position: relative;
}

blockquote,
q {
    quotes: "" "";
}

a {
    color: var(--primary);
    -webkit-transition: .3s all ease;
    transition: .3s all ease;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
    color: var(--cta-bg)
}

a img {
    border: 0;
}


/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: var(--Heeding_Font);
    font-weight: 700;
}

p,
li {
    color: var(--text-color);
    margin-bottom: 20px;
}

p {
    line-height: 1.5;
    font-size: 21px;
}

h1 {
    font-size: 45px;
}

h2 {
    font-size: 38px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 21px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

b,
strong {
    font-weight: bold;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

address {
    margin: 0 0 15px;
}

pre {
    background: #eee;
    font-size: 15px;
    font-size: 15px;
    line-height: 1;
    margin-bottom: 15px;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-size: 15px;
    margin-bottom: 15px;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
    margin-bottom: 15px;
}

mark,
ins {
    background: var(--white);
    margin-bottom: 15px;
    text-decoration: none;
}

sup,
sub {
    font-size: 75%;
    height: 0;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    bottom: 1ex;
}

sub {
    top: .5ex;
}

small {
    font-size: 75%;
}

big {
    font-size: 125%;
}

caption,
th,
td {
    border-bottom: 1px solid #dedede;
    border-left: 1px solid #dedede;
    font-weight: 400;
    padding: 5px;
    text-align: center;
}

caption {
    border: 1px solid #dedede;
    margin-bottom: 15px;
}

.gallery-caption {
    display: block;
}

.gallery {
    margin-bottom: 1.5em;
    margin-left: -15px;
    margin-right: -15px;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-item {
    display: inline-block;
    margin: 0 0 10px;
    padding: 15px;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery img {
    border: 0px;
    margin: 0px;
    padding: 0px;
}


/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 15px;
}

ul,
ol {
    margin: 10px 0 15px 40px;
}

ul li {
    list-style: disc;
}

ol li {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 40px;
}

li {
    list-style-type: none;
}

dt {
    font-weight: bold;
}

img {
    height: auto;
    max-width: 100%;
}

figure {
    margin: 0 auto 15px;
    position: relative;
}

table {
    width: 100%;
    margin: 15px 0;
    width: 100%;
    border-top: 1px solid #dedede;
    border-right: 1px solid #dedede;
}

th {
    font-weight: bold;
}


/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    /*background-color: #fed136;*/
    background: #222B33;
    border-radius: 0;
    border: none;
    color: var(--white);
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    /*opacity: 0.7;*/
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
    border-color: #aaa #bbb #bbb;
}

input[type="checkbox"],
input[type="radio"] {
    padding: 0;
    /* Aspanresses excess padding in IE8/9 */
}

input[type="search"] {
    -webkit-appearance: textfield;
    /* Aspanresses appearance set to searchfield in S5, Chrome */
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration {
    /* Corrects inner padding displayed ospanly in S5, Chrome on OSX */
    -webkit-appearance: none;
}

div.wpcf7-validation-errors {
    border: 2px solid #004A80;
    bottom: -51px;
    clear: both;
    color: #E90838;
    margin: 0;
    padding: 15px;
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok {
    clear: both;
    color: #398f14;
    margin: 0;
    padding: 15px;
}

span.wpcf7-not-valid-tip {
    bottom: -16px;
    color: #ff0000;
    display: block;
    font-size: 14px;
    position: absolute;
}

input[type="text"],
input[type="password"],
textarea,
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
select {
    border-radius: 0;
    border: 2px solid var(--black);
    box-sizing: border-box;
    color: var(--black);
    padding: 15px;
    width: 100%;
    background: #F7F7F7;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.wpcf7-form p textarea:focus,
textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
textarea:focus,
input[type="submit"] {
    border-color: var(--primary);
    outline: 0;
}

span.wpcf7-form-control-wrap {
    display: block;
    margin-top: 3px;
}

.wpcf7 label {
    width: 100%;
    font-size: 18px;
    margin-bottom: 0px;
    color: #252525;
}

.wpcf7 .wpcf7-list-item label {
    margin-bottom: 0;
}

.sidebar .wpcf7 input {
    background: var(--white);
    border: 1px solid #DDE2EA;
    padding-left: 12px;
}

::-webkit-input-placeholder {
    color: var(--black);
    opacity: 1;
    font-family: var(--body_Font);
}

:-moz-placeholder {
    /* Firefox 18- */
    color: var(--black);
    font-family: var(--body_Font);
    opacity: 1;
    font-size: 18px;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--black);
    font-family: var(--body_Font);
    opacity: 1;
    font-size: 18px;
}

:-ms-input-placeholder {
    color: var(--black);
    font-family: var(--body_Font);
    opacity: 1;
    font-size: 18px;
}


/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/


/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/

a:focus {
    outline: none;
}

a {
    text-decoration: none;
}

a,
a:hover {
    text-decoration: none;
}

:root {
    --primary: #7B3EDF;
    --bg-primary: #4C1A9E;
    --secondary: #FEFB9E;
    --bg: #262626;
    --white: #fff;
    --text-color: #000;
    --black: #000;
    --almost_white: #F7F7F7;
    --cta-bg: #F3BA4A;
    --light-yellow: #FFC541;
    --Heeding_Font: "rooney-web";
    --body_Font: "ysans-std";
}

.container {
    width: 1220px;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 15px;
}

.row {
    margin: 0 -15px;
}

.custom-col-1,
.custom-col-2,
.custom-col-3,
.custom-col-4,
.custom-col-5,
.custom-col-6,
.custom-col-7,
.custom-col-8,
.custom-col-9,
.custom-col-10,
.custom-col-11,
.custom-col-12 {
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

.custom-col-1,
.custom-col-2,
.custom-col-3,
.custom-col-4,
.custom-col-5,
.custom-col-6,
.custom-col-7,
.custom-col-8,
.custom-col-9,
.custom-col-10,
.custom-col-11,
.custom-col-12 {
    float: left;
}

.custom-col-6:nth-child(2n+1),
.custom-col-2:nth-child(6n+1),
.custom-col-4:nth-child(3n+1),
.custom-col-3:nth-child(4n+1) {
    clear: both;
}

.custom-col-12 {
    width: 100%;
}

.custom-col-11 {
    width: 91.66666667%;
}

.custom-col-10 {
    width: 83.33333333%;
}

.custom-col-9 {
    width: 75%;
}

.custom-col-8 {
    width: 66.66666667%;
}

.custom-col-7 {
    width: 58.33333333%;
}

.custom-col-6 {
    width: 50%;
}

.custom-col-5 {
    width: 41.66666667%;
}

.custom-col-4 {
    width: 33.33333333%;
}

.custom-col-3 {
    width: 25%;
}

.custom-col-2 {
    width: 16.66666667%;
}

.custom-col-1 {
    width: 8.33333333%;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}


/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
a:focus {
    outline: 1px dotted var(--bg)
}


/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/


/*--------------------------------------------------------------
Menu Start
--------------------------------------------------------------*/

.menu-top-menu-container>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.main-navigation ul ul ul {
    left: 100%;
    top: 0px;
}

.main-navigation li {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
    padding: 0;
    position: relative;
    margin: 3px 30px 3px;
}

.main-navigation li li {
    margin: 0;
}

.main-navigation li li {
    border-bottom: 1px solid #e7e7e7;
    display: block;
    float: none;
    padding: 0;
    text-align: left;
}

.main-navigation li li:last-child {
    border-bottom: none;
}

.main-navigation li:hover ul {
    display: block;
}

.main-navigation li:hover li ul {
    display: none;
}

.main-navigation li li:hover ul {
    display: block;
}

.main-navigation li li:hover li ul {
    display: none;
}

.main-navigation li li li:hover ul {
    display: block;
}

.main-navigation li li li:hover li ul {
    display: none;
}

.main-navigation li li li li:hover>ul {
    display: block;
}

.menu-top-menu-container>ul>li:first-child {
    margin-left: 0
}

.menu-top-menu-container>ul>li:last-child {
    margin-right: 0
}

.main-navigation ul>li>a {
    display: block;
    text-decoration: none;
    text-transform: capitalize;
}

.site-header .main-navigation ul li:hover>a,
.main-navigation ul>li>a:hover,
.main-navigation ul>li.active>a,
.main-navigation ul>li.current-menu-item>a {
    color: var(--primary);
}

.site-header .main-navigation ul ul li:hover>a,
.main-navigation ul ul>li>a:hover,
.main-navigation ul ul>li.active>a,
.main-navigation ul ul>li.current-menu-item>a {
    background: var(--primary);
    color: var(--white);
}

.main-navigation ul li a {
    position: relative;
    color: var(--text-color);
    font-size: 18px;
}

.main-navigation ul li li a {
    color: var(--text-color);
}

.site-header ul li:hover>a {
    color: var(--primary);
}

.main-navigation ul ul>li>a {
    padding: 15px 25px;
}

.main-navigation ul ul li a {
    font-size: 16px;
    border: none;
}

.main-navigation ul li ul li a:hover {
    box-shadow: none;
    background: var(--primary);
    color: var(--white);
}

.main-navigation li li.current_page_item a:after,
.main-navigation ul li li a:hover:after {
    display: none;
}

.main-navigation .menu>li:hover:after,
.main-navigation li.current-menu-item:after,
.main-navigation .menu ul>li:hover:after,
.main-navigation li.current_page_item:after {
    width: 100%;
}

.main-navigation .menu>li:after,
.main-navigation ul li:after,
.main-navigation li.current-menu-item:after,
.main-navigation .menu ul>li:after,
.main-navigation li.current_page_item:after {
    bottom: 0px;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    margin: 0 auto;
    position: absolute;
    transition: width 0.25s ease 0s;
    -webkit-transition: width 0.25s ease 0s;
    -moz-transition: width 0.25s ease 0s;
    -o-transition: width 0.25s ease 0s;
    width: 0;
    z-index: 88;
}

.main-navigation ul li li:after {
    display: none;
}

.main-navigation li.current-menu-item:after,
.main-navigation ul li.current_page_item:after {
    width: 100%;
}

.main-navigation ul li.menu-item-has-children>ul>li.menu-item-has-children>a:before {
    content: "\f0d7";
    display: inline-block;
    font-size: 12px;
    right: 5px;
    position: absolute;
    left: auto;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 19px;
}

.main-navigation ul li.menu-item-has-children>a::before {
    content: "\f107";
    display: inline-block;
    font-size: 12px;
    font-family: FontAwesome;
    right: -16px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 17px;
    font-size: 14px;
}

.main-navigation ul li.menu-item-has-children>ul>li.menu-item-has-children>a::before {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.main-navigation ul ul {
    transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    -webkit-transform-origin: center top 0;
    -ms-transform-origin: center top 0;
    transform-origin: center top 0;
	transition: all 0.7s ease 0.4s;
	-webkit-transition: all 0.7s ease 0.4s;
	-moz-transition: all 0.7s ease 0.4s;
	-o-transition: all 0.7s ease 0.4s;
    margin: 0;
    position: absolute;
    top: 60px;
    z-index: 999;
    background: var(--almost_white);
    min-width: 200px;
    box-shadow: 1px 14px 16px 0 rgba(0, 0, 0, 0.2);
}

.menu-top-menu-container>ul>li:last-child {
    border: 1px solid var(--black);
    padding: 8px 20px;
    border-radius: 4px;
}

.menu-top-menu-container>ul>li:last-child:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.menu-top-menu-container>ul>li:last-child:hover a {
    color: var(--white);
}

.sticky-header .main-navigation ul ul {
    top: 68px;
}

.main-navigation ul li:hover ul,
.main-navigation ul li:focus-within ul {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.main-navigation ul ul li {
    display: block;
}

.main-navigation ul li a.login_card_menu {
    border: 1px solid var(--black);
    padding: 8px 20px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.main-navigation ul li a.login_card_menu:hover {
    border-color: var(--primary);
    color: var(--white);
    background: var(--primary);
}

.menu-top-menu-container>ul>li:last-child {
    border: 1px solid var(--black);
    padding: 8px 20px;
    border-radius: 4px;
}

.menu-top-menu-container>ul>li:last-child:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.menu-top-menu-container>ul>li:last-child:hover a {
    color: var(--white);
}


/*--------------------------------------------------------------
Menu End
--------------------------------------------------------------*/


/*   -- "Inline Social Profiles" (These are the styles for the Social Site section) --   */

.inline-social-icons ul,
.inline-social-icon ul,
.block-social-icons ul,
.widget ul {
    margin: 0;
}

.inline-social-icon {
    padding: 15px 0;
}

.widget .inline-social-icon {
    padding: 0;
}

.inline-social-icon .entry-title {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 60px;
}

.inline-social-icon li {
    display: inline-block;
    margin: 0 5px 5px 0;
    list-style: none
}

.inline-social-icon li:last-child {
    margin-right: 0;
}

.inline-social-icon li:first-child {
    margin-left: 0;
}

.inline-social-icon li a[href*="facebook.com"]::before {
    content: "\f09a";
}

.inline-social-icon li a[href*="gmail.com"]::before,
.inline-social-icon li a[href*="yahoo.com"]::before,
.inline-social-icon li a[href*="hotmail.com"]::before {
    content: "\f0e0";
}

.inline-social-icon li a[href*="twitter.com"]::before {
    content: "\f099";
}

.inline-social-icon li a[href*="linkedin.com"]::before {
    content: "\f0e1";
}

.inline-social-icon li a[href*="pinterest.com"]::before {
    content: "\f0d2";
}

.inline-social-icon li a[href*="tumblr.com"]::before {
    content: "\f173";
}

.inline-social-icon li a[href*="plus.google.com"]::before {
    content: "\f0d5";
}

.inline-social-icon li a[href*="instagram.com"]::before {
    content: "\f16d";
}

.inline-social-icon li a[href*="youtube.com"]::before {
    content: "\f167";
}

.inline-social-icon li a {
    -o-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    color: var(--white);
    display: inline-block;
    font-size: 0px;
    height: 32px;
    width: 32px;
    text-align: center;
    line-height: 32px;
    background: var(--primary);
    border: 1px solid var(--secondary);
    padding: 0 5px;
}

.inline-social-icon li a:hover {
    background: var(--secondary);
    color: var(--white)
}

.inline-social-icon li a::before {
    font-family: "FontAwesome";
    color: var(--white);
    font-size: 14px;
    text-align: center;
}

.inline-social-icon li a:hover:before {
    color: var(--white);
}


/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/


/* Text meant only for screen readers */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 1.4rem;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}


/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto;
}

.center{
    text-align: center;
}

.right{
    text-align: right;
}


/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

.widget-area-wrap:before,
.widget-area-wrap:after,
.row:before,
.row:after {
    display: block;
    content: "";
    clear: both;
}


/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/

.widget {
    margin-bottom: 30px
}


/* Make sure select elements fit in widgets */

.widget select {
    max-width: 100%;
}


/* Search widget */


/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/

.entry-content img {
    margin-bottom: 15px;
}

.entry-content {
    margin-bottom: 15px;
}


/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/

.sticky {
    display: block;
}

.hentry {
    margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
    display: none;
}

.single .byline,
.group-blog .byline {
    display: inline;
    margin: 0;
}

.entry-content img,
.page-content img,
.entry-summary img {
    margin-bottom: 15px;
}

.page-links {
    clear: both;
    margin: 15px 0 0;
}


/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/

.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
    /*display: none;*/
}


/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/

.comment-content a {
    word-wrap: break-word;
}

.byblog-postauthor {
    display: block;
}


/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/


/* Globally hidden elements when Infinite Scroll is supported and in use. */

.infinite-scroll .paging-navigation,

/* Older / Newer Posts Navigation (always hidden) */

.infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
}


/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */

.infinity-end.neverending .site-footer {
    display: block;
}


/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/

.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}


/* Make sure embeds and iframes fit their containers */

embed,
iframe,
object {
    width: 100%;
}

/* added css for the embed-iframe shortcode */

/* style.css */
.custom-iframe {
    display: block;
    margin: 0 auto; /* Center the iframe horizontally */
    /*max-width: 100%; /* Make sure the iframe doesn't exceed its container */
    width: 150%; /* Set the initial width to 150% */
    height: 600px; /* Set the initial height */
    /*overflow: hidden; /* Hide the horizontal overflow */
    position: relative; /* Create a new positioning context */
    left: 50%; /* Move the iframe 50% from the left edge */
    transform: translateX(-50%); /* Adjust position to center */
}

/* Media query for smaller screens */
@media screen and (max-width: 1200px) {
    .custom-iframe {
        max-width: 100%;
    }
}


/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin: 0 auto;
}

.wp-caption-text {
    text-align: center;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}


/*--------------------------------------------------------------
13 Miscellaneous
--------------------------------------------------------------*/


/*-------------------------------------- 
13.1 Basic Styles
----------------------------------------*/


/*-------------------------------------- 
14.0 Extra Styles
----------------------------------------*/

.back-to-top {
    bottom: 70px;
    position: fixed;
    right: 30px;
    z-index: 99;
}

.back-to-top a {
    color: var(--white);
    display: block;
    font-family: "FontAwesome";
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
    -ms-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    background: var(--primary);
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 3px;
}

.back-to-top a:hover {
    color: var(--white);
    background: var(--secondary);
    border-color: var(--white);
}

.back-to-top a::before {
    content: "\f106";
    top: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.box-button,
input[type="submit"],
.wpcf7 input[type="submit"] {
    display: inline-block;
    font-size: 20px;
    padding: 14px 32px 16px;
    position: relative;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    z-index: 1;
    color: var(--text-color);
    margin-bottom: 2px;
    border: 2px solid var(--black);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.box-button:hover,
.box-button:focus {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

.wpcf7 input[type="submit"],
input[type="submit"] {
    margin-bottom: 0;
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    font-family: var(--body_Font);
    font-weight: 400;
    text-transform: inherit;
}

input[type="submit"]:hover,
input[type="submit"]:focus {
    background: var(--black);
    border-color: var(--black);
}


/*............................main styling from here*/


/* header-section starts*/

.hgroup-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--almost_white);
    padding: 20px 30px 18px;
}

.hgroup-right {
    width: 81%;
    width: calc(100% - 235px);
    width: -webkit-calc(100% - 235px);
}

.site-branding {
    width: 235px;
}

.site-branding img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.site-branding h1 {
    margin-bottom: 0;
}

.site-branding a:hover img {
    opacity: 0.6;
}

.navbar {
    min-height: auto;
    border: none;
    margin: 0;
    display: block;
    padding: 0
}


/* page title styling from here */

.page-title-wrap {
    padding: 90px 0;
    position: relative;
    background: var(--bg-primary);
}

.page-title-wrap * {
    position: relative;
    color: var(--white);
}

.page-title-wrap a:hover span {
    color: var(--cta-bg);
}

.page-title-wrap .page-title {
    color: var(--white)
}

.page-title-wrap p {
    line-height: 1.5;
}

.page-title-content {
    max-width: 730px;
    margin: 0 auto;
}

.breadcrumbs a,
.breadcrumbs span {
    font-size: 21px;
    text-transform: uppercase;
}

.breadcrumbs a {
    color: #888887;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
}

.breadcrumbs a:hover {
    border-color: var(--cta-bg);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs ul {
    margin: 0 0 5px;
}

.breadcrumbs li {
    display: inline-block;
    margin: 0 25px 7px 0;
    position: relative;
    color: var(--primary);
}

.breadcrumbs li:first-child {
    margin-left: 0;
}

.breadcrumbs li:last-child {
    margin-right: 0;
}

.breadcrumbs li::before {
    position: absolute;
    display: block;
    content: "";
    font-family: "FontAwesome";
    color: var(--white);
    right: -19px;
    top: 9px;
    margin: auto;
    height: 10px;
    width: 10px;
    border-right: 2px solid var(--white);
    border-top: 2px solid var(--white);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.breadcrumbs li:last-child:before {
    display: none;
}

.page-title-wrap .breadcrumbs {
    padding-bottom: 15px;
}

.page-title-content .box-button {
    background: var(--cta-bg);
    border-color: var(--cta-bg);
    color: var(--black);
}

.page-title-content .box-button:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}


/*header-section ends*/


/* site main styling from here */

.site-content h2,
.site-content h3,
.site-content h4,
.site-content h5,
.site-content h6 {
    padding-bottom: 10px
}

.site-content section {
    /* padding: 70px 0; */
    position: relative;
    padding-top: 70px;
}

.entry-title {
    /* font-size: 22px; */
    margin-bottom: 5px;
}

.entry-header.heading {
    text-align: center;
    max-width: 765px;
    margin: 0 auto 30px;
}

.entry-header.heading .entry-title {
    /* font-size: 28px; */
    margin-bottom: 5px;
    display: inline-block;
    position: relative;
}

.entry-header.heading p {
    font-size: 20px;
}

.entry-title a:hover {
    color: var(--secondary);
}

.slick-prev,
.slick-next {
    width: 40px;
    height: 35px;
    background: var(--bg);
}


/* banner section starts*/

.banner-section {
    padding: 40px 0;
}

.banner-content-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner-content-wrap>.featured-image {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 430px;
    line-height: 0;
    margin-bottom: 0;
    text-align: right;
}

.banner-content-wrap .banner-content {
    width: 68%;
    width: calc(100% - 430px);
    width: -webkit-calc(100% - 430px);
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0 auto;
}

.home-page .banner-content-wrap>.featured-image {
    width: 370px;
}

.home-page .banner-content-wrap .banner-content {
    width: 63%;
    width: calc(100% - 370px);
    width: -webkit-calc(100% - 370px);
}

.home-page .banner-content .entry-title {
    font-size: 56px;
}

.banner-content p {
    font-size: 28px;
}

.banner-content .entry-title {
    line-height: 1.3;
    margin-bottom: 30px;
}

.home-page .banner-content p {
    font-size: 18px;
}

/* links-content section starts */

section.links-content {
    padding: 25px 10px;
    background: var(--bg-primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.links-content .link-heading {
    font-size: 25px;
    text-transform: capitalize;
    padding-top: 0;
    padding-right: 10px;
    width: 140px;
    margin-bottom: 0;
    color: var(--white);
}
@media (min-width: 576px){
	.links-content .link-heading{
		flex: 0 0 140px;
	}
}

.links-content .feed-link {
    border-right: 1px solid #7B3EDF;
    width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.links-content .feed-link.no-border{
	border: none;
}

.links-content .feed-link:last-child {
    border: none;
}

.links-content a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    text-transform: capitalize;
    padding: 0 15px;
    display: block;
    
}

.links-content .feed-link a:hover{
	color: var(--cta-bg);
}

.links-slider-wrap {
    width: 89%;
    width: calc(100% - 140px);
    width: -webkit-calc(100% - 140px);
    margin-bottom: 0;
}

.links-slider-wrap .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.link-marquee{
	white-space: initial !important;
}
.link-marquee .inner-link{
	display: flex;
}

/* links-content section end */


/* get-connected section starts*/

.site-content section.get-connected-section {
    padding: 60px 0 50px;
}

.get-connected-section {
    overflow: hidden;
}

section.get-connected-section p {
    font-size: 16px;
}

.get-connected-section::before {
    position: absolute;
    display: block;
    content: "";
    height: 1150px;
    width: 1150px;
    background: var(--light-yellow);
    border-radius: 1500px;
    left: 0;
    right: 0;
    margin: auto;
    top: -80px;
    bottom: 0;
}

.get-connected-section .container {
    position: relative;
}

.get-connected-section .post-wrapper {
    max-width: 730px;
    margin: 0 auto;
}

.post {
    margin-bottom: 30px;
}

.get-connected-section {
    background: var(--cta-bg);
}

.post-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.get-connected-section .post-wrapper .post {
    min-width: 50%;
    min-width: calc(50% - 30px);
    min-width: -webkit-calc(50% - 30px);
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    background: #fff;
    margin: 0 15px 20px;
    -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.post .featured-image img {
    width: 100%;
}

.get-connected-section .post-content-wrap {
    padding: 5px 15px 10px;
}

.learn-more-btn {
    text-decoration: underline;
    font-weight: 700;
}


/* digital-divide-section starts*/

.digital-divide-content-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding-top: 20px;
}

.digital-divide-count-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.digital-divide-count-item {
    width: 33.33%;
    padding: 0 25px;
    text-align: center;
    margin-bottom: 30px;
}

.digital-divide-count-number {
    font-size: 58px;
    margin-bottom: 0;
}

.digital-divide-count-title {
    font-size: 18px;
    font-weight: 700;
    display: block;
}

.digital-divide-content-wrap .entry-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-top: 10px;
}

.digital-divide-content-wrap .entry-content p {
    font-size: 20px;
    margin-bottom: 38px;
}


/* news-and-events-section starts*/

.news-and-events-section {
    background: var(--bg);
    margin-top: 70px;
    padding-bottom: 70px;
}

.news-and-events-section * {
    color: var(--white);
}

.post .entry-meta {
    margin-bottom: 15px;
}

.cat-links {
    background: var(--primary);
    padding: 7px 10px 8px 10px;
    display: inline-block;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
}

.cat-links:hover {
    background: var(--cta-bg);
}

.cat-links:hover a {
    color: var(--white);
}

.cat-links i {
    margin-right: 10px;
}

.news-and-events-section .learn-more-btn {
    color: var(--secondary);
}

.news-and-events-section .learn-more-btn:hover {
    color: var(--primary);
}

.entry-meta .date {
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.entry-meta .date::before {
    position: absolute;
    display: block;
    content: "";
    height: 1px;
    width: 68px;
    background: #fff;
    bottom: -3px;
    left: 0;
}

.news-and-events-section .post-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 30px auto 30px auto;
    grid-template-columns: 50% auto auto;
    gap: 30px;
    padding-top: 30px;
}

.see-all-post {
    text-align: center;
}

.news-and-events-section .see-all-post .box-button {
    border-color: var(--white);
}

.news-and-events-section .see-all-post .box-button:hover {
    border-color: var(--primary);
}

.news-and-events-section .post-wrapper .post-content-wrap {
    padding-left: 15px;
}

.news-and-events-section .post-wrapper .entry-content {
    max-width: 420px;
}


/* other-resources-section starts*/

.other-resources-section {
    background: var(--bg-primary);
    overflow: hidden;
}

.other-resources-section .entry-header.heading * {
    color: var(--white);
}

.other-resources-item-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 -10px;
}

.other-resources-item {
    width: 18.9%;
    width: calc(20% - 20px);
    width: -webkit-calc(20% - 20px);
    background: #fff;
    padding: 20px 20px 10px;
    margin: 0 10px 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.other-resources-item p {
    margin-bottom: 10px;
}


/* program page starts*/

.section-menu-wrapper {
    background: #EFEFEF;
    text-align: center;
}

.site-content section.section-menu-wrapper {
    padding: 24px 0 14px;
}

.section-menu ul {
    margin: 0;
    padding: 0;
}

.section-menu ul li {
    display: inline-block;
    list-style: none;
    margin: 0 35px 10px;
}

.section-menu li.init {
    display: none;
}

.section-menu ul li a {
    font-size: 18px;
    text-transform: capitalize;
    color: var(--black);
}

.section-menu ul li a:hover,
.section-menu ul li.current-menu-item a {
    color: var(--primary);
}

.about-us-content-wrap {
    max-width: 790px;
    margin: 0 auto;
}

.about-us-content p,
.program-network-content p,
.role-responsibilities-content p {
    line-height: 1.5;
}

.about-us-content li {
    font-size: 21px;
}

.about-us-info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-us-info-item .entry-content {
    width: 93%;
    width: calc(100% - 50px);
    width: -webkit-calc(100% - 50px);
    padding-left: 20px;
}

.about-us-info-item .entry-content h3 {
    margin-bottom: 0;
    padding-bottom: 5px;
}

.about-us-info-item .entry-content p:last-child {
    margin-bottom: 10px;
}

.infographic-content-wrap {
    padding-top: 40px;
}

.infographic-content-wrap h2 {
    max-width: 740px;
    margin: 0 auto 15px;
}

.infographic-item-wrapper {
    padding-top: 50px;
}

.infographic-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.infographic-item:last-child {
    margin-bottom: 0;
}

.infographic-item .featured-image {
    width: 50%;
    padding-right: 30px;
}

.infographic-item .entry-content {
    width: 50%;
}

.infographic-item .entry-content p {
    line-height: 1.5;
}

.infographic-item:nth-child(2n+2) .featured-image {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    text-align: right;
    padding-right: 0;
    padding-left: 30px;
}

.infographic-item:nth-child(2n+2) .entry-content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}


/* faq section starts*/

.faq-section .accordion-item-wrap,
.search-section {
    max-width: 820px;
    margin: 0 auto;
}

.accordion-item .accordion-content {
    display: none;
}

.accordion-item .toggle {
    font-size: 24px;
    font-family: var(--Heeding_Font);
    color: var(--black);
    position: relative;
    padding-right: 80px;
    display: block;
}

.accordion-item .toggle::before {
    position: absolute;
    display: block;
    content: "";
    height: 4px;
    width: 36px;
    background: var(--black);
    bottom: 0;
    top: 0;
    margin: auto;
    right: 20px;
}

.accordion-item .toggle::after {
    position: absolute;
    display: block;
    content: "";
    height: 36px;
    width: 4px;
    background: var(--black);
    bottom: 0;
    top: 0;
    margin: auto;
    right: 36px;
    transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
}

.accordion-item.current .toggle::after {
    opacity: 0;
    transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
}

.accordion-item .toggle:hover,
.accordion-item.current .toggle {
    color: var(--primary);
}

.accordion-item {
    border-bottom: 2px solid #000;
    padding: 25px 0 30px;
}

.accordion-item:first-child {
    border-top: 2px solid #000;
}

.accordion-content {
    padding-top: 25px;
}

.accordion-content p:last-child {
    margin-bottom: 10px;
}

.accordion-content p {
    line-height: 1.5;
}

.accordion-content p a {
    text-decoration: underline;
}

.accordion-content ul {
    padding-left: 10px;
}

.accordion-content li {
    font-size: 21px;
    list-style: square;
    padding-left: 20px;
    margin-bottom: 15px;
}

.general-sticky-menu .section-menu-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.accordion-item .toggle:hover::before,
.accordion-item .toggle:hover::after {
    background: var(--primary)
}

section.tab-content-style {
    padding-top: 0;
    margin-bottom: 0px;
}


/* partner section starts*/

.partner-section {
    background: var(--cta-bg);
}

.partner-section .entry-header.heading {
    max-width: 100%;
    margin-bottom: 50px;
}

.partner-item-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.partner-item {
    width: 50%;
    padding: 60px 0 0px;
    position: relative;
    border-right: 2px solid var(--black);
}

.partner-item:nth-child(2n+2) {
    border-right: none;
    padding-left: 70px;
}

.partner-item:nth-child(2n+1) {
    padding-right: 70px;
}

.partner-item .featured-image {
    text-align: center;
    margin-bottom: 30px;
}

.partner-item .featured-image img {
    max-width: 375px;
    margin: 0 auto;
    width: 100%;
}

.partner-item .entry-title {
    font-size: 28px;
    margin-bottom: 15px;
    padding-right: 80px;
}

.partner-item p {
    line-height: 1.5;
}

.partner-item .box-button {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    margin: 40px auto;
}

.partner-item .box-button:hover {
    background-color: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.partner-item .entry-content {
    text-align: center;
}

.partner-item .entry-content p {
    text-align: left;
}


/* apply section starts*/

.apply-section {
    background: var(--light-yellow);
}

.apply-content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.apply-content-wrapper>.featured-image {
    width: 375px;
}

.apply-content {
    width: 68%;
    width: calc(100% - 375px);
    width: -webkit-calc(100% - 375px);
    padding-right: 70px;
}

.apply-content .entry-header.heading {
    text-align: left;
    margin-bottom: 50px;
}

.mc4wp-form input {
    height: 60px;
}

.mc4wp-form .subscribe-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.mc4wp-form input[type="submit"] {
    width: 250px;
    text-align: center;
}

.mc4wp-form .mc-field-group {
    width: 66%;
    width: calc(100% - 250px);
    width: -webkit-calc(100% - 250px);
    padding-right: 15px;
}

.apply-section .entry-header.heading .entry-title {
    margin-bottom: 20px;
}


/* community wireless page starts*/

.program-network-content .entry-content {
    max-width: 800px;
    margin: 0 auto;
}

.program-network-content ul,
.role-responsibilities-content .entry-content ul {
    margin-bottom: 30px;
}

.program-network-content ul li,
.role-responsibilities-content .entry-content ul li {
    font-size: 21px;
    list-style: square;
    padding-left: 5px;
    margin-bottom: 20px;
}

.program-network-content .featured-image {
    margin-bottom: 30px;
}

.program-network-content p a,
.program-network-content li a,
.role-responsibilities-content p a,
.role-responsibilities-content li a {
    text-decoration: underline;
}

.entry-content .accordion-item-wrap {
    padding-top: 20px;
}


/* data page starts*/

.data-information-content .entry-header.heading .entry-title {
    margin-bottom: 35px;
}

.data-information-content .entry-header.heading {
    text-align: left;
    margin-bottom: 50px;
}

.data-information-content {
    max-width: 740px;
    margin: 0 auto;
}

.data-information-content .entry-header.heading p {
    line-height: 1.5;
}


/* application page starts*/

.role-responsibilities-content {
    max-width: 740px;
    margin: 0 auto;
}

.role-responsibilities-content .entry-header.heading {
    text-align: left;
}


/* contact page starts*/

.wpcf7-form p {
    position: relative;
}

.wpcf7-form p input {
    padding: 9px;
    padding-left: 45px;
    border-color: #EFEFEF;
    background: #F7F7F7;
    font-size: 14px;
}

.wpcf7-form p textarea,
.wpcf7-form p input {
    border-color: #EFEFEF;
    background: #F7F7F7;
    font-size: 14px;
}

.wpcf7-input-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.wpcf7-input-wrap p {
    width: 50%;
    padding: 0 10px;
}


/*footer section starts*/

.site-footer {
    position: relative;
    background: var(--bg);
    z-index: 9;
    padding: 45px 0 45px;
}

.site-footer .widget {
    margin-bottom: 45px;
}

.site-footer ul {
    margin: 0;
}

.site-footer .widget>ul>li {
    margin-bottom: 20px;
}


/* widget area styling from here */

.widget-area {
    padding: 54px 0 30px;
}

.widget-title {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.widget>ul>li>a {
    font-size: 20px;
    position: relative;
}

.widget>ul>li {
    margin-bottom: 14px;
}

.site-footer .widget-title {
    color: var(--white);
    font-size: 20px;
    text-transform: capitalize;
}

.site-footer .widget-title {
    margin-bottom: 25px;
}

.widget aside#nav_menu-4 {
    margin-top: 40px;
}

.site-footer li {
    list-style: none;
}

.site-footer p {
    font-size: 20px;
}

.site-footer ul li,
.site-generator *,
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6,
.site-footer a,
.site-footer p,
.site-footer span {
    color: var(--white);
}

.site-footer a:hover {
    color: var(--secondary)
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: url("assets/images/select-arrow.png");
    background-repeat: no-repeat;
    background-position: 98% center;
    background-size: 12px;
    font-size: 18px;
    color: var(--text-color)
}

.posts-navigation .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.posts-navigation .nav-links>div {
    width: 48%;
}

.nav-next {
    text-align: right;
}

.nav-links a {
    padding: 15px;
    background: var(--primary);
    color: var(--white);
    display: inline-block;
}

.nav-links a:hover {
    background: var(--secondary);
}

a,
a:hover,
.main-navigation ul>li:hover>a::after,
.main-navigation ul>li>a::after,
.general-sticky-menu .section-menu-wrapper,
.section-menu-wrapper {
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
a:focus,
a:focus-within,
.main-navigation li a:focus-within {
    outline: 1px dotted #C3C3C3;
}

.page-title {
    margin-bottom: 40px;
}

.blog-post-wrap .featured-posts {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    padding: 0 70px;
    column-gap: 25px;
}

.blog-post-wrap .featured-posts .entry-wrapper {
    padding-left: 30px;
}

.blog-post-wrap .featured-posts article {
    background-color: var(--almost_white);
}

.blog-post-wrap h3.entry-title {
    padding-bottom: 0;
}

.blog-post-wrap .featured-posts .entry-content {
    margin-top: 30px;
}

.blog-post-wrap .featured-posts .post-meta {
    position: relative;
}

.blog-post-wrap .featured-posts .post-meta::before {
    position: absolute;
    content: '';
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #C4C4C4;
}

.blog-post-wrap h3.entry-title a {
    color: var(--black);
}

.blog-post-wrap .entry-content a {
    display: block;
    padding: 15px 0 30px 0;
}

.posts-wrap .post,
.posts-wrap .hentry {
    margin: 0;
}

.posts-wrap .post {
    padding: 20px 0;
}

.posts-wrap .entry-content {
    display: none;
}

.custom-pagination {
    width: 100%;
    margin-top: 15px;
    text-align: center;
}

.blog-post .entry-title a,
.post-wrapper .entry-title a {
    color: var(--black);
}

.blog-post .entry-title a:hover,
.post-wrapper .entry-title a:hover {
    color: var(--primary);
    transition: 0.5s;
}

.blog-post-wrap .featured-posts .cat-links {
    margin: 10px 0;
}

.cat-links a {
    color: var(--white);
}

.past-event {
    background: var(--wp--preset--color--cyan-bluish-gray);
}

.past-event i,
.past-event a {
    color: #676767;
}

.grid-post-wrapper .post-wrapper .post {
    width: 33.33%;
    padding: 0 20px;
}

.blog .page-title {
    margin: 40px 0;
}

.blog-post-main .section-title {
    max-width: 550px;
    margin: 0 auto 80px auto;
}

.blog-post-main .section-title .page-title {
    text-align: left;
}

.posts-wrap {
    padding: 93px 120px 80px 120px;
}

.event-single-page .box-button {
    margin-top: 30px;
}

.posts-wrap .box-button,
.event-single-page .box-button {
    color: var(--white);
    background: var(--primary);
    border: none;
    padding: 15px 32px;
}

.posts-wrap .box-button:hover,
.event-single-page .box-button:hover {
    background: var(--cta-bg);
}

.posts-wrap .post:not(:last-child) {
    border-bottom: 1px solid var(--wp--preset--color--cyan-bluish-gray);
}

.posts-wrap .content {
    display: flex;
    align-items: center;
}

.posts-wrap .featured-image {
    width: 200px;
    margin: 0;
}

.posts-wrap .entry-wrapper {
    width: calc(100% - 200px);
    padding-left: 30px;
}

.posts-wrap .entry-header {
    display: flex;
    align-items: flex-end;
}

.posts-wrap .entry-meta {
    order: 2;
    width: 250px;
    margin: 0;
    text-align: end;
}

.posts-wrap h3.entry-title {
    width: calc(100% - 250px);
    margin-right: 35px;
}

.past-events {
    background-color: #676767;
    opacity: 0.5;
}


/* page-template */

.page-template .banner-content {
    padding: 0;
}

.page-template .banner-content h2.entry-title {
    margin-bottom: 30px;
}


/* slick slider in homepage -- start */

.slick-prev,
.slick-next {
    top: 108%;
    background-color: var(--cta-bg);
    border-radius: 5px;
}

.slick-prev {
    left: 25px;
}

.slick-next {
    right: 25px;
}

.slick-prev:before,
.slick-next:before {
    font-family: "FontAwesome";
    color: var(--bg-primary);
    font-size: 30px;
    opacity: 1;
}

.slick-prev:before {
    content: "\f060";
}

.slick-next:before {
    content: '\f061';
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    background: var(--cta-bg);
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
}

.embed-container {
    position: relative;
    padding-bottom: 80%;
    height: 0;
    max-width: 100%;
    margin-bottom: 60px;
}

.embed-container iframe,
.embed-container object,
.embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

small {
    position: absolute;
    z-index: 40;
    bottom: 0;
    margin-bottom: -15px;
}


/* slick slider in homepage -- end */


/* Tab-content in page named 'data' -- start */

[tab-item] {
    display: none;
}

.active[tab-item] {
    display: block;
}

.active[tab-target] {
    background: var(--white);
}

.tab-content-style {
    margin-bottom: 100px;
}

.tab-title ul {
    border: 1px solid #CCCCCC;
    display: grid;
    grid-template-columns: repeat(3, 33.33%);
    margin: 0;
}

.tab-content-style .map-container {
    margin-top: 130px;
}

.tab-title li {
    background: #E6E6E6;
    padding: 25px 50px;
    list-style: none;
    margin: 0;
    cursor: pointer;
    font-weight: bold;
}

.tab-title li:not(:last-child) {
    border-right: 1px solid #CCCCCC;
    ;
}

.tab-content .color-bar {
    display: grid;
    grid-template-columns: repeat(9, 11.11%);
}

.tab-content {
    max-width: 700px;
    margin: 92px auto 0 auto;
}

.tab-content .data-color-wrap {
    padding: 0 60px;
}

.tab-content .data-entry {
    padding: 0 15px;
}

.tab-content .data-entry h2 {
    padding-bottom: 0;
    margin-bottom: 5px;
}

.tab-content .bar {
    width: 58px;
    height: 10px;
    position: relative;
}

.bar p {
    width: 150px;
    transform: rotate(-45deg);
    font-size: 12px;
    position: absolute;
    left: -100px;
    top: 60px;
    text-align: end;
}

.bar1 {
    background: #CDBFAD;
}

.bar2 {
    background: #4C1A9E;
}

.bar3 {
    background: #F3BA4A;
}

.bar4 {
    background: #FB010B;
}

.bar5 {
    background: #58AB4D;
}

.bar6 {
    background: #F7810A;
}

.bar7 {
    background: #46B2EF;
}

.bar8 {
    background: #EC46EF;
}

.bar9 {
    background: #E0E0E0;
}


/* Tab-content in page named 'data' -- end */


/* Single pages -- start */

.page-title-wrap .page-title {
    margin-top: 50px;
    text-align: left;
}

.page-title-wrap p {
    margin-bottom: 40px;
}

.single-program .site-content section {
    padding: 92px 0;
}

.page-title-wrap h2.breadcrumb-present {
    margin-top: 25px;
}

section.single-page-section {
    padding: 70px 230px;
}

.page-title-wrap h2.image-not-present {
    margin-top: 0;
}

.single-event .entry-content .event {
    margin-bottom: 20px;
}

.single-event .entry-content h3.event-title {
    /* font-size: 32px; */
    padding: 0;
}

.single-event .entry-content .event h4 {
    padding: 0;
    margin-bottom: 10px;
}

.single-event .entry-content .event p {
    font-size: 18px;
    margin: 0;
    display: inline-block;
}

.single-event .entry-content .event-cat a {
    text-decoration: none;
    color: var(--black);
}

.single-event .entry-content .event-btn {
    margin-top: 40px;
}


/* Single pages -- end */


/* page-template */

.accordion-item-wrap .current .toggle::before {
    background: var(--primary);
}

.gtranslate .switcher .option {
    position: absolute;
}


/* form */

.mc-field-group {
    position: relative;
}

span.wpcf7-not-valid-tip {
    left: 10px;
    bottom: 15px;
}

span.wpcf7-form-control-wrap {
    margin: 0;
}

.subscribe-form {
    display: grid;
    grid-template-columns: 65% 35%;
}

.subscribe-form p input {
    padding: 13px 32px 13px;
}

.subscribe-form p {
    text-align: end;
}


/*contact form popup*/

.swal2-container.swal2-shown {
    z-index: 9999999;
}


/* search section */

.initial-list {
    display: none !important;
}

.search-section .clear-btn {
    display: none;
}

.no-match {
    display: none;
}

.school-clear-btn {
    display: none;
}

.school-search {
    display: flex;
}

.school-group,
.no-match {
    background: #EFEFEF;
    border-radius: 10px;
    margin-top: 20px;
    padding: 30px 30px 20px 30px;
    box-shadow: 0 12px 7px -7px grey;
}

.school-group {
    display: none;
    max-height: 292px;
    overflow-y: scroll;
}

.search-section .box-button {
    width: 160px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-weight: normal;
    text-transform: none;
    padding: 20px 30px 15px 30px;
    font-family: 'ysans-std';
}

.search-section .entry-title,
.search-section input,
.search-section input::placeholder {
    font-size: 20px;
    font-family: 'ysans-std';
}

.search-section input {
    width: calc(100% - 160px);
    margin-right: 20px;
    padding: 20px 20px 15px 30px;
}

.search-section .entry-title {
    padding: 0;
    font-weight: 100;
}

.search-section .entry-content p {
    color: gray;
    font-size: 15px;
}

.search-section input::placeholder {
    color: #808080;
}

.search-section .post {
    margin-bottom: 10px;
}

.search-section .post-content-wrap {
    display: flex;
    align-items: center;
}

.search-section .meta-field {
    width: 200px;
    display: grid;
    grid-template-columns: 80% 20%;
    font-size: 18px;
}

.search-section .entry-content {
    width: calc(100% - 200px);
    margin: 0;
}

.search-section .school-item a:hover {
    color: none;
}

.search-section .school-not-participate,
.search-section .school-participate,
.search-section .school-icon {
    text-align: end;
}

.search-section .school-not-participate,
.search-section .cross,
.search-section .no-match {
    color: #A70106;
}

.search-section .school-participate,
.search-section .tick {
    color: #305828;
}

main#main section:last-child {
    padding-bottom: 70px;
}

section#partner {
    margin-top: 70px;
}

.general-sticky-menu #aboutus {
    margin-top: 11vh;
}

section.search-section {
    padding-top: 20px;
}


/*/* begin headlines and list style update */

.page-template-template-navigators h1 {
    font-size: 48px;
}

.page-template-template-navigators h2 {
    font-size: 40px;
}

.page-template-template-navigators h4 {
    font-size: 21px;
}

@media only screen and (max-width: 575px) {
    .about-us-content h2 {
        font-size: 30px !important;
    }
}

@media only screen and (max-width: 575px) {
    .about-us-content h3 {
        font-size: 24px !important;
    }
}

@media only screen and (max-width: 575px) {
    h4 {
        font-size: 18px !important;
    }
}

.page-template-template-navigators .site-content h2,
.site-content h3,
.site-content h4,
.site-content h5,
.site-content h6 {
    padding-bottom: 0px !important;
    padding-top: 10px;
}

.about-us-content li {
    font-size: 20px;
}

@media only screen and (max-width: 575px) {
    .about-us-content li {
        font-size: 16px !important;
    }
}

@media only screen and (max-width: 991px) {
    .about-us-content .page-template-template-navigators li {
        font-size: 18px !important;
    }
}


/* end headlines and list style update */

.gtranslate {
    margin-right: 20px;
}

.main-navigation ul ul {
    min-width: 260px;
}

.menu-top-menu-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.switcher {
    width: 123px !important;
    margin-right: 10px;
}

.tab-title li {
    text-align: center;
}

p,
li {
    color: var(--text-color);
    margin-bottom: 15px;
}


/* Begin Table Styles */

table {
    border: 0 !important
}

.tg-700y {
    font-family: "rooney-web", sans-serif;
}

.tg {
    border-collapse: collapse;
    border-color: #ccc;
    border-spacing: 0;
}

.tg td {
    background-color: #fff;
    border-bottom-width: 1px;
    border-color: #ccc;
    border-style: solid;
    border-top-width: 1px;
    border-width: 0px;
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 15px;
    overflow: hidden;
    padding: 10px 5px;
    word-break: normal;
}

.tg th {
    background-color: #f0f0f0;
    border-bottom-width: 1px;
    border-color: #ccc;
    border-style: solid;
    border-top-width: 1px;
    border-width: 0px;
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    overflow: hidden;
    padding: 10px 5px;
    word-break: normal;
}

.tg .tg-fm7j {
    border-color: inherit;
    color: #333333;
    font-family: inherit;
    text-align: center;
    vertical-align: top
}

.tg .tg-myh5 {
    border-color: inherit;
    color: #333333;
    font-family: inherit;
    font-weight: bold;
    text-align: right;
    vertical-align: top
}

.tg .tg-vu26 {
    background-color: #f9f9f9;
    border-color: inherit;
    color: #333333;
    font-family: inherit;
    text-align: center;
    vertical-align: top
}

.tg .tg-700y {
    border-color: inherit;
    color: #333333;
    font-family: inherit;
    font-weight: bold;
    text-align: center;
    vertical-align: top
}

.tg .tg-3tmv {
    background-color: #f9f9f9;
    border-color: inherit;
    color: #333333;
    font-family: inherit;
    text-align: right;
    vertical-align: top
}

.tg .tg-1rfs {
    border-color: inherit;
    color: #333333;
    font-family: inherit;
    text-align: right;
    vertical-align: top
}

@media screen and (max-width: 767px) {
    .tg {
        width: auto !important;
    }

    .tg col {
        width: auto !important;
    }

    .tg-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.tg {
    border-collapse: collapse;
    border-color: #ccc;
    border-spacing: 0;
}

.tg td {
    background-color: #fff;
    border-bottom-width: 1px;
    border-color: #ccc;
    border-style: solid;
    border-top-width: 1px;
    border-width: 0px;
    color: #333;
    font-family: inherit, sans-serif;
    font-size: 16px;
    overflow: hidden;
    padding: 10px 5px;
    word-break: normal;
}

.tg th {
    background-color: #f0f0f0;
    border-bottom-width: 1px;
    border-color: #ccc;
    border-style: solid;
    border-top-width: 1px;
    border-width: 0px;
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: normal;
    overflow: hidden;
    padding: 10px 5px;
    word-break: normal;
}

.tg .tg-c6q4 {
    font-family: inherit;
    text-align: left;
    vertical-align: top
}

.tg .tg-c7pv {
    background-color: #f9f9f9;
    font-family: inherit;
    text-align: left;
    vertical-align: top
}

@media screen and (max-width: 767px) {
    .tg {
        width: auto !important;
    }

    .tg col {
        width: auto !important;
    }

    .tg-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.tg {
    border: none;
    border-collapse: collapse;
    border-color: #ccc;
    border-spacing: 0;
}

.tg td {
    background-color: #fff;
    border-color: #ccc;
    border-style: solid;
    border-width: 0px;
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 16px;
    overflow: hidden;
    padding: 10px 5px;
    word-break: normal;
}

.tg th {
    background-color: #f0f0f0;
    border-color: #ccc;
    border-style: solid;
    border-width: 0px;
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    overflow: hidden;
    padding: 10px 5px;
    word-break: normal;
}

.tg .tg-sxqf {
    border-color: inherit;
    font-family: inherit;
    text-align: left;
    vertical-align: top
}

.tg .tg-ebns {
    background-color: #f9f9f9;
    border-color: inherit;
    font-family: inherit;
    text-align: left;
    vertical-align: top
}

@media screen and (max-width: 767px) {
    .tg {
        width: auto !important;
    }

    .tg col {
        width: auto !important;
    }

    .tg-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* End Table Styles */