@charset "UTF-8";

/*
Theme Name: ATW
Theme URI: https://wordpress.org/themes/atw/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: ATW is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how ATW elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 5.9
Requires PHP: 5.6
Version: 1.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: atw
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready

ATW WordPress Theme, (C) 2020 WordPress.org
ATW is distributed under the terms of the GNU GPL.
*/

/**
 * SETTINGS
 * File-header..........The file header for the themes style.css file.
 * Fonts................Any font files, if the project needs specific fonts.
 * Global...............Project-specific, globally available variables.
 *
 * TOOLS
 * Functions............Global functions.
 * Mixins...............Global mixins.
 *
 * GENERIC
 * Normalize.css........Normalise browser defaults.
 * Breakpoints..........Mixins and variables for responsive styles
 * Vertical-margins.....Vertical spacing for the main components.
 * Reset................Reset specific elements to make them easier to style in other contexts.
 * Clearings............Clearings for the main components.
 *
 * ELEMENTS
 * Blockquote...........Default blockquote.
 * Forms................Element-level form styling.
 * Headings.............H1–H6
 * Links................Default links.
 * Lists................Default lists.
 * Media................Images, Figure, Figcaption, Embed, iFrame, Objects, Video.
 *
 * BLOCKS
 * Audio................Specific styles for the audio block.
 * Button...............Specific styles for the button block.
 * Code.................Specific styles for the code block.
 * Columns..............Specific styles for the columns block.
 * Cover................Specific styles for the cover block.
 * File.................Specific styles for the file block.
 * Gallery..............Specific styles for the gallery block.
 * Group................Specific styles for the group block.
 * Heading..............Specific styles for the heading block.
 * Image................Specific styles for the image block.
 * Latest comments......Specific styles for the latest comments block.
 * Latest posts.........Specific styles for the latest posts block.
 * Legacy...............Specific styles for the legacy gallery.
 * List.................Specific styles for the list block.
 * Media text...........Specific styles for the media and text block.
 * Navigation...........Specific styles for the navigation block.
 * Paragraph............Specific styles for the paragraph block.
 * Pullquote............Specific styles for the pullquote block.
 * Quote................Specific styles for the quote block.
 * Search...............Specific styles for the search block.
 * Separator............Specific styles for the separator block.
 * Spacer...............Specific styles for the spacer block.
 * Table................Specific styles for the table block.
 * Verse................Specific styles for the verse block.
 * Video................Specific styles for the video block.
 * Utilities............Block alignments.
 *
 * COMPONENTS
 * Header...............Header styles.
 * Footer...............Footer styles.
 * Comments.............Comment styles.
 * Archives.............Archive styles.
 * 404..................404 styles.
 * Search...............Search styles.
 * Navigation...........Navigation styles.
 * Footer Navigation....Footer Navigation styles.
 * Pagination...........Pagination styles.
 * Single...............Single page and post styles.
 * Posts and pages......Misc, sticky post styles.
 * Entry................Entry, author biography.
 * Widget...............Widget styles.
 * Editor...............Editor styles.
 *
 * UTILITIES
 * A11y.................Screen reader text, prefers reduced motion etc.
 * Color Palette........Classes for the color palette colors.
 * Editor Font Sizes....Editor Font Sizes.
 * Measure..............The width of a line of text, in characters.
 */

/* Categories 01 to 03 are the basics. */

/* Variables */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
/*
font-family: 'Roboto', sans-serif;
font-family: 'Poppins', sans-serif;
*/

/*------ comman style ----*/
html.clsforpopup {
  margin-right: 0px !important;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  /*font-size:25px;*/
  font-size: 18px;
  color: #000000;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-weight: 300;
  line-height: 30px;
}

a {
  text-decoration: underline;
  color: #cf0011;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}

a:hover {
  color: #420080;
  text-decoration: none;
}

a:focus {
  outline: none;
  text-decoration: none;
}

:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px 0;
  color: #000000;
  padding: 0;
  line-height: 1.1;
  font-family: "Roboto", sans-serif;
  text-transform: none;
  font-weight: normal;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 18px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  text-decoration: none;
}

small {
  display: block;
  margin-top: 4px;
}

p {
  margin: 0 0 20px 0;
  line-height: 25px;
}

p:last-child {
  margin-bottom: 0px;
}

ul,
ol {
  margin: 0;
}

strong,
b {
  font-weight: 600;
}

button {
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="submit"],
input[type="password"],
input[type="hidden"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="submit"]:focus,
input[type="password"]:focus,
input[type="hidden"]:focus {
  outline: none;
}

textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 5px;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: #ffffff;
  padding-right: 25px;
  background-image: url(assets/images/select-arrow.png);
  background-repeat: no-repeat;
  background-position: right center;
  border-radius: 3px;
  text-overflow: ellipsis;
  overflow: hidden;
}

select::-ms-expand {
  display: none;
}

textarea:focus,
select:focus {
  outline: none;
}

input:disabled,
select:disabled {
  color: #ffffff !important;
  opacity: 1;
}

label {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

input[type="submit"] {
  background-color: #0070c0;
  border-color: transparent;
  padding: 10px 35px;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  width: auto;
  cursor: pointer;
  border-radius: 0px;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}

input[type="submit"]:hover {
  background-color: #000000;
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  background-color: transparent;
  height: auto;
  padding: 8px 12px;
  border: 1px solid #cecece;
  box-shadow: none;
  border-radius: 0px;
  height: auto;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}

.form-control:focus {
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.15);
  border-color: #999999;
  color: #2d2d2d;
  background-color: transparent;
}

select.form-control {
  padding: 10px 25px 9px 12px;
}

textarea.form-control {
  height: 120px;
  resize: none;
}

input::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
  opacity: 1;
  color: inherit;
}

input::-ms-input-placeholder,
.form-control::-ms-input-placeholder {
  opacity: 1;
  color: inherit;
}

input::placeholder,
.form-control::placeholder {
  opacity: 1;
  color: inherit;
}

.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  margin-top: 25px;
}

img.alignleft,
.alignleft {
  float: left;
  margin-right: 20px;
  max-width: 50%;
}

img.alignright,
.alignright {
  float: right;
  margin-left: 20px;
  max-width: 50%;
}

img.aligncenter,
.aligncenter,
img.alignnone,
.alignnone {
  display: block;
  margin: 30px auto 20px;
  clear: both;
}

img.alignleft,
.alignleft,
img.alignright,
.alignright {
  display: inline;
  margin-top: 0;
}

img.alignleft,
img.aligncenter,
img.alignright {
  margin-bottom: 20px;
}

.alignleft .wp-caption-text {
  text-align: left;
}

.alignright .wp-caption-text {
  text-align: right;
}

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

.wp-caption-text {
  font-size: 16px;
  color: #2f2f2f;
  line-height: 24px;
  margin-bottom: 30px;
}

.content ul,
.content ol {
  margin: 0 0 20px 0px;
  padding: 0 0 0 15px;
  position: relative;
}

.content ol {
  padding-left: 30px;
  line-height: normal;
}

.content ul {
  list-style: none;
  line-height: normal;
}

.content ul li,
.content ol li {
  margin-bottom: 8px;
}

.content ul li:before {
  content: "";
  position: relative;
  display: inline-block;
  left: -15px;
  top: -2px;
  width: 7px;
  height: 7px;
  background-color: #1a1a1a;
  border-radius: 100%;
  flex-shrink: 0;
}

.content ol li:before {
  display: none;
}

.content ol li ul li:before {
  display: block;
  top: 21px;
}

.content ul li ul,
.content ol li ul,
.content ul li ol {
  margin-top: 8px;
}

.table {
  border: 1px solid #dee2e6;
  font-size: 16px;
}

.table th,
.table thead th {
  background-color: #f0f0f0;
  border-bottom: none;
  font-weight: 600;
}

.table td,
.table th {
  padding: 10px;
}

