
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
- Normalize
- Box sizing
# Base
- Typography
- Elements
- Links
- Forms
## Layouts
# Components
- Navigation
- Posts and pages
- Comments
- Widgets
- Media
- Captions
- Galleries
# plugins
- Jetpack infinite scroll
# Utilities
- Accessibility
- Alignments

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

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
========================================================================== */

/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
========================================================================== */

/**
* Remove the margin in all browsers.
*/
body {
	margin: 0;
}

/**
* Render the `main` element consistently in IE.
*/
main {
	display: block;
}

/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
========================================================================== */

/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
========================================================================== */

/**
* Remove the gray background on active links in IE 10.
*/
a {
	background-color: transparent;
}

/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
	font-weight: bolder;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
* Add the correct font size in all browsers.
*/
small {
	font-size: 80%;
}

/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
========================================================================== */

/**
* Remove the border on images inside links in IE 10.
*/
img {
	border-style: none;
}

/* Forms
========================================================================== */

/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input {
	overflow: visible;
}

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
	text-transform: none;
}

/**
* Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
* 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 {
	outline: 1px dotted ButtonText;
}

/**
* Correct the padding in Firefox.
*/
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*		`fieldset` elements in all browsers.
*/
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
	vertical-align: baseline;
}

/**
* Remove the default vertical scrollbar in IE 10+.
*/
textarea {
	overflow: auto;
}

/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
* Remove the inner padding in Chrome and Safari on macOS.
*/
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
========================================================================== */

/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/
details {
	display: block;
}

/*
* Add the correct display in all browsers.
*/
summary {
	display: list-item;
}

/* Misc
========================================================================== */

/**
* Add the correct display in IE 10+.
*/
template {
	display: none;
}

/**
* Add the correct display in IE 10.
*/
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

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

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

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

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

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

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: #4169e1;
}

a:visited {
	color: #800080;
}