@font-face {
  font-family: "FontAwesome";
  src: url("assets/css/fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("assets/css/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"),
    url("assets/css/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),
    url("assets/css/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"),
    url("assets/css/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),
    url("assets/css/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-facebook-f::before,
.fa-facebook::before {
  content: "\f09a";
}

.fa-instagram::before {
  content: "\f16d";
}

.fa-twitter::before {
  content: "\f099";
}

.fa-x-twitter::before {
  content: "\e61b";
}

.fa-linkedin::before {
  content: "\f0e1";
}

.fa-youtube-play::before {
  content: "\f16a";
}

.fa-youtube::before {
  content: "\f167";
}

.fa-envelope::before {
  content: "\f0e0";
}

.fa-quote-right::before {
  content: "\f10e";
}

.fa-quote-left::before {
  content: "\f10d";
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

.sticking {
  position: fixed;
  background-color: #fff;
  width: 100%;
  z-index: 11;
  border-bottom: none;
  animation: fadeInDown 0.5s ease-in-out;
  -webkit-animation: fadeInDown 0.5s ease-in-out;
  padding: 0px 0;
}

.hdrposabsl.sticking {
  position: fixed !important;
}

.hdrposabsl.sticking .brandlwrap {
  opacity: 1;
  visibility: visible;
}

.main-navigation {
  display: flex;
  justify-content: flex-end;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide,
.rtl .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-loading .slick-list {
  background: #fff url("assets/images/ajax-loader.gif") center center no-repeat;
  background-size: 36px 36px;
}

.slick-prev,
.slick-next {
  font-size: 0;
  width: 18px;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background-color: transparent;
  z-index: 2;
  opacity: 1;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}

.slick-prev:hover,
.slick-next:hover {
  color: #000066;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  opacity: 1;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 0.5;
  color: #000066;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "fontawesome";
  font-size: 40px;
  line-height: 1;
  opacity: 1;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 17px;
  height: 31px;
  background-size: 100%;
  display: inline-block;
}

.slick-prev {
  left: -20px;
}

[dir="rtl"] .slick-prev,
.rtl .slick-prev {
  right: 20px;
  left: inherit;
}

.slick-prev::before {
  content: "";
  background-image: url(assets/images/white-prev-arrow.png);
}

[dir="rtl"] .slick-prev:before,
.rtl .slick-prev:before {
  content: "\f105";
}

.slick-next {
  right: -20px;
}

[dir="rtl"] .slick-next,
.rtl .slick-next {
  right: inherit;
  left: 20px;
}

.slick-next::before {
  content: "";
  background-image: url(assets/images/white-next-arrow.png);
}

[dir="rtl"] .slick-next:before,
.rtl .slick-next:before {
  content: "\f104";
}

.slick-slider {
  margin-bottom: 0px;
}

.slick-dots {
  position: absolute;
  z-index: 5;
  bottom: -25px;
  left: 0px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 4px;
  width: 8px;
  height: 8px;
  padding: 0;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #d5d5d5;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 1;
  border-radius: 100%;
  border: 1px solid #c2cfff;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
}

.slick-dots li.slick-active button:before {
  background: #0070c0;
  border-color: #0070c0;
}

.mainbannerslider .slick-prev::before,
.mainbannerslider .slick-next::before {
  color: #fff;
  font-size: 40px;
  line-height: 1;
}

.mainbannerslider .slick-prev,
.mainbannerslider .slick-next {
  width: 46px;
  height: 78px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.75);
}

.mainbannerslider .slider-content {
  position: relative;
  z-index: 2;
  background-size: cover;
  background-position: to center;
  background-repeat: no-repeat;
  /*height:767px;*/
  overflow: hidden;
}

/*.mainbannerslider .slider-content:before {position:absolute; left: 0px;  top: 0px; width: 100%; height: 100%; background-color: rgba(0,47,87,.70); content: "";}*/
.slick-current .bannertitle h1 {
  opacity: 1;
  right: 0;
  visibility: visible;
}

.mainbannerslider .slick-dots {
  bottom: 30px;
}

.mainbannerslider .slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 6px;
  width: 76px;
  height: 6px;
  padding: 0;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
}

.mainbannerslider .slick-dots li button:before {
  content: "";
  width: 76px;
  height: 6px;
  background-color: #d5d5d5;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 1;
  border-radius: 0%;
  border: none;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
}

.mainbannerslider .slick-dots li.slick-active button:before {
  background: #0b4f9d;
}

.homehedbannerbg {
  background-color: #000000;
  color: #fff;
}

.homebanflex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.homebannercont {
  padding-left: 50px;
  max-width: 30%;
  width: 100%;
}

.homebannercont h1 {
  color: #fff;
  font-size: 45px;
  position: relative;
  margin: 0px;
  padding: 15px;
  border-bottom: 10px solid #fdc402;
  font-family: "Poppins", sans-serif;
}

.homebannercont h1:before,
.homebannercont h1:after {
  position: absolute;
  width: 40%;
  bottom: -10px;
  height: 10px;
  content: "";
}

.homebannercont h1:before {
  left: 0;
  background-color: #420080;
}

.homebannercont h1:after {
  right: 0;
  background-color: #014eb2;
}

.homebannercont h1 span {
  display: inline-block;
  padding-right: 40px;
}

.homebannerimg {
  flex: 1;
  text-align: right;
}

.homebannerimg img {
  display: inline-block;
  width: 100%;
  height: auto;
}

.header .container {
  max-width: 1800px;
}

.headerdflex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header {
  background-color: #0a0000;
  color: #fff;
}

.hedtabredbg {
  background-color: #cf0011;
  padding: 10px 0px;
  position: relative;
}

.hedflex {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hedtiomenu ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  align-items: center;
}

.hedtiomenu li {
  list-style-type: none;
  padding: 0px 8px;
  font-size: 18px;
  font-weight: 500;
}

.hedtiomenu li a {
  color: #fff;
}

.hedtiomenu li a:hover {
  color: #fdc402;
}

.donatebtn {}

.donatebtn a {
  font-size: 27px;
  color: #0a0000;
  display: inline-block;
  padding: 4px 25px;
  border-radius: 7px;
  background-color: #fdc402;
  line-height: normal;
  font-weight: 700;
  border: 2px solid #fdc402;
  text-decoration: none;
}

.donatebtn a:hover {
  color: #fff;
  background-color: transparent;
  text-decoration: none;
}

/*-------search-start-------*/
.hedsearch {
  margin-right: 25px;
  margin-left: 25px;
}

.usericonTigger {
  cursor: pointer;
}

.topuserDropdown {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 0px;
  /*box-shadow: 0 6px 20px 0 rgba(153, 155, 168, 0.1);*/
  border-bottom: 2px solid #b7b7b8;
  text-align: left;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 15px;
  padding: 15px 0px 15px 0px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  z-index: 9999;
  width: 100%;
}

.showtopuserDropdown {
  /*margin-top: 8px;*/
  margin-top: 0px;
  opacity: 1;
  visibility: visible;
}

.topuserDropdown .container {
  position: relative;
}

.serinputform form {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.serinputform input {
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  padding: 0px 0px 0px 40px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.serinputform .searchbtn {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 24px;
  height: 26px;
  background: url(assets/images/search-black-icon.png) no-repeat center;
}

.serinputform .searchbtn:hover,
.serinputform .searchbtn:focus {
  outline: none;
  box-shadow: none;
  background-color: transparent;
}

.serinputform input::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}

.serinputform input::-moz-placeholder {
  opacity: 1;
  color: #000;
}

.serinputform input:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}

.serinputform input:-moz-placeholder {
  opacity: 1;
  color: #000;
}

/*-------search-end-------*/

/*.hedlogo {padding: 15px 0px;}*/
.actogellery {
  padding-top: 70px;
  margin-bottom: 60px;
  position: relative;
}

.actogellery:before {
  position: absolute;
  left: 0;
  top: 13%;
  width: 100%;
  height: 100%;
  max-height: 806px;
  background: url(assets/images/gel-shape-bg.jpg) no-repeat center;
  background-size: cover;
  content: "";
}

.actogellery .container {
  position: relative;
}

.homecommcontent {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 90px;
  padding-bottom: 90px;
  position: relative;
}

.homecommcontent::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 770px;
  margin: auto;
  height: 10px;
  background-color: #014eb2;
  content: "";
}

.gallerbox {
  max-width: 345px;
  margin-left: auto;
  margin-right: auto;
}

.gallerbox a {
  border: 25px solid #014eb2;
  display: inline-block;
  background-color: #000000;
  transition: all 0.3s ease-in-out 0s;
  position: relative;
  overflow: hidden;
}

.gallerbox a:hover {
  border-color: #007b79;
  margin-top: -15px;
}

.homegelimg {
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  height: 435px;
}

.gallerbox a .homegelimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out 0s;
}

.gallerbox a:hover .homegelimg img {
  opacity: 0.7;
}

.gallerbox a .geltitle {
  color: #fff;
  font-size: 28px;
  padding: 12px 10px 12px 15px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease-in-out 0s;
}

.gallerbox a:hover .geltitle {
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}

.gallerbox a .expcalender {
  background-color: #420080;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  padding: 0px 10px 0px 15px;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
  height: 0;
}

.gallerbox a:hover .expcalender {
  opacity: 1;
  padding-top: 10px;
  padding-bottom: 10px;
  height: auto;
  transition: all 0.3s ease-in-out 0s;
}

.getinspsec {
  position: relative;
  margin-bottom: 90px;
}

.getinspsec:before {
  position: absolute;
  left: 0;
  top: 13%;
  width: 100%;
  height: 100%;
  max-height: 928px;
  background: url(assets/images/get-spacial-bg.jpg) no-repeat center;
  background-size: cover;
  content: "";
}

.getinspsec .container {
  position: relative;
}

.getspetebsec .nav-pills .nav-link {
  color: #fff;
  border-radius: 0px;
  border-right: 10px solid #000;
  background-color: #000000;
  text-align: left;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
  border-left: 0;
  transition: all 0.3s ease-in-out 0s;
}

.getspetebsec .nav-pills .nav-link span {
  font-weight: 300;
}

.getspetebsec .nav-pills .nav-link span.clsforrspv {
  font-weight: 600;
}

.getspetebsec .nav-pills .nav-link.active,
.getspetebsec .nav-pills .show>.nav-link {
  color: #fff;
  background-color: #000000;
  border-color: #004bb4;
  border-left: 70px solid #420081;
  transition: all 0.3s ease-in-out 0s;
}

.getspetebsec .col-md-5,
.getspetebsec .col-md-7 {
  margin-bottom: 30px;
}

.PLR100 {
  padding-left: 100px;
  padding-right: 100px;
}

.getspetebsec .row {
  align-items: center;
}

.gettabcont {
  font-size: 18px;
  font-weight: 300;
  line-height: 35px;
}

.gettabcont p {
  line-height: 35px;
}

.getflex {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.getusertitle {
  flex: 1;
}

.getusertitle h2 {
  margin-bottom: 5px;
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  position: relative;
  border-bottom: 6px solid #cf0011;
}

.getusertitle h4 {
  margin-bottom: 0px;
  font-size: 25px;
  font-weight: 300;
  font-style: italic;
}

.getuserimg {
  /* max-width: 270px;
  height: 202px;*/
  overflow: hidden;
  position: relative;
}

.getuserimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
}

.homeblogsec {
  position: relative;
}

.homeblogsec:before {
  position: absolute;
  left: 0;
  top: 13%;
  width: 100%;
  height: 100%;
  max-height: 1158px;
  background: url(assets/images/home-blog-shap-bg.jpg) no-repeat center;
  background-size: cover;
  content: "";
}

.homeblogsec .container {
  position: relative;
}

.homebloglistcon {
  font-size: 18px;
  color: #000;
  font-weight: 300;
  position: relative;
}

.homebloglistcon p {
  line-height: 35px;
}

.homebloglistcon h2 {
  font-size: 28px;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 6px solid #014eb2;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}

.homebloglistcon h2.redborder {
  border-color: #cf0011;
}

.homebloglistcon {
  padding-right: 30px;
}

.homebloglist .row {
  margin-bottom: 50px;
}

.homebloglist .col-md-7,
.homebloglist .col-md-6,
.homebloglist .col-md-5 {
  margin-bottom: 30px;
}

.homeblogrightimg {
  position: relative;
}

.homeblogrightimg a img {
  transition: all 0.3s ease-in-out 0s;
}

.homeblogrightimg a:hover img {
  opacity: 0.7;
}

.blogimgtitle {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
  /*font-size: 45px;*/
  font-size: 30px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  background-color: rgba(0, 0, 0, 0.6);
}

.secbloglist .row {
  align-items: center;
}

.secbloglist .homebloglistcon {
  padding-right: 0px;
}

.secbloglist .homeblogrightimg {
  padding-left: 30px;
}

.homeblogrightimg a .lermorelink {
  font-size: 24px;
  color: #fff;
  background-color: #004eb4;
  padding: 20px 15px;
  position: relative;
  transition: all 0.3s ease-in-out 0s;
}

.homeblogrightimg a:hover .lermorelink {
  color: #aed1ff;
}

.homeblogrightimg a .lermorelink:before {
  position: absolute;
  right: 0px;
  top: 0;
  height: 100%;
  width: 35%;
  background-color: #007b79;
  content: "";
}

.blogimgpos {
  position: relative;
}

/*.blogimgpos:before {width: 0; height: 0; border-top: 167px solid #fff; border-right: 617px solid transparent; position: absolute; left: 0;
top: 0; content: "";}
*/
.imgintitle {
  position: absolute;
  width: 100%;
  bottom: 0px;
  padding: 10px 15px;
  font-size: 35px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.footerbg {
  /*background: url(assets/images/footer-bg.jpg) no-repeat center; background-size: cover;*/
  position: relative;
  padding: 30px 50px;
  color: #fff;
}

.footerbg .container {
  position: relative;
  max-width: inherit;
}

.ftdobtn {
  justify-content: flex-end;
}

.ft-donatelink {
  text-align: left;
  margin-bottom: 20px;
  text-decoration: none;
}

.ft-donatelink a {
  font-size: 27px;
  color: #0a0000;
  display: inline-block;
  padding: 4px 40px;
  /*border-radius: 7px;*/
  background-color: #fdc402;
  line-height: normal;
  font-weight: 700;
  border: 2px solid #fdc402;
  text-decoration: none;
}

.ft-donatelink a:hover {
  color: #fff;
  background-color: transparent;
}

.footerbg h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  padding-top: 5px;
}

.footerbg h4 a {
  color: #fff;
}

.footerbg h4 a:hover {
  color: #a1a1a1;
}

.footerbg ul {
  margin: 0px;
  padding: 0px;
}

.footerbg li {
  list-style-type: none;
  margin-bottom: 10px;
  line-height: normal;
}

.footerbg li a {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
}

.footerbg li a:hover {
  color: #a1a1a1;
}

.ft-socialicon {
  padding-top: 30px;
}

.ft-socialicon ul {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
}

.ft-socialicon li {
  margin: 0px 0px;
}

.ft-socialicon li:first-of-type {
  margin-left: 0;
}

.ft-socialicon li:last-of-type {
  margin-right: 0;
}

.ft-socialicon li a {
  display: inline-flex;
  width: 50px;
  height: 50px;
  border-radius: 0px;
  text-align: center;
  line-height: 50px;
  align-items: center;
  justify-content: center;

}

.ft-socialicon li a:hover {
  background-color: #cf0011;
  color: #fff;
}

.rightnav {
  /*padding-left: 35px; padding-right: 35px;*/
}

.innerpagebanner {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 530px;
}

.innerbannerpagetitle {
  position: absolute;
  left: 15px;
  bottom: 15px;
}

.innerbannerpagetitle h1 {
  margin-bottom: 0px;
  color: #fff;
  font-size: 107px;
  font-family: "Poppins", sans-serif;
  text-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.innerpagecontentsec {
  padding-top: 70px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.innerpagecontentsec p {
  line-height: 30px;
  font-size: 20px;
}

.rentbgimg:before {
  position: absolute;
  left: 0;
  top: 9%;
  width: 100%;
  height: 100%;
  max-height: 2343px;
  background: url(assets/images/rent-space-cont-bg.jpg) no-repeat top center;
  background-size: cover;
  content: "";
}

.innerpagecontentsec .container {
  position: relative;
}

.rentcontent {
  padding-right: 40px;
}

.rentcontent p {
  line-height: 37px;
}

.joinnowbtn {
  padding-top: 30px;
  padding-bottom: 20px;
}

a.bluebtn {
  display: inline-block;
  font-weight: 300;
  font-size: 37px;
  color: #fff;
  background-color: #420081;
  padding: 10px 25px;
  line-height: normal;
}

a:hover.bluebtn {
  background-color: #420080;
  color: #fff;
}

.MBslider {
  margin-bottom: 20px;
}

.rent-slider .slick-prev {
  left: 10px;
}

.rent-slider .slick-next {
  right: 10px;
}

.rent-slider .slick-prev,
.rent-slider .slick-next {
  width: 24px;
}

.rent-slider .slick-prev::before,
.rent-slider .slick-next::before {
  width: 24px;
  height: 24px;
}

.rentlistcont {
  margin-bottom: 60px;
}

.rentlistcont ul {
  margin: 0px;
  padding: 0px;
}

.rentlistcont li {
  list-style-type: none;
  display: block;
}

.rentslidercontsec .col-md-7,
.rentslidercontsec .col-md-5 {
  margin-bottom: 30px;
}

h2.inenrpagemaintitle {
  font-size: 65px;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 6px solid #014eb2;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}

.titlemaxwidht {
  max-width: 76%;
}

.renthighlightssec {
  padding-top: 20px;
  margin-bottom: 120px;
}

h2.inenrpagemaintitle.titleMB {
  margin-bottom: 50px;
}

.rentspacetablesec table {
  font-size: 18px;
  background-color: #fff;
  font-weight: 400;
  border: none;
}

.rentspacetablesec table tr {
  border: none;
}

.rentspacetablesec table th,
.rentspacetablesec table td {
  text-align: center;
  vertical-align: middle;
  height: 150px;
}

.rentspacetablesec table th {
  text-transform: uppercase;
  color: #666666;
  letter-spacing: 2px;
  font-weight: 400;
  height: auto;
  border: none;
  background-color: #fff;
}

.rentspacetablesec table td {
  width: 20%;
  border: 1px solid #000;
}

.bordertopnone {
  border-top: none;
}

.lifestoryimg {
  padding-top: 80px;
}

.edu-banner-imgsec {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 636px;
  margin-bottom: 50px;
}

h2.inenrpagemaintitle.purpalborder {
  border-color: #420080;
}

.lifestorycont {
  padding-left: 40px;
}

.lifestorycont p {
  line-height: 37px;
}

.lifestorysec {
  margin-bottom: 40px;
  position: relative;
}

.lifestorysec:before {
  position: absolute;
  left: 0;
  top: 10%;
  width: 100%;
  height: 100%;
  max-height: 1277px;
  background: url(assets/images/edu-shape-img-2.jpg) no-repeat center;
  background-size: cover;
  content: "";
}

.lifestorysec .col-lg-4,
.lifestorysec .col-lg-8 {
  margin-bottom: 30px;
}

.lifestorysec .container {
  position: relative;
}

.artseducationsec {
  padding-top: 70px;
  margin-bottom: 80px;
  position: relative;
}

.artseducationsec p {
  line-height: 35px;
  font-size: 18px !important;
}

.throughbanner {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 688px;
  margin-bottom: 50px;
  z-index: 1;
}

.throughbanner:before {
  position: absolute;
  right: 20px;
  bottom: -120px;
  width: 590px;
  height: 590px;
  background-color: rgba(255, 198, 0, 0.5);
  content: "";
  border-radius: 100%;
}

.throughbanner h2.inenrpagemaintitle {
  color: #fff;
  padding-bottom: 0px;
  border-bottom: none;
  position: absolute;
  bottom: 0px;
  z-index: 1;
  font-size: 80px;
}

.through-creativitysec {
  margin-bottom: 50px;
}

.thoughtcontsec {
  position: relative;
}

.thoughtcontsec:before {
  position: absolute;
  left: 0;
  top: -35%;
  width: 100%;
  height: 1083px;
  max-height: 1083px;
  background: url(assets/images/edu-shape-img-1.jpg) no-repeat top center;
  background-size: cover;
  content: "";
}

.thoughtcontsec .container {
  position: relative;
}

.thoughmaxwidth {
  max-width: 60%;
  padding-bottom: 50px;
  padding-top: 20px;
  border-top: 6px solid #007b79;
}

.thoughtcontsec p {
  line-height: 37px;
}

.joinusbtn {
  text-align: left;
}

.joinusbtn a.bluebtn {
  background-color: #007b79;
}

.joinusbtn a:hover.bluebtn {
  background-color: #000;
}

.artconmax {
  max-width: 70%;
}

.artsedbannerimg {
  position: absolute;
  right: 0;
  top: 0px;
  width: 32%;
  overflow: hidden;
}

.artrel {
  position: relative;
}

.artrel:before {
  position: absolute;
  left: -1px;
  top: -1px;
  width: 100%;
  height: 100%;
  clip-path: polygon(0% 100%, 100% 100%, 0% 0%);
  background-color: #fff;
  background-size: cover;
  content: "";
}

.scrolling {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}

.scrolling .menu-overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  overflow: hidden;
  visibility: visible;
  z-index: 11;
}

.rentspacetablesec.table-responsive {
  overflow-x: hidden;
}

.cegalelry .col-md-4 {
  margin-bottom: 30px;
}

.rent-slider .fotorama__nav-wrap {
  display: none;
}

.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr,
.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon {
  opacity: 1 !important;
}

.fotorama__arr--disabled {
  opacity: 1 !important;
}

.clsrentalpgcnt ul {
  margin: 0px 0px 50px 0;
  padding: 0px;
}

.clsrentalpgcnt li {
  list-style-type: none;
}

.clsrentalpgcnt h6 {
  font-size: 25px;
  font-weight: 300;
  margin-bottom: 5px;
}

.artformlist {
  margin-bottom: 20px;
}

.artformlist label {
  font-weight: 300;
  font-size: 17px;
  margin-bottom: 5px;
}

.artformlist label span {
  color: #ff0000;
}

.artformlist input,
.artformlist textarea {
  font-size: 14px;
  font-weight: 300;
}

.artformlist.form-check {
  padding-left: 0px;
}

.artformlist.form-check .wpcf7-list-item {
  margin-left: 0px;
}

.artformlist.form-check .wpcf7-list-item label span {
  color: #000;
  font-size: 18px;
}

.artsform input[type="submit"] {
  display: inline-block;
  font-weight: 300;
  font-size: 18px;
  color: #fff;
  background-color: #007b79;
  padding: 10px 25px;
  line-height: normal;
  transition: all 0.3s ease-in-out 0s;
}

.artsform input[type="submit"]:hover {
  background-color: #000;
  color: #fff;
}

.artsform .wpcf7-not-valid-tip {
  font-size: 16px;
  font-weight: 300;
}

.artsform .wpcf7-response-output {
  margin: 20px 0px 0px 0px !important;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}

/*8-2-2022*/
.clseventlistbox {
  display: flex;
  margin-bottom: 20px;
}

.clseventlistbox .eventleftcalendr {
  background: #cf0011;
  color: #fff;
  font-weight: 600;
  padding: 20px;
}

.clseventlistbox .event-calendar-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clseventlistbox .nonday {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clseventlistbox .eventrightcontent {
  background: #f7f7f7;
  padding: 20px;
  width: 100%;
}

.clseventlistbox .eventtitle a {
  font-size: 25px;
  font-weight: 600;
}

.clseventlistbox .eventtime {
  font-size: 18px;
  font-weight: 700;
  color: #8f8282c4;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.clseventlistbox .eventcontent {
  font-weight: 400;
}

.pagination-wrapper {
  text-align: center;
}

.page-numbers {
  padding: 5px 20px;
  border: 1px solid;
}

.page-numbers:hover {
  background: #cf0011;
  color: #fff;
  transition: 0.5s ease all;
}

.page-numbers.current {
  background: #cf0011;
  color: #fff;
}

.page-numbers.next {
  border: none;
}

.page-numbers.next:hover {
  color: #000;
  background: transparent;
}

.prev.page-numbers {
  border: none;
}

.page-numbers.prev:hover {
  color: #000;
  background: transparent;
}

/*single event page*/
.clssingleeventtitle h1 {
  font-size: 55px !important;
}

.clseventdtsec .event-calendar-box {
  color: #cf0011;
  font-weight: 600;
}

.clseventdtsec .eventdtltime {
  font-size: 18px;
  font-weight: 700;
  color: #8f8282c4;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border-bottom: 1px solid;
}

/*.clseventdtsec{background: #fdc40233;}*/
.clseventdtsec .eventdtlcontent {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

.clsdteventbtn a {
  font-size: 18px;
  font-weight: 600;
}

i.fa.fa-calendar:before {
  content: "\f073 ";
}

i.fa.fa-clock-o:before {
  content: "\f017 ";
}

.clseventdtsec .eventdtltime i {
  margin-right: 10px;
}

/*our team page css*/
.clsourteam h2.inenrpagemaintitle.titleMB {
  margin-bottom: 50px;
  text-align: center;
  max-width: 100%;
}

.tsum-tabs h1 {
  padding: 50px 0;
  font-weight: 400;
  text-align: center;
}

.tsum-tabs p {
  line-height: 1.5;
}

.tsum-tabs {
  justify-content: center;
  margin-bottom: 20px;
}

.tsum-tabs.nav-tabs .nav-link.active {
  border-color: #420080 #dee2e6 #fff !important;
}

.tsum-tabs main {
  text-align: center;
  margin: 0 auto;
  background: #fff;
}

.tsum-tabs section {
  display: none;
  padding: 20px 0 0;
  border-top: 1px solid #ddd;
}

.tsum-tabs input {
  display: none;
}

.tsum-tabs button {
  display: inline-block;
  margin: 0 0 -1px;
  padding: 15px 25px;
  font-weight: 600;
  text-align: center;
  color: #bbb;
  border: 1px solid transparent;
  font-size: 23px;
  width: 25%;
}

.tsum-tabs button:hover {
  color: #888;
  cursor: pointer;
}

.tsum-tabs button:focus {
  color: #555;
  border: 1px solid #ddd;
  border-top: 2px solid #cf0011;
  border-bottom: 1px solid #fff;
}

.tsum-tabs #tabone_staff:checked~#contentone_staff,
.tsum-tabs #tabtwo_volunteers:checked~#contenttwo_volunteers,
.tsum-tabs #tabthree_board:checked~#contentthree_board,
.tsum-tabs #tab4:checked~#content4 {
  display: block;
}

.clsteaminfo {
  padding: 15px;
}

.clsteamcontent {
  background: #97969417;
}

.clsteaming img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clsteaminfo h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-right: 5px;
}

.fa-phone:before {
  content: "\f095 ";
}

.clscontactinfo a i {
  margin-right: 20px;
  font-size: 20px;
}

.clsteaminfo p {
  font-size: 16px;
  text-align: left;
}

.clsteaming {
  height: 350px;
  position: relative;
  overflow: hidden;
}

/*.clsteamcontent{margin-bottom: 20px;}*/
.clsnameinfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.clsteamcontent .clsteaming img {
  transition: 0.5s ease all;
}

.clsteamcontent:hover .clsteaming img {
  transform: scale(1.1);
}

/*who we are page css start*/
.title {
  overflow: hidden;
  margin-left: -1px;
  text-align: left;
  margin-bottom: 20px;
}

.title h2 {
  color: #000;
  font-weight: bold;
  font-size: 35px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-right: 25px;
}

.title h2:after {
  content: "-";
  font-size: 2px;
  background: rgb(207 0 17);
  color: rgba(0, 0, 0, 0.1);
  height: 4px;
  display: block;
  width: 2000%;
  position: absolute;
  right: -2000%;
  top: 50%;
}

.clsmissioncontent p {
  font-size: 18px;
}

.thumb {
  position: relative;
}

.thumb-1 {
  text-align: center;
}

.thumb .thumb-2 {
  position: absolute;
  right: 0;
  bottom: -120px;
  border: 10px solid #ffffff;
  max-width: 60%;
}

.clshistorysec .title {
  text-align: right;
}

.clshistorysec .title h2:after {
  content: "-";
  font-size: 2px;
  background: rgb(207 0 17);
  color: rgba(0, 0, 0, 0.1);
  height: 4px;
  display: block;
  width: 2000%;
  position: absolute;
  left: -2015%;
  top: 50%;
}

.clsmissionsec {
  margin-bottom: 25px;
}

.clsmissionsec:before {
  position: absolute;
  left: 0;
  top: 13%;
  width: 100%;
  height: 100%;
  max-height: 806px;
  background: url(assets/images/gel-shape-bg.jpg) no-repeat center;
  background-size: cover;
  content: "";
  z-index: -1;
}

.clsmissionsec {
  position: relative;
}

.clswhowearemain:before {
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  max-height: 928px;
  background: url(assets/images/get-spacial-bg.jpg) no-repeat center;
  background-size: cover;
  content: "";
}

.clswhowearemain:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  max-height: 1158px;
  background: url(assets/images/home-blog-shap-bg.jpg) no-repeat center;
  background-size: cover;
  content: "";
  z-index: -1;
}

.clswhowearemain {
  position: relative;
}

/*error page css*/
/*.clserrorpage{height: 100vh;}*/
.clserrorimg {
  text-align: center;
  padding: 50px 0;
}

.clserrorcontent {
  padding: 50px 0;
  padding-top: 0;
}

.clserrorcontent p {
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  line-height: 45px;
  text-transform: uppercase;
  color: #dba335;
}

/*play series css*/
/*.clsplayreadingmainsec p{font-size: 18px;}*/
.clsplayreadingform {
  background: #e7e3d533;
  padding: 30px;
}

/*volunteer page css start*/

.clsgrpimg {
  text-align: center;
  margin-bottom: 20px;
}

.clsvlcontent p {
  text-align: center;
}

.clsindividualsec {
  padding-top: 30px;
}

.clsintxt {
  background-color: #d3919154;
  padding: 50px;
  max-width: 90%;
  margin: auto;
}

.clstitle h2 {
  font-size: 35px;
  font-weight: 600;
  color: #000000;
}

.clsinongoingtxt {
  border-bottom: 2px solid #e53906;
  padding-bottom: 30px;
  margin-bottom: 25px;
}

.clscontentongoing p {
  font-size: 18px;
}

.clsinongoingtxt:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.clsteamsec .title h2:after {
  background: rgb(253 196 2);
}

.clsteamsec .clsintxt {
  background-color: #fdc40224;
}

.clsteamsec .clstitle h2 {
  color: #856700;
}

.clsteamsec .clsinongoingtxt {
  border-bottom: 2px solid #ffc600;
}

.clsteamsec .clsinongoingtxt:last-child {
  border-bottom: 0;
}

/*03-14-2022*/
.hedtabredbg {
  background: -moz-linear-gradient(124deg,
      rgba(66, 0, 130, 1) 0%,
      rgba(207, 0, 0, 1) 40%,
      rgba(207, 0, 0, 1) 100%);
  background: -webkit-linear-gradient(124deg,
      rgba(66, 0, 130, 1) 0%,
      rgba(207, 0, 0, 1) 40%,
      rgba(207, 0, 0, 1) 100%);
  background: -o-linear-gradient(124deg,
      rgba(66, 0, 130, 1) 0%,
      rgba(207, 0, 0, 1) 40%,
      rgba(207, 0, 0, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#CF0000', endColorstr='#420082', GradientType=0);
  background: -ms-linear-gradient(124deg,
      rgba(66, 0, 130, 1) 0%,
      rgba(207, 0, 0, 1) 40%,
      rgba(207, 0, 0, 1) 100%);
  background: linear-gradient(124deg,
      rgba(66, 0, 130, 1) 0%,
      rgba(207, 0, 0, 1) 40%,
      rgba(207, 0, 0, 1) 100%);
}

/* height: 120px; */
/* clip-path: polygon(30% 0%, 52% 0px, 100% 0px, 99.95% 42%, 20.32% 42.84%, 17.75% 99%, 0px 100%, 0px 0px); */

.hedtabredbg {
  clip-path: polygon(30% 0%,
      53% 0px,
      100% 0px,
      100% 53.37%,
      20.26% 53.26%,
      18.49% 100.1%,
      0px 100%,
      0px 0px);
  background-color: #cd0a25;
}

.clsftrlogosec {
  clip-path: polygon(30% 0%,
      52% 0,
      77% 24%,
      100% 100%,
      70% 100%,
      30% 100%,
      0 100%,
      0 0);

  /* ff 3.6+ */
  background: -moz-linear-gradient(124deg,
      rgba(69, 0, 129, 1) 0%,
      rgba(207, 0, 0, 1) 68%,
      rgba(207, 0, 0, 1) 100%);
  /* safari 5.1+,chrome 10+ */
  background: -webkit-linear-gradient(124deg,
      rgba(69, 0, 129, 1) 0%,
      rgba(207, 0, 0, 1) 68%,
      rgba(207, 0, 0, 1) 100%);
  /* opera 11.10+ */
  background: -o-linear-gradient(124deg,
      rgba(69, 0, 129, 1) 0%,
      rgba(207, 0, 0, 1) 68%,
      rgba(207, 0, 0, 1) 100%);
  /* ie 6-9 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#CF0000', endColorstr='#450081', GradientType=0);
  /* ie 10+ */
  background: -ms-linear-gradient(124deg,
      rgba(69, 0, 129, 1) 0%,
      rgba(207, 0, 0, 1) 68%,
      rgba(207, 0, 0, 1) 100%);
  /* global 94%+ browsers support */
  background: linear-gradient(124deg,
      rgba(69, 0, 129, 1) 0%,
      rgba(207, 0, 0, 1) 68%,
      rgba(207, 0, 0, 1) 100%);
}

/*.hedlogo img {width: 30%;padding-top: 15px;padding-right: 50px;}*/
.headerdflex {
  align-items: flex-start;
  justify-content: flex-end;
}

/*.clsftrlogosec {
  position: relative;
  align-items: center;
  display: flex;
  padding-left: 50px;
}*/

.clsftrlogosec {
  position: relative;
  align-items: center;
  padding-left: 50px;
}

.footerbg {
  background: #000;
  /*padding-top: 25px;*/
  padding: 0px;
}

.ftrtopsrchsec {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
}

.toplistsealeft {
  display: flex;
  align-items: center;
}

.gclastsec {
  display: flex;
  justify-content: space-between;
}

.footerbg li {
  margin-bottom: 0px;
}

.ftrmainrightsec {
  padding: 30px 0px 30px 0;
  position: relative;
  left: -30px;
}

.toplistsealeft h4 {
  margin-bottom: 0px;
  padding-right: 20px;
}

.topuserDropdown {
  top: 18%;
}

/*.toplistsealeft .serinputform .searchbtn{background: url(assets/images/search-white-icon.png) no-repeat center;}*/
/*.searchformbottom{position: relative;}*/

/*-------search-start--------------*/
#search {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  z-index: 9999;
}

#search.open {
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
  -o-transform: translate(0px, 0px) scale(1, 1);
  -ms-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
}

#search input[type="search"] {
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: "nexa-bolduploaded_file";
  font-size: 18px;
  padding: 15px 38px 15px 54px;
  border-radius: 30px;
  width: 100%;
  border: 0px;
  outline: none;
}

.btnsearchicon {
  position: absolute;
  right: 15px;
  top: 14px;
  border: none;
  background-color: transparent;
}

.btnsearchicon:focus {
  outline: none;
}

.btnsearchicon img {
  width: 25px;
}

#search .close {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  border: 0;
  /*color: #fff;*/
  opacity: 1;
  font-size: 50px;
  font-family: "nexa-lightuploaded_file";
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}

#search .close:focus {
  outline: none;
}

.searhbodybg {
  overflow: scroll;
  overflow-x: hidden;
  position: relative;
  position: fixed;
  width: 100%;
  height: 100%;
}

.searchinput {
  position: absolute;
  top: 50%;
  left: 0px;
  right: 0px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 10px;
  padding-left: 10px;
}

#search input[type="search"] {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 0px;
  border-bottom: 2px solid #b7b7b8;
  color: #000;
  width: 100%;
}

.btnsearchicon {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 78px;
  height: 57px;
  background: url(assets/images/search-black-icon.png) no-repeat center;
}

.clsforrspv {
  width: 20%;
  color: #fff !important;
  font-size: 15px;
  background: #420081;
  border: 0px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  position: absolute;
  right: 0;
  z-index: 1;
  margin-top: -38px;
}

.clsforrspv a {
  color: #fff;
}

div#v-pills-tab {
  position: relative;
}

.navmaincls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.getspetebsec .nav-pills .nav-link {
  font-size: 15px;
  width: 100%;
}

.joinusbtn {
  text-align: left;
  z-index: 1;
  position: relative;
}

/*21-03-2022*/
.hedtiomenu li {
  font-size: 16px;
}

.donatebtn a {
  font-size: 18px;
  padding: 4px 23px;
  text-decoration: none;
}

.clssearchiconlink img {
  width: 17px;
}

.gallerbox {
  max-width: 100%;
}

.homegelimg {
  /* height: 370px; margin-bottom: 34px;*/
  height: 520px;
  margin-bottom: 0px;
}

.gallerbox a .homegelimg img {
  height: inherit;
  object-position: top;
}

.gallerbox a {
  width: 100%;
}

.gal_tlecal {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  background-color: #000;
}

.ft-donatelink a {
  padding: 4px 26px 3px 26px;
  font-size: 18px;
}

.homeblogrightimg a img {
  height: 380px;
  width: 100%;
  object-fit: cover;
}

.menunavebar .menu>.menu-item>a {
  font-size: 17px;
  text-decoration: none;
}

.ftlogo img {
  padding-top: 50px;
  width: 100%;
}

/*.contbg.thoughtcontsec:before{height: 400px !important;min-height: inherit !important;top: 0px;}*/
.contbg.thoughtcontsec:before {
  display: none;
}