a:hover,
a:focus,
a:active {
	/*color: #191970;*/
	color: #AFCC6F !important;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

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

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

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	/*margin: 0 0 1.5em;*/
}

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

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

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

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

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

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

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

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

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

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

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

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

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

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.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;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}
/*CSS*/
@font-face {
	font-family: 'Reey';
	src: url('./fonts/Reey-Regular.eot');
	src: url('./fonts/Reey-Regular.eot?#iefix') format('embedded-opentype'),
		url('./fonts/Reey-Regular.woff2') format('woff2'),
		url('./fonts/Reey-Regular.woff') format('woff'),
		url('./fonts/Reey-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
body{
	margin-bottom: 0px!important;
	font-family: 'Lato', sans-serif!important;
}
.ray{
	font-family: 'Reey';
	color: #546A25;
}


/*header*/
#site-navigation{
	padding:20px 0px;
}
#menu-left-menu li a, #menu-right-menu li a{
	color: #000;
	font-size: 16px;
	font-family: 'Lato', sans-serif!important;  
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
#site-navigation .row{
	align-items: center;
}
#menu-left-menu li{
	padding-right:30px;
}
#menu-right-menu li{
	padding-left:30px;
}
.v-right-menu-container{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.v-right-menu-container img{
	margin-left: 30px;
	height:29px;
}
#menu-right-menu li:last-child a{
	border-radius: 2px;
	background: #AFCC6F;
	display: flex;
	padding: 12px 20px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	color: #19232C;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 125%;
	letter-spacing: 2.24px;
	text-transform: uppercase;
}
#menu-right-menu{
	align-items: center;
}
.top-header{
	background-color:#19232C;
	padding:13px 0px;
}
.top-header .register, .top-header .login{
	color: #FFF;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
}
.top-header .register a{
	color:#6DADD1;
	text-decoration: none;
}
.top-header .login{
	text-align:right;
}
/*End header*/
/*Footer*/
.site-footer{
	padding:115px 0px 77px;
	background-color:#19232C;
}
.social-icon{
	text-align:right;
}
.social-icon img{
	margin-left:24px;
}
.widget_custom_html ul{
	margin-left:0px;
	padding-left:0px;
	margin-bottom:0px;
}
.widget_custom_html ul li{
	list-style-type: none;
	margin-bottom:8px;
}
.widget_custom_html ul li a{
	color:#fff;
	text-transform:none;
	text-decoration: none;
	font-size: 16px;
	font-family: 'Lato', sans-serif!important;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
}
.widget_custom_html .widget-title{
	color: #fff!important;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 24px;
}
.footer-logo{
	margin-bottom:56px;
}
.footer-col{
	margin-bottom:108px;
}
.footer-copyright{
	padding-top:17px;
	border-top:1px solid #7FA038;
	color:#fff!important;
	font-size: 13px;
	font-family: 'Lato', sans-serif!important;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
}
.footer-copyright .col-5, .footer-copyright .col-7{
	padding:0px;
}
#menu-copyright-menu{
	margin:0px;
	padding:0px;
	display: flex;
	justify-content: space-evenly;
}
#menu-copyright-menu li{
	list-style-type:none;
}
#menu-copyright-menu li a{
	color:#fff;
	text-decoration: none;
	border-bottom: 1px solid #fff;
}
/*End Footer*/
.hero-section{
	padding: 100px 0px 200px;
	background-image: url(/wp-content/uploads/Frame-1000003586-1.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	color:#fff;
}
.hero-section h1{
	font-family: 'Lato', sans-serif;
	font-size: 60px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0em;
	text-align: left;
	margin-bottom:20px;
	max-width: 764px;
}
.hero-section h5{
	font-family: 'Lato', sans-serif;
	font-size: 22px;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: 0em;
	text-align: left;
	margin-bottom:50px;
	color:#fff!important;
}
.button a{
	font-family: 'Lato', sans-serif;
	padding: 10px 20px;
	border: 1px solid #496782;
	background-color: #496782;
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 20px;
	text-decoration: none;
	letter-spacing: 0.16em;
	display:inline-block;
}
.button a:hover {
	background-color:#052232;
	border: 1px solid #052232;
	cursor: pointer;
}
.number-section{
	/*padding:127px 0px 172px;*/
	padding:100px 0px 0px;
	/* 	background-image: url(/wp-content/uploads/Clip-path-group.png); */
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	text-align:center;
}
.page-template-wme .number-section {
	padding-bottom:72px;
}
.small-eyebrow{
	font-family: 'Lato', sans-serif;
	color: #546A25;
	font-size: 13px;
	font-weight: 700;
	line-height: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom:20px;
}
.number-section h2{
	color: #282828;
	text-align: center;
	font-size: 39px;
	font-family: Lato;
	font-weight: 600;
	line-height: 120%;
	text-transform: capitalize;
	margin-bottom:36px;
}
.number-section .numbers-wrapper .numbers h3{
	color: #282828;
	text-align: center;
	font-size: 60px!important;
	font-family: 'Lato', sans-serif;
	font-weight: 800!important;
	line-height: 72px!important;
	letter-spacing: -1.2px;
	margin-bottom: 20px!important;
}
.number-section .numbers-wrapper .numbers p{
	color: #282828;
	text-align: center;
	font-size: 18px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 28px;
}
.number-section .numbers-wrapper{
	display: flex;
	max-width: 874px;
	margin: 0 auto;
	justify-content: space-between;
	padding-bottom:100px;
}
.number-section .row.honorees{
	max-width:874px;
	margin:0 auto;
}
.number-section .row.honorees p{
	margin-bottom:45px;
}
.number-section .row.honorees h5{
	color:  #282828;
	text-align: center;
	font-size: 22px;
	font-family: 'Lato', sans-serif;
	font-weight: 600;
	line-height: 120%;
	margin-bottom:5%;
}
.number-section .row.honorees .images{
	max-width: 610px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 80px;
	grid-row-gap: 50px;
	padding-bottom:80px;
	align-items:center;
}
p.video-caption{
	background-color: #19232C;
	padding: 20px 30px;
	color: #fff!important;
	text-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	font-size: 14px;
	font-family: 'Lato', sans-serif;
	line-height: 125%;
	letter-spacing: -0.28px;
}
.video-section video{
	padding:0px!important;
}
.video-section .row.video{
	margin-bottom:32px;
}
.video-section .col-lg-6{
	background-color: #19232c;
	padding:0px;
}
.video-section .col-lg-6 .notification-content.br{
	padding: 60px 60px 40px 60px;
	color: #fff;
}
.video-section .col-lg-6 .notification-content h6 a{
	color:#fff!important;
}
.video-section .col-lg-6 .notification-content{
	padding: 60px 60px 40px 60px;
	color: #fff;
}
.video-section .col-lg-6 .notification-content p{
	padding:0px;
	margin-bottom:16px;
	line-height:1.5 !important;
	color:#ccc !important;
}
.video-section .col-lg-6 .notification-content h4{
	font-size: 1.5rem !important;
	font-family: 'Lato', sans-serif;
	font-weight: 600;
	line-height: 120%;
	text-transform: capitalize;
	margin-bottom:16px;
}
.notification-content.br{
	background-image:url('/wp-content/uploads/Line-689.png');
	background-repeat: no-repeat;
	background-position: center right;
}
.notification-content h6 a{
	color: #D9D9D9;
	font-size: 18px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 135%;
	letter-spacing: -0.2px;
	text-decoration-line: underline;
	text-transform: uppercase;
}
.video-section{
	padding-bottom: 60%;
	background-image:url('/wp-content/uploads/videio_sec_bg.png');
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: cover;
	padding-left:30px;
	padding-right:30px;
}
.tag-section{
	/* 	padding-top:471px; */
	position:relative;
	/*margin-top:-50%;*/
	/* 	background-image:url('/wp-content/uploads/ETH-GL_0147-scaled-1-1.png'); */
	background-position: center left;
	background-repeat: no-repeat;
	background-size: 92% 100%;
	z-index: 100;
}
.tag-section .content{
	padding: 43px 20px 30px 65px;
	background-color: #fff;
}
.tag-section .col-6{
	padding-right:0px;
}
.section-heading{
	color: #546A25!important;
	font-size: 14px !important;
	font-family: 'Lato', sans-serif;
	font-weight: 600;
	line-height: 125%;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.tag-section .content h5{
	margin-bottom:80px;
	margin-top: 16px;
	font-size: 1rem!important;
	line-height:1.5 !important;
}
/* .v-button{
padding: 15px;
text-align: center;
background-color: #043342;
} */
.quotient-section{
	/*padding: 160px 0px 373px;*/
	padding:96px 0px;
	background-color:#fff;
}
.quotient-section.vsphere {
	background-color: #f4f4f4;
}
.vsphere #tsum-tabsbela main {
	background: transparent;
}
.vsphere .v-tag-content {
	margin-bottom:80px;
}
.quotient-section h3, .quotient-section h5{
	margin-bottom:16px;
}
#tsum-tabs, #tsum-tabsbela{
	margin-top:45px;
}
/*Tabing*/
#tsum-tabs main, #tsum-tabsbela main {
	min-width: 320px;
	margin: 0 auto;
	background: #fff;
}
#tsum-tabs section, #tsum-tabsbela section {
	display: none;
	border-top: 1px solid #000;
}
#tsum-tabs input, #tsum-tabsbela input {
	display: none;
}
#tsum-tabs label, #tsum-tabsbela label {
	color: #000;
	text-align: center;
	font-size: 13px;
	font-family: 'Lato', sans-serif;
	font-style: normal;
	font-weight: 700;
	line-height: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding:23px 15px;
	/* 	max-width:300px;
	min-width:18.67%; */
}
#tsum-tabs label:hover, #tsum-tabsbela label:hover {
	background-color:#AFCC6F;
	cursor: pointer;
}
#tsum-tabs input:checked + label, #tsum-tabsbela input:checked + label {
	background-color:#AFCC6F;
}
#tsum-tabs #tab1:checked ~ #content1,
#tsum-tabs #tab2:checked ~ #content2,
#tsum-tabs #tab3:checked ~ #content3,
#tsum-tabs #tab4:checked ~ #content4, #tsum-tabs #tab5:checked ~ #content5 {
	display: block;
}
#tsum-tabsbela #tabbela1:checked ~ #contentbela1,
#tsum-tabsbela #tabbela2:checked ~ #contentbela2,
#tsum-tabsbela #tabbela3:checked ~ #contentbela3,
#tsum-tabsbela #tabbela4:checked ~ #contentbela4, #tsum-tabsbela #tabbela5:checked ~ #contentbela5 {
	display: block;
}
.tab-content .row .col-8{
	/*background-color: #f4f4f4;*/
	text-align: center;
	padding:24px 0px 24px 40px;
	/*tab flex*/
	display:flex;
	align-items: center;
	justify-content: center;
}
.tab-content .row .col-4 {
	display:flex;
	flex-direction: column;
	padding-top: 24px;
	align-self: flex-start;
}
.tab-content .row .col-4 ul{
	margin: 0px;
	margin-bottom: 2rem !important;
}
.tab-content .row .col-4 ul li{
	list-style-type: none;
	position:relative;
	margin-bottom:32px;
	color: #282828;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5rem;
	padding-left:20px;
}
.tab-content .row .col-4 ul li:before, .eth-list li:before{
	content:" ";
	background-image:url(/wp-content/uploads/Check-icon.png);
	height: 28px;
	width: 28px;
	display: block;
	position: absolute;
	left: -30px;
}
.tab-content .row .col-4 h4{
	margin:24px 0px 16px !important;
}
.tab-content .row .col-4 p {
	margin-bottom:2rem;
	line-height:1.5!important;
}
/* .tab-content .row{
align-items: flex-end;
} */
.accordion-section{
	padding: 136px 0px 151px;
	background-image: url(/wp-content/uploads/accordian_bg.png);
	background-position: 100% 100%;
	background-size: 85% 100%;
	background-repeat: no-repeat;
	margin-bottom:163px;
}
.accordion-section h2, .accordion-section h5{
	color:#fff!important;
	text-align: left!important;
}
.accordion {
	/*width: 488px;*/
	width:100%;
	display: inline-block;
	position: relative;
	max-width: 100%;
}
.accordion .accordion-box{
	border-radius: 8px;
	border: 1px solid #FFF;
	margin-bottom:18px;
}
a.accordion-heading {
	position:relative;
	display: block;
	background-color:transparent;
	color: #fff;
	padding: 20px;
	cursor: pointer;
	text-decoration: none;
	text-align: left;
	color: #FFF;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-style: normal;
	font-weight: 600;
	line-height: 120%;
	text-transform: capitalize;
}
.accordion-content {
	display: none;
	position: relative;
	padding: 20px;
	color:#fff;
	text-align: left;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-style: normal;
	font-weight: 300;
	line-height: 1.3;
	border-top: .5px solid #ccc;
}
a.accordion-heading:after {
	content: '\002b';
	color: #fff;
	font-weight: bold;
	float: right;
	margin-left: 15px;
	font-size: 20px;
	position: absolute;
	right:15px;
	top:20px;
}
a.accordion-heading.active-accordion:after {
	content: '\2212';
}
.accordion-heading.active-accordion, a.accordion-heading:hover{
	color:#84A63A!important;
}
.accordian-outer{
	text-align: right;
	margin-top: 32px;
}
.top-footer-section{
	padding: 156px 0px 141px;
	background:linear-gradient(0deg, rgba(25, 35, 45, 0.85), rgba(25, 35, 45, 0.85)), url(/wp-content/uploads/top-footer_bg.png);
	background-position: center;
	background-repeat: no-repeat !important;
	background-size: contain !important;
	background-color:#151f28 !important;
}
.number-section .honorees h3, .number-section h3{
	margin-bottom:36px;
}
.program-excellence-sec .col-6.list-col h3{
	margin-bottom:20px;
}
.top-footer-section .fs-61{
	color:#fff;
	font-size: 61px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
	text-transform: capitalize;
	margin-bottom:24px;
	font-family: 'Lato', sans-serif!important;
}
.top-footer-section .fs-18{
	color: #FFF;
	font-family: 'Lato', sans-serif!important;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	margin-bottom:32px;
}
.top-footer-section form{
	
}
.top-footer-section input[type="email"]{

}
.top-footer-section input[type="submit"]{


}
.fs-12{
	color: #FFF;
	font-size: 12px;
	font-family: 'Lato', sans-serif!important;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
}
.tag-section .content{
	border-right: 60px solid #043342;
	position: relative;
}
.tag-section.vsphere .content {
	min-height:300px;
} 
.tag-section .col-7{
	padding:0px;
}
.tag-section .tab-button{
	position: absolute;
	right: -95px;
	rotate: 270deg;
	text-align: center;
	top: 45%;
}
.tag-section .tab-button a{
	color: #FFF;
	text-align: center;
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
	text-decoration: none;
}
.tag-section.vsphere {
	margin-top:0;
	padding: 5% 0 5%;
}
.video-section .container{
	padding-left:100px;
	padding-right:100px;
}
.hero-section .hero-content{
	/* width:764px; */
	color:#fff;
}
/*Home Template*/
.page-template-home .number-section .row.honorees .images, .page-template-solution .number-section .row.honorees .images, .page-template-bela .number-section .row.honorees .images, .page-template-solution-the-sphere .number-section .row.honorees .images{
	grid-template-columns: repeat(5, 1fr);
}
.page-template-home .number-section .row.honorees .images, .page-template-home .number-section .row.honorees, .page-template-solution .number-section .row.honorees .images, .page-template-bela .number-section .row.honorees .images, .page-template-solution-the-sphere .number-section .row.honorees .images{
	max-width: 1047px;
}
.page-template-bela .number-section .row.honorees{
	max-width: 1047px;
}
.top-div .content{
	padding:31px 26px 40px;
}
.top-div{
	background-color:#052232;
	color:#fff;
	margin-bottom:20px;
}
.bottom-div{
	background-color:#052232;
	color: #fff;
}
.bottom-div .content{
	padding:31px 26px 40px;
}
.top-div .content .v-hide, .bottom-div .content .v-hide{
	display:none;
}
.top-div:hover .content .v-hide, .bottom-div:hover .content .v-hide{
	display:block;
}
.top-div:hover img, .bottom-div:hover img{
	display:none;
}
.top-div, .bottom-div{
	cursor:pointer;
}
.eth-list{
	margin:0px;
	position:relative;
	padding-bottom:24px;
	padding-left:3rem;
}
.eth-list li{
	list-style-type:none;
	margin-bottom:20px;
}
.top-div h3{
	margin-bottom:12px;
}
.top-div p, .bottom-div p{
	margin-bottom:24px;
}
.top-div h3, .top-div h6 a, .bottom-div h6 a, .top-div p, .bottom-div h3, .bottom-div p{
	color:#fff!important;
}
.eth-list li:before{
	left: 0px;
}
.solution-sec .container .row .col-4:first-child{
	padding-bottom:100px;
}
.solution-sec .container .row{
	align-items: center;
	background-image: url(/wp-content/uploads/circle-bg-pat.png);
	background-position: center right;
	background-repeat: no-repeat;
	background-size: contain;
}
.page-template-home .tag-section{
	margin-top:0px!important;
}
.solution-sec{
	padding-bottom:190px;
}
..page-template-home .tag-section .tab-button{
	right: -185px;
}
.page-template-home .tag-section .content {
	border-right: 60px solid #546A25;
}
.tag-section .container:after {
	content: " ";
	background-image: url(/wp-content/uploads/ETH-GL_0147-scaled-1-2-1.png);
	background-position: left center;
	background-repeat: no-repeat;
	width: 100vw;
	position: absolute;
	top: 0;
	right: 68px;
	bottom: 0;
	display: block;
	z-index: -1;
	background-size: cover;
}
.tag-section{
	background-image:unset!important;
}
.tag-section .container{
	padding-top:471px;
	position:relative;
}
.page-template-home .tag-section{
	background-image:url('/wp-content/uploads/objects-2.png');
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
}
.testimonial-sec{
	/*padding-top:200px;
	padding-bottom:215px;*/
	padding-top:60px;
	padding-bottom:60px;
}
.v-testimonial{
	width: 990px!important;
	margin: 0 auto;
	padding: 65px 115px 60px!important;
	background-image:url('/wp-content/uploads/Group-826.png');
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}
.v-testimonial h4{
	color:#fff;
	margin-bottom:45px!important;
}
.v-testimonial .details{
	display: flex;
	align-items: center;
}
.v-testimonial .details .info{
	margin-left:31px;
}
.v-testimonial .details img{
	border-radius:50%;
}
.v-testimonial .details .info p, .v-testimonial .details .info .small-eyebrow{
	color:#fff!important;
	text-transform: capitalize;
	font-weight: 400;
	margin-bottom:12px;
}
.testimonial-sec h3{
	width:764px;
	margin-bottom:68px;
}
.v-testouter{
	position: relative;
}
.v-testouter img.qoute-icon{
	position: absolute;
	right: 18%;
	bottom: -6%;
}