.clsourteam {
  margin-bottom: 40px;
}

.tsum-tabs {
  justify-content: flex-start;
}

.tsum-tabs button {
  width: 15%;
  font-size: 18px;
}

.clsnameinfo {
  margin-bottom: 0px;
}

.clsteamcontent {
  margin-bottom: 30px;
  box-shadow: 0px 3px 9px rgb(0 0 0 / 10%);
}

.popupcontent h3.posttitle {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  font-size: 26px;
}

.btn-close {
  right: 17px;
  position: absolute;
}

.content_desc {
  font-size: 16px;
}

.modal-body {
  padding: 30px;
}

/*news*/
.pressbox {
  margin: auto;
  /*max-width: 300px;*/
  /*max-width: 270px;*/
  margin-bottom: 40px;
}

.pressbox img {
  width: 100%;
}

.presstitle {
  padding: 20px;
  text-align: center;
}

.strong-text {
  font-weight: 600;
  /*color: #000;*/
}

.presstitle .strong-text img {
  width: inherit;
}

.testinomlbox h6 {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 5px;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}

.testinomlbox h6:before {
  width: 140px;
  height: 4px;
  background: #014eb2;
  left: 0;
  content: "";
  position: absolute;
  bottom: 0;
}

.testinomlbox a {
  font-weight: 600;
  font-size: 16px;
  display: block;
  text-align: right;
}

.testinomlbox:first-child {
  padding-top: 0px;
}

.contbg {
  margin-bottom: 50px;
  background: #f2f2f2;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 50px;
}

.testinomlboxdescript em {
  display: block;
  margin-top: 10px;
  font-weight: 900;
  line-height: 23px;
  font-style: italic;
  /* font-size: 15px; */
  text-align: left;
}

.testinomlbox {
  padding-bottom: 40px;
  padding-top: 40px;
}

.show_testimonial {
  padding-bottom: 20px;
}

.full_testimonial i {
  font-size: 16px;
  color: #323131;
}

.menunavebar .menu>.menu-item>.sub-menu li a {
  font-weight: 600;
  color: #121212;
  font-size: 13px;
  line-height: 30px;
  padding-left: 18px;
  text-decoration: none;
}

.menunavebar .menu>.menu-item>.sub-menu li a:hover {
  color: #cf0011;
}

.full_testimonial {
  margin-top: 20px;
}

.testinomlboxdescript {
  margin-bottom: 12px;
}

.testinomlboxdescript p {
  margin-bottom: 5px;
}

.menunavebar {
  margin-top: -23px;
}

/*.testinomlbox:nth-child(even) {background: #f2f2f2}*/
.testinomlboxdescript span {
  line-height: 40px;
  font-style: italic;
  display: block;
  white-space: nowrap;
  width: 800px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.renthighlightssec.clsrentalpgcnt {
  margin-bottom: 0px;
}

a.bluebtn {
  background-color: #007b79;
}

.thoughmaxwidth {
  position: relative;
  z-index: 1;
}

.clscontactinfo {
  display: flex;
}

#menu-primary-menu ul ul {
  position: absolute;
  /*left: -99px;*/
  z-index: 9;
  border-radius: 0px;
  text-align: left;
  box-shadow: 0px 10px 15px -10px rgb(0 0 0 / 50%);
  padding-top: 8px;
  padding-bottom: 8px;
  margin-left: 100%;
  margin-top: -34px;
  width: 100%;
  background: #fff;
  padding-left: 0px;
  visibility: hidden;
  opacity: 0;
  list-style-type: none;
}

#menu-primary-menu ul ul ul {
  margin-left: 100%;
  top: 0;
}

#menu-primary-menu li:hover>ul {
  left: auto;
  /*display: block;*/
  visibility: visible;
  opacity: 1;
}

/*23-3-2022*/
.clsnewartssec:before {
  left: 20px !important;
  top: 0 !important;
  height: 343px !important;
  background-color: #0a58ca5e !important;
  clip-path: polygon(49% 100%, 0 0, 100% 0) !important;
  border-radius: 0 !important;
}

.inteshippagesec .thoughtcontsec:before {
  height: 100% !important;
}

.testimonial-sec .slick-prev:before,
.slick-next:before {
  background-repeat: no-repeat;
}

.testimonial-sec .testislidecntn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimsg {
  max-width: 40%;
  margin-right: 40px;
  font-weight: 500;
}

.testimonial-sec .testimonialslider {
  max-width: 60%;
  margin: 35px 0;
}

.testimonial-sec .testimonialwrap p {
  max-width: 60%;
}

.testimonial-sec .testimonialwrap .clstitle h2 {
  border-bottom: 6px solid #007b79;
  max-width: 60%;
}

.testimonial-sec .testimsg p {
  max-width: 100%;
}

.testimonial-sec .testiperson img {
  margin: 0 auto;
}

.testimonial-sec .designation {
  text-align: center;
}

.intershiptoplist:before {
  top: 0 !important;
  content: unset;
}

.clsinterntestmain .clsinterntestsec {
  background: #fff !important;
}

.clsinterntestmain {
  margin-bottom: 30px;
}

/*26-04-2022*/
.gc-searchresultpage {
  padding-top: 70px;
  margin-bottom: 60px;
}

.gc-searchresultpage h1,
.gc-searchresultpage h2,
.gc-searchresultpage h3,
.gc-searchresultpage h4,
.gc-searchresultpage h5,
.gc-searchresultpage h6 {
  margin: 0 0 15px 0;
  color: #000000;
  padding: 0;
  line-height: 1.2;
  text-transform: none;
  font-weight: 700;
}

.gc-searchresultpage p {
  margin-bottom: 20px;
}

.gc-searchresultpage h2 {
  font-size: 24px;
}

.search-result-count {
  margin-bottom: 30px;
}

.gc-searchresultpage article {
  margin: 1rem 0;
  color: inherit;
  border-bottom: 1px solid #ddd;
  pacity: 0.25;
}

.pricing-item h4 {
  font-size: 20px;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px 0px;
}

.planfeature li {
  padding: 0px 17px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
  margin-bottom: 9px;
  display: block;
}

.planfeature li:last-child {
  border-bottom: 0px;
}

.planfeature ul {
  padding-left: 0px;
}

.gc-pricingmaindiv {
  margin-bottom: 60px;
}

.testimonialwrapnew {
  min-height: 400px;
}

.pricing-item {
  border: 1px solid #ddd;
  margin-bottom: 30px;
}

.gc-pricingpagebanner {
  margin-bottom: 206px;
}

.testimonialwrapnew .testiperson {
  margin: 10px;
  border: 1px solid #ddd;
  height: 130px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-id-37 .artconmax,
.page-id-822 .artconmax {
  min-height: 400px;
}

.frm_submit button {
  background-color: #007b79 !important;
  border-radius: 0 !important;
  border: 0px !important;
  padding: 10px 25px !important;
}

.frm_submit button:hover {
  background-color: #420080 !important;
  color: #fff !important;
}

.artconmax ul {
  margin-bottom: 15px;
}

/*29-06-2022*/

a {
  color: #420080;
}

.innerbannerpagetitle h1 {
  font-size: 90px;
  text-shadow: 3px 4px 7px #000;
}

.innerpagecontentsec {
  position: relative;
}

/* .innerpagecontentsec:before, .artseducationsec:before {position: absolute;left: 0;top: 0;width: 100%;height: 1083px;max-height: 1083px;background: url(assets/images/edu-shape-img-1.png) no-repeat top center;background-size: cover;content: "";}*/

.innerpagecontentsec:before,
.artseducationsec:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1083px;
  max-height: 1083px;
  background-size: cover;
  content: "";
}

.artseducationsec:before {
  /* background: url(assets/images/edu-shape-img-1.png) no-repeat top center; */
  /* background: url(assets/images/light_all-page-bg.jpg) repeat-y top center; */
  background: url(assets/images/all-page-bg.jpg) repeat-y top center;

}

.innerpagecontentsec:before {
  /* background: url(assets/images/gel-shape-bg.jpg) no-repeat center; */
  /* background: url(assets/images/light_shape-bg-part.jpg) repeat-y top center;*/
  background: url(assets/images/shape-bg-part.png) repeat-y top center;
  /* height: 96% !important; */
}

.menunavebar .menu>.menu-item>.sub-menu>.menu-item>a {
  font-size: 13px;
  line-height: 19px;
  font-weight: 500;
}

.clsftrlogosec {
  clip-path: polygon(30% 0%,
      40% 0,
      67% 23%,
      83% 100%,
      70% 100%,
      30% 100%,
      0 100%,
      0 0);
}

.actogellery {
  margin-bottom: 15px;
}

.homecommcontent {
  margin-bottom: 50px;
  padding-bottom: 50px;
}

.actogellery {
  padding-top: 30px;
}

.blogimgtitle,
.imgintitle {
  font-size: 23px;
}

.homeblogrightimg a .lermorelink {
  padding: 9px 15px !important;
  font-size: 20px !important;
}

/*.clsnewartssec:before{background-color: #007b795c !important;}*/
.gcdefualtpagecontent a,
a {
  font-weight: 700;
}

.videopagecontainer .videoWrapper iframe,
.videoWrapper {
  width: 100%;
  height: 300px;
}

.videopagecontainer .card {
  margin-bottom: 30px;
}

.videopagecontainer h5.card-title {
  font-size: 18px;
}

/*30-06-2022*/

.testinomlbox:nth-child(even) {
  /*background: #c9c6c6;*/
  background-color: transparent;
  position: relative;
}

.testinomlboxdescript p {
  /* padding-left: 29px; */
}

.testimonialfullcontet i,
.testimonialexperts i {
  font-size: 12px;
}

.testimonialfullcontet {
  position: relative;
}

h2.inenrpagemaintitle {
  font-size: 32px;
}

h2.inenrpagemaintitle.titleMB {
  margin-bottom: 22px;
}

.clsrentalpgcnt li,
.clsrentalpgcnt li strong {
  font-size: 16px;
}

.clsrentalpgcnt h6 {
  font-size: 20px;
  font-weight: 400;
}

a.bluebtn {
  font-size: 18px;
  text-decoration: none;
}

.joinnowbtn {
  padding-top: 0px;
}

.artseducationsec p {
  line-height: 35px;
  font-size: 18px;
}

.artseducationsec {
  padding-top: 40px;
  margin-bottom: 60px;
  overflow: hidden;
}

.artseducationsec:before {
  z-index: -1;
}

.throughbanner h2.inenrpagemaintitle {
  font-size: 65px;
}

.clstitle h2 {
  font-size: 22px;
}

.thoughtcontsec p {
  line-height: 25px;
  font-size: 18px;
}

.thoughmaxwidth {
  padding-bottom: 32px;
}

.lifestoryimg {
  padding-top: 0;
}

.lifestorycont p,
.innerpagecontentsec p {
  line-height: 29px;
  font-size: 16px;
}

.innerbannerpagetitle {
  bottom: 0px;
}

.testinomlbox {
  padding-bottom: 20px;
  padding-top: 20px;
}

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

h2.inenrpagemaintitle {
  border-bottom: 6px solid #007b79;
}

/*-------search-end--------------*/

.searchformbottom .hedsearch a {
  color: #fff;
  display: flex;
  align-items: center;
}

.searchformbottom .hedsearch a img {
  margin-right: 10px;
}

.searchformbottom .hedsearch {
  margin-left: 0px;
}

/*29-07-2022*/
.ftrlogos {
  display: flex;
  margin-top: 15px;
}

.ftrlogos img {
  width: 100%;
}

.ftrtopsrchsec .toplistsealeft h4 {
  padding-right: 40px;
  font-size: 16px;
}

.hedsearch {
  margin-right: 40px;
}

/*10-08-2022*/
.frm_required_field .frm_primary_label,
.frm_style_formidable-style.with_frm_style .frm-show-form .frm_section_heading h3 {
  font-family: "Roboto", sans-serif !important;
}

.frm_pro_form .frm_form_field label,
.frm_primary_label {
  font-family: "Roboto", sans-serif !important;
}

.ftrsubtxt p {
  font-size: 13px;
  line-height: 22px;
}

.ftrsubtxt {
  padding-top: 15px;
}

.ftrtpsubdtl a {
  color: #fdc402;
  font-weight: normal !important;
}

.ftrtpsubdtl a:hover {
  color: #fff;
}

.menunavebar .menu>.menu-item>.sub-menu {
  margin-left: -100px !important;
}

.hedsearch {
  margin-right: 0px;
}

.toplistsealeft {
  width: 492px;
  justify-content: space-between;
}

.clsformap {
  position: relative;
  display: block;
  height: 500px;
  overflow: hidden;
  margin-bottom: 30px;
}

.clsformap iframe {
  width: 100%;
  height: 100%;
  outline: none;
  box-shadow: none;
  border: 1px solid #c2c6ca;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.clsfoobelowtxt {
  padding: 20px 0px;
  position: relative;
  text-align: center;
}

.clsfoobelowtxt a {
  color: #cf0011;
}

.clsfoobelowtxt a:hover {
  color: #000;
  text-decoration: underline;
}

.ftrow {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  margin-bottom: 35px;
  position: relative;
}

.ftnavcol {
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  flex: 1 0 0%;
  /*width: 25%;*/
}

.footerbg .misllsecftr .ftnavcol.clsbtndonate {
  padding-left: 0;
  margin-bottom: 11px;
}

/*.ftnavcol.clsbtndonate {position: absolute; right: 0; top: 0; width: auto !important;}*/
.ftnavcol.clsbtndonate .ft-donatelink {
  margin-bottom: 0px;
}

.clsforshapesec {
  /*width: auto !important;*/
}

.clsforimgshape {
  /*width: 600px; height: 370px;*/
}

.clsforimgshape img {
  width: 100%;
  height: auto;
}

.clsforimgshape:before {
  display: none;
}

.clsforshapesec .clsshapepath {
  /*clip-path: polygon(100% 0, 0 0, 100% 100%);*/
  clip-path: polygon(100% 0, 0 0, 100% 77%) !important;
  position: absolute;
  top: 0px;
  left: inherit;
  right: 0px;
  bottom: inherit;
  background-color: #d3d0c9;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
}

/*19-10-2022*/
/*.gallerbox a .expcalender{margin-top: 10px;}*/
.clsteaminfo {
  min-height: 88px;
}

/*20-10-2022*/
.getusertitle h2 {
  font-size: 28px;
  padding-bottom: 5px;
}

.donatebtn {
  margin-left: 15px;
}

.homecommcontent,
.gettabcont,
.homebloglistcon,
.artformlist label {
  font-size: 18px;
}

.getspetebsec .nav-pills .nav-link,
.footerbg li a {
  font-size: 25px;
  text-decoration: none;
}

.ftrsubtxt p {
  font-size: 14px;
}

.artseducationsec p,
.lifestorycont p,
.innerpagecontentsec p {
  font-size: 17px;
}

.menunavebar .menu>.clsforredline.menu-item>.sub-menu {
  border-top: 3px solid #cf0011;
}

.menunavebar .menu>.clsforpurpleline.menu-item>.sub-menu {
  border-top: 3px solid #420080 !important;
}

.menunavebar .menu>.clsforbluishgreenline.menu-item>.sub-menu {
  border-top: 3px solid #007b79 !important;
}

.menunavebar .menu>.clsforblueline.menu-item>.sub-menu {
  border-top: 3px solid #014eb2 !important;
}

.menunavebar .menu>.clsforyellowline.menu-item>.sub-menu {
  border-top: 3px solid #fdc402 !important;
}

.testinomlboxdescript p {
  /* font-size: 24px; */
  font-size: 17px;
  line-height: 29px;
}

.testimonialotherinfo br {
  display: none;
}

.page-id-17 h2.inenrpagemaintitle,
.page-id-329 h2.inenrpagemaintitle,
.page-id-1283 h2.inenrpagemaintitle,
.page-id-51 h2.inenrpagemaintitle,
.page-id-23 h2.inenrpagemaintitle {
  border-bottom: 6px solid #cf0011 !important;
}

.page-id-35 h2.inenrpagemaintitle,
.page-id-37 h2.inenrpagemaintitle {
  border-bottom: 6px solid #420080 !important;
}

.page-id-1275 h2.inenrpagemaintitle,
.page-id-45 h2.inenrpagemaintitle,
.page-id-47 h2.inenrpagemaintitle {
  border-bottom: 6px solid #007b79 !important;
}

.page-id-61 h2.inenrpagemaintitle,
.page-id-1202 h2.inenrpagemaintitle,
.page-id-1206 h2.inenrpagemaintitle,
.page-id-788 h2.inenrpagemaintitle {
  border-bottom: 6px solid #014eb2 !important;
}

.page-id-1208 h2.inenrpagemaintitle {
  border-bottom: 6px solid #014eb2 !important;
}

.page-id-53 h2.inenrpagemaintitle,
.page-id-57 h2.inenrpagemaintitle,
.page-id-59 h2.inenrpagemaintitle,
.page-id-63 h2.inenrpagemaintitle,
.page-id-65 h2.inenrpagemaintitle {
  border-bottom: 6px solid #fdc402 !important;
}

.page-id-163 .innerbannerpagetitle,
.page-id-2314 .innerbannerpagetitle {
  background-color: #007b79;
}

.clsawardimg {
  height: 160px;
}

.clsawardimg img {
  height: 100%;
  object-fit: contain;
  background: #fff;
  /*padding: 5px 15px;*/
}

.clssignupformbtn {
  text-align: center;
  margin-bottom: 30px;
}