.event-sec{
	/*padding-bottom: 209px;*/
	padding-bottom:0;
}
.v-event-wrapper{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding:0px!important;
}
.v-event-wrapper .v-event .v-overlay{
	padding:70px 26px 70px 44px;
	background-color: #05223273;
	height:100%;
	position:relative!important;
	display:flex;
	flex-direction: column;
	justify-content: space-between;
}
.v-event-wrapper .v-event{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color:#7393B0;
}
.v-event-wrapper .v-event .fs-43{
	color: #FFF;
	font-size: 43px;
	font-style: normal;
	font-weight: 700;
	line-height: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding-bottom:200px;
	margin-bottom:200px;
}
.v-event-wrapper .v-event h5, .v-event-wrapper .v-event p{
	color:#fff!important;
	visibility:hidden;
	opacity:0;
	transition:visibility 0.3s linear,opacity 0.7s linear;
	margin-bottom:32px;
	font-weight:300;
	line-height:1.3 !important;
}
.v-event-content{
	/*position: absolute;*/
	bottom: 60px;
}
.v-event-wrapper .v-event a{
	color:#fff!important;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 125%;
	letter-spacing: 2.56px;
	text-transform: uppercase;
	text-decoration: none;	
	padding: 8px 16px;
	display:flex;
	align-items:center;
}
.v-event-wrapper .v-event a .arrow{
	margin-left: 8px;
}
.v-event-wrapper .v-event a .arrow:before{
	content:'';
	height:2px;
	width:20px;
	background-color:#fff;
	display:block;
	float:left;
	position:relative;
	top:7px;
	transition:0.2s ease-in-out;
}
.v-event-wrapper .v-event a .arrow:after{
	content:'';
	float:left;
	border-left:8px solid #fff;
	border-right:8px solid transparent;
	border-top:8px solid transparent;
	border-bottom:8px solid transparent;
}
.v-event-wrapper .v-event:hover a .arrow:before{
	width:40px;
}
.v-event-wrapper .v-event:hover h5, .v-event-wrapper .v-event:hover p{
	visibility:visible;
	opacity:1;
}
.v-event-wrapper .v-event:hover .v-overlay{
	background-color: #052232e8;
	height:100%;
}
.v-event-wrapper .v-event:hover .fs-43{
	color:#AFCC6F;
}
.v-event-wrapper .v-event:hover a{
	padding: 8px 16px;
	background-color: #AFCC6F;
	display: inline-block;
	border-radius: 2px;
	color:#000;
}
/*Solution Page */ /* .page-template-solution-the-sphere .hero-section h5 */
.page-template-solution .hero-section, .page-template-solution .hero-section h5, .page-template-solution-the-sphere .hero-section {
	color:#282828!important;
}
.page-template-solution .hero-section {
	background-size: contain;
	background-position-x: 400px;
	background-position-y: 90px;
}
.page-template-solution .eth-list{
	max-width: 400px;
}
.program-excellence-sec .container{
	overflow: hidden;
}
.program-excellence-sec .col-6.list-col{
	padding-right:100px;
}
.program-excellence-sec .v-flex{
	display: flex;
	align-items: center;
}
.program-excellence-sec .v-flex .button{
	margin-right:55px;
}
.page-template-solution .number-section .row.honorees .images {
	padding-bottom:0px;
}
.page-template-solution .number-section{
	padding: 81px 0px 100px;
}
.program-excellence-sec .row{
	align-items: center;
}
.program-excellence-sec{
	padding-bottom:72px;
}
.program-excellence-sec p{
	margin-bottom: 2rem;
}
.page-template-solution .col-6.video-col{
	padding:0px;
}
.page-template-solution .video-caption{
	margin-top:-6px;
}
.v-product-feature-wrapper{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-content: space-around;
	padding-top: 33px;
	padding-bottom: 40px;
	background-color: #19232C;
	color:#fff;
}
.v-product-feature-wrapper .v-product-feature p {
	color:#ccc !important;
	font-weight:300;
}
.v-product-feature-wrapper .v-product-feature h4 {
	font-size:1.6rem !important;
}
.v-product-feature-wrapper .v-product-feature h6 a, .v-product-feature-wrapper .v-product-feature h4 {
	color:#fff !important;
}
.v-product-feature-wrapper .v-product-feature{
	padding-left:24px;
	padding-right:24px;
	display:flex;
	flex-direction: column;
	justify-content: flex-start;
}
.v-product-feature-wrapper .v-product-feature:not(:last-child){
	border-right:2px solid #7FA038;
}
.v-q-content{
	width:650px!important;
}
.page-template-solution .quotient-section{
	/*padding-bottom:234px;*/
}
.page-template-solution .testimonial-sec{
	padding-top:100px;
}
.bela-sec{
	/*padding-bottom:144px;
	padding-top:140px;*/
	padding-bottom:72px;
	padding-top:72px;
	display:block;
}
.bela-sec .col-7{
	position: relative;
	padding-right: 60px;
}
.bela-sec .col-7:after{
	content:" ";
	/*background-image:url('/wp-content/uploads/Group-1222.png');*/
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0;
	right: 50px;
	bottom: 0;
	width: 59vw;
	z-index: -1;
}
.bela-sec h5{
	margin-bottom:16px;
}
.bela-sec p{
	margin-bottom:32px;
	line-height:1.5 !important;
}
/*BELA page*/
.page-template-bela .number-section h3{
	width: 748px;
	margin: 0 auto;
	margin-bottom:24px!important;
}
.page-template-bela .number-section .community h5 {
	width: 1000px;
	margin: 0 auto;
	margin-bottom: 33px!important;
}
.ray.red{
	color: #F93D31;
}
.page-template-bela .number-section{
	padding-bottom:48px;
}
.page-template-bela .community p{
	max-width: 700px;
	margin: 0 auto;
	margin-bottom:30px!important;
}
.page-template-bela .community h2{
	margin-bottom:0px!important
}
.page-template-bela .video-section{
	padding-bottom:40px;
	/*background-image: unset;*/
}
.page-template-bela .tag-section{
	margin-top:0px;
}
.page-template-bela .bela-sec .col-7{
	padding-right:60px;
}
.page-template-bela .bela-sec .col-7:after{
	/*content:"unset";
	background-image:unset;*/
}
.page-template-bela .product-feature-section{
	padding: 24px 0 96px;
}
.page-template-bela #tsum-tabs label, .page-template-bela #tsum-tabsbela label{
	max-width:unset;
}
.page-template-bela #tsum-tabs input:checked + label, .page-template-bela #tsum-tabsbela input:checked + label, .page-template-bela #tsum-tabs label:hover, .page-template-bela #tsum-tabsbela label:hover {
	background-color: #F93D31;
}
.page-template-bela .tab-content .row {
	align-items: center;
}
.page-template-bela .tab-content .row .col-4 {
	display:flex;
	flex-direction: column;
	align-self: start;
	padding-top:1.5rem;
}
.page-template-bela .tab-content .row .col-4 h4{
	margin-bottom:16px!important;
}
.quotient-section.v-bela-q{
	padding-top:0px;
	padding-bottom:248px;
}
.page-template-bel .quotient-sectiona .bela-sec{
	padding-bottom:112px;
}
.page-template-bela .quotient-section{
	padding-top:0px;
	padding-bottom:41px;
}
.bela-event-sec{
	padding-bottom:231px;
}
.bela-event-sec h5{
	max-width:730px;
	margin-bottom:38px;
}
.bela-event-wrapper{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 15px;
	margin-bottom:48px;
}
.bela-event-wrapper h4 {
	font-size:1.3rem !important;
}
.bela-event-wrapper .tag, .demand-sec .tag{
	display:flex;
	flex-wrap: wrap;
	flex-direction:row;
}
.bela-event-wrapper .tag p, .demand-sec .tag p{
	border-left: 4px solid #05ACA0;
	padding:0px 14px;
}
.bela-event-wrapper .event-content{
	padding: 8px 25px 25px;
	border-top: 4px solid #05ACA0!important;
	box-shadow: 0px 0px 5px 0px #3e3e3e4d;
}
.ethics-sec .ethics-wrapper{
	display:grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 24px;
	grid-row-gap: 48px;
	padding-top:20px;
}
.ethics-sec .ethics-wrapper .single-ethics{
	display: flex;
	/*align-items: center;*/
	background-color: #052232;
	/*align-items: stretch;*/
	/*padding:5%;*/
}
.ethics-sec .eth-list{
	background-color:#fff!important;
	flex-grow: 1;
	flex-basis: 0;
	padding: 3% 4rem 3% 45px;
	border: 1px solid #efefef;
}
.ethics-sec .eth-list li{
	position:relative;
}
.ethics-sec .eth-list li:before {
	left: -35px;
	top: 4px;
}
.ethics-sec .ethics-wrapper .single-ethics .ethics-content{
	padding: 40px 16px;
	/*text-align: center;*/
	background-color: #052232;
	flex-grow: 1;
	flex-basis: 0;
	background: url(/wp-content/uploads/dotstestiglobe.svg) #052232;
}
.ethics-sec .ethics-wrapper .single-ethics .ethics-content h3{
	color:#F93D31!important;
	font-size:32px !important;
}
.ethics-sec .ethics-wrapper .single-ethics .ethics-content p{
	color:#fff!important;
	/*font-size:1.5rem !important;*/
	max-width:500px;
}
.ethics-sec{
	padding-bottom:260px;
}
.ethics-bottom-btn{
	display: flex;
	margin-top:47px!important;
}
.ethics-bottom-btn .btns{
	/*padding-right:142px;*/
	padding:6%;
	width:100%;
	border: 5px solid #fff;
	background: linear-gradient(to right,red 5%, #f4f4f4 5%);
}
.ethics-bottom-btn .btns h4{
	margin-bottom:32px!important;
}
.tier-block .eth-list li:before{
	background-image: url(/wp-content/uploads/Check-icon-1.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
/*.page-template-bela .tag-section h3{
padding-bottom:150px;
}*/
.tier-block  .tag-section .tab-button{
	right:-200px;
}
.tier-block  .tag-section .content{
	padding-bottom:80px;
	border-right: 60px solid #F93D31;
}
.tier-block  .tag-section{
	margin-bottom:88px;
}
.center{
	text-align:center;
}
.center.small-eyebrow{
	color:#19232C;
}
/*Sumiit page*/

.page-template-ethics-summit .number-section h5{
	margin-bottom: 28px;
}
.page-template-ethics-summit .numbers-wrapper .numbers h2{
	font-weight:900!important;
	margin-bottom:12px!important;
}
.page-template-ethics-summit .numbers-wrapper{
	padding-bottom:0px;
}
.summit-sec{
	padding-bottom:48px;
}
.summit-sec h2{
	margin-bottom:20px!important;
}
.summit-sec h5{
	margin-bottom:36px!important;
}
.summit-sec .col-4{
	position:relative;
}
.summit-sec .v-green-box{ 
	height: 452px;
	width: 318px;
	background-color: #95BB42;
	float: right;
	position: absolute;
	right: 0;
	bottom: -200px;
	z-index:-1;
	text-align: center;
}
.summit-sec .v-green-box img{
	/*margin-top: -180px;*/
}
.summit-sec .row.video{
	padding:40px 120px;
}
.page-template-ethics-summit .bela-event-sec h3{
	margin-bottom:20px;
}
.image-slider-sec{
	padding-bottom:336px;
}
.page-template-ethics-summit .hero-section{
	padding: 172px 0px 285px;
}
.page-template-global-event .hero-section{
	margin-bottom:194px;
}
.page-template-global-event .tag-section{
	margin-top:0px;
	margin-bottom:72px
}
.page-template-global-event .tag-section .content .v-tag-content{
	padding-bottom:141px
}
.page-template-global-event .tag-section .tab-button {
	right: -86px;
}
.page-template-global-event .bela-event-sec .event-detail{
	display: flex;
	align-items: center;
}
.page-template-global-event .bela-event-sec .event-detail .date{
	margin-right:16px;
}
.page-template-global-event .bela-event-sec .event-detail .date .day{
	color:#546A25;
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
	text-transform: uppercase;
}
.page-template-global-event .bela-event-sec h3{
	margin-bottom:65px;
}
.bela-event-sec{
	padding: 72px 0;
}
.demand-sec{
	padding-bottom: 200px;
}
.demand-sec h3{
	margin-bottom:30px;
}
.demand-description{
	width:316px;
}
.demand-content{
	position: relative;
}
.demand-sec .demand-content .button{
	position: absolute;
	display: block;
	bottom: 10px;
}
.single.single-post #masthead{
	border-bottom: 1px solid #cccccc4f;
}
.v-post-navigation{
	margin: 30px 0px 70px;
	text-align: right;
	display: inline-block;
	width: 100%;
	border-bottom: 1px solid #afcc6f6b;
	padding-bottom: 30px;
}
.v-post-navigation .navigation a, .post-metadata div, .post-metadata div a{
	font-size:22px;
	text-decoration: none;
	font-weight: 600;
	color:#546A25;
	position:relative;
}
.post-metadata div{
	color:#000!important;
}
.post-metadata{
	margin: 70px 0px 30px;
	width: 100%;
	border-top: 1px solid #afcc6f6b;
	border-bottom: 1px solid #afcc6f6b;
	padding: 30px 0px;
}
.post-metadata .author-name{
	color:#546A25;
	border-right: 4px solid #546a25;
	padding-right: 10px;
}
.post-metadata .cat-name{
	padding-left: 10px;
}
/* .v-post-navigation .navigation .nav-previous a:before{
position: absolute;
top: 50%;
transform: translateY(-51%);
left: -1em;
font-family: awb-icons;
content: "\F12F";
}
.v-post-navigation .navigation .nav-next a:before{
position: absolute;
top: 50%;
transform: translateY(-51%);
right: -1em;
font-family: awb-icons;
content: "\F138";
} */
.v-post-navigation .navigation .nav-next{
	flex:unset!important;
	margin-left:30px;
}
.single.single-post h1.post-title{
	font-size:36px;
	line-height:40px;
	font-family: 'Lato', sans-serif!important;
	font-weight: 700!important;
	margin-bottom:40px
}
.single.single-post h3{
	font-size:28px!important;
	line-height:32px!important;
	margin-bottom:30px
}
.single.single-post p, .single.single-post ul li{
	font-size:18px!important;
	line-height:22px!important;
}
.page-template-resource .hero-section .hero-content, .page-template-resource .hero-section h1 {
	width: 849px;
}
.v-related-post{
	margin-bottom:80px;
}
.v-related-post .related-single img{
	height:200px;
	margin-bottom:16px!important;
	object-fit: contain;
	object-position: center;
	margin: 0 auto;
}
.v-related-post .related-single{
	padding:0px 10px;
}
.v-related-post .slick-list .slick-track{
	display: flex;
	align-items: center;
}
.v-related-post .related-single h5 a{
	color:#185e7c; 
	text-decoration: none;
}
.v-related-post .slick-prev, .v-related-post .slick-next {
	width: 30px;
	height: 30px;
	background: black;
}
.v-related-post .slick-prev:hover, .v-related-post .slick-next:hover{
	background: black;
}
.v-post-navigation .navigation a:hover, .post-metadata div, .post-metadata div a:hover{
	color:#000;
}
/*Resources*/
.featured-resources{
	padding-top:80px;
}
.featured-resources h3{
	margin-bottom:16px;
}
.featured-resources h5{
	margin-bottom:31px;
}
.v-resource-wrapper{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 15px;
	grid-auto-rows: 1fr;
	margin-bottom:40px
}
.featured-resources-single img{
	
}
.featured-resources-single{
	box-shadow: 0px 0px 5px 0px #3e3e3e4d;
	position:relative;
}
.featured-resources-single .resources-content{
	padding: 8px 25px 25px;
	border-top: 4px solid #05ACA0!important;
}
.featured-resources-single .resources-content h4 a{
	color:#000;
	text-decoration:none;
	padding-bottom:0px;
	display:block;
	font-size:20px;
	line-height:1.3;
}
.featured-resources-topics{
	margin-bottom:16px;
}
.featured-resources-topics a{
	border-left: 4px solid #546A25;
	padding: 0px 14px;
	color:#3E3E3E;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 19.2px */
	text-transform: uppercase;
}
.mb-80{
	margin-bottom:80px;
}
a.read-more-link{
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 125%;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration:none;
	color:#282828;
	position: absolute;
	bottom: 25px;
}
.page-template-solution-the-sphere .hero-section{
	padding-bottom:150px;
}
/*Programm Assesment*/
.page-template-progrsmm-assesment .number-section{
	padding: 56px 0px 88px;
}
.page-template-progrsmm-assesment .testimonial-sec {
	padding-top: 100px;
	padding-bottom: 226px;
}
.page-template-progrsmm-assesment .program-excellence-sec {
	padding-bottom: 229px;
}
.page-template-progrsmm-assesment .bela-sec {
	padding-bottom: 124px;
}
.page-template-progrsmm-assesment .bela-event-sec {
	padding-top: 92px;
}
.contact-form-sec{
	padding:115px 0px 180px;
	opacity: 0.8500000238418579;
	background: #19232C;
}
.contact-form-sec .form-content{
	width:550px;
}
.fs-42{
	color: #FFF;
	font-size: 42px;
	font-style: normal;
	font-weight: 400;
	line-height: 44.1px; 
	margin-bottom:40px;
}
.fs-20, .fs-20 p{
	color: #FFF!important;
	font-size: 20px!important;
	font-style: normal!important;
	font-weight: 400!important;
	line-height: 28px!important; 
	margin-bottom:40px!important;
}
.fs-20.uppercase.theme-color{
	color:#AFCC6F!important;
}
.fs-28{
	color: #FFF;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 30.8px; 
	margin-bottom:60px;
}
/*Contact Us Page*/
.contact-form-section{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.contact-form-section .col-6.form-col{
	padding:142px 0px 178px 40px;
	position:relative;
}
.contact-form-section .col-6.form-col .inner-from{
	z-index:2;
	position:relative;
}
.contact-form-section .col-6.form-col:after{
	content:" ";
	position:absolute;
	top:0;
	bottom:0;
	right:0;
	left:0;
	z-index:1;
	opacity: 0.8500000238418579;
	background: #19232C;
	width:50vw;
}
.contact-form-information{
	padding:66px 0px 91px;
	background-color: #19232C;
	color:#fff;
}
.contact-form-information h3{
	color:#fff!important;
	margin-bottom:46px;
}
.contact-form-information h5{
	margin-bottom:40px!important;
}
.contact-form-information .col-6{
	padding-right:200px;
}
.contact-form-section .inner-from img{
	margin-bottom:40px;
}
.mb-140{
	margin-bottom:140px;
} 
.pl-40{
	padding-left:40px;
}
.mobile-version, .mobile-version-quotien-slider, .mobile-version-quotien-slider-v-bela-q{
	display:none!important;
}
/* .button{
display: flex;
} */
.page-template-home .tag-section .content h5 {
	margin-bottom: 88px;
	margin-top:24px;
	font-size:1rem !important;
	line-height:1.5 !important;
}
.page-template-home .tag-section .tab-button{
	right: -180px;
}
.v-event-wrapper .v-event a .arrow{
	display:none;
}
.program-excellence-sec .video-col video{
	width:100%;
}
.page-template-bela .number-section h5{
	margin-bottom:37px;
}
.page-template-bela #tsum-tabsbela .tab-content p, .page-template-bela #tsum-tabs .tab-content p{
	margin-bottom:32px;
}
video{
	padding:0px!important;
}
.contact-form-information h5{
	color:#fff!important;
}
.page-template-FORMS .inner-from p{
	color:#fff!important;
}
/*Team*/
.team-section{
	padding: 152px 0px;
}
.team-leaders{
	padding-bottom:152px;
}
.team-section h3{
	margin-bottom:24px;
}
.team-section h5{
	margin-bottom:84px;
	width:768px
}
.leaders-wrapper{
	display:grid;
	grid-template-columns: repeat(4, 1fr);
	grid-row-gap: 84px;
	grid-column-gap: 16px;
}
.leaders-wrapper .leader h5{
	margin-bottom:4px;
	width:unset!important;
}
.leaders-wrapper .leader img, .leaders-wrapper .leader p{
	margin-bottom:24px;
}
.leaders-wrapper .leader img.leader-image{
	width: 100%;
	height: 296px;
	object-fit: cover;
}
.leaders-wrapper .leader p {
	min-height:38.37px;
}
.leaders-wrapper .leader .link{
	margin-right:14px;
}
/*Event Pages*/
.v-archive-event{
	background-color:#19232C;
	padding:101px 0px!important;
	color:#fff;
}
.v-archive-event .tribe-events-calendar-list__event{
	display:flex;
	flex-direction: unset!important; 
	justify-content: unset!important;
	align-items: center;
}
.v-archive-event .tribe-events-calendar-list__event-title a{
	text-decoration:none;
	color:#fff!important;
}
.v-archive-event .tribe-events-calendar-list__event-title{
	margin-bottom:24px!important;
}
.v-archive-event .tribe-events-calendar-list__event-description p{
	margin-bottom:48px!important;
	color:#fff!important;
}
.tribe-events-calendar-list .tribe-events-calendar-list__month-separator, .tribe-events-c-subscribe-dropdown__container, .tribe-events-c-top-bar.tribe-events-header__top-bar, .tribe-events-c-events-bar__views{
	display:none!important;
}
.post-type-archive-tribe_events .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-search {
	align-items: stretch!important;
	display: flex;
}
.tribe-events-header.tribe-events-header--has-event-search{
	padding: 35px 100px!important;
	background-color:#19232C!important;
}
.tribe-common--breakpoint-medium.tribe-events .tribe-common-c-btn.tribe-events-c-search__button{
	background-color:#AFCC6F;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
}
.number-section .honorees img {
	filter: grayscale(100%);
	cursor:pointer;
}
.number-section .honorees img:hover {
	filter: grayscale(0%);
}
.mobile-nav{
	display:none!important;
}
.navbar-dark.mobile-nav .navbar-toggler-icon {
	background-image: url(/wp-content/uploads/menu-01.png)!important;
}
/*========================= QA ==============================================*/
.hero-section{
	position:relative;
}
.hero-section .container .row{
	position: relative;
	z-index: 2;
}
.hero-section .container:after{
    /*
	content: " ";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 1;
	opacity: 0.4;
	background: #000;
	width: 100vw;
    */
}
.v-testimonial h4{
	font-size: 26px!important;
	text-transform: none!important;
}
.v-testimonial .details .small-eyebrow{
	width: 400px;
}
.page-template-wme .tag-section .tab-button {
	/*right: -28%;*/
	right:-199px;
}
.page-template-wme .tag-section .tab-button a{
	font-size: 18px;
}
.page-template-ethics-summit .number-section {
	padding: 90px 0px 110px;
}
.product-feature-section{
	/*padding-bottom:129px;*/
	padding-bottom:60px;
	padding-top:60px;
}
#tsum-tabsbela, #tsum-tabs{
	overflow: hidden;
	padding: 0px;
}
.accordion-section h3{
	color:#fff!important;
	margin-bottom:16px;
}
/*Mega menu*/
.mega-menu-description{
	color: #667085;
	font-size: 14px!important;
	font-style: normal!important;
	font-weight: 400!important;
	line-height: 20px!important;
	font-family: 'Lato', sans-serif;
	margin-top:4px;
}
.mega-menu-item .textwidget.custom-html-widget{
	font-family: 'Lato', sans-serif!important;
	color: #222A31!important;
	font-style: normal!important;
	font-weight: 600!important;
	line-height: 120%!important; 
	text-transform: uppercase!important;
	padding-bottom:12px;
	border-bottom:1px solid #E0E0E0;
}
.mega-menu .mega-sub-menu{
	margin-top:20px!important;
}
.mega-menu-row .mega-sub-menu{
	margin-top:0px!important;
}
#mega-menu-item-42359, #mega-menu-item-43631{
	background-color: #b0cb6f!important;
}
#mega-menu-item-43631{
	margin-bottom:12px!important;
}
#mega-menu-item-42359 a, #mega-menu-item-43631 a, #mega-menu-item-43632 a{
	text-transform:uppercase!important;
}
#mega-menu-item-43632{
	border:1px solid #F5F5F5!important;
}
#mega-menu-item-43631 a, #mega-menu-item-43632 a{
	text-align:center!important;
}
#mega-menu-item-43629{
	margin-bottom:106px!important;
}
.v-secton_btn{
	margin-top:30px;
}
.compliance-sec{
	padding:100px 0px;
}
.spotligght-sec{
	padding-bottom:100px;
}
.spotligght-sec .spot-heading{
	text-align:center;
	margin-bottom:60px;
}
.spotlight-wrapper{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 32px;
	margin-bottom:40px;
}
.spotlight-wrapper .single-spotlight{
	box-shadow: -2px 0px 8px 0px #ccccccab;
}
.spotlight-wrapper .single-spotlight .content{
	padding: 28px 20px;
}
.spotlight-wrapper .single-spotlight .content h5{
	margin-bottom:30px;
}
.spotlight-wrapper .single-spotlight .content a{
	color:#ccc;
	text-decoration:none;
}
.getstarted-sec{
	padding: 100px 0px;
	text-align: center;
	background-color: #c4da95;
}
.getstarted-sec h5{
	margin-bottom:80px;
}
.site-footer, .site-footer p, .site-footer ul li a{
	color:#fff!important;
}
.site-footer .widget-title{
	text-transform:uppercase;
}
.site-footer ul{
	margin:0px;
	padding:0px;
}
.site-footer ul li{
	list-style-type:none;
	margin-bottom:8px;
}
.site-footer ul li a{
	text-decoration:none;
}
.v-image-slider .slick-slide img{
	margin:0 auto;
}
.page-template-home .testimonial-sec{
	padding-bottom:120px;
}
/*======================================================================================== 
/*RESPONSIVE*/
@media(max-width:1400px){
	.mega-menu .mega-menu-item a.mega-menu-link{
		font-size:13px!important;
	}
	.v-event-wrapper .v-event .fs-43 {
		font-size: 30px;
	}
}
@media(max-width:1024px){
	.mobile-nav .mega-menu li.mega-menu-item-has-children ul li {
		border-bottom: unset!important;
	}
	.mobile-nav .mega-menu li{
		padding: 16px 0px!important;
		border-bottom: 1px solid #F5F5F5!important;
	}
	.mega-menu .mega-sub-menu {
		margin-top: 0px!important;
	}
	.mobile-nav{
		display:block!important;
	}
	.desktop-nav, .top-header .col-6.dnone{
		display:none;
	}
	h2, .top-footer-section .fs-61{
		font-size:40px;
	}
	h3{
		font-size:30px;
	}
	h5{
		font-size:18px;
	}
	.hero-section{
		padding: 74px 0px 140px;
	}
	.hero-section h1{
		font-size: 52px;
		line-height: 62px;
	}
	.number-section{
		padding: 90px 0px 120px;
	}
	.number-section .numbers-wrapper {
		padding-bottom: 60px;
	}
	.number-section .honorees h3, .number-section h3 {
		margin-bottom: 20px;
	}
	.number-section .row.honorees .images{
		grid-column-gap: 50px;
		grid-row-gap: 25px;
		padding-bottom: 40px;
	}
	.video-section .col-lg-6 .notification-content, .video-section .col-lg-6 .notification-content.br{
		padding:40px;
	}
	.tag-section .container {
		padding-top: 235px;
	}
	.tag-section h3{
		font-size: 28px!important;
	}
	.tag-section .tab-button a {
		font-size:16px;
	}
	.tag-section .tab-button {
		right:-34%;
	}
	.quotient-section {
		padding: 90px 0px 160px;
	}
	.accordion-section{
		padding: 80px 0px 100px;
	}
	.top-footer-section {
		padding: 90px 0px 80px;
	}
	.top-footer-section input[type="email"]{
		width: 600px!important;
		height: 50px;
	}
	.top-footer-section input[type="submit"] {
		width: 180px!important;
		height: 50px;
		padding: 15px 30px;
	}
	.v-event-wrapper .v-event .fs-43{
		font-size: 28px;
		padding-bottom: 80px;
	}
	.v-event-wrapper .v-event .v-overlay {
		/*padding: 20px 12px 25px 12px;*/
	}
	.solution-sec {
		padding-bottom: 90px;
	}
	.testimonial-sec {
		padding-top: 100px;
		padding-bottom: 120px;
	}
	.page-template-solution .number-section {
		padding: 60px 0px 80px;
	}
	.program-excellence-sec {
		padding-bottom: 80px;
	}
	.video-section .row.video {
		margin-bottom: 0px;
	}
	.page-template-bela .product-feature-section {
		padding-bottom: 100px;
	}
	.bela-sec {
		padding-bottom: 100px;
	}
	.ethics-sec {
		padding-bottom: 130px;
	}
	.page-template-bela .tag-section .tab-button {
		right: -155px;
	}
	.tag-section {
		background-size: 91% 100%;
	}
	.image-slider-sec {
		padding-bottom: 190px;
	}
	.v-image-slider .slick-prev, .v-image-slider .slick-next {
		bottom: -24%!important;
	}
	.v-image-slider .slick-dots {
		left: 0%!important;
		margin:0 auto;
	}
	.page-template-global-event .tag-section .content .v-tag-content {
		padding-bottom: 70px;
	}
	.page-template-global-event .tag-section .tab-button {
		right: -70px;
	}
	.page-template-global-event .hero-section {
		margin-bottom: 100px;
	}
	.demand-sec {
		padding-bottom: 100px;
	}
	.demand-description {
		width: 100%;
	}
	.page-template-resource .v-resource-wrapper h4{
		font-size: 20px!important;
	}
	a.read-more-link {
		font-size: 14px;
	}
	.program-excellence-sec .v-flex .button {
		margin-right: 15px;
	}
	.team-section {
		padding: 80px 0px;
	}
	.team-section h5 {
		margin-bottom: 30px;
		width: 100%!important;
	}
	.team-leaders {
		padding-bottom: 80px;
	}
}
@media(max-width:991px){
	.page-template-solution-the-sphere .bela-sec .col-7:after {
		background-image:unset!important;
	}
	.compliance-sec .button{
		margin-bottom:30px;
	}
	.spotlight-wrapper{
		grid-template-columns: repeat(2, 1fr);
		grid-row-gap: 32px;
	}
	.mobile-nav .offcanvas-body{
		padding-left: 30px;
	}
	.mobile-nav #menu-item-43631{
		text-align:center;
	}
	.mobile-nav #menu-item-43629{
		margin-bottom:48px;
	}
	.mobile-nav #menu-item-43631 a{
		text-transform: uppercase;
		background-color: #AFCC6F;
		border-radius: 2px;
		margin-bottom:12px;
	}
	.mobile-nav #menu-item-43632{
		margin-bottom:8px;
		text-align:center;
	}
	.mobile-nav #menu-item-43632 a{
		text-transform: uppercase;
		border:1px solid #101828;
		border-radius: 2px;
	}
	.mobile-nav .offcanvas-header{
		padding: 40px 16px 0px;
	}
	.mobile-nav #menu-mobile-menu{
		margin:0px!important;
		padding-left:0px;
	}
	.mobile-nav #menu-mobile-menu li{
		list-style-type:none;
	}
	.mobile-nav #menu-mobile-menu li a{
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 24px;
		color:#101828;
		text-decoration: none;
		padding:16px 16px 16px 0px;
		display:block;
	}
	.notification-content.br{
		background-image:none;
		border-bottom:1px solid #AFCC6F;
	}
	.tag-section .tab-button {
		right: -27%;
	}
	.tag-section .container:after{
		width: 79vw;
	}
	.tag-section{
		background-size: 79% 100%;
	}
	.accordion-section{
		background-size: 100% 100%;
	}
	.accordion {
		width: 100%;
	}
	.top-footer-section input[type="email"] {
		margin-bottom: 20px;
	}
	.row.footer-copyright .col-lg-5 {
		margin-bottom:20px;
	}
	.mobile-version-quotien-slider, .mobile-version-quotien-slider-v-bela-q{
		display:block!important;
	}
	.desktop-version-quotient-tab{
		display:none;
	}
	.quotien-slider img{
		margin-bottom:30px;
	}
	.v-testimonial{
		width:100%!important;
		padding: 40px 30px 40px!important;
	}
	.v-testimonial h4 {
		font-size: 20px!important;
	}
	.v-testouter img.qoute-icon {
		width: 100px;
		right: 10%;
		bottom: 0%;
	}
	.v-event-wrapper {
		grid-template-columns: repeat(1, 1fr);
	}
	.v-event-wrapper .v-event .fs-43{
		margin-bottom:150px;
	}
	.page-template-home .tag-section .tab-button {
		right: -145px;
	}
	.page-template-solution .eth-list {
		max-width: 100%;
		width:100%;
	}
	.program-excellence-sec .col-6.list-col {
		padding-right: 0px;
		padding-bottom:60px;
	}
	.program-excellence-sec .video-col video {
		width:100%;
	}
	h4 {
		font-size: 24px;
	}
	.v-product-feature-wrapper .v-product-feature {
		padding-left: 20px;
		padding-right: 28px;
	}
	h6 a{
		font-size: 14px;
	}
	.page-template-solution .quotient-section {
		padding-bottom: 60px;
	}
	.bela-sec {
		padding-bottom: 80px;
	}
	.mobile-version-quotien-slider .slick-dots{
		margin-left:0px!important;
	}
	.ethics-sec .ethics-wrapper{
		grid-template-columns: repeat(1, 1fr);
	}
	.bela-event-wrapper{
		grid-template-columns: repeat(2, 1fr);
		grid-row-gap:30px;
	}
	.mobile-version-quotien-slider-v-bela-q .slick-dots{
		margin:0 auto;
	}
	.mb-40{
		margin-bottom:40px;
	}
	.summit-sec .row.video {
		padding: 25px 0px 0px;
	}
	.summit-sec .col-4 {
		display:none;
	}
	.contact-form-information .col-6{
		padding-right:0px;
	}
	.contact-form-section .col-6.form-col:after{
		content:none!important;
	}
	.contact-form-section{
		position:relative!important;
	}
	.contact-form-section:after{
		content: " ";
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		z-index: 1;
		opacity: 0.8500000238418579;
		background: #19232C;
		width: 100vw;
	}
	.contact-form-section .col-6.form-col {
		padding: 80px 0px 80px 0px;
	}
	.page-template-FORMS .pl-40 {
		padding-left: 0px;
	}
	.page-template-FORMS .mb-140 {
		margin-bottom: 80px;
	}
	.demand-sec .col-lg-6 img{
		width:100%;
		margin-bottom:30px;
	}
	.demand-sec .demand-content .button {
		bottom: -50px;
	}
	.v-resource-wrapper{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 30px;
	}
	.featured-resources-single img{
		width:100%!important;
		height:auto!important;
	}
	.v-related-post .slick-next {
		right: 0px;
	}
	.v-related-post .slick-prev {
		left: 0px;
	}
	.leaders-wrapper{
		grid-template-columns: repeat(2, 1fr);
		grid-row-gap: 40px;
	}
}
@media(max-width:768px){
	h2 {
		font-size: 31px;
	}
	h4 {
		font-size: 22px;
	}
	.tag-section .tab-button {
		right: -28%;
	}
	.top-footer-section input[type="email"] {
		width: 470px!important;
	}
	a.accordion-heading, .accordion-content{
		padding-right: 30px;
	}
	a.accordion-heading:after {
		margin-top: -10px;
		margin-right: -10px;
	}
	.video-section .container {
		padding-left: 0px;
		padding-right: 0px;
	}
	.tag-section {
		background-size: 87% 100%;
	}
	.page-template-resource .hero-section .hero-content, .page-template-resource .hero-section h1 {
		width: 100%;
	}

}
@media(max-width:767px){
	.tag-section {
		background-size: 76% 100%;
	}
	.tag-section .container:after {
		width: 76vw;
	}
	.tag-section .tab-button {
		right: -38%;
	}
	.widget_custom_html ul li a, .site-footer ul li a {
		color:#979797 !important;
	}
	.site-footer {
		padding: 48px 24px;
	}
	.social-icon {
		text-align: left;
		margin-top:40px;
	}
	.footer-logo, .footer-logo, .widget_custom_html ul, .footer-col {
		margin-bottom: 48px;
	}

	.bela-event-wrapper{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 30px;
	}
	.bela-event-wrapper img{
		width:100%;
	}
	.ethics-bottom-btn{
		justify-content: space-between;
	}
	.ethics-bottom-btn .btns {
		/*padding-right: 0px;*/
		padding: 10%;
	}
	.ethics-sec .ethics-wrapper .single-ethics .ethics-content p {
		font-size:1rem !important;
		max-width:100%;
	}
	.solution-sec .container .row {
		background-image:unset;
	}
	.accordion-section h3 {
		color: #000 !important;
	}
}
@media(max-width:575px){
	body{
		overflow-x: hidden!important;
	}
	section .container{
		padding-right:24px;
		padding-left:24px;
	}
	.top-footer-section input[type="email"] {
		width: 340px!important;
	}
	.hero-section{
		padding: 74px 0px 84px;
	}
	.hero-section h1 {
		font-size: 31px;
		line-height: 41px;
	}
	.number-section {
		padding: 40px 0px 64px;
	}
	.number-section .numbers-wrapper{
		flex-direction: column;
		padding-top: 71px;
	}
	.number-section .numbers-wrapper .numbers h3{
		font-size:48px;
		line-height:60px;
		margin-bottom: 12px;
	}
	.number-section .numbers-wrapper .numbers{
		margin-bottom: 32px;
	}
	.number-section .honorees h3{
		margin-bottom:32px;
	}
	.number-section .row.honorees .images{
		grid-template-columns: repeat(2, 1fr);
	}
	.number-section .row.honorees .images {
		grid-column-gap: 40px;
		grid-row-gap: 32px;
	}
	.button a{
		font-size: 15px;
	}
	.tag-section .container {
		padding-top: 0px;
	}
	.tag-section .container:after {
		width: 0vw;
	}
	.tag-section, .video-section, .accordion-section {
		background-image:none!important;
	}
	.mobile-version{
		display:block!important;
	}
	.mobile-version img{
		margin:16px 0px;
	}
	.accordion-section h2, .accordion-section h5, .accordian-outer .mobile-version .fs-20{
		text-align:center!important;
		color:#19232C!important;
	}
	.accordian-outer .mobile-version .button{
		text-align:center!important;
	}
	a.accordion-heading, a.accordion-heading:after{
		color: #84A63A!important;
	}
	a.accordion-heading:after {
		margin-top: 0px;
		border: 2px solid #546a25;
		border-radius: 50%;
		padding: 2px 5px;
	}
	.accordion .accordion-box {
		border-radius:0px;
		border-bottom: 2px solid #19232C;
		margin-bottom: 24px;
	}
	.accordion-content{
		color:#19232C;
		padding-bottom:32px;
	}
	a.accordion-heading{
		padding-bottom:32px;
	}
	.tag-section .content {
		text-align:ce5ter;
		padding:0px;
		border-right: unset!important;
	}
	.tag-section .tab-button {
		display:none!important;
	}
	.accordian-outer .mobile-version{
		padding-top:48px;
	}
	.accordion-section{
		margin-bottom:0px;
	}
	h2, .top-footer-section .fs-61 {
		font-size: 33px!important;
	}
	.quotient-section {
		padding: 70px 0px 0px;
	}
	.video-section .col-lg-6 .notification-content, .video-section .col-lg-6 .notification-content.br {
		text-align: center;
	}
	.slick-dots ul{
		margin:0px!important;
	}
	.tag-section, .quotient-section{
		text-align:left;
		padding: 24px 0 80px;
	}
	.mobile-version-quotien-slider .quotien-slider  ul{
		text-align:left;
	}
	h6 a{
		font-size:15px!important;
	}
	.video-section .col-lg-6 .notification-content, .video-section .col-lg-6 .notification-content.br {
		padding: 30px 15px;
	}
	.button a {
		padding: 10px 5px;
	}
	.number-section .row.honorees h5{
		margin-bottom:30px;
	}
	.page-template-home .number-section .row.honorees .images, .page-template-solution .number-section .row.honorees .images, .page-template-bela .number-section .row.honorees .images, .page-template-solution-the-sphere .number-section .row.honorees .images{
		grid-template-columns: repeat(2, 1fr);
	}
	.page-template-home .number-section .row.honorees .images img, .page-template-solution .number-section .row.honorees .images img, .page-template-bela .number-section .row.honorees .images img, .page-template-solution-the-sphere .number-section .row.honorees .images img{
		margin:0 auto;
	}
	.solution-sec .top-div img, .solution-sec .bottom-div img{
		width:100%;
	}
	.top-div, .bottom-div {
		margin-bottom: 55px;
	}
	.solution-sec {
		padding-bottom: 20px;
	}
	.page-template-home .tag-section .content h5 {
		margin-bottom: 40px;
	}
	.slick-slide{
		height:unset!important;
		min-height:1px;
		max-height:600px;
	}
	.slick-slide img {
		width: 100%;
	}
	.v-testouter img.qoute-icon {
		width: 60px;
		bottom: 3%;
	}
	
	.event-sec {
		padding-bottom: 0px;
	}
	.program-excellence-sec .video-col video {
		width:100%;
	}
	.footer-copyright .menu-copyright-menu-container{
		display:none;
	}
	.page-template-bela .tag-section h3 {
		padding-bottom: 40px;
	}
	.ethics-sec .ethics-wrapper .single-ethics{
		flex-direction: column;
		background-color:unset;
		padding:0;
	}
	.ethics-sec .ethics-wrapper .single-ethics .ethics-content{
		padding:50px;
		text-align:center;
	}
	.ethics-sec .eth-list{
		padding:20px 0px;
	}
	.ethics-sec .ethics-wrapper{
		grid-row-gap: 0px;
	}
	.ethics-bottom-btn{
		flex-direction: column;
	}
	.ethics-bottom-btn .btns {
		text-align: center;
		margin-bottom: 40px;
	}
	.ethics-sec {
		padding-bottom: 68px;
	}
	.page-template-bela .tag-section .content {
		padding-bottom: 0px;
	}
	.page-template-ethics-summit .hero-section {
		padding: 140px 0px 40px;
	}
	.summit-sec, .bela-event-sec{
		text-align:center;
	}
	.bela-event-wrapper .events{
		text-align:left!important;
	}
	.image-slider-sec {
		padding-bottom: 130px;
	}
	.page-template-ethics-summit .number-section .numbers-wrapper {
		padding-bottom: 0px;
	}
	.page-template-global-event .hero-section {
		margin-bottom: 71px;
	}
	.page-template-progrsmm-assesment .testimonial-sec{
		padding-top:0px;
	}
	.page-template-progrsmm-assesment .number-section {
		padding-bottom:0px;
	}
	.page-template-progrsmm-assesment .testimonial-sec{
		padding-bottom: 140px;
	}
	.page-template-progrsmm-assesment .program-excellence-sec, .page-template-progrsmm-assesment .bela-sec {
		padding-bottom: 80px;
	}
	.page-template-progrsmm-assesment .bela-event-sec {
		padding-top: 80px;
	}
	.page-template-progrsmm-assesment .contact-form-sec {
		padding: 80px 0px 0px;
	}
	.contact-form-sec .form-content {
		width: 100%;
	}
	.leaders-wrapper{
		grid-template-columns: repeat(1, 1fr);
	}
	.leaders-wrapper .leader p {
		min-height: unset!important;
	}
	.v-testimonial .details .small-eyebrow{
		width: 100%;
	}
	.mobile-nav .col-4{
		width:55%!important;
	}
	.mobile-nav .col-8{
		width:45%!important;
	}
	.spotlight-wrapper{
		grid-template-columns: repeat(1, 1fr);
	}
	.compliance-sec{
		text-align:center;
	}
	.getstarted-sec h5{
		margin-bottom:40px;
	}
	.page-template-solution-the-sphere .program-excellence-sec {
		padding-bottom: 60px;
	}
	.page-template-solution-the-sphere .quotient-section{
		padding-bottom: 60px;
	}
}
@media(max-width:320px){
	.top-footer-section input[type="email"] {
		width: 275px!important;
	}
}



/* Kevin */
.logo-colgate {
	margin-top: 30px;
}

.logo-dell {
	scale: 1.15;
}

.page-template-solution .hero-section .container:after {
	opacity: 0!important;
}

.page-template-solution .hero-section h1 {
	color: #282828!important;
}
/* removing to fix slider image */
/*.slick-slide img {
margin: auto;
}*/