.pressboxwrap h2.blueborder {
  width: max-content;
  font-size: 28px;
  padding-bottom: 5px;
  margin-bottom: 35px;
  border-bottom: 6px solid #014eb2;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}

.eventspgsec h2 {
  width: max-content;
  font-size: 28px;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 6px solid #014eb2;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}

.eventslistssec {
  margin-bottom: 50px;
}

.eventrightcontent a.bluebtn {
  padding: 7px 18px;
  font-size: 15px;
  margin-top: 10px;
}

.gcclscntstyle {
  padding: 5px 33px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 15px;
  background-color: #e8e5e5;
  padding: 14px 30px;
}

.gcclscntstyle {
  font-style: normal;
}

.gcclscntstyle h4,
.gcclscntstyle h2 {
  color: #fff;
  margin-bottom: 0px;
}

.gcclscntstyle h4 {
  margin-bottom: 15px;
}

.gcclscntstyle h2 {
  font-weight: 700;
  font-size: 68px;
  margin-right: 30px;
  margin-top: 0;
}

.clssubtitlesec {
  display: flex;
  align-items: center;
}

a.clsdonatebtn {
  background-color: #feb82c;
  color: #420c7b;
  font-weight: 400;
  padding: 3px 30px;
  text-decoration: none;
}

a.clsdonatebtn:hover {
  background-color: #fff;
  text-decoration: none;
}

.eventspgsec select.clsnewdeltyp {
  padding: 2px 4px;
  width: 220px;
  border: 1px solid #ddd;
}

.eventspgsec input {
  background-color: #007b79;
  padding: 7px 18px;
  font-size: 15px;
  margin-top: 10px;
}

.eventspgsec form {
  margin-bottom: 30px;
}

.ftrmainrightsec .misllsecftr .gclastsec .rightsec {
  padding-right: 32px;
}

.bg-shap-1,
.bg-shap-2,
.bg-shap-3,
.bg-shap-4,
.bg-shap-5 {
  position: relative;
}

.bg-shap-1::before {
  position: absolute;
  left: 0;
  top: 13%;
  width: 100%;
  height: 100%;
  max-height: 1158px;
  /*background: url(assets/images/home-blog-shap-bg.jpg) no-repeat center;*/
  background: url(assets/images/get-spacial-bg.jpg) no-repeat center;
  background-size: cover;
  content: "";
}

.bg-shap-2::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1083px;
  max-height: 1083px;
  /*background: url(assets/images/edu-shape-img-1.png) no-repeat top center;*/
  background: url(assets/images/home-blog-shap-bg.jpg) no-repeat center;
  background-size: cover;
  content: "";
}

.bg-shap-3::before {
  position: absolute;
  left: 0;
  top: 13%;
  width: 100%;
  height: 100%;
  max-height: 806px;
  /*background: url(assets/images/gel-shape-bg.jpg) no-repeat center;*/
  background: url(assets/images/get-spacial-bg.jpg) no-repeat center;
  background-size: cover;
  content: "";
}

.bg-shap-4::before {
  position: absolute;
  left: 0;
  top: 10%;
  width: 100%;
  height: 100%;
  max-height: 1277px;
  background: url(assets/images/edu-shape-img-2.jpg) no-repeat center;
  background-size: cover;
  content: "";
}

.clsteaming img {
  object-position: top;
}

.bg-shap-5::before {
  position: absolute;
  left: 0;
  top: 13%;
  width: 100%;
  height: 100%;
  max-height: 806px;
  background: url(assets/images/gel-shape-bg.jpg) no-repeat center;
  background-size: auto;
  background-size: cover;
  content: "";
}

/*28-09-2023*/
.hedlogo img {
  width: auto;
  padding-top: 0px;
}

.menunavebar .menu>.menu-item>a {
  padding: 0px 0px;
}

.hedtiomenu li {
  font-size: 18px;
}

.donatebtn a {
  border: 0px;
  border-radius: 0px;
  text-decoration: none;
}

/*.header{height: 110px;}*/
.hedtabredbg {
  padding: 18px 0px;
}

.navbar {
  padding-top: 0px;
}

.headerdflex {
  position: relative;
  top: -18px;
}

.navbar ul {
  padding-left: 0px;
}

.menunavebar .menu>.menu-item>a {
  font-size: 18px;
  font-weight: 700;
}

.innerbannerpagetitle {
  position: relative;
  left: inherit;
  background-color: #000;
  margin-top: 10px;
}

.innerbannerpagetitle h1 {
  text-shadow: none;
  font-size: 38px;
  font-family: Poppins;
  font-weight: 700;
  padding-top: 15px;
  padding-bottom: 15px;
}

.innerpagebanner {
  /*height: 420px;*/
  overflow: hidden;
  /* height: 320px; */
}

.second-banner .row {
  height: 100%;
}

.banner-img img {
  height: 100%;
  object-fit: cover;
}

.banner-img {
  height: 100%;
}

.second-banner .col-md-8 {
  align-items: center;
  display: flex;
}

.second-banner .col-md-4,
.second-banner .col-md-8 {
  height: 100%;
}

/*06-10-2023*/
.clsdatetimeimg-flex {
  display: flex;
  margin-bottom: 10px;
}

.clsavtarimg {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 100%;
  margin-right: 20px;
}

.clsavtarimg img {
  width: 100%;
  height: 100%;
  /*background-size: cover;
  border-radius: 100%;*/
  object-fit: cover;
}

.clsdateandtime {
  flex: 1;
}

.clsteamtab .tab-content .col-lg-4 {
  width: 25%;
}

/*09-10-2023*/
.page-id-564 h3,
.page-id-569 h3,
.page-id-572 h3,
.page-id-575 h3,
.page-id-582 h3 {
  color: #420080;
}

.footerbg .misllsecftr h4 {
  color: #fff !important;
}

.header {
  height: 139px;
}

input.clssubmitbtn {
  text-decoration: underline;
  display: inline-block;
  font-weight: 300;
  font-size: 18px;
  color: #fff;
  background-color: #007b79;
  padding: 10px 25px;
  line-height: normal;
}

input:hover.clssubmitbtn {
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

.propertie-box {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #fff;
  margin-bottom: 30px;
}

.propertie-box .progelimg {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  height: 300px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out 0s;
}

.propertie-box .progelimg a.mainproimg {
  display: flex;
  position: relative;
  transition: all 0.3s ease-in-out 0s;
  height: 100%;
}

.progelimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-fit: cover;
  object-position: top;
}

.propertie-box .progelimg a.mainproimg:before {
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out 0s;
  content: "";
}

.propertie-box:hover .progelimg a.mainproimg:before {
  width: 100%;
  height: 100%;
}

.procatname {
  padding: 15px;
}

.procat-list ul,
.procat-list li {
  padding-left: 0px !important;
}

.procat-list li {
  font-weight: 600;
  display: inline-block;
  font-size: 16px;
  margin-right: 15px;
}

.procat-list img {
  margin-right: 8px;
  filter: invert(16%) sepia(99%) saturate(7404%) hue-rotate(4deg) brightness(95%) contrast(118%);
}

.procatname h6 {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 20px;
}

.procatnamedtl {
  margin-bottom: 20px;
  line-height: 23px;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blogdetail .props-innerdtl {
  padding: 20px;
  background-color: #cd0a25;
  color: #fff;
  font-weight: 400;
}

.blogdetail .blogdtlimg,
.blogdetail .props-innerdtl {
  margin-bottom: 30px;
}

.blogdetail .procat-list img {
  filter: invert(1);
}

.blogdetail .procat-list ul {
  display: flex;
  justify-content: space-between;
}

.blogdtlinner h5 {
  font-weight: 500;
}

.blogdtlinner ul {
  padding-left: 20px;
}

.procat-list li a {
  color: #000;
  text-decoration: none;
}

.procat-list li a:hover {
  color: #cf0011;
}

.page-numbers {
  text-decoration: none;
}

.clspagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-numbers.current,
.page-numbers,
.page-numbers.next,
.prev.page-numbers {
  border: 1px solid #000;
  margin: 0px 3px;
}

.blogdetail .blogdtlimg {
  text-align: center;
}

.blogdetail .procat-list li a {
  color: #fff;
}

.blogdetail .procat-list li a:hover {
  text-decoration: underline;
}

h4.top-title,
.clsbtndonate {
  margin-bottom: 20px;
}

.hedtiomenu li a,
.donatebtn a {
  text-decoration: none;
}

.donatebtn a:hover {
  background-color: #000;
  text-decoration: none;
}

.gcdefualtpagecontent figure,
.clsforbnrsec figure,
.clseassypagesec figure {
  background-color: transparent;
  padding: 15px 20px;
  border-radius: 0px;
  border-left: 5px solid #cd0a25;
}

.gcdefualtpagecontent blockquote,
.clsforbnrsec blockquote,
.clseassypagesec blockquote {
  font-size: 25px;
  line-height: 1.5;
  margin-bottom: 0px;
  font-weight: 400;
  font-style: italic;
}

.gcdefualtpagecontent blockquote p,
.clsforbnrsec blockquote p,
.clseassypagesec blockquote p {
  font-size: 25px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 10px;
  font-style: italic;
}

.gcdefualtpagecontent blockquote p:last-child,
.clsforbnrsec blockquote p:last-child,
.clseassypagesec blockquote p:last-child {
  margin-bottom: 0px;
}

.clsforbnrsec figure {
  border-left: 5px solid #cf0011;
}

.clsfoundersec {
  max-width: 100%;
}

/*=============== responsive =================*/
@media only screen and (min-width: 1600px) and (max-width: 1699px) {}

@media only screen and (min-width: 1500px) and (max-width: 1599px) {
  .toplistsealeft {
    width: 425px;
  }
}

@media only screen and (max-width: 1500px) {
  body .getuserimg img {
    width: 428px;
  }

  .communi-story-cls .other-info {
    margin-top: 0 !important;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1499px) {
  .toplistsealeft {
    width: 400px;
  }
}

@media only screen and (max-width: 1399px) {
  .clssingleeventtitle h1 {
    font-size: 50px !important;
  }

  .clsmissioncontent p {
    line-height: 27px;
  }

  .testimonial-sec .testimonialslider {
    max-width: 70%;
  }

  .toplistsealeft {
    width: 382px;
  }
}

@media only screen and (max-width: 1299px) {
  body .getuserimg img {
    width: 368px;
    height: 241px !important;
  }

  .testimonial-sec .testimonialwrap .clstitle h2 {
    max-width: 100%;
  }

  .testimonial-sec .testimonialslider {
    max-width: 100%;
  }

  .clsteamtab .tab-content .col-lg-4 {
    width: 33.3333%;
  }
}

@media only screen and (max-width: 1199px) {
  .getuserimg {
    height: 200px !important;
  }

  .clsmissioncontent p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 6px;
  }

  .clsnewartssec:before {
    height: 247px !important;
  }

  .artseducationsec.clsforbnrsec.gc-pricingpagebanner {
    margin-bottom: 100px;
  }

  .testimonial-sec {
    min-height: 260px;
  }

  .testimonialwrapnew .testiperson {
    height: auto;
  }

  .testimonialwrapnew {
    min-height: inherit;
  }

  .toplistsealeft {
    width: inherit;
  }

  .clsformap {
    height: 400px;
  }

  .ftnavcol {
    width: 22%;
  }
}

@media only screen and (max-width: 991px) {
  .homebloglist.secbloglist.secquoteshome {
    padding: 50px 20px 50px 25px !important;
  }

  .get-inspired-sec .getflex {
    margin-left: 0 !important;
    margin-bottom: 30px !important;
  }

  div#v-pills-tab {
    margin-bottom: 156px;
  }

  .get-inspired-sec .getuserimg {
    margin-bottom: 300px;
  }

  .clssingleeventtitle h1 {
    font-size: 35px !important;
  }

  .thumb-2 {
    display: none;
  }

  .thumb {
    margin-bottom: 20px;
  }

  .clstitle h2 {
    font-size: 30px;
  }

  .clsintxt {
    padding: 15px;
  }

  .testimonial-sec .testimonialwrap p {
    max-width: 100%;
  }

  .artseducationsec.clsforbnrsec.gc-pricingpagebanner {
    margin-bottom: 90px;
  }

  .testimonialwrapnew {
    min-height: inherit;
  }

  .menunavebar .menu>.menu-item>.sub-menu {
    margin-left: 0px !important;
  }

  .ftrsubtxt {
    padding-top: 5px;
  }

  .clsformap {
    height: 300px;
  }

  .clsteamtab .tab-content .col-lg-4 {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  body .art-educ-cls{padding-left: 0 !important;}
 body .clsscotcannonpage.clstheatresociety {
    padding-top: 0;
  }

  body .first-content-cls {
    padding-top: 0;
  }

  body .bg-shap-6 .homebloglistcon {
    padding-top: 0;
  }

  .clsbloglistsec .clsblogtitleselect select {
    width: 100% !important;
  }

  .get-inspired-sec .getuserimg,
  body .getuserimg img {
    height: 300px !important;
    width: 100%;
  }

  div#v-pills-tab {
    margin-bottom: 0px;
  }

  .get-inspired-sec .getuserimg {
    margin-bottom: 0px;
  }

  .communi-story-cls .right-img-box-cls img,
  .communi-story-cls .left-img-box-cls img {
    height: auto !important;
  }

  .communi-story-cls .middle-img-box-cls img {
    width: 100%;
  }

  .clseventlistbox {
    flex-direction: column;
  }

  .clseventlistbox .event-calendar-box {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .clseventlistbox .nonday {
    flex-direction: row;
  }

  .clseventlistbox .event-calendar-box .day {
    margin-right: 5px;
  }

  .clseventlistbox .event-calendar-box .month {
    margin-right: 5px;
  }

  .clseventlistbox .eventleftcalendr {
    padding: 0;
  }

  .clseventlistbox .eventrightcontent {
    padding: 10px;
  }

  .clseventdtsec .eventdtlcontent {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .clseventdtsec .eventdtltime {
    font-size: 16px;
    letter-spacing: 0px;
  }

  .clseventdtsec .event-calendar-box {
    padding: 0;
  }

  .clssingleeventtitle h1 {
    font-size: 25px !important;
  }

  .clseventdtsec .eventdtlcontent img {
    margin-bottom: 0;
  }

  .tsum-tabs button {
    font-size: 16px;
    padding: 15px 22px;
    width: auto;
  }

  .clswhowearemain .title h2 {
    font-size: 28px;
  }

  .clserrorcontent p {
    font-size: 25px;
    line-height: 34px;
  }

  .clserrorcontent {
    padding-top: 0;
  }

  .clsplayreadingform {
    padding: 15px;
  }

  .clsnewartssec:before {
    height: 160px !important;
  }

  .testimonial-sec .testislidecntn {
    flex-direction: column;
  }

  .testimsg {
    max-width: 100%;
    margin-right: 0;
    font-weight: 500;
    margin-bottom: 20px;
  }

  .testimonialwrapnew .slick-prev:before,
  .testimonialwrapnew .slick-next:before {
    display: none;
  }

  .clsfoobelowtxt {
    font-size: 14px;
  }

  .clsfoobelowtxt p {
    line-height: 24px;
  }

  .ftnavcol {
    width: 20%;
  }

  .gcclscntstyle h2 {
    font-size: 48px;
  }

  .gcclscntstyle h4 {
    font-size: 20px;
    margin-top: 10px;
  }

  .clsteamtab .tab-content .col-lg-4 {
    width: 50%;
  }
}

@media only screen and (max-width: 575px) {
  .page-id-2522 .column{width: 100%;}
  /* body .clsforbnrsec{padding-top: 40px;} */
  .ftnavcol {
    width: 50%;
  }

  .clsforshapesec .clsshapepath {
    clip-path: inherit !important;
  }
}

@media only screen and (max-width: 479px) {
  .clssubtitlesec {
    display: block;
  }

  a.clsdonatebtn {
    padding: 5px 30px;
  }

  .gcclscntstyle h2 {
    font-size: 42px;
    margin-right: 0px;
  }

  .clsteamtab .tab-content .col-lg-4 {
    width: 100%;
  }
}

@media only screen and (max-width: 375px) {
  .ftnavcol {
    width: 35%;
  }
}

.page-id-1256 h2.inenrpagemaintitle,
.page-id-20 h2.inenrpagemaintitle,
.page-id-880 h2.inenrpagemaintitle {
  border-bottom-color: #cf0011;
}

.page-id-1074 .innerbannerpagetitle,
.page-id-15 .innerbannerpagetitle,
.page-id-1004 .innerbannerpagetitle,
.page-id-31 .innerbannerpagetitle,
.page-id-29 .innerbannerpagetitle,
.page-id-1506 .innerbannerpagetitle,
.page-id-632 .innerbannerpagetitle,
.page-id-630 .innerbannerpagetitle,
.page-id-628 .innerbannerpagetitle,
.page-id-25 .innerbannerpagetitle,
.page-id-1710 .innerbannerpagetitle,
.page-id-582 .innerbannerpagetitle,
.page-id-575 .innerbannerpagetitle,
.page-id-572 .innerbannerpagetitle,
.page-id-569 .innerbannerpagetitle,
.page-id-564 .innerbannerpagetitle,
.page-id-27 .innerbannerpagetitle,
.page-id-2206 .innerbannerpagetitle,
.page-id-23 .innerbannerpagetitle {
  background-color: #cf0011;
}

.page-id-53 .innerbannerpagetitle {
  background-color: #fdc402;
}

.page-id-59 h1.innerbannerpagetitle {
  background-color: #fdc402;
}

.page-id-65 .innerbannerpagetitle {
  background-color: #fdc402;
}

.post-id-1734 .innerbannerpagetitle {
  background-color: #cf0011;
}

.post-id-1736 .innerbannerpagetitle {
  background-color: #cf0011;
}

.page-id-873 .innerbannerpagetitle {
  background-color: #cf0011;
}

.page-id-2208 .innerbannerpagetitle {
  background-color: #cf0011;
}

.page-id-2522 .innerbannerpagetitle {
  background-color: #cf0011;
}

.page-id-33 .innerbannerpagetitle,
.page-id-39 .innerbannerpagetitle {
  background-color: #420080;
}

/* .page-id-1208 h2.inenrpagemaintitle { border-bottom-color: #007b79 !important; } */

.page-id-985 .innerbannerpagetitle,
.page-id-163 .innerbannerpagetitle,
.page-id-2314 .innerbannerpagetitle,
.page-id-2338 .innerbannerpagetitle,
.page-id-2329 .innerbannerpagetitle,
.page-id-2345 .innerbannerpagetitle,
.page-id-2299 .innerbannerpagetitle,
.page-id-2303 .innerbannerpagetitle,
.page-id-45 .innerbannerpagetitle {
  background-color: #007b79;
}

.page-id-820 h2.inenrpagemaintitle {
  border-bottom-color: #cf0011;
}

.page-id-51 .innerbannerpagetitle,
.page-id-329 .innerbannerpagetitle {
  background-color: #cf0011;
}

.page-id-1153 .innerbannerpagetitle,
.page-id-1202 .innerbannerpagetitle,
.page-id-1206 .innerbannerpagetitle,
.page-id-788 .innerbannerpagetitle,
.page-id-1077 .innerbannerpagetitle,
.page-id-887 .innerbannerpagetitle {
  background-color: #014eb2;
}

.page-id-55 .innerbannerpagetitle {
  background-color: #fdc402;
}

/* 30-10-2023 */

.hedlogo img {
  width: 260px;
  height: 103px;
  object-fit: contain;
  transition: all 0.3s ease-in-out 0s;
}

.artfullcontent {
  max-width: 100% !important;
}

.gcdefualtpagecontent figure {
  width: 50%;
  float: left;
}

.gcdefualtpagecontent figure:nth-of-type(odd) {
  float: right;
}

.gcdefualtpagecontent figure:first-child {
  float: none;
  width: 100%;
}

.gcdefualtpagecontent .content::after {
  content: "";
  clear: both;
  display: table;
}

.page-id-17 h2.blueborder {
  border-bottom: 6px solid #cf0011 !important;
}

.page-id-29 .clsrentalpgcnt h2.inenrpagemaintitle {
  border-bottom: 6px solid #cf0011 !important;
}

.page-id-31 h2.blueborder {
  border-bottom: 6px solid #cf0011 !important;
}

.page-id-1275 h2.blueborder {
  border-bottom: 6px solid #007b79 !important;
}

.page-id-47 .testinomlbox h6:before {
  background: #007b79 !important;
}

.page-id-1283 h2.blueborder {
  border-bottom: 6px solid #cf0011 !important;
}

.page-id-53 h2.blueborder {
  border-bottom: 6px solid #fdc402 !important;
}

.statelogosmain {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px -30px 20px -30px;
}

.clscmnstate {
  padding: 0px 30px;
}

.clscmnstate img {
  max-height: 55px;
}

.clsrentalpgcnt h2.inenrpagemaintitle {
  font-size: 28px;
}

.pl-none {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.gcdefualtpagecontent figure:nth-of-type(2n + 1),
.clseassypagesec figure:nth-of-type(2n + 1) {
  margin-left: 30px;
}

.gcdefualtpagecontent figure:first-child,
.clseassypagesec figure:first-child {
  margin-left: 0px;
}

.page-template-our_founder_template .artconmax h3 {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}

.page-template-our_founder_template .artconmax h3 b,
.page-template-our_founder_template .artconmax h3 strong {
  font-weight: normal;
}

.testinomlbox {
  position: relative;
  margin-bottom: 40px;
}

.testinomlbox::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /*max-height: 1083px;*/
  background-size: cover;
  content: "";
  background: url(assets/images/gel-shape-bg.jpg) no-repeat center;
  display: none;
}

/*.testinomlbox:nth-child(2n)::before {background: url(assets/images/edu-shape-img-1.png) no-repeat top center;}*/
.page-template-our_founder_template .innerbannerpagetitle {
  background-color: #cf0011;
}

.page-template-our_founder_template .clsfoundersec h2.newinenrpagemaintitle {
  position: relative;
  padding-bottom: 14px;
}

.clsfoundersec h2.newinenrpagemaintitle:before {
  content: "";
  position: absolute;
  border-bottom: 6px solid #cf0011;
  width: 85%;
  bottom: 0;
}

/*29-01-2024*/
.testinomlbox.clsinterntestsec p {
  max-width: 100% !important;
}

.clsinterntestsec .testimonialotherinfo {
  position: relative;
}

.testinomlbox.clsinterntestsec {
  /* padding-top: 20px; */
  padding-top: 10px;
  margin-bottom: 0;
  padding-bottom: 10px;

}

.clssrchsocialmaindiv {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 95%;
}

.clsteampagebanner {
  height: 630px;
}

.table.table-bordered td {
  width: 25%;
}

.table th,
.table thead th {
  background-color: #cf0011;
  color: #fff;
}

.clseassypagesec figure {
  width: 50%;
  float: left;
}

.clseassypagesec figure:nth-of-type(2n + 1) {
  float: right;
}

button.frm_button_submit.frm_final_submit {
  font-family: "Roboto", sans-serif !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  padding: 10px 25px;
}

button.frm_button_submit.frm_final_submit:focus {
  color: #fff !important;
}

.pressbox a {
  box-shadow: 0px 3px 9px rgb(0 0 0 / 10%);
  width: 100%;
  border: 15px solid #014eb2;
  display: inline-block;
  background-color: #420080;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  position: relative;
  overflow: hidden;
}

.pressbox a:hover {
  border-color: #007b79;
  margin-top: -15px;
}

.strong-text {
  color: #fff;
}

.contact-info-wrap {
  padding-top: 70px;
  margin-bottom: 60px;
}

.map iframe {
  width: 100%;
  height: 500px;
}

.our-loca {
  position: relative;
  text-align: center;
  width: fit-content;
  margin: auto;
  margin-bottom: 70px;
  padding-bottom: 14px;
}

.our-loca:before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
  height: 6px;
  background-color: #cf0011;
  content: "";
}

.contc-left p {
  margin-bottom: 10px;
}

.visit {
  margin-top: 40px;
}

.cont-dtl {
  margin-bottom: 70px;
}

.new-contact-form input,
.new-contact-form select {
  padding: 20px !important;
}

.new-contact-form .frm_conf_label {
  display: none !important;
}

.cont-dtl,
.new-contact-form {
  max-width: 80%;
  margin: auto;
}

.clsquotesecstyle h2 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 600;
}

.clsquotesubtitlesec h4 {
  margin-top: 0px;
  font-size: 22px;
}

.clsquotesecstyle {
  padding: 25px;
}

.clsvlunteerpagesec .homebloglistcon h2 {
  border-bottom: 6px solid #007b79;
  padding-bottom: 15px;
}

.clsvlunteerpagesec .homebloglistcon {
  padding-bottom: 32px;
}

.clsvlunteerpagesec .clssecmaintitle h2 {
  font-size: 28px;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 6px solid #014eb2;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}

.presstitle .strong-text img {
  filter: invert(1);
}

.testinomlboxdescript em {
  font-size: 17px;
  color: #000000;
}

.testinomlbox a {
  color: #cf0011;
}

.page-id-17 .bg-shap-2::before {
  top: 63px;
}

/*08-02-2024*/
/*.clsourstorysecmain .testinomlbox:before{display: none;}
.clsourstorysecmain .testinomlbox .testinomlboxdescript{background-color: #f7f7f7; padding: 50px;}*/
.clsscotcannonpage {
  position: relative;
  padding-top: 40px;
  margin-bottom: 60px;
  overflow: hidden;
}

.clsscotcannonpage:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1083px;
  max-height: 1083px;
  background-size: cover;
  content: "";
  background: url(assets/images/edu-shape-img-1.png) no-repeat top center;
}

.clsscotcannonpage .container {
  position: relative;
}

.scottcannondetail {
  border: 3px solid #014eb2;
  margin-bottom: 30px;
  padding: 30px;
}

h2.newinenrpagemaintitle:before {
  content: "";
  position: absolute;
  border-bottom: 6px solid #cf0011;
  width: 85%;
  bottom: 0;
}

h2.newinenrpagemaintitle {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 60px;
}

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

.header {
  position: relative;
}

.scrolled .header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9;
}

.sticking {
  position: fixed;
  background-color: var(--whitebg);
  width: 100%;
  z-index: 9999;
  border-bottom: none;
  animation: fadeInDown 0.5s ease-in-out;
  -webkit-animation: fadeInDown 0.5s ease-in-out;
  padding: 0px 0;
}

.show-overlay {
  width: 100%;
  height: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.overflowhidden {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  min-height: 100%;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}

.sticking .hedtabredbg {
  clip-path: none;
}

.sticking .hedtabredbg .col-md-7 {
  display: none;
}

.sticking .hedtabredbg {
  padding: 10px 0px;
  transition: all 0.3s ease-in-out 0s;
}

.sticking .hedlogo img {
  height: 48px;
}

.sticking .menunavebar {
  margin-top: -30px;
}

.sticking.header {
  height: 68px;
}

.get-inspired-sec {
  position: relative;
}

.get-inspired-sec .row {
  align-items: flex-start;
}

.get-inspired-sec .getuserimg {
  position: absolute;
  left: 0px;
  top: 0;
}

.get-inspired-sec .col-md-5 {
  margin-top: 240px;
}

.get-inspired-sec .box-comm-class .gettabcont {
  padding: 25px;
  color: #fff;
  margin-bottom: 20px;
}

.get-inspired-sec .gettabcont p {
  line-height: 30px;
}

.get-inspired-sec .getflex {
  margin-bottom: 40px;
}

.get-inspired-sec .box-comm-class.box-color-0 .gettabcont {
  background-color: #420080;
}

.get-inspired-sec .box-comm-class.box-color-1 .gettabcont {
  background-color: #420080;
}

.get-inspired-sec .box-comm-class.box-color-2 .gettabcont {
  background-color: #420080;
}

.get-inspired-sec .box-comm-class.box-color-3 .gettabcont {
  background-color: #420080;
}

/*.box-button-cal-cl {padding-left: 25px;}*/

.testinomlboxdescript {
  padding: 30px;
  /*background-color: #f1f1f1; */
  background: #f2f2f2 !important;
  color: #000000;
  /* border-radius: 30px;
  border: 1px solid #ccc; */
}

.aut-flex {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-end;
  padding-top: 10px;
}

.aut-flex .tauthor-image {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  overflow: hidden;
}

.aut-flex .tauthor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 100%;
}

.test-box-list p {
  padding-left: 0px;
}

.ftrlogos {
  gap: 20px;
  margin-top: 35px;
}

.ftrlogos.align-items-center {
  align-items: flex-end !important;
}

.charitylogo img,
.clsgoldguide img {
  /* max-height: 125px; */
  width: 135px;
  max-width: inherit;
}

.mobile-partner-logo {
  display: none !important;
}

/*22-07-2024*/
.homebloglistcon h2.perpalborder {
  border-color: #cf0011;
}

.homebloglist.secbloglist.secquoteshome {
  background-color: #420080;
  padding: 50px 20px 50px 25%;
  z-index: 11;
  position: relative;
}

.secquoteshome p,
.secquoteshome h2.perpalborder {
  color: #fff;
}

.secquoteshome {
  margin-bottom: 60px;
}

.gettabcont.new-box-color-cl h4 {
  color: #fff;
}

.our-storiesimg-sec {
  max-width: 500px;
  margin: auto;
}

.our-storiesimg-sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.secbloglist .row {
  margin-bottom: 0;
}

.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* header chnges  */

.custom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px;
  padding: 0;
  list-style: none;
}

.custom-grid .grid-item {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.3s ease-in-out;
}

.custom-grid .grid-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-grid .thumbnail img {
  width: 200px;
  height: 149px;
  display: block;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: contain;
  padding: 30px 0;
}

/* builders-of-the-new-world page css */
.cls-builder-new-world h6 {
  background-color: #420080 !important;
}

.cls-builder-new-world figure {
  border-left: 5px solid #257b79 !important;
}

.homeblogsec .PLR100 {
  padding: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.request-title-cls {
  background-color: #c60000;
}

.news-sec-cls .pressbox a {
  border: 7px solid #014eb2;
}

.news-sec-cls .newslettersList {
  padding: 6px 12px;
  border-radius: 8px;
}

.content-cls .blockquote {
  padding-left: 2rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  /* width: 50%; */
  min-height: 272px;
}

.comm-content-cls .blockquote {
  padding-left: 2rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  /* width: 50%; 
  min-height: 272px; */
}

/* .content-cls {
  display: flex !important;
  flex-wrap: wrap !important;
} */
/* .img-box-cls{float: right;max-width: 50%;} */
.img-box-cls {
  margin-bottom: 23px;
}

.content-cls .blockquote::before,
.content-cls .blockquote::after {
  position: absolute;
  color: #777;
}

.content-cls .blockquote p {
  margin: 0;
}

.content-cls .blockquote p em {
  font-weight: 700;
}

.content-cls .blockquote p+p {
  margin-top: 1rem;
}

.content-cls .blockquote--slashes::before {
  content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%23777777'><path d='M9.983 3v7.391C9.983 16.095 6.252 19.961 1 21l-.995-2.151C2.437 17.932 4 15.211 4 13H0V3h9.983zM24 3v7.391c0 5.704-3.748 9.571-9 10.609l-.996-2.151C16.437 17.932 18 15.211 18 13h-3.983V3H24z'/></svg>");
  /* transform: rotate(90deg); */
  left: 0;
}

.content-cls .blockquote--slashes::after {
  content: "";
  left: 5px;
  top: 25px;
  width: 1px;
  height: 100%;
  background-color: currentColor;
}

/**********************/

.content-cls .blockquote--slashes1::before {
  /*content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%23777777'><path d='M9.983 3v7.391C9.983 16.095 6.252 19.961 1 21l-.995-2.151C2.437 17.932 4 15.211 4 13H0V3h9.983zM24 3v7.391c0 5.704-3.748 9.571-9 10.609l-.996-2.151C16.437 17.932 18 15.211 18 13h-3.983V3H24z'/></svg>");*/
  /* transform: rotate(90deg); */
  left: 0;
}

.content-cls .blockquote--slashes1::after {
  content: "";
  left: 5px;
  top: 25px;
  width: 1px;
  height: 100%;
  /* background-color: currentColor; */
}

/**********************/

.content-cls .blockquote--classic::before {
  content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%23777777'><path d='M9.983 3v7.391C9.983 16.095 6.252 19.961 1 21l-.995-2.151C2.437 17.932 4 15.211 4 13H0V3h9.983zM24 3v7.391c0 5.704-3.748 9.571-9 10.609l-.996-2.151C16.437 17.932 18 15.211 18 13h-3.983V3H24z'/></svg>");
  left: 0;
}

.content-cls .blockquote--classic::after {
  content: "";
  left: 5px;
  top: 25px;
  width: 1px;
  height: 100%;
  background-color: currentColor;
}

.content-cls code {
  border: 1px solid #414141;
  background-color: #222121;
  padding: 0.3rem 0.4rem 0.15rem;
  line-height: 100%;
  border-radius: 0.3rem;
}

/* 
.content-cls blockquote + blockquote {
  margin-top: 5rem;
} */

.become-patron-cls {
  background-color: #fdc402;
}

.decorate-bnw-cls {
  display: flex;
  gap: 20px;
}

.decorate-image-cls {
  width: 30%;
}

.decorate-image-cls img {
  width: 100%;
  max-width: 100%;
}

input.clssubmitbtn {
  text-decoration: none !important;
}

/* h2- h6 spacing css */
.cls-builder-new-world h4,
.h2-spacing-cls {
  padding-top: 30px;
}

/* .clsfoundersec h2{padding-top: 30px;} */

.right-image-cls .clsforshapesec {
  position: unset !important;
  padding-top: 0;
  width: 100%;
}

.right-image-cls .clsforimgshape img {
  display: none !important;
}

.right-image-cls {
  padding-top: 0 !important;
}

.right-image-cls .clsforimgshape {
  margin-bottom: 30px;
}

.right-image-cls .clsshapepath {
  width: 100%;
  max-width: 100%;
  /* z-index: 99999; */
  height: 320px;
  /* position: relative; */
  background-repeat: no-repeat;
  object-fit: cover;
  position: unset;
  clip-path: unset !important;
}

/* art education */
.art-educ-cls {
  margin-bottom: 60px;
  padding-left: 20px !important;
}

.bg-shap-5.art-educ-cls::before {
  top: 0;
}

.bg-shap-4.art-educ-cls::before {
  max-height: 750px;
  background: url(assets/images/bg-img.jpg) no-repeat center !important;
}

.bg-shap-3.art-educ-cls::before {
  max-height: 364px;
}

.bg-shap-6 .homebloglistcon {
  padding-top: 60px;
}

.essey-first-col-cls figure {
  float: unset !important;
  margin-left: 0 !important;
  width: 100% !important;
}

.essey-first-col-cls {
  padding-top: 15px;
}

.essay-cont-cls {
  padding-top: 12px;
}

.news-sec-cls h2.inenrpagemaintitle {
  border-bottom: 6px solid #c60001;
  width: max-content;
}

.bottom-volunteer-cls {
  margin-bottom: 60px;
}

.bg-shap-4.bg-shap-8::before {
  max-height: 692px;
}

.quetscls {
  float: left;
  width: 50%;
}

img.image-study-cls {
  width: 50%;
  margin-bottom: 30px;
}

.contentcls {
  width: 100%;
}

.contentcls em a {
  font-size: 17px;
  font-weight: 500;
}

.diging-gold-cls {
  background-color: #c60001;
}

.goldcls {
  width: auto !important;
}

.menunavebar .menu>.menu-item>.sub-menu li a {
  display: flex !important;
}

.inenrpagemaintitle {
  width: fit-content;
}

.artconmax.team-employee-cls {
  max-width: 100%;
}

.team-employee-cls img {
  height: 380px;
  width: 100%;
  object-fit: cover;
  margin-top: 30px;
}

.partnerclsbands {
  margin: 60px 0;
}

.gcdefualtpagecontent .alignnone {
  margin: 20px auto 20px;
}

.power-process p,
.power-process {
  font-size: 18px;
}

.power-process ul li {
  display: flex;
  align-items: baseline;
}

.power-process img.alignright.size-medium.wp-image-2558 {
  margin-top: 40px;
}

.power-process h6 {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 20px;
}

.custom-grid.institu-grid-repet-cls {
  padding-bottom: 77px !important;
  margin: 0;
  margin-top: 37px;
}

img.alignright.worl-cls.size-medium.wp-image-2550 {
  margin-top: 127px;
}

.worls-mentor h3 {
  font-size: 26px;
}

img.alignright.img-cls-new.size-medium.wp-image-2550 {
  margin-top: -207px;
}

.btncls-bands {
  display: flex;
  gap: 22px;
  align-items: center;
}

.team-employee-cls p {
  margin: 0 0 5px 0;
}

.team-employee-cls .artconmax ul {
  margin-bottom: 5px;
}

.bnt-remove-font-wt {
  font-weight: 300 !important;
}

.blank-cont-cls {
  background: url("assets/images/home-banner.jpg") no-repeat;
  background-size: cover;
  height: max-content;
}

.blank-cont-cls .bg-shap-5::before,
.blank-cont-cls .bg-shap-4::before,
.blank-cont-cls .bg-shap-3::before,
.blank-cont-cls .bg-shap-6::before,
.blank-cont-cls .bg-shap-5::before {
  background: none !important;
}

.footer-logo-cls {
  width: 52% !important;
  margin-top: 68px !important;
}

.author-name {
  text-align: left;
  font-weight: 900;
  gap: 15px;
  justify-content: flex-end;
  padding-top: 10px;
}

.other-info {
  text-align: left;
  font-weight: 900;
  justify-content: flex-end;
  margin-top: -27px;
}

.commu-purple-cls {
  background: #420080;
  color: #ffffff;
}

.commu-blue-cls {
  background: #014eb2;
  color: #ffffff;
}

/* new css */

.communi-story-cls .comm-content-cls .blockquote {
  padding: 30px;
}

.communi-story-cls .right-img-box-cls img,
.communi-story-cls .left-img-box-cls img {
  height: 700px;
  object-fit: cover;
}

.communi-story-cls .testimonialotherinfo a {
  color: #cf0011;
}

.communi-story-cls .middle-img-box-cls {
  text-align: center;
}

.communi-story-cls .middle-img-box-cls img {
  width: 50%;
}

.communi-story-cls .commu-purple-cls .other-info p {
  margin-bottom: 0;
}

.commu-purple-cls .perpalborder {
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 6px solid #cf0011;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}

.communi-story-cls .commu-blue-cls {
  background: #f2f2f2 !important;
  color: #000000;
}

/*17-02-2025*/
.menunavebar .menu>.menu-item>a {
  font-family: 'Poppins';
  font-weight: 900;
}

.ourstoryscls.communi-story-cls .other-info {
  margin-top: 0px;
}

.clserror-cls-err {
  font-size: 100px;
  text-align: center;
  font-weight: 700;
  padding-bottom: 50px;
  color: #420080;
}

.clserrorpage {
  padding: 150px 0px;
}

.clserrorcontent p {
  font-size: 50px;
  color: #014eb2;
}

.banner-green-cls {
  background-color: #007b79;
}

.thoughmaxwidth.new-though-cls {
  max-width: 100%;
}

h2.inter-cls-reapet {
  width: 100%;
  font-size: 28px !important;
  padding-bottom: 5px;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif !important;
  font-weight: normal !important;
}

.artconmax h2.inenrpagemaintitle {
  font-size: 28px !important;
  font-family: "Poppins", sans-serif !important;
  text-transform: capitalize;
}

div#v-pills-tab {
  padding-top: 22px;
}


.getuserimg {
  max-width: 100% !important;
}

.getuserimg img {
  height: auto;
}

/* .artconmax h2.inenrpagemaintitle {
  font-weight: 700 !important;
} */



.clsblogpagetitle,
.wp-block-button__link {
  background-color: #cf0011;
}

.cls-builder-new-world h4 {
  padding-top: 30px;
  border-bottom: 6px solid #007b79;
  padding-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  font-family: 'Poppins';
  width: fit-content;
}

.cls-builder-new-world h5 {
  font-size: 30px;
}

.content .wp-block-list li:before {
  top: 5px;
}

.content .wp-block-list li {
  display: flex;
  align-items: flex-start;
}



.artseducationsec.clsforbnrsec.new-cls-bg:before {
  /*  background: url(assets/images/light_all-page-bg.jpg) repeat-y top center; */
  background: url(assets/images/all-page-bg.jpg) repeat-y top center;
  height: 100% !important;
  max-height: 100% !important;

}

.corporatecretivesec {
  position: relative;
}


.through-creativitysec.clsforindividualsec.inteshippagesec.artseducationsec.clsforbnrsec:before,
.clsforbnrsecs:before,
.corporatecretivesec::before {
  background: url(assets/images/get-spacial-bg.jpg) no-repeat center !important;
}


.communi-story-cls .right-img-box-cls img,
.communi-story-cls .left-img-box-cls img {
  width: 100%;

}

.artseducationsec.clsforbnrsec.clsbgshapeinsimg {
  position: relative;
}

.artseducationsec.clsforbnrsec.clsbgshapeinsimg::before {
  background: url(assets/images/greyimg.png) no-repeat center !important;
  height: 100%;
}

.artseducationsec.clsforbnrsec.clsbgshapebuildimg {
  position: relative;
}

.artseducationsec.clsforbnrsec.clsbgshapebuildimg::before {
  background: url(assets/images/grey-one-2.png) no-repeat center !important;
}

.clsbgshapebuildimg {
  margin-bottom: 0;
}

.clscatdesc {
  margin-bottom: 20px;
}

.clscatdesc p {
  margin-bottom: 4px;
}

.page-id-35 .innerbannerpagetitle {
  background-color: #400382 !important;
}

.clsbgimgdiggyshape,
.new-cls-bg,
.clsyouthstorybgshape {
  position: relative;
  margin-bottom: 0 !important;
  padding-bottom: 60px !important;
}

.artseducationsec.clsforbnrsec.clsbgimgdiggyshape::before {

  background: url(assets/images/new-bg-grey-1.png) no-repeat center !important;
  height: 100%;
}


.clsyouthstorybgshape::before {

  background: url(assets/images/grey-bg-shape.png) no-repeat center !important;
  height: 100%;
  max-height: 100%;
}

.clsbloglistsec .clsblogtitleselect select {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 16px;
  /* margin-bottom: 30px; */
}

.clsbloglistsec form {
  display: flex;
  justify-content: end;
}

.clsblogtitleselect form {
  display: flex;
  justify-content: flex-end;
}

.clstheatresociety h2.inenrpagemaintitle {
  border-bottom: 6px solid #c60001;
}



.page-id-51 .artseducationsec.clsforbnrsec.new-cls-bg:before {
  max-height: 97% !important;
}

/*  */


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

.prg-txt-cls {
  text-align: center;
  font-size: 15px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}


.all-shapebg {
  /* background: url(assets/images/light_shape-bg-part.jpg) repeat-y top center; */
  background: url(assets/images/shape-bg-part.jpg) repeat-y top center;
}

.innerpagecontentsec::before,
.artseducationsec::before {
  width: 100%;
  height: 100%;
  max-height: inherit;
}

.first-content-cls::before {
  display: none !important;
}

.first-content-cls {
  margin-bottom: 0px !important;
}

.blog-dtl-mt-sm {
  padding-top: 30px !important;
}


.bg-cls-bnr-sec {
  background: url(assets/images/shape-bg-part.jpg) repeat-y top center;
}

.bg-cls-bnr-sec .clsforbnrsec::before,
.bg-cls-bnr-sec .bg-shap-5::before {
  display: none !important;
}



.main-intership-blog-cls {
  background: url(assets/images/shape-bg-part.jpg) repeat-y top center;
}

.main-intership-blog-cls .artseducationsec::before {
  display: none !important;
}

.our-story-cls-bg.clsyouthstorybgshape::before {
  display: none !important;
}

.errer-not-found-page {
  padding: 130px 0px;
}

.pagenotfound-cont {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.notfound-f {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 25px;
  line-height: normal;
  font-size: 18px;
  font-weight: 500;
}

.checkurl-link {
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.5;
  font-weight: 500;
  font-size: 18px;
}

.checkurl-link a {
  color: #000;
  text-decoration: underline;
  font-weight: 500;
}

.checkurl-link a:hover {
  color: #000;
  text-decoration: none;
}

.err-cont {
  padding-right: 20px;
  border-right: 4px solid #000;
  font-size: 80.9px;
  line-height: 1;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.sorry-cont {
  text-align: left;
  line-height: 1.4;
  font-style: italic;
  font-size: 21.3px;
  font-weight: 900;
}

.backtohome-btn.frm_submit button {
  line-height: normal;
  background-color: #cf0011 !important;
  color: #fff !important;
  padding: 11px 22px !important;
  font-weight: 900 !important;
  font-size: 17px !important;
}

.backtohome-btn.frm_submit button:hover {
  background-color: #007b79 !important;
}


/* .clstitle.h2-spac-cls h2.h2-spacing-cls {max-width: inherit; border-bottom: none; padding-bottom: 0px !important;}
.clstitle.h2-spac-cls h2.h2-spacing-cls span {display: inline-block; border-bottom: 6px solid #007b79; max-width: inherit; padding-bottom: 15px !important;} */

.main-testimonial-cls {
  max-width: 851px;
}

.testimonial-sec .testimonialwrap .main-testimonial-cls .clstitle h2 {
  max-width: inherit;
  padding-bottom: 15px !important;
  margin-bottom: 20px !important;
}

.testimonial-sec .testimonialwrap .main-testimonial-cls p {
  max-width: inherit;
}

.testimonial-sec .main-testimonial-cls .testimonialslider {
  max-width: inherit;
}

.main-block-div-cls .sub-block-div-cls {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ccc;
}

.cls-builder-new-world .main-block-div-cls .sub-block-div-cls h4 {
  padding-top: 0px;
  margin-bottom: 30px;
}

.cls-builder-new-world .main-block-div-cls .sub-block-div-cls figure {
  border-left: none !important;
  padding: 0px !important;
}

.cls-builder-new-world a.bluebtn {
  margin-bottom: 10px;
}

.question-cls {
  text-align: center;
  font-size: 14px;
  line-height: normal;
  color: #717484;
  font-weight: 300;
}

.question-cls a {
  color: #717484;
  font-weight: 300;
}

.question-cls a:hover {
  color: #717484;
  font-weight: 300;
}

.question-cls h6 {
  margin: 0px 0px 5px 0px;
  color: #717484;
  font-weight: 400;
  font-size: 14px;
}

.main-row-cls .row {
  align-items: center;
}

.charity-img-cls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.charity-img-cls img {
  max-width: 120px;
}

.main-other-way-cls h6 {
  font-weight: 600;
  display: flex;
  margin: 0 0px 10px 0px;
}

.image-div-cls {
  margin-bottom: 25px;
}

.image-div-cls:first-child {
  padding-top: 10px;
}

.mail-cont-cls-img {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 10px;
  padding-bottom: 20px;
}

.mail-cont-cls-img img {
  max-height: 44px;
  margin: 0 !important;
}


.volunteer-post-cls {
  margin-bottom: 40px;
}

.voulunteer-btn-cls {
  text-align: center;
}

.volunteer-img-cls {
  height: 380px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.volunteer-img-cls img {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.under-cont-cls details {
  margin-bottom: 10px;
}

.under-cont-cls details summary {
  font-weight: 600;
  margin-bottom: 10px;
  padding-top: 10px;
}

.under-cont-cls details a {
  color: #000 !important;
  text-decoration: underline;
  font-weight: 300;
}

.under-cont-cls details a:hover {
  color: #000;
  text-decoration: none;
}


.clsblogtitleselect {
  display: flex;
  justify-content: center;
  /* Centers horizontally */
  align-items: center;
  /* Centers vertically (if needed) */
  margin-top: 30px;
}



.clsforbnrsec .has-white-color {
  padding: 0 !important
}

.innerpagecontentsec.gcdefualtpagecontent:before {
  height: 90%;
}

.artseducationsec.clsforbnrsec.clsbgimgdiggyshape {
  margin-top: 30px;
}

.artseducationsec.clsforbnrsec.clsbgimgdiggyshape::before {
  background: url(assets/images/edu-shape-img-2.jpg) no-repeat center !important;
}

.procat-list.clsprocatlistsec li a {
  display: table-cell;
}

.procat-list.clsprocatlistsec img {
  margin-right: 11px;
}

.procat-list.clsprocatlistsec li {
  display: flex;
  font-size: 16px;
  margin-right: 15px;
  align-items: center;
}

.clsblogtitleselect {
  margin-bottom: 30px;
}

.nav-links {
  display: flex;
  gap: 15px;
  justify-content: end;
  margin-bottom: 30px;
}

.nav-links a {
  padding: 10px 20px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  width: 100%;
}

.clsreturnblogmain a {
  padding: 10px 20px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  width: 100%;
  border: 1px solid #420080;
}

.clspostnavlinks {
  display: flex;
  justify-content: space-between;
}

.nav-links .nav-previous a {
  border: 1px solid #420080;
}

.nav-links .nav-previous a:hover,
.clsreturnblogmain a:hover {
  background: #40039a;
  color: #fff;
}

.nav-links .nav-next a {
  background: #cf0011;
  color: #fff;
  border: 1px solid transparent;

}

.nav-links .nav-previous,
.nav-links .nav-next {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links .nav-next a:hover {
  background: #40039a;

}


.clsborderbtmtitle h2 {
  font-weight: 500 !important;
  font-size: 28px !important;
  font-family: "Poppins", sans-serif !important;
  border-bottom: 6px solid #007b79 !important;
  padding-bottom: 5px;
  margin-bottom: 20px;
  width: fit-content;
  margin-top: 60px;
  overflow: hidden;

}

.clsborderbtmtitle ul {
  padding-left: 2rem;
}

.clsborderbtmtitle ul li {
  position: relative;
  margin-bottom: 10px;
}

.content.clsborderbtmtitle ul li:before {
  flex-shrink: 0;
  position: absolute;
  left: -23px;
  top: 6px;
}

.clsborderbtmtitle h3 {
  font-size: 38px;
  margin-bottom: -19px;
  font-weight: bold;
}

.innerpagecontentsec:before .clsborderbtmtitle strong {
  font-size: 18px;
}

.clsborderbtmtitle h4 {
  font-weight: 500;
  font-size: 23px;
}

.clsborderbtmtitle h3.frm_form_title {
  font-weight: 500 !important;
  font-size: 28px !important;
  font-family: "Poppins", sans-serif !important;
  border-bottom: 6px solid #007b79 !important;
  padding-bottom: 5px;
  margin-bottom: 20px;
  width: fit-content;
  margin-top: 60px;
  color: #000;
  overflow: hidden;
}



/* 19-04-25 */


.essay-cont-cls:before {
  background: url(assets/images/all-shap-new.png;) repeat-y top center !important;
}

.clsvolunteersubheader h2 {
  font-size: 24px;
  text-transform: capitalize;
}

.clsbnwvideostbl {
  display: flex;
  justify-content: center;
  align-items: center;
}

th.clsrentaltblhead,
tbody.clstblbodyrentalspc th {
  background-color: #400382 !important;
}

.clamainrentalspace th,
.clamainrentalspace td {
  text-align: center;
  vertical-align: middle;
}

.clsstellalegquote {
  padding: 5px 30px 30px;
  margin-bottom: 20px;
}

.clsbannerimgheight {
  height: 530px;
}

/* 28-04-25 */
.home .new-box-color-cl p a {
  color: #fff;
}

.clseventlistbox .eventtitle a {
  text-decoration: none;
}

.innerpagecontentsec.otherwaycls {
  padding-top: 0;
}



/* 02-05-25*/
.otherwaycls h2:not(:first-of-type) {
  font-size: 26px !important;
}

.otherwaycls h2:first-of-type {
  font-size: 28px !important;
}

.content ul li:before {
  width: 6px;
  height: 6px;
}

.otherwaycls li {
  font-size: 17px;

}

.otherwaycls ul li {
  line-height: 20px !important;
}

.otherwaycls ol li {
  line-height: 1.5;
}

.artseducationsec li,
.innerpagecontentsec li,
.content li,
.homeblogsec li {
  font-size: 17px;
}

.getuserimg img {
  height: 250px;
  width: 513px;
}


#v-pills-tab .nav-link {
  font-size: 18px !important;
}



.artfullcontent h2.inenrpagemaintitle {
  margin-left: 211px;
}

.artfullcontent h2.inenrpagemaintitle.h2-spacing-cls {
  margin-left: 0;
}