/* Variables
----------------------- */
:root {
  --color-primary: #e3831c;
  --color-secondary: #A7BD43;
  --color-primary-light: #F2E8DD;
  --bg-body: #F9F6F3;
  --text-color: #4A4A4A;
  --bold-color: #222222;
  --light: #FFFBF6;
  --border: #dbdbd3;
  --shadow: 0 0 8px 1px #cccccc;
  --font-text: "Open Sans", sans-serif;
  --font-heading: "Roboto", sans-serif;
}

/* Default Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* HTML and Body
----------------------- */
html:focus-within {
  scroll-behavior: smooth;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  /* background-color: var(--bg-body); */
  /* color: var(--text-color); */
  font-family: var(--font-text), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Regions
----------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

template,
[hidden] {
  display: none;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

/* Typography
----------------------- */
/* Typography -> Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bold-color);
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  margin: 0 0 10px 0;
}

h1 {
  font-size: 2.1rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.3rem;
}

h5, h6 {
  font-size: 1.2rem;
  text-transform: uppercase;
}

/* Typography -> Paragraph */
p {
    /* margin: 0 0 1.2rem 0; */
    text-align: justify;
     padding-bottom: 10px;
    line-height: 170%;
    color: black;
    font-size: 16px;
}


/* Typography -> Links */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  color: #00c;
  /* color: var(--color-primary); */
  background-color: transparent;
  text-decoration: none;
  transition: color 0.4s ease;
}

a:active,
a:hover,
a:focus {
  background-color: transparent;
  text-decoration: none;
  border: 0;
  outline: 0;
}

a:hover {
color: #6fcf63;
}

a:active,
li a.active {
  color: var(--color-primary);
}

/* Typography -> Abbreviation */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

abbr {
  cursor: help;
}

acronym {
  border-bottom: 1px dotted;
  cursor: help;
}

/* Typography -> Text styling */
b,
strong {
  font-weight: bolder;
  /* color: var(--bold-color); */
}

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

mark,
ins {
  padding: 4px 8px;
  background: var(--bold-color);
  color: #ffffff;
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

small {
  font-size: 80%;
}

big {
  font-size: 125%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

tt,
var {
  font-family: monospace, monospace;
  font-style: italic;
}

/* Typography -> Blockquote */
blockquote,
[dir=rtl] blockquote {
  position: relative;
  background-color: #ffffff;
  margin: 0.5rem 0 1rem 0;
  padding: 1rem;
  box-shadow: var(--shadow);
  isolation: isolate;
}

blockquote:before {
  position: absolute;
  content: "\e008";
  top: 0;
  left: 0;
  font-family: "tara";
  color: var(--color-primary-light);
  font-size: 4rem;
  line-height: 1;
  z-index: -1;
}

blockquote p:last-of-type {
  margin: 0;
}

/* Typography -> HTML code tags */
pre {
  overflow: auto;
}

kbd {
  background-color: #ffffff;
  padding: 4px 10px;
  font-family: monospace, monospace;
  font-size: 1rem;
}

pre,
samp {
  background-color: #ffffff;
  margin: 1rem 0;
  padding: 4px 1rem;
  font-family: monospace, monospace;
  font-size: 1rem;
  box-shadow: var(--shadow);
}

code {
  padding: 2px 10px;
  font-family: monospace, monospace;
  font-size: 1rem;
  background: #ffffff;
}

/* Typography -> Address */
address {
  margin: 0 0 1.75rem;
  font-style: italic;
}

/* Typography -> Description Lists */
dl {
  margin: 0 0 1.75rem;
}

dt {
  font-weight: 400;
  color: var(--bold-color);
}

dd {
  margin: 0 0 1.75rem;
}

/* Typography -> HTML Elements */
hr {
  clear: both;
  width: 100%;
  height: 2px;
  margin: 8px 0;
  background: var(--border);
  border: 0;
  box-sizing: content-box;
}

/* Forms
----------------------- */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.6;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}

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

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 0;
}

button[disabled],
html input[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}


input {
  line-height: normal;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=tel] {
  padding: 10px;
  background: #ffffff;
  max-width: 100%;
  border: 1px solid var(--border);
  transition: border 0.3s linear;
}

textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: auto;
  transition: border 0.3s linear;
  vertical-align: top;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
textarea:focus {
  border: 1px solid var(--color-primary);
  outline: 0;
}

input[type=submit],
input[type=button],
input[type=reset],
button,
.button {
  display: inline-block;
  padding: 8px 1rem;
  transition: all 0.4s ease-in-out;
  /* line-height: 1.6; */
  background: #271c68;
  color: #fff;
  border: #271c68 solid 1px;
  border-radius: 0px;
}

input[type=submit]:hover,
input[type=button]:hover,
input[type=reset]:hover,
button:hover,
.button:hover {
  background-color: transparent;
  border: 1px solid var(--bold-color);
  color: var(--bold-color);
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
  box-sizing: border-box;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}

fieldset {
  margin: 0 0 10px 0;
  padding: 0.35rem 0.5rem 0.5rem 0;
  border: 1px solid var(--border);
}

fieldset > :last-child {
  margin-bottom: 0;
}

legend {
  display: table;
  max-width: 100%;
  padding: 0;
  color: inherit;
  border: 0;
  box-sizing: border-box;
  white-space: normal;
}

optgroup {
  font-weight: bold;
}

select {
  padding: 4px 8px;
}

form label {
  display: table;
  font-weight: bold;
}

label[for] {
  cursor: pointer;
}

.page-content input[type=text],
.page-content input[type=password],
.page-content input[type=search] {
  padding: 8px 5px;
  outline: 0;
}

/* Drupal form elements */
.form-item {
  margin-bottom: 1rem;
}

.form-required:after {
  content: "*";
  display: inline-block;
  padding-left: 4px;
  color: var(--color-primary);
}

.form-item label {
  display: block;
}

label.option {
  display: inline;
  font-weight: normal;
}

/* placeholder */
::-webkit-input-placeholder {
  color: #8a8a8a;
}

:-moz-placeholder {
  color: #8a8a8a;
}

::-moz-placeholder {
  color: #8a8a8a;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #8a8a8a;
}

/* List
----------------------- */
ul,
ol {
  margin: 0;
  padding: 0 0 0.25rem 1rem; /* LTR */
}

[dir=rtl] ul,
[dir=rtl] ol {
  padding: 0 1rem 0.25rem 0;
}

ol ol,
ul ul {
  margin: 0;
  padding: 0 0 0.25rem 1rem; /* LTR */
}

[dir=rtl] ol ol,
[dir=rtl] ul ul {
  padding: 0 1rem 0.25rem 0;
}

ul {
  list-style: disc;
}

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

[dir=rtl] ul,
[dir=rtl] ol {
  padding: 0 1em 0.25em 0;
}

.node-content li {
      padding: 6px 0;
      text-align: justify;
      /*line-height: 150%;*/
      color: black;
      font-size: 16px;
      /*line-height: 33px;*/
}

/* Table
----------------------- */
table {
  width: 100%;
  margin-bottom: 1.2rem;
  border-spacing: 0;
  border-collapse: collapse;
}

th,
tr,
td {
  vertical-align: middle;
}

th {
  font-family: var(--font-heading);
  background: #333;
  color: white;
  font-weight: bold;
  white-space: nowrap;
}

th a {
  color: #ffffff;
}

td {
  padding: 5px 10px;
  border: 2px solid var(--border);
}

/* Media
----------------------- */
img,
picture,
svg {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
  border: 0;
}

figcaption {
  padding: 4px;
  font-size: 0.8rem;
  background: #ffffff;
  border: 1px solid var(--border);
  text-align: center;
}

.align-left,
img.align-left,
figure.align-left {
  float: left;
  margin: 20px 20px 20px 0;
}

.align-right,
img.align-right,
figure.align-right {
  float: right;
  margin: 20px 0 20px 20px;
}

.align-center,
img.align-center,
figure.align-center {
  display: block;
  clear: both;
  margin: 20px auto;
}

figure.align-center {
  display: table;
}

figure.align-center img {
  display: block;
  clear: both;
  margin: 0 auto;
}

/* Drupal image filed */
/* .image-field {
  margin: 0 0 1rem 0;
} */

.feed-icon {
  display: block;
  color: #1e6609;
  font-weight: bold;
}
.node-links-container ul li a {
    color: #07810c;
}

summary {
  background-color: #ffffff;
  color: var(--text-color);
  padding: 0.5rem;
  cursor: pointer;
}

/* Misc
----------------------- */
::-moz-selection {
  background: var(--color-primary);
  color: #ffffff;
  text-shadow: none;
}
::selection {
  background: var(--color-primary);
  color: #ffffff;
  text-shadow: none;
}

::-moz-selection {
  background: var(--color-primary);
  color: #ffffff;
  text-shadow: none;
}

/* container and page layout
-------------------------------------------- */
.container {
  position: relative;
  margin: 0 auto;
  display: block;
  max-width: 1500px;
}

/* content warpper including main, sidebar */
.main-wrapper {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 1rem 0;
  z-index: 2;
}

.main-container {
  position: relative;
  display: grid;
  gap: 1rem;
  width: 100%;
  margin: 0;
}

/* Main */
.no-sidebar .main-container {
  grid-template-columns: 100%;
}

.sidebar-left .main-container {
  grid-template-columns: 25% 75%;
}

.sidebar-right .main-container {
  grid-template-columns: 75% 25%;
}

.two-sidebar .main-container {
  grid-template-columns: 25% 50% 25%;
}

#sidebar-left {
  order: 1;
}

#front-main {
  order: 2;
}

#main {
  position: relative;
  background: #ffffff;;
  width: 100%;
  margin: 0;
  padding: 0;
  order: 2;
  z-index: 2;
}

#sidebar-right {
  order: 3;
}

@font-face {
  font-display: auto;
  font-family: "tara";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/tara.woff2") format("woff2");
}
[class=icon], [class^=icon-], [class*=" icon-"] {
  display: inline-block;
  font-family: "tara" !important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.icon-minus:before {
  content: "\e000";
}

.icon-plus:before {
  content: "\e001";
}

.icon-close:before {
  content: "\e002";
}

.icon-comment-add:before {
  content: "\e003";
}

.icon-check:before {
  content: "\e004";
}

.icon-alert:before {
  content: "\e005";
}

.icon-alert-circle:before {
  content: "\e006";
}

.icon-clock:before {
  content: "\e007";
}

.icon-quote:before {
  content: "\e008";
}

.icon-arrow-left:before {
  content: "\e009";
}

.icon-arrow-right:before {
  content: "\e00a";
}

.icon-angle-right:before {
  content: "\e00b";
}

.icon-angle-left:before {
  content: "\e00c";
}

.icon-comment:before {
  content: "\e00d";
}

.icon-info:before {
  content: "\e00e";
}

.icon-bell:before {
  content: "\e00f";
}

.icon-horn:before {
  content: "\e010";
}

.icon-arrow-up:before {
  content: "\e011";
}

.icon-phone:before {
  content: "\e012";
}

.icon-map:before {
  content: "\e013";
}

.icon-mail:before {
  content: "\e014";
}

.icon-share:before {
  content: "\e015";
}

.icon-telegram:before {
  content: "\e016";
}

.icon-hashtag:before {
  content: "\e017";
}

.icon-vimeo:before {
  content: "\e018";
}

.icon-whatsapp:before {
  content: "\e019";
}

.icon-vk:before {
  content: "\e01a";
}

.icon-instagram:before {
  content: "\e01b";
}

.icon-youtube:before {
  content: "\e01c";
}

.icon-file:before {
  content: "\e01d";
}

.icon-comments:before {
  content: "\e01e";
}

.icon-linkedin:before {
  content: "\e01f";
}

.icon-github:before {
  content: "\e020";
}

.icon-facebook:before {
  content: "\e021";
}

.icon-twitter:before {
  content: "\e022";
}

.icon-calendar:before {
  content: "\e023";
}

.icon-user:before {
  content: "\e024";
}

.icon-search:before {
  content: "\e025";
}

.icon-bookmark:before {
  content: "\e026";
}

.local-action {
  list-style: none;
}

.button-action {
  background-color: var(--color-secondary);
  color: #ffffff;
  padding: 6px 12px;
}

.button-action:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* Vertical tabs */
.vertical-tabs .vertical-tabs__panes {
  padding: 1rem;
}

/* Header
--------------------------------------*/
/* Header container */
#header,
.header-top,
.header {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  /* z-index: 1; */
  background: #dddddd52;
}

/* Header top */
.header-top {
  background-color: var(--color-primary-light);

}

.header-top-container {
  position: relative;
  display: flex;
  padding: 5px 0 0 0;
  justify-content: space-between;
  align-items: center;
}

/* header top left block region */
.header-top-block p:last-of-type {
  margin: 0;
}

.header-top-left a {
  color: var(--bold-color);
}

.header-top ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.header-top #header-nav {
  gap: 6px;
}

.header-top .contextual-links {
  display: none;
}

/* header top left block region */
.header-top-left i {
  background: var(--light);
  color: var(--color-primary);
  width: 2rem;
  height: 2rem;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}

/* Header and footer social icons */

sup {
  top: -0.3em;
  font-weight: normal;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

.ico-site-search .search-drop {
  visibility: visible;
  position: absolute;
  right: 0;
  top: 36px;
  z-index: 1;
}
.notdisplay {
  text-indent: -5000px;
  height: 0px;
  display: block;
}
.search-drop input[type='text'] {
  border: 1px solid #eeeeee;
  height: 36px;
  padding: 0px 40px 0px 8px;
  width: 200px;
}
.bttn-search {
  background: #ffffff !important;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {

  overflow: visible;
}
.cmf_lan {
  display: block !important;
}
.cmf_lan a {
  width: auto !important;
  background-image: none !important;
  padding: 6px 5px;
  /* background-color: #fbfbfb !important; */
}

input#b1 {
  background: #1c1eeb;
  border-radius: 2px;
  font-size: 12px;
  padding: 2px 10px 3px 10px;
  color: white;
  font-weight: 600;
}
b.readmore {
    color: #ffffff;
    float: inline-end;
    position: relative;
    top: -350px;
    padding: 5px 15px 5px 15px;
    font-size: 16px;
    background: #058830;
    margin-right: 25px;
    border-radius: 5px;
}
b.readmore:hover {
     color: #000000;
    background-color: #ffffff;
}
.cmf_lan ul li a {
  height: auto;
}
.cmf_lan ul li {
    border: none !important;
}
.cmf_lan ul li a {
      width: auto!important;
      padding: 0px 5px;
      height: 25px !important;
}
/*for search in who'who */
form#views-exposed-form-who-s-who-page-1 {
  display: flex;
  margin-right: auto;
}
.js-form-item-field-email-feedback-value {
  padding-left: 50px;
}
.field.field--name-body.field--type-text-with-summary.field--label-hidden.field-item tr td a {
    color: #1f4f9d;
}

input#edit-submit-who-s-who {
  margin: 30px 0 0 0px;
}
.field--type-text-with-summary.field--label-hidden.field-item caption {
    color: #271c68;
    font-size: 100%;
    padding-bottom: 6px;
    font-weight: bold;
    text-align: center;
}
.field--type-text-with-summary.field--label-hidden.field-item h3 {
    color: #271c68;
    font-weight: 600;
    font-size: 130%;
    margin-bottom: 7px;
    margin-top: 10px;
}

.breadcrumb ol li a:hover {
    color: #04b940;
}

/* header for branding and main menu */
.header {
  background-color: #271c68;
}

.header-container {
  display: flex;
  /* justify-content: space-between;
  align-items: center;
  gap: 1rem; */
  /* padding: 5px 0; */
}

/* site branding */
.site-branding {
  display: flex;
  align-items: center;
}

.site-branding img {
  width: auto;
  max-height: 45px;
  padding: 10px 25px 10px 25px;
  background: #034F1C;
}

.site-name-slogan {
  display: flex;
  flex-direction: column;
}

.site-name {
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--bold-color);
  text-transform: uppercase;
}

.site-name a,
.site-name a:hover {
  color: var(--bold-color);
}

.site-slogan {
  font-size: 0.9rem;
  color: var(--bold-color);
  line-height: 1;
}

/* header right */
.header-right {
  position: relative;
  display: flex;
  /* align-items: center; */
}

/* main menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 30px;
  overflow: hidden;
  cursor: pointer;
  margin-right: 6px;
}

.mobile-menu span {
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  transform-origin: left;
  transition: all 0.6s ease;
}

.mobile-menu span:nth-child(2) {
  background-color: var(--bold-color);
}

.menu-icon-active span:first-child {
  transform: rotate(45deg);
}

.menu-icon-active span:last-child {
  transform: rotate(-45deg);
}

.menu-icon-active span:nth-child(2) {
  display: none;
}

.close-mobile-menu {
  position: absolute;
  top: 2px;
  right: 2px;
  display: grid;
  place-content: center;
  color: #ffffff;
  font-size: 1rem;
  width: 34px;
  height: 34px;
  z-index: 200;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
}

.primary-menu-wrapper {
  font-family: var(--font-heading);
  font-weight: 400;
}

.menu-wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 90%;
  max-width: 320px;
  height: 100%;
  z-index: 10;
  transform: translateX(-100%);
  transition: all 0.4s ease;
  padding-top: 30px;
}

.active-menu .menu-wrap {
  background: #271c68;
  transform: translateX(0);
  overflow-y: auto;
  overflow-x: hidden;
}

.active-menu .menu-wrap .main-menu,
.active-menu .menu-wrap .menu {
  overflow-y: scroll;
  overflow-x: hidden;
}

.region-primary-menu .menu,
.region-primary-menu .submenu {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.region-primary-menu .menu {
  display: flex;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem;
  z-index: 10;
}

.region-primary-menu .menu-item-level-1 {
  position: relative;
  padding: 0;
  border-bottom: 1px solid var(--text-color);
}

.region-primary-menu .menu a {
  display: block;
  color: #ffffff;
  /* padding: 0px 20px 0px 20px; */
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children::after {
  position: absolute;
  content: "+";
  right: 10px;
  top: 0.5rem;
  color: #ffffff;
  padding: 5px;
}

.region-primary-menu .submenu {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  padding: 0 0 0 2rem;
}


/* search box */
.full-page-search {
  position: relative;
}

.search-icon {
  position: relative;
  margin: 0;
  padding: 0 0 0 10px;
  border-left: 1px solid #b4b4b4;
  cursor: pointer;
}

.search-icon i {
  font-size: 1.2em;
  line-height: 1;
}

.search-box {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 20;
  transition: all 0.2s linear;
  flex-direction: column;
}

.search-box-content {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 60%;
  margin: 0 auto;
  animation: slideDown 0.5s linear forwards;
  text-align: center;
}

.search-box-content .block-region {
  width: 100%;
}

.search-box-content .block-title {
  color: #ffffff;
}

.search-box-content form label {
  display: none;
}

.search-box-content input[type=search] {
  width: 100%;
  padding: 1.4rem;
  background-color: #121212;
  color: #ffffff;
  border: 2px solid #3F3B3B;
  border-radius: 6px;
  outline: 0;
}

.search-box-content input[type=submit] {
  padding: 10px 2rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.search-box-content input[type=submit]:hover {
  color: #ffffff;
  border-color: var(--color-primary);
}

.search-box-close {
  flex: 1;
  cursor: url("../images/cursor.svg"), auto;
}

/* Sidebar
-------------------------------------------- */
.sidebar {
  position: relative;
  margin: 0;
}

.region-sidebar-first,
.region-sidebar-second {
  display: flex;
  flex-direction: column;
}

.sidebar .block {
  background-color: #ffffff;
  margin-bottom: 1rem;
  padding: 15px 10px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.sidebar .block-title {
  padding-left: 6px;
  font-size: 1.3rem;
  border-left: 2px solid var(--color-primary);
}

.sidebar ul {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sidebar li {
  padding: 6px 0;
  border-bottom: 2px solid var(--border);
}

.sidebar li:last-child {
  border: 0;
}

/* search block in sidebar */
.sidebar .form-search {
  width: 100%;
}

.views-field.views-field-field-banner-title {
  background: rgba(0, 0, 0, 0.7);
  bottom: 10px;
  display: inline-block;
  font-family: "open Sans", Sans-Serif;
  left: 90px;
  padding: 10px 10px 10px 10px;
  position: absolute;
  text-align: left;
  width: 400px;
  color: #e0c9c9;
  z-index: 1000;
  font-size: 14px
}

/* Footer
--------------------------------------*/
#last-section {
  position: relative;
  visibility: hidden;
  width: 100%;
  min-height: 1px;
  z-index: 12;
}

#footer {
  display: block;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  /* background: #d9d6d3 url(../images/footer-bg.svg); */
}

.footer,
.footer-top,
.footer-bottom {
  position: relative;
  width: 100%;
}

.footer-top,
.footer-bottom {
  padding: 1rem 0;
}

.region-footer-top,
.region-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.region-footer-top p:last-child,
.region-footer-bottom p:last-child {
  margin: 0;
}

.region-footer-top .block:not(:last-child) {
  margin-bottom: 1rem;
}

.footer-blocks {
  position: relative;
  display: flex;
  padding: 1rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-block {
  flex: 1 0 260px;
}

/* footer list style */
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.footer li {
  /* padding: 4px 0;
  border-bottom: 1px solid #bbb0a1; */
  background: url(../images/ico-list-bullets.jpg) no-repeat scroll 0 16px;
    margin-bottom: 11px;
    padding-left: 15px;
    width: 50%;
    float: left;
}

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

/* Footer -> Footer Bottom Middle */
.footer-bottom-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border-top: 3px double #bbb0a1; */
  padding: 1rem 0;
}
.footer.ftr2 {
  padding: 0px 0 0px 0px;
  background: url(../images/carousel-bg.png) repeat;
  border-top: 1px solid #d2d2d2;
}

.footer.ftr3 {
  padding: 0px 0 0px 0px;
  background: url(../images/footer-top-bg.jpg) repeat;

}

.copyright-content b{
  color: #fff;
}

.stqc-certificate {
  float: right;
  padding-top: 15px;

}

.footer.ftr4{
  background-image: url(../images/footer-bottom-bg.png);
  background-repeat: repeat;
  background-color: #333;
  padding: 0px 0px;
  color: #fff;
  position: relative;
  text-align: center;
}
.footer.ftr4:after {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  height: 4px;
  width: 100%;
  background: url(../images/after-bottom-bg.png) repeat;
  z-index: 10;
}
.footer.ftr4 a {
  color: #fff;
}

.clearfix:before, .clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.logo-cmf {
  float: left;
  padding: 10px 0 0 0;
  text-align: right;
  width: auto;
}
.logo-cmf a {
  border-right: 1px solid rgba(0, 0, 0, 0.5);
  display: inline-block;
  margin: 0 15px;
  padding-right: 25px;
}
.copyright-content {
  color: #fff;
  float: left;
  font-size: 70%;
  padding: 5px 0px 0px 0;
  text-align: left;
  width: auto;
}
.copyright-content span {
  /* color: #888888; */
  display: block;
}
.copyright-content a {
  text-decoration: underline;
}
.gtranslate {
  border-left: 1px solid rgba(0, 0, 0, 0.5);
  float: right;
  margin-top: 9px;
  padding-left: 25px;
  display: none;
}
.container:after {
  clear: both;
}
.clearfix:before, .clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
/* Footer -> Footer Bottom last*/
/* Node Content
--------------------------------------*/
/* Page title */
.page-title-wrap {
  /* position: relative; */
  margin: 0;
}



.page-title-wrap h1.page-title {
  margin-top: 15px;
  font-family: var(--font-heading);
  color: #271c68;
  font-weight: 600;
  font-size: 30px;
  padding: 15px 10px 15px 10px;
  background: #ededed;
}
.node-content li b {
    padding: 6px 0;
    text-align: justify;
    line-height: 150%;
    color: black;
    font-size: 16px;
}
/* common for all nodes */
.node,
.node-promoted,
.node-sticky,
.node-unpublished,
.node-view-mode-full {
  position: relative;
}

/* node in teaser view */
.node-view-mode-teaser {
  position: relative;
  background-color: var(--light);
  margin-bottom: 3rem;
  padding: 1rem;
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.node-view-mode-teaser.node-sticky {
  background: #ffffff;
}

/* node author and submitted details */
/* .node-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
} */

.author-picture img {
  width: auto;
  height: 30px;
  padding-right: 6px;
  margin: 0;
}

.node-submitted-details {
  display: flex;
  align-items: center;
  gap: 1rem;
  display: none;
}

.node-submitted-details i {
  color: var(--color-primary);
}

.node-submitted-details a {
  color: var(--text-color);
}

.node-tags a {
  position: relative;
}

.node-tags a::before {
  content: "#";
  color: var(--color-primary);
}

.node-submitted-details i.fa-calendar,
.node-submitted-details i.fa-th-large {
  margin-left: 14px;
}

/* node taxonomy and links */
.node-taxonomy-container,
.node-links-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.5rem 0;
  border-top: 1px solid var(--border);
}

.node-links-container {
  border-bottom: 1px solid var(--border);
}

.term-title {
  font-size: 1.1rem;
  line-height: 1;
}

.term-title i {
  font-size: 1.1em;
  color: var(--color-primary);
}

.taxonomy-terms {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
  .taxonomy-terms a {
    color: #1f4f9d;
    font-weight: bold;
  }
  article.node.node-type-photo-gallery.node-view-mode-teaser a span {
    color: #1f4f9d;
    font-weight: bold;
}

/* Node links */
.node-links-container {
  width: 100%;
      display: none;
}

.node-links-container .links.inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.node-readmore a {
  border-bottom: 2px solid var(--bold-color);
}

ul.inline,
ul.links.inline {
  display: inline;
  padding-left: 0;
}

ul.inline li {
  position: relative;
  display: inline-block;
  padding: 0;
  list-style-type: none;
}

.node-links-container li {
  margin-right: 20px;
  float: left;
}

.node-links-container li.node-readmore {
  margin-left: 0;
  float: right;
}

.node-links-container .comment-comments::before {
  font-family: "tara";
  content: "\e01e";
  padding-right: 4px;
}

.node-links-container .comment-add::before {
  font-family: "tara";
  content: "\e003";
  padding-right: 4px;
}

.node-readmore {
  float: left;
}

li.node-readmore a {
  padding: 6px 12px;
  background: var(--color-primary);
  color: #ffffff;
  transition: background 0.4s ease;
}

li.node-readmore a:hover {
  background: var(--bold-color);
  color: #ffffff;
}

.node-view-mode-teaser li.comment-add,
.node-view-mode-teaser li.comment-forbidden {
  text-align: right;
}

/* Block Regions
--------------------------*/
.block-title {
  position: relative;
  line-height: 1.2;
}



div#block-cmf-system-main h2 {
    color: #271c68;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
}
div#block-cmf-system-main h2 a {
    color: #000000;
}

/* css by tufel */
h2.division {
    border: 1px solid;
    box-shadow: 1px 9px 10px 0px #cacbd5;
    padding: 10px 10px 10px 10px;
}

div#block-cmf-system-main {
    background: #f6f6ff;
    padding: 20px 20px 20px;
    border-radius: 12px;
    border: 1px solid #e6e6fa;
    margin-bottom: 16px;
    border-bottom: 5px solid #271c68;
}

/* Highlight region */
#highlighted {
  position: relative;
  /* background: #ffffff; */
  z-index: 2;
}

.region-highlighted {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* .region-highlighted .block {
  margin: 0;
  padding: 10px 0;
} */

/* content top and content bottom block region */
#content-top,
#content-bottom {
  width: 100%;
}

.region-content-top,
.region-content-bottom {
  display: flex;
  flex-direction: column;
}

.region-content-bottom {
  margin-top: 1rem;
}

.region-content-top .block,
.region-content-bottom .block {
  margin: 0 0 1rem 0;
  padding: 1rem;
  background-color: var(--light);
  box-shadow: var(--shadow);
}

/* Comments
-------------------------------------------- */
#node-comment {
  position: relative;
  /* margin-top: 30px;
  border-top: 3px double var(--border); */
}

#node-comment i {
  color: var(--color-primary);
}

.comment-form-wrap {
  position: relative;
  margin: 10px 0;
  padding: 20px;
  background: var(--light);
  border: 3px solid #ffffff;
  box-shadow: var(--shadow);
}

h2.add-comment-title {
  border-bottom: 2px solid #ffffff;
}

.filter-wrapper {
  font-size: 0.9rem;
  border: 2px solid #ffffff;
}

.filter-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.filter-wrapper ul li {
  padding: 6px 0;
  border-bottom: 1px solid #ffffff;
}

.filter-wrapper ul li:last-child {
  border: 0;
}

/* single comment */
.single-comment {
  position: relative;
  display: table;
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem 0;
  border: 2px solid #ffffff;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.comment-user-picture {
  position: relative;
  display: table-cell;
  padding: 0 10px;
  vertical-align: top;
  width: 100px;
  border-right: 2px solid #ffffff;
}

.comment-user-picture img {
  width: 100px;
  height: auto;
}

h3.single-comment-title {
  margin: 0.1rem 0;
  font-size: 1.2rem;
}

.single-comment-meta {
  width: 100%;
  margin-bottom: 6px;
  padding-bottom: 6px;
  font-size: 0.9rem;
  color: #909090;
  border-bottom: 1px solid var(--border);
}

.single-comment-meta a {
  color: #909090;
}

.single-comment-content-body {
  position: relative;
  display: table-cell;
  padding: 0 10px;
  vertical-align: top;
}

.single-comment-content-body {
  position: relative;
  display: table-cell;
  vertical-align: top;
}

#node-comment .indented {
  margin-left: 60px;
}

.single-comment-content ul.links.inline {
  display: flex;
  list-style: none;
  gap: 8px;
}

.single-comment-content .links a {
  padding: 5px 10px;
  border: 4px solid #ffffff;
  border-radius: 6px;
  transition: all 0.3s;
}

.single-comment-content .links a:hover {
  background-color: #ffffff;
}

/* Homepage
-------------------------------------------- */



#slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  background-color: var(--bg-body);
  background-image: url(../images/slider.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  overflow: hidden;
  z-index: 2;
}

#flexslider .flex-caption {
  margin-bottom: -220px;
}
.flex-pauseplay a.flex-play:before {
    content: '\f003';
}

.flex-pauseplay a::before {
    content: "?";
    display: inline-block;
    font-family: "flexslider-icon";
    font-size: 20px;
}
.flex-pauseplay a::before {
    font-size: 0 !important;
    padding-right: 15px;
}


.home-slider {
  position: relative;
  min-height: 100vh;
  z-index: 5;
}

ul.home-slider {
  list-style: none;
  list-style-type: none;
  padding: 0;
}

.home-slider h1,
.home-slider h2,
.home-slider h3 {
  font-size: 3rem;
  color: var(--bold-color);
}

.home-slider p {
  display: inline-block;
  padding: 0 10px;
  font-size: 1.6rem;
  background: #ffffff;
  color: var(--bold-color);
}

.home-slider .owl-dots {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 15;
}

.home-slider .owl-dots button {
  width: 14px;
  height: 14px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  margin: 0 4px;
  background: var(--bold-color);
}

.owl-dots button.active {
  background: var(--color-primary);
}

.owl-item {
  display: flex;
  align-items: center;
  height: 100vh;
}

.last-section,
.content-home {
  position: relative;
  z-index: 2;
}

.content-home .block {
  margin-bottom: 4rem;
}

.content-home .block-title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
}

.content-home .block-title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 2px;
  margin-left: -25px;
  background: var(--color-primary);
}

.region-content-home {
  display: flex;
  flex-direction: column;
}

/* Pages
-------------------------------------------- */
/* maintenance page*/
.header-maintenance {
  padding: 1rem 0;
}

.maintenance-main {
  width: 100%;
  text-align: center;
  padding: 2rem 0;
}

.maintenance-icon {
  margin-bottom: 1.5rem;
}

.maintenance-icon svg {
  max-height: 20rem;
}

/* Error page */
.error-page {
  text-align: center;
}

.error-page h1,
.error-page h2,
.error-page h3 {
  font-size: 5rem;
}

/* Search result page */
.search-advanced summary {
  margin: 10px 0;
  cursor: pointer;
}

.search-advanced .form-details-wrapper {
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--border);
}

.search-advanced .form-wrapper {
  padding: 0.5rem 1.4rem;
}

ol.search-results {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
  list-style-type: none;
}

ol.search-results li {
  margin: 0 0 16px 0;
  padding: 0 0 12px 0;
  border-bottom: 1px solid var(--border);
}

/* Status message
------------------------*/
.message {
  position: relative;
  color: #ffffff;
  text-shadow: none;
  margin: 20px 0;
  padding: 14px 14px 14px 64px;
}

.message em {
  color: #ffffff;
  font-style: italic;
  border-bottom: 1px dotted #ffffff;
}

.message p {
  margin: 0;
}

.message a, .message a:visited {
  color: #ffffff;
  text-decoration: none;
}

.message-status {
  background: #89ad32;
}

.message-status::before {
  content: "\e004";
  background-color: #759625;
}

.message-error {
  background: #c94d1c;
}

.message-error::before {
  content: "\e005";
  background-color: #b3461b;
}

.message-warning {
  background: #cd5a0a;
}

.message-warning::before {
  content: "\e006";
  background-color: #a44707;
}

.message::before {
  font-family: "tara";
  position: absolute;
  left: 0;
  top: 0;
  width: 53px;
  text-align: center;
  height: 100%;
  line-height: 53px;
  font-size: 30px;
}

.status-message-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Form
------------------------*/
form .description {
  font-size: 0.9em;
}

/* Admin Tabs
------------------------*/
.page-tabs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0.5rem 0;
  padding: 0;
  border-bottom: 2px solid var(--border);
}

.page-tabs li {
  background-color: var(--border);
  padding: 0;
  border-right: 2px solid #ffffff;
  text-shadow: 1px 1px #ffffff;
}

.page-tabs li:last-child {
  border-right: 0;
}

.page-tabs li a {
  display: block;
  padding: 5px 10px;
  color: var(--bold-color);
  transition: all 0.3s ease;
}

.page-tabs .active-page-tab {
  background-color: #271c68;
  text-shadow: none;
}

.page-tabs .active-page-tab a {
  color: #ffffff;
}

.page-tabs li:hover {
  background: var(--color-secondary);
  text-shadow: none;
}

.page-tabs li:hover a {
  color: #ffffff;
}

/* Pager
------------------------*/
.pager {
  width: 100%;
  margin-top: 0rem;
  animation: 6.96774s linear 0s infinite normal none running marqueeAnimation-1501640;
}

.pager-items {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 10px;
}

.pager-item {
  display: grid;
  place-content: center;
  color: var(--bold-color);
  height: 44px;
  min-width: 44px;
  border-radius: 4px;
  border: 2px solid var(--bold-color);
}

.pager-item-control {
  border-color: var(--color-primary);
}

.pager-item a {
  display: grid;
  place-content: center;
  background-color: var(--color-primary);
  color: #ffffff;
  height: 40px;
  min-width: 40px;
}

/* pager full */
.pager__item:hover {
  border-color: var(--color-primary);
}

.pager__item a {
  background-color: transparent;
  color: var(--bold-color);
  padding: 0 2px;
}

.pager .is-active {
  border-color: var(--color-primary);
}

.pager__item a:hover,
.pager__item.is-active a {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: #ffffff;
}

/* Field Label
-------------------------------------- */
.field:not(:last-child) {
  margin-bottom: 1rem;
}

.field__label {
  font-weight: bold;
}

[dir=ltr] .field--label-inline .field__label, [dir=ltr] .field--label-inline .field__items {
  float: left;
}

[dir=rtl] .field--label-inline .field__label, [dir=rtl] .field--label-inline .field__items {
  float: right;
}

[dir=ltr] .field--label-inline .field__label, [dir=ltr] .field--label-inline > .field__item, [dir=ltr] .field--label-inline .field__items {
  padding-right: 0.5em;
}

[dir=rtl] .field--label-inline .field__label, [dir=rtl] .field--label-inline > .field__item, [dir=rtl] .field--label-inline .field__items {
  padding-left: 0.5em;
}

.field--label-inline .field__label::after {
  content: ":";
}

/* Calendar
-------------------------------------- */
.calendar-calendar .full {
  display: table;
}

.calendar-calendar .empty {
  display: table-cell;
}

.view-header {
  margin: 25px 0px -45px 0;
}

/* View footer */
.view-footer {
  margin-top: 1rem;
}

/* Text align
-------------------------------------------- */
.text_left,
.text-left {
  text-align: left;
}

.text_right,
.text-right {
  text-align: right;
}

.text_center,
.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.center {
  margin: 0 auto;
}

/* Text Size
-------------------------------------------- */
.size-2x {
  font-size: 2rem;
}

.size-3x {
  font-size: 3rem;
}

.size-4x {
  font-size: 4rem;
}

.size-5x {
  font-size: 5rem;
}

.size-6x {
  font-size: 6rem;
}

.size-7x {
  font-size: 7rem;
}

.size-8x {
  font-size: 8rem;
}

/* button
-------------------------------------------- */
/* column
-------------------------------------------- */
.full {
  position: relative;
  display: flex;
  width: 100%;
  gap: 1.4rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.one_half,
.one_three,
.one_four,
.one_four_first,
.one_four_last {
  flex: 1;
}

.full > div {
  flex: 1 0 250px;
}

/* Animation
-------------------------------------------- */
/*slide up */
@keyframes slideUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/*slide Down */
@keyframes slideDown {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/* Custom components
-------------------------------------------- */
/* welcome message */
.welcome-message {
  text-align: center;
}

/* services */
.services {
  position: relative;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.service {
  flex: 1 0 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  text-align: center;
  box-shadow: var(--shadow);
}

.service i {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3em;
  background: var(--light);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.4s linear;
}

.service:hover i {
  background: var(--color-primary);
  color: #ffffff;
}

.service p:last-of-type {
  margin: 0;
}

span.menu-text {
  display: none;
}

/* Projects */
.projects {
  position: relative;
  display: flex;
  width: 100%;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.project {
  position: relative;
  flex: 1 0 300px;
}

.project img {
  position: relative;
}

.project-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem;
  color: #ffffff;
  cursor: pointer;
  text-align: center;
  opacity: 0;
}

.project:hover .project-content {
  animation: slideUp 0.8s ease;
  opacity: 1;
}

.project-content h1,
.project-content h2,
.project-content h3,
.project-content h4,
.project-content h5 {
  font-weight: 300;
  color: #ffffff;
}

.project-content a,
.project-content a:visited,
.project-content a:hover {
  color: #ffffff;
}

/* Scroll To Top
------------------------- */
.scrolltop {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  right: 10px;
  bottom: 10px;
  width: 48px;
  height: 48px;
  background: var(--bold-color);
  color: #ffffff;
  border-radius: 6px;
  z-index: 20;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
}

.scrolltop i {
  font-size: 1.6rem;
  line-height: 1;
}

.scrolltop:hover {
  background: var(--color-primary);
}

/* Responsive view
------------------------- */
.view-in-mobile {
  display: block;
}

.view-in-desktop {
  display: none;
}

/* Inline content
------------------------- */
.inline {
  display: inline-block;
}

.inline:not(:last-child) {
  padding-right: 1rem;
}

/* Content direction
------------------------- */
.rtl {
  direction: rtl;
}

.ltr {
  direction: ltr;
}

/* Font Size
------------------------- */
.font-small {
  font-size: 0.75rem;
}

.font-medium {
  font-size: 1.25rem;
}

.font-large {
  font-size: 1.5rem;
}

.font-2x {
  font-size: 2rem;
}

.font-3x {
  font-size: 2.5rem;
}

.font-4x {
  font-size: 3rem;
}

.font-5x {
  font-size: 4rem;
}

.font-6x {
  font-size: 5rem;
}

.font-7x {
  font-size: 6rem;
}

.font-8x {
  font-size: 7rem;
}

/* image icons size
------------------------- */
.icon-s {
  max-height: 1rem;
}

.icon-m {
  max-height: 1.5rem;
}

.icon-l {
  max-height: 2rem;
}

.icon-xl {
  max-height: 3rem;
}

.icon-x2 {
  max-height: 4rem;
}

.icon-x3 {
  max-height: 5rem;
}

.icon-x4 {
  max-height: 6rem;
}

.icon-x5 {
  max-height: 7rem;
}

.icon-x6 {
  max-height: 8rem;
}

.icon-x7 {
  max-height: 9rem;
}

.icon-x8 {
  max-height: 10rem;
}

/* Content width
------------------------- */
.width30,
.width40,
.width50,
.width60,
.width70,
.width80,
.width90 {
  width: 100%;
  clear: both;
  display: block;
}

/* Empty width and height
------------------------- */
.w20px {
  display: inline-block;
  width: 20px;
}

.w30px {
  display: inline-block;
  width: 30px;
}

.w40px {
  display: inline-block;
  width: 40px;
}

.w50px {
  display: inline-block;
  width: 50px;
}

.w70px {
  display: inline-block;
  width: 70px;
}

.w100px {
  display: inline-block;
  width: 100px;
}

.empty,
.spacer,
.spacer-x2,
.spacer-x3 {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.empty,
.spacer {
  padding: 1rem 0;
}

.spacer-x2 {
  padding: 2rem 0;
}

.spacer-x3 {
  padding: 3rem 0;
}

/* sections
--------------------------------- */
.section,
.section-small,
.section-large,
.unit {
  display: block;
  width: 100%;
}

.section {
  padding: 2rem 0;
}

.section-small {
  padding: 1rem 0;
}

.section-large,
.unit {
  padding: 3rem 0;
}

/* Responsive Columns
------------------------- */
.flex,
.grid,
.items,
.columns,
.grid-container,
.flex-container {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.flex,
.flex-container,
.columns {
  display: flex;
}

.columns {
  flex-wrap: wrap;
}

.grid {
  display: grid;
}

.grid-container {
  display: grid;
  grid-auto-flow: column;
}

.items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.item img {
  display: block;
}

/* Create Equal width columns with no gap */
.column {
  flex: 1 1 230px;
  margin: 0;
  padding: 0;
}

/* flex-items width */
.w10,
.w20,
.w30,
.w40,
.w50,
.w60,
.w70,
.w80,
.w90 {
  flex: 1 1 100%;
}

/* Flex and grid properties
--------------------------------- */
.space-between {
  justify-content: space-between;
}

.v-center {
  align-items: center;
}

.h-center {
  justify-content: center;
}

.vh-center {
  justify-content: center;
  align-items: center;
}

.gap {
  gap: 1rem;
}

.gap-2x {
  gap: 2rem;
}

.gap-small {
  gap: 0.5rem;
}

.no-gap {
  gap: 0;
}

/* Flex properties */
.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.wrap {
  flex-wrap: wrap;
}

.no-wrap {
  flex-wrap: nowrap;
}

/* Box
------------------------- */
.box {
  position: relative;
  background-color: #ffffff;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.box p:last-of-type {
  margin: 0;
}

/* EU Cookie Compliance module */
div#sliding-popup, div#sliding-popup .eu-cookie-withdraw-banner, .eu-cookie-withdraw-tab {
  background-color: #ffffff;
  box-shadow: 0 0 6px 2px var(--border);
  left: 0;
}

#sliding-popup {
  padding: 2rem;
  max-width: 600px;
}

#sliding-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eu-cookie-compliance-content {
  max-width: 100%;
}

.eu-cookie-compliance-message {
  float: none;
  margin: 0;
  max-width: 100%;
}

#sliding-popup div,
#sliding-popup h2 {
  color: var(--bold-color);
}

#sliding-popup h2 {
  font-size: 1.2rem;
}

#sliding-popup p {
  display: block;
  color: var(--text-color);
  font-size: 0.9rem;
}

.eu-cookie-compliance-message button {
  background-color: transparent;
  color: var(--color-primary);
  margin: 0;
  padding: 0;
}

.eu-cookie-compliance-message button:hover {
  background-color: transparent;
  color: var(--bold-color);
}

.eu-cookie-compliance-buttons {
  display: flex;
  gap: 1rem;
  float: none;
  margin: 0;
  max-width: 100%;
}

.eu-cookie-compliance-buttons .button {
  background-color: transparent;
  background-image: none;
  color: var(--color-primary);
  font-weight: 400;
  margin: 0;
  padding: 8px 1rem;
  border: 2px solid var(--bold-color);
  text-shadow: none;
  box-shadow: none;
  border-radius: 0;
}

.eu-cookie-compliance-buttons .button:hover {
  background-color: var(--bold-color);
  color: #ffffff;
}

/* Clearing
-------------------------------------------- */
.clear {
  clear: both;
  width: 100%;
}

#last-section::before {
  content: "";
  display: table;
  clear: both;
}

#last-section::after {
  content: "";
  display: table;
  clear: both;
}

#homepage-content-wrapper::before,
#homepage-content-wrapper::after {
  content: "";
  display: table;
  clear: both;
}

.page-title-wrap::before,
.page-title-wrap::after,
.node-content::before,
.node-content::after {
  content: "";
  display: table;
  clear: both;
}

.node-header::before,
.node-header::after,
.node-taxonomy-container::before,
.node-taxonomy-container::after,
.node-links-container::before,
.node-links-container::after {
  content: "";
  display: table;
  clear: both;
}

#node-comment::before,
#node-comment::after {
  content: "";
  display: table;
  clear: both;
}




@media (max-width: 500px) {
  .search-box-content input[type=search] {
    padding: 15px;
  }
  .search-box-content input[type=submit] {
    padding: 10px 20px;
  }
  .align-left,
  img.align-left,
  figure.align-left,
  .align-right,
  img.align-right,
  figure.align-right,
  .align-center,
  img.align-center,
  figure.align-center {
    clear: both;
    margin: 0 auto;
    float: none;
  }
  /* Layout -> Sidebar */
  .home-slider h1,
  .home-slider h2,
  .home-slider h3 {
    font-size: 1.6rem;
  }
  /* Homepage -> Slider */
  .home-slider p {
    display: block;
    margin-bottom: 6px;
    font-size: 1.1rem;
  }
  /* Layout -> Sidebar */
  .sidebar,
  #sidebar-left,
  #sidebar-right,
  .two-sidebar #sidebar-left {
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  /* Footer */
  .footer-blocks {
    flex-direction: column;
  }
  .footer-block {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 1.6rem;
  }
}
@media only screen and (min-width: 501px) and (max-width: 767px) {
  /* Layout -> Column */
  .one_four,
  .one_four_first,
  .one_four_last {
    width: 50%;
    padding: 2%;
  }
  /* Homepage -> Slider */
  .home-slider h1,
  .home-slider h2,
  .home-slider h3 {
    font-size: 2rem;
  }
  .home-slider p {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  /* Sidebar */
  .sidebar,
  #sidebar-left,
  #sidebar-right,
  .two-sidebar #sidebar-left {
    float: left;
    width: 50%;
    height: 100%;
    margin: 0;
  }
  #sidebar-left {
    float: left;
    padding: 0 1% 0 0;
  }
  #sidebar-right {
    float: right;
    padding: 0 0 0 1%;
  }
  /* Footer */
  .footer-block {
    flex: 1 1 50%;
    width: 50%;
    max-width: 50%;
    margin-bottom: 1.6em;
  }
  .footer-block:nth-child(even) {
    padding: 0;
  }
  .footer-block {
    padding-right: 1.6em;
  }
}
@media screen and (max-width: 767px) {




  body {
    -webkit-text-size-adjust: none;
  }
  .container {
    width: 100%;
    max-width: 767px;
    padding: 0 10px 0 10px;
  }

  .overlay .closebtn {
    position: absolute;
    top: 0px;
    right: -78px !important;
    font-size: 22px;
    cursor: pointer;
    color: #ff2828;
    z-index: inherit;
    background: #ffffff;
    padding: 0px 12px 0 13px;
    font-weight: 600;
  }



  .aboutus.clearfix {
    /* width: 100%; */
    text-align: center;
    height: auto;
    color: black;
    background-color: #fffef369;
   
}
.about-us-part {
  background: none !important;

}

.flex-direction-nav {
  bottom: 300px;
  position: relative;
  display: none;
}
  /* Admin tabs */
  .page-tabs li {
    font-size: 0.9rem;
  }
  .page-tabs li a {
    padding: 2px 4px;
    border-right: 1px solid #ffffff;
  }
  /* Layout -> Header -> Header top*/
  /* .header-container {
    padding: 0px 0;
    display: flow;

  } */

  


  .header-top-container {
    flex-direction: column;
  }
  .header-top-left {
    margin-bottom: 0px;
  }
  .header-top-left i,
  ul #header-nav li {
    font-size: 0.8rem;
  }
  .header-top-left i,
  ul #header-nav ul li a {
    width: 30px;
    height: 30px;
  }
  .search-icon {
    padding: 10px 0 10px 10px;
  }
  .search-box-content {
    width: 90%;
  }
  /* Slider */
  .owl-item {
    text-align: center;
  }
  /* Breadcrumb */
  #breadcrumb {
    padding: 6px 0;
  }
  .breadcrumb {
    width: auto;
    /* padding: 25px 0px 25px 0; */
  }
  .breadcrumb-item-seperator {
    margin: 0 6px;
  }

  /* Layout -> Page layout */
  .no-sidebar .main-container,
  .sidebar-left .main-container,
  .sidebar-right .main-container,
  .two-sidebar .main-container {
    grid-template-columns: 100%;
  }
  #main {
    order: 1;
  }
  #sidebar-left {
    order: 2;
  }
  #sidebar-right {
    order: 3;
  }
  /* Node Content */
  .page-title-wrap {
    padding: 0px 0;
  }
  .page-title-wrap h1.page-title {
    font-size: 20PX;
    word-wrap: break-word;
    font-weight: 600;
    background-image: linear-gradient(41deg, #e9f2ff 0%, #43a07021 100%);
  }
  #node-comment .indented {
    margin-left: 20px;
  }
  /* Layout -> Footer */
  #footer {
    position: relative;
    z-index: 2;
    /* background: #f1fffa;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; */
    /* background-color: #f8f8ff; */
  }
  .footer-bottom-middle {
    flex-direction: column;
  }
  .copyright {
    margin-bottom: 12px;
  }
  /* Content -> Form */

  .scrolltop {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;

    bottom: 10px;
    width: 45px;
    height: 45px;
    background: #07076c;
    color: #ffffff;
    border-radius: 6px;
    z-index: 20;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
}

.region-primary-menu .menu-item-level-1 {
  position: relative;
  padding: 10px 0 10px 0;
  border-bottom: 1px dotted #e13636;
}

.submenu {
  display: none; /* Initially hide submenus */
}
.active .submenu li a {
  display: block;
  background: #058830;
  padding: 10px 5px 10px 5px;
  border-bottom: 1px dotted;
  margin-left: -35px;
}

/* Base state for menu items with children */
.menu-item-has-children::after {
  content: '+';
  display: inline-block;
  margin-left: 0px;
  position: absolute;
  right: 10px;
  top: 0.3rem;
  color: #ffffff;
  padding: 0px;
  font-size: 20px;
}

/* State for expanded menu items */
.menu-item-has-children.expanded::after {
  content: '-';
  font-size: 30px;
  top: -10px;
}

/* Hide submenu by default */
.submenu {
  display: none;
}




}
@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
  /* Header main menu */
  .primary-menu-wrapper {
    position: relative;
    background-color: transparent;
    padding: 0;
    transform: translateX(0);
    z-index: 10;
  }
  .menu-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0;
    transform: none;
    z-index: 10;
  }
  .region-primary-menu .menu {
    flex-direction: row;
    /* gap: 1rem; */
    padding: 0;
  }
  .region-primary-menu .menu-item-level-1 {
    border: 0;
  }

  .region-primary-menu .menu-item-level-1:hover {
    background-color: #034F1C;
    color: #ffffff;
  }
  .region-primary-menu .menu-item-level-1:hover > a {
    color: #ffffff;
  }
  .region-primary-menu .menu-item-level-1 a,
  .region-primary-menu .menu-item-level-1 > span {
    display: block;
    color: #ffffff;
    padding: 13px 15px 10px 10px;

    }

  .region-primary-menu .menu-item-level-1 a:hover,
  .region-primary-menu .menu-item-level-1 > span:hover {
    /* background-color:#034F1C ; */
    color: #ffffff;
  }
  .menu-item-has-children {
    position: relative;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
  }
  .menu-item-has-children::after {
    position: relative;
    top: 0;
    color: #ffffff;
  } 
  .region-primary-menu .submenu {
    position: absolute;
    background-color: #034F1C;
    top: 100%;
    min-width: 200px;
    padding: 0 0.0rem;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
  }
  .region-primary-menu .submenu li {
    padding: 0;
    border-top: 0;
    border-bottom: 1px solid #20af0e;
  }
  .region-primary-menu .submenu li:last-child {
    padding: 0;
    border-top: 0;
    border-bottom: none;
  }
  .region-primary-menu .submenu li:first-child {
    border-top: none;
  }
  .region-primary-menu .submenu a,
  .region-primary-menu .submenu li > span {
    color: #ffffff;
    padding: 0.5rem 12px;
  }
  .menu-item-has-children:hover > .submenu {
    visibility: visible;
    animation: slideUp 0.5s forwards;
  }
  .region-primary-menu .submenu a:hover {
    color: #ffffff;
  }

  .nav-wrapper ul ul li.active a, .nav-wrapper ul ul li.hover a, .nav-wrapper ul ul li a:hover {
    background: #04b940 !important;
}
  /* third level menu */
  .region-primary-menu .submenu .submenu {
    left: 100%;
    top: 0;
  }
  .submenu .menu-item-has-children::after {
    color: #ffffff;
  }

  
  .mobile-menu,
  .close-mobile-menu {
    display: none;
  }
  .view-in-mobile {
    display: none;
  }
  .view-in-desktop {
    display: block;
  }
  /* shortcodes -> content width */
  .width30 {
    width: 30%;
  }
  .width40 {
    width: 40%;
  }
  .width50 {
    width: 50%;
  }
  .width60 {
    width: 60%;
  }
  .width70 {
    width: 70%;
  }
  .width80 {
    width: 80%;
  }
  .width90 {
    width: 90%;
  }
  /* shortcodes -> responsive column */
  .w10 {
    flex-basis: calc(10% - 10px);
  }
  .w20 {
    flex-basis: calc(20% - 10px);
  }
  .w30 {
    flex-basis: calc(30% - 10px);
  }
  .w40 {
    flex-basis: calc(40% - 10px);
  }
  .w50 {
    flex-basis: calc(50% - 10px);
  }
  .w60 {
    flex-basis: calc(60% - 10px);
  }
  .w70 {
    flex-basis: calc(70% - 10px);
  }
  .w80 {
    flex-basis: calc(80% - 10px);
  }
  .w90 {
    flex-basis: calc(90% - 10px);
  }
}/*# sourceMappingURL=style.css.map */


/* Costum Css For Top Header By Tufel */
.header-top-left {

  position: relative;
}
.header-top-left.sectionheaderright {
  border-top: 1px solid #eeeeee;

}


ul.phem {

  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 5px 20px 5px 20px;
  list-style: none;
  list-style-type: none;
 background: #f4f4f4;

}


.logo {
  width: 600px;
  background: none;
  padding: 0;
  float: left;
  font-size: 25px;
  line-height: 100%;
  text-transform: uppercase;
  color: #000;
}
.logo a {
  display: block;
  text-align: left;
}
.logo img {
  float: left;
  padding: 10px 20px 0px 0px;
  width: 65px;
}

.logo a strong {
    font-weight: 600;
    display: block;
    font-size: 18px;
    padding-top: 10px;
}
.logo p {
  text-align: justify;
  padding-bottom: 0px;
  line-height: 100%;
  color: black;
  font-size: 18px;
}
 

.logo a span {
  display: block;
  font-weight: 900;
  font-size: 25px;
  font-family: system-ui;
}

.toggle-nav-bar {
  display: none;
}
.header-right {
  float: right;
}
.clearfix:before, .clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.right-content {
  padding-top: 10px;
}
.float-element {
  float: left;
  margin-left: 150px;
}



.sw-logo {
  display: inline-block;
}
.sw-logo {
  display: inline-block;
}
.float-element:after {
  clear: both;
}
.float-element:before, .float-element:after {
  display: table;
  line-height: 0;
  content: "";
}
li.gov-india {
  padding-right: 8px;
  border-right: 1px dotted #ca2121ff;
  display: grid;
  justify-items: end;
  line-height: 132%;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  height: 30px;

}
li.ministry {
  display: grid;
  justify-items: stretch;
  float: left;
  line-height: 132%;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  height: 30px;


}

.flex-caption p {
  background: rgba(0, 0, 0, 0.7);
  bottom: 150px;
  display: inline-block;
  font-family: "open Sans",Sans-Serif;
  left: 10%;
  padding: 20px 16px 16px;
  position: relative;
  text-align: left;
  width: 400px;
  color: #e0c9c9;
  z-index: 1000;
}

.otherlinkcon ul li .content {
  padding-left: 15px;
}
.clearfix:after {
  height: 0;
  visibility: hidden;
}
/* Homepage Content css */

/* .main-wrapper.homepagesec2 {

  background: url(../images/gallery-bg.png);

}
.main-wrapper.homepagesec1 {
  background: url(../images/gallery-bg.png);
} */

.block-region.region-what-new {
  float: left;
  width: 100%;

}
.marquee.marquee-text {
  margin-top: -10px;
  font-size: 16px;
  line-height: 50px;
  /* padding-right: 100px; */
  background-image: linear-gradient(359deg, #93defb 0%, #b6d76bbf 100%);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}


.marquee-container {
  position: relative;
  width: 100%;
  height: 290px; /* Adjust height as needed */
  overflow: hidden;
  background-color: #fcfcfc;
  margin-top: 0px;
  font-size: 16px;
  line-height: 50px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.marquee-content {
  position: absolute;
  transition: transform 0.5s ease-in-out;
  overflow: hidden;
  padding: 0 20px 0 20px;
  display: inline-block; /* Keeps the text on a single line */

}

.marquee-content span a{
  font-size: 15px;
  color: #00008b;
  background: url(../images/ico-list-bullets.jpg) no-repeat 0 15px;
  padding: 5px 0px 5px 10px;
  display: block;
  width: 100%;
  border-bottom: 1px dotted #c5c5c5;
  line-height: 1.5;
}
.marquee-content span a:hover{
   color: #b90404;
}

.releted-gallery .views-field a {
  color: #ffffff;
  font-size: 16px;
  background: url(../images/ico-list-bullets-w.jpg) no-repeat scroll 0 8px; 
  padding-left: 20px;
}


.white-container.clearfix {
  padding: 0 0 25px;
  width: 100%;
}
.white-container .imp-link {
  display: flex;
  flex-direction: row-reverse;
}


.imp-link {
  /* border-top: 1px solid #ccc; */
  float: left;
  padding-top: 20px;
}
.imp-link .implinkcontent {
  width: 100%; 
  float: left;
  color: black;
  font-size: 20px;
}
.visitor {
  width: 100%;
  padding-right: 20px;
  float: right;
  color: black;
  font-size: 20px;
}

.visitor li.menu-item.menu-item-level-1 {
  margin-bottom: 0px;
}
.imp-link .implinkcontent li.menu-item.menu-item-level-1 {
  margin-bottom: 0px;
}

nav#block-tara-homerightmenuimportantlink {
  padding-top: 10px;
}
.block-region.region-footer-second {
  padding-top: 10px;
}

.white-container .imp-link .implink-content {
  width: 100%;
  padding-right: 0px;
  float: left;
}

ul {
  list-style: none;
}
.implink-content li {
  background: url(../images/ico-list-bullets.jpg) no-repeat scroll 0 16px;
  margin-bottom: 11px;
  padding-left: 15px;
  /* width: 100%;
  float: left; */
}
.clear {
  clear: both;
  display: block;
}
.white-container .otherlink {
  float: right;
  width: 28%;
}
.white-container .otherlinkcon {
  width: 100%;
}
.item-list {
  width: 100%;
}
.item-list ul {
  float: left;
  width: 100%;
}
.view-related-link ul li {
  padding-left: 16px;
}
.otherlinkcon ul li {
  float: none !important;
  width: auto !important;
  margin-bottom: 8px !important;
  line-height: normal !important;
  border-bottom: 0px dotted #ccc !important;
}
.bgnonecls {
  background: none !important;
}
.field-content .item-list ul li {
  margin: 0 50px 0 0;
}
.white-container .otherlinkcon li {
  background: url(../images/imp-bulet.png) no-repeat scroll 0 8px;
}
.view-related-link ul li {
  padding-left: 16px;
}

.otherlinkcon ul li {
  float: none !important;
  width: auto !important;
  margin-bottom: 8px !important;
  line-height: normal !important;
  border-bottom: 0px dotted #ccc !important;
}
.clearfix:after {
  clear: both;
}

.footer-top-wrapper ul {
  display: inline-block;
  padding: 15px 0px 0px 0px;
  font-size: 16px;
}
.footer-top-wrapper ul li a {
  color: white;
}
.footer-top-wrapper ul li {
  background: #4A4A4A !important;
  border-right: 1px solid #5e5e5e;
  width: auto;
  margin-bottom: 0px;
  padding: 0 25px 0 25px;
}

div#block-tara-views-block-media-gallery-block-1 {
  margin-top: 1px;
  margin-left: -17px;
}

div#galleryCarousel li {
  display: inline-block;
}

.footer li:last-child {
  border-bottom: 0;
  border: none;
}
.views-field.views-field-field-minister-designation {
  font-size: 15px;
  padding: 5px 10px 5px 10px;
  margin-top: 10px;
  float: inline-start;
}
.ministercontainer .image-field:first-of-type(1) {
  margin: 0 0 5px 0;
  border: 5px solid #f6dd40;
  width: 200px;
}
.ministercontainer .image-field:nth-of-type(2) {
  margin: 0 0 5px 0;
  border: 5px solid #f6dd40;
  width: 100px;
}

.wrapper {
  position: relative;
}

div#flexCarousel .views-view-grid.horizontal{
  display: flex;
}


.footer.ftr1 li a {
  color: rgb(0, 0, 0);
  font-size: 16px;
}



.carousel li {
  margin-right: 5px;
  width: 125px;
  float: left;
  display: block;
}



.whats-new-container .ministercontainer {
  float: right;
  width: 30%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
 
  margin: 0px 25px 35px 25px;
}
.ministryPanel {
  width: 100%;
  text-align: center;
  height: auto;
  color: black;


}

button#playButton {
  display: inline-block;
  background-color: var(--color-primary);
  color: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
  line-height: 1.6;
  padding: 0px 5px 0px 5px;
}
.ministryPanel ul {
  display: flex;
  justify-content:space-around;
}

.news-item img {
  display: block;
  margin: 0 auto;
}

.ministryPanel ul li a {
  font-weight: 600;
  color: #3333cc;
  font-size: 16px;
   margin-top: 10px;
}

.news-item a {
  display: block;
}
.whats-new-container .whats-leftcontainer {
  width: 65%;
  /* padding: 10px 0; */
}

.container.whats-new-container {
 /*  display: flex;*/
  margin-top: 25px;
  margin-bottom: 0px;
}

.aboutus-section {
  /* padding: 10px 0px;  
  width: 33%;*/
}

.aboutus.clearfix {
  width: 100%;
  text-align: center;
  height: auto;
  color: black;
  background-color: #fffef369;
}


.aboutus-section .block-title {
  text-align: justify;
  position: relative;
  line-height: 1.5;
  color: #0b0002;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
  background: #f1f4f9;
  padding: 15px 15px 15px 20px;
  margin-bottom: 10px;
}
.aboutus-section .field-content p {
  width: 400%;
  padding: 0 20px 15px 20px;
  line-height: 1.9;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.whats-leftcontainer h2 {
  background: #f1f4f9;
  /* background: url(../images/whats-new.png) no-repeat 0 0px; */
  color: #0b0002;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
  padding: 20px 15px 20px 25px;
}
/* .readmore{
  margin-left: 20px;

} */

.track {
  overflow: hidden;
  height: 485px;
  padding-left: 20px;

}
.track li a {
  font-size: 16px;
  color: black;
}

#playSpan {
  background: #E89696 !important;
}
.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;
  transform: translate(0, 0);
}
.fa-pause:before {
  content: "\f04c";
}
.clear {
  clear: both;
  display: block;
}
.photogallery-container {
  background: url(../images/gallery-bg.png);
  padding: 40px 0;
}
.photogallery-container .gallery-area {
  float: left;
  width: 66.5%;
}
.gallery-heading {
  float: left;
  left: 15px;
  position: absolute;
  top: 2px;
  /* z-index: 99999; */
}
.gallery-area h3 {  

  color: #ffffff !important;

}

.gallery-area h3 {
    background: #00008b;
    text-transform: uppercase;
    float: left;
    font-size: 20px;
    font-weight: 600;
    padding: 7px 20px;

}
.gallery-area .bttn-view:hover {
    background-color: #ffffff;
    color: #000000;
}


.gallery-area a {
    background: #058830;
    font-weight: 600;
    border: 0 none;
    /* text-transform: uppercase; */
    display: inline-block;
    font-size: 20px;
    padding: 4px 10px;
    position: relative;
    text-decoration: auto;
    border-bottom-right-radius: 10px;
    color: #ffffff

}
.bttn-view {
  position: absolute;
  top: 0;
  right: 0px;
}

.guide-text {
  display: none;
}
.guide-text {
  text-align: right;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  -webkit-font-smoothing: antialiased;
  transform: translate(0, 0);
}
.scroll-table1 {
  overflow-x: auto;
  padding-bottom: 0px;
  margin-bottom: 22px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
}

table {
  border-spacing: 0;
}
.views-view-grid tbody {
  border-top: none;
}
tr:nth-of-type(odd) {
  background: #f8f8f8;
}
td, th {
    padding: 10px;
    line-height: 150%;
    font-size: medium;
    border-width: 1px !important;
}


.photogallery-container .releted-gallery {
  float: right;
  width: 32%;
}
.releted-gallery-container {
  width: 100%;
    background-color: darkblue;
    padding: 10px 0 0px 0;
    line-height: 30px;

}
.releted-gallery-container .moregallery {
       color: #000000;
    display: inline-block;
    font-weight: 600;
    margin: 10px 15px 10px 35px;
    background: #ffffff;
    padding: 2px 15px 2px 15px;
    border-radius: 5px;
    text-decoration: none;

}

.releted-gallery-container ul {
    margin: 0px 0 -5px 0;
}
.footer-top-wrapper ul li a:hover {
  color: #30aa5e;
}
.footer.ftr1 li a:hover {
  color: #000000;
}
.releted-gallery-container a:hover {
  color: #d3d3d3;
  text-decoration: underline;
}

.releted-gallery .views-field a:hover {
  color: #30aa5e;
  text-decoration: none;
}
.ministryPanel ul li a:hover {
  color: #058830;
}
.clear {
  clear: both;
  display: block;
}
.container:after {
  clear: both;
}

.carousel-wrapper:after {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  height: 10px;
  width: 100%;
  background: url(../images/after-bg.png) repeat;
  z-index: 10;
}
.container.carousel-container {
  padding: 0px 0 0px 0px;
  overflow: hidden;
}
li.menu__item.is-leaf.leaf {
  background: none;
  width: max-content;
  float: left;
}


/* end Homepage content css */

  @media screen and (min-width: 1024px){
  .common-wrapper, .common-right {
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
  }

}
  .common-right {
      float: right;
      position: relative;
  }
  .common-right ul li {
    float: left;
    position: relative;
    text-align: center;
    margin-bottom: 5px;
}
.cmf_lan {
    display: block !important;
}

.common-right ul li.ico-skip > a {
    background-position: -124px 7px !important;
}
.common-right ul li a {
    opacity: 1;
}

.sprite1>a, #header-nav>li>a {
    background-image: url(../images/sprite1.png);
    background-repeat: no-repeat;
    border-right: 1px solid #bbbbbb;
}

.common-right ul li.ico-accessibility > a {
    background-position: 7px 7px !important;
}

.common-right ul li.hindi a {
    font-size: 72%;
    font-weight: 600;
    border-right: none !important;
}

.common-right ul li.ico-accessibility ul, .common-right ul li.ico-social ul {
    position: absolute;
    top: 36px;
    right: 0px;
    z-index: 9999;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    padding: 0px 0px;
    background: #333;
}
.common-right ul li.ico-social ul {
    padding: 0 0 3px 0px;
}
.common-right ul li.ico-accessibility ul{    height: auto;}



.common-right ul li ul li {
    float: none !important;
    position: relative;
    height: auto;
    border-left: 0px solid #eeeeee;
    border-top: 1px solid #6c6c6c;
}
.common-right ul li.ico-accessibility ul li:first-child a {
    margin-top: 0px;
}

.common-right ul li.ico-social ul li:first-child a {
    margin-top: 0px;
}

.common-right ul li.ico-social ul li a {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    display: inline-block;
    height: 22px;
    width: 22px;
}
.common-right ul li.ico-site-search > a {
    background-position: -58px 7px !important;
}
.ico-site-search .search-drop {
    visibility: visible;
    position: absolute;
    right: 0;
    top: 36px;
    z-index: 1;
    display: none;
}
.common-right ul li.ico-social ul li {
    width: 38px;
    text-align: center;
    padding: 3px 0px;
}

.common-right ul li.ico-accessibility ul li a {
    color: #ffffff !important;
}
.common-right ul li.ico-accessibility ul li a {
    display: inline-block;
    height: auto;
    line-height: 22px;
    width: 38px;
    text-align: center;
    padding: 3px 0px;
}

.common-right ul li.ico-accessibility ul, .common-right ul li.ico-social ul {
    position: absolute;
    /* top: 36px; */
    right: 0px;
    z-index: 9999;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    background: #fff;
    padding: 0px 0px;
    visibility: visible;
    background: #333;
}

.common-right ul li ul {
    position: absolute;
    height: auto;
    top: 35px;
    left: 0;
    z-index: 9999;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    background: #f8f7ff;
    padding: 5px 8px;
    visibility: hidden;
}

.high-contrast.dark {
    background: #363636 !important;
    color: #ffff00 !important;
}
.high-contrast.light {
    background: #fff;
}
.common-right ul li.ico-social > a {
    background-position: -24px 7px !important;
}
.common-right ul li.ico-sitemap > a {
    background-position: -88px 7px !important;
}

.common-right ul li.ico-skip a:hover{
    background-position: -124px -27px !important;
}
.common-right ul li.ico-skip > a, .common-right ul li.ico-accessibility > a, .common-right ul li.ico-social > a, .common-right ul li.ico-site-search > a, .common-right ul li.ico-sitemap > a {
    text-indent: -9999px;
}

.common-right ul li a:hover {
  background-color: #20af0e;
  color: #000;
}

.common-right ul li a {
    display: block;
    width: 40px;
    height: 35px;
    font-size: 100%;
    background-repeat: no-repeat;
    background-position: center !important;
}
.common-right ul li a:hover{
  opacity: 1;
}
a:focus, a:hover, a:active {
    outline: none;
}
a:focus {
    outline: 1px dotted #333;
}
.common-right li:hover > ul, .common-right li:hover>ul, .common-right a:focus+ul, .common-right a:hover a:focus, .common-right ul li :hover ul {
    visibility: visible!important;
}
.common-right ul li ul li a:hover  {
    background-color: transparent;
}
.common-right ul li.ico-sitemap a:hover, .common-right ul li.ico-sitemap > a:focus {
    background-position: -90px -27px !important;
}
.common-right ul li.ico-site-search a:hover, .common-right ul li.ico-site-search > a:focus {
    background-position: -59px -27px !important;
}
.common-right ul li.ico-social a:hover, .common-right ul li.ico-social > a:focus {
    background-position: -28px -27px !important;
}
.common-right ul li.ico-accessibility a:hover, .common-right ul li.ico-accessibility > a:focus {
    background-position: 7px -27px !important;
}
.common-right ul li.ico-accessibility a {
    background-position: 10px 7px !important;
}
.common-right ul li.ico-skip a:hover, .common-right ul li.ico-skip > a:focus {
    background-position: -124px -27px !important;
}
.sitemap ul li {
    list-style: inside none disc;
}

.sitemap ul li {
    padding-bottom: 5px;
    line-height: 143%;
}
.sitemap ul li {
    background: url(../images/lightarrowa.png) no-repeat 0 4px;
    list-style-type: none !important;
    padding-left: 22px;
}

.nolink_class {
    cursor: inherit;
}
.sitemap ul ul {
    padding: 5px 0 5px 0 !important;
}
.sitemap ul li {
    list-style: inside none disc;
}


.sitemap ul ul li {
    background: url(../images/list-style.png) no-repeat 0 6px;
    margin-left: 0 !important;
}
.sitemap ul ul li a {
    color: black;
    font-size: 15px;
}
.sitemap span {
    font-size: 16px;
}
.sitemap ul li a {

    color: black;
    font-size: 15px;
}
.sitemap-item {

    color: black;
    font-size: 15px;
}
.sitemap-item {
    margin-bottom: 0em;

}
.sitemap-item--menu-main ul li a {
    font-size: 16px;
}
.gallery-holder img.image-field {
  color: white;
  border: 2px solid;
  height: 280px;
  object-fit: cover;
 
}
.gallery-holder .views-view-grid .views-col {
  padding-right: 5px;
}
.footer .block-title {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  color: black;
  text-align: center;
  padding: 5px 0px 5px 0px;
  margin-bottom: 20px;
  background-color: lavender;
}

div#block-cmf-system-main .views-field.views-field-name {
  font-size: 16px;
  display: block;
  height: 60px;
  padding: 10px 0px 0px 15px;
}


div#block-cmf-system-main .views-view-responsive-grid__item {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  
}

div#block-cmf-system-main  img.image-field {
  padding: 15px 15px 15px 15px;
  float: left;
  width: 500px;
  height: 300px;
  object-fit: cover;
  border-bottom: 1px dotted #b8c0bb;
}
div#block-cmf-system-main .views-field-title {

  text-align: justify;
  padding: 15px 15px 15px 15px;

}
div#block-cmf-system-main .views-field-title a {
  color: #00c;
  font-size: 16px;
}
div#block-cmf-system-main table.views-table.cols-3 {
  width: 100% !important;
}

div#block-cmf-system-main .views-view-grid .views-col {
  float: left;
  border: 1px solid #e4e4e4;
  height: 450px;
  background: #eaeaff1c;
  margin-top: 50px;
}

div#block-cmf-system-main th.views-field.views-field-php {
  padding: 0 150px 0 10px !important;
}

div#block-cmf-system-main .view-footer h1 {
  margin-top: 1rem;
  font-size: 30px;
  color: #00c;
}
.about-us-part {
  background: #f4f8ff;
}

.gt_switcher_wrapper {
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 999999;
}
.overlay {
display: none;
position: fixed;
/* z-index: 9999; */
top: 5px;
left: 65%;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0, 0.9);
}

.overlay form#search-block-form {
  margin-bottom: -33px;
}
.overlay input#edit-keys{
  padding: 0 15px 0 15px;
  width: 210px;
  height: 35px;
}

.overlay input#edit-submit {
  position: absolute;
  margin-top: -53px;
  left: 100%;
  font-size: 12.5px;
  margin-left: 0px;
   border: none;
}

.overlay input#edit-submit:hover {
  position: absolute;
  margin-top: -53px;
  left: 100%;
  font-size: 14px;
  margin-left: 0px;
  background: #058830;
  color: white;
  border: none;
}
.overlay .closebtn {
  position: absolute;
  top: 0px;
  right: -55%;
  font-size: 24px;
  cursor: pointer;
  color: #ff2828;
  z-index: inherit;
  background: #ffffff;
  padding: 0px 12px 0 13px;
  font-weight: 600;
}

.overlay .closebtn:hover {
color: #ff2828;
}

.overlay input[type=text] {
padding: 15px;
font-size: 17px;
border: none;
float: left;
width: 80%;
background: white;
}

.overlay input[type=text]:hover {
background: #f1f1f1;
}

.overlay button {
float: left;
width: 20%;
padding: 15px;
background: #ddd;
font-size: 17px;
border: none;
cursor: pointer;
}

.overlay button:hover {
background: #bbb;
}
.captcha-type-challenge--image .captcha__element img.image-field {
    height: 100px !important;
    width: auto !important;
    object-fit: contain !important;
    padding: 0px 0 0 0 !important;
}

fieldset.captcha.captcha-type-challenge--image {
   width: 100%;
  padding: 10px 10px 10px 10px;
}

fieldset.captcha .captcha__element {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  gap: var(--gap-v) var(--gap-h);
  flex-wrap: nowrap;
}
/* .captcha__element input#edit-captcha-response {
  width: 500px;
} */

form#user-login-form {
  padding: 10px 10px 10px 10px;
  border-radius: 5px;
  margin-bottom: 5px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
form#webform-submission-feedback1-add-form {
  padding: 10px 10px 10px 10px;
  border-radius: 5px;
  margin-bottom: 5px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: baseline;
}
form#webform-submission-feedback1-add-form input#edit-contact-no-phone {
  width: 700px;
}
form#webform-submission-feedback1-add-form input#edit-name {
  padding: 10px 10px 10px 7px;
  width: 700px;
}

form#webform-submission-feedback1-add-form textarea#edit-feedback-suggestion {
  height: 45px;
  width: 700px;
}
form#webform-submission-feedback1-add-form input#edit-e-mail-address {
  width: 700px;
}


/* Add a background image after PDF file links text */

/* Ensure the link displays inline and the icon is clickable */

/* Style for the PDF icon */
.pdf-file-link .pdf-icon {
  display: inline-block;
  width: 16px; /* Adjust width as needed */
  height: 16px; /* Adjust height as needed */
  background-image: url('/themes/tara/css/images/icons/application-pdf.png'); /* Path to your PDF icon image */
  background-size: contain; /* Ensure image fits within dimensions */
  background-repeat: no-repeat; /* Prevent repeating of the image */

}
.ministryPanel ul li:nth-child(1)  {
  cursor: pointer;
  margin-left: -15px;
  margin-top: 10px;
}

@media only screen and (max-width: 600px){

  .flexslider .slides img {
    width: 100%;
    display: block;
    min-height: 100px;
    height: auto;
}


  div#block-cmf-system-main .views-view-responsive-grid__item {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    width: 315px;
}

  form#user-login-form {
    padding: 10px 5px 10px 5px;
    border-radius: 5px;
    margin-bottom: 5px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
form#user-login-form .captcha-type-challenge--image {
  padding: 0 0px 0 5px;
}

  .captcha-type-challenge--image .captcha__element img.image-field {
    width: 260px !important;
    height: 100px !important;
}
fieldset.captcha.captcha-type-challenge--image {
  /* width: 40%; */
  padding: 10px 0px 10px 0px;
}
fieldset.captcha input#edit-captcha-response {
  width: 100%;
}
fieldset.captcha .captcha__element {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  gap: var(--gap-v) var(--gap-h);
  padding: 0 10px 0 10px;
}
.toggle-nav-bar {
  display: block;
}
  .logo a strong {
    padding-top: 12px;
}
.logo {

  background-color: #e8e8e8;
}
.four_content .common-left ul li {
  padding-top: 6px;
}

  .logo a {
    display: grid;
    justify-items: center;
    margin-bottom: 50px;
    background: #ffffff;
}
.header-right {
  float: left;
}

.common-right ul li.ico-site-search > a {
  background-position: -58px 5px !important;
  position: absolute;
  margin-top: 210px;
  margin-left: 150px;
  z-index: 1;
  border: 1px solid #b7bcc3;;
  border-right: 1px solid #b7bcc3 !important;

}

  .overlay {
    display: none;
    position: absolute;
    z-index: 1;
    top: 212px !important;
    left: 15% !important;
    background-color: rgba(0, 0, 0, 0.9);
    margin-left: -140px;
}
.overlay input#edit-submit {
        position: absolute;
        margin-top: -50px !important;
        font-size: 10px;
        margin-left: -35px;
        border: none;
        padding: 8px 5px 10px 5px;
}

.overlay input#edit-submit:hover {
  position: absolute;
  margin-top: -53px;
  left: 100%;
  font-size: 15px;
  margin-left: -55px;
  background: #058830;
  color: white;
  border: none;
}

.overlay input#edit-keys {
  padding: 0px 15px 0 15px;
  width: 250px !important;
  height: 35px !important;
}

  div#block-cmf-system-main .views-view-grid .views-col {
    float: left;
    border: 1px solid #e4e4e4;
    /* height: 300px; */
    background: #f4f4ff1c;
    margin-top: 50px;
    width: 100% !important;
}


div#block-cmf-system-main .views-field-title a {
  color: #00c;
  font-size: 14px;
  width: auto;
  text-align: justify;

}

  .gallery-holder img.image-field {
    color: white;
    border: 2px solid;
    height: 200px;
    object-fit: cover;
    border-radius: 0px;
  }
  .gallery-area h3 {
    background: #04b940;
    text-transform: uppercase;
    float: left;
    font-size: 18px;
    font-weight: 600;
    padding: 2px 15px;
}

div#block-cmf-system-main img.image-field {
  padding: 10px 10px 10px 10px;
  width: 500px;
  height: 300px;
  object-fit: cover;
  /* border-bottom: 1px dotted #b8c0bb; */
}

  .float-element {
      float: left;
      margin-left: 135px;
      display: none;
  }
  
  div#block-cmf-system-main .views-field.views-field-name {
    font-size: 14px;
    height: auto;
    padding: 5px 0px 0px 10px;
    margin-bottom: 5px;
}
  .logo a span {
      display: block;
      font-weight: 900;
      font-size: 12px;
      font-family: system-ui;
  }
  .logo img {
    float: left;
    padding: 5px 5px 5px 5px;
    max-width: 55px;
  }
  
  .mobile-menu {
        opacity: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 20px;
        overflow: hidden;
        cursor: pointer;
        margin: -50px 0px 0px 0px;
  }

  .common-right ul li a:hover {
    background-color: #2db412;
    color: #000;
}

.common-right ul li.ico-site-search a:hover, .common-right ul li.ico-site-search > a:focus {
  background-position: -58px -27px !important;
}
  
  .header {
      background-color: #271c68;
      display: initial;
  }
  
  .site-branding img {
      width: auto;
      max-height: 80px;
      padding: 7px 25px 7px 25px;
      background: #034F1C;
      display: none;
  }

  .mobile-menu span {
    width: 100%;
    height: 3px;
    background-color: #000000;
    transform-origin: left;
    transition: all 0.6s ease;
}


.view-filters input#edit-field-e-mail-value{
  padding: 5px 25px 5px 25px;
  line-height: 1.7;
  margin-right: 0px;
}



.flex-direction-nav a {
  text-decoration: none;
  display: block;
  margin: 150px 0 0;
  top: -75%;
  z-index: 0;
  overflow: hidden;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -ms-transition: initial;
  transition: all 0.3s ease-in-out;
}

.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 35px;
  display: inline-block;
  content: '\f001';
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}

.whats-new-container .ministercontainer {
  display: contents;
}


.whats-new-container .whats-leftcontainer {
  float: none;
  padding: 20px 0px 20px 0px;
  width: 100%;
}

.whats-leftcontainer h2 {
  font-size: 18px;
  padding: 15px 15px 15px 15px;
  background: lavender;
}
.common-right ul li.ico-skip > a {
  background-position: -130px 7px !important;
}

.photogallery-container .releted-gallery {
  float: right;
  width: 32.3%;
  display: contents;
}

li.gov-india {
  padding-right: 8px;
  border-right: 1px dotted #ca2121ff;
  display: grid;
  justify-items: end;
  line-height: 125%;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  height: 30px;
}


div#flexCarousel .views-view-grid .views-col {
  /* width: 450% !important; */
  border: none;
}
/* 

.container.header-container {
  width: 300px;
} */

.logo a strong {
  font-weight: 800;
  display: block;
  font-size: 60%;
}

.common-right.clearfix {
        float: none;
        position: relative;
        border-top: 1px solid #bbbbbb;
        width: 100%;
 }

 .views-field.views-field-field-banner-title {
  background: rgb(12 12 12 / 98%);
  display: inline-block;
  font-family: "open Sans", Sans-Serif;
  z-index: 1000;
  margin-bottom: 30px;
  font-size: 10px;
  left: 0;
  padding: 10px;
  position: static;
  width: 100%;
  color: #fff;
  min-height: 70px;
}

.flex-pauseplay a:hover {
  opacity: 1;
}


.flex-control-nav li {
  margin: 0px 5px;
  display: inline-block;
  zoom: 1;
}
.flex-control-nav {
  position: absolute;
  background: #058830 none repeat scroll 0 0;
  bottom: 0;
  float: right;
  font-size: 0;
  height: 25px;
  padding: 8px 5px 5px;
  right: 30px;
  text-align: center;
  width: auto;
  z-index: 0;
  /* margin: 10px 5px -35px 0; */
}

.flex-pauseplay a {
  bottom: 4px;
  color: #ffffff !important;
  cursor: pointer;
  display: block;
  height: 18px;
  right: 10px;
  opacity: 1;
  overflow: hidden;
  position: absolute;
  width: 20px;
  z-index: 147;
  font-size: 0px;
}

.banner-wrapper .flex-pauseplay {
  height: 25px;
  left: auto;
  position: absolute;
  top: auto;
  width: 35px;
  z-index: 0;
  margin: 0px 0px 0px 0px;
}

.ministryPanel {
  width: 100%;
  /* padding: 35px 20px 15px 20px; */
  background-image: none;
  text-align: center;
  margin-top: 50px;
  background-color: #f3f3f3;
}

h2.block-title {
  margin-top: -25px;
  font-size: 17px;
  font-weight: 600;
}
.views-field.views-field-field-minister-designation {
  font-size: 14px;
  color: black;
  background: lavender;
  padding: 5px 5px 5px 5px;
  margin-top: 10px;
  float: none;
}
.ministryPanel ul {
padding-bottom: 20px;
display: flex;
justify-content: space-around;
flex-direction: column;
}
.ministryPanel ul li:nth-child(1) {
 margin: 0 35px 0 0;
 padding-top: 0px;
 cursor: pointer;
}

.ministryPanel ul li:nth-child(2) {
    cursor: pointer;
    margin: 20px 35px 0 0;
}

.ministryPanel ul li a {
  color: #3333cc;
  font-size: 14px;
  background-color: lavender;
  padding: 5px 30px 5px 30px;
  float: none;
  margin-top: 0px;
}
.marquee.marquee-text {
  margin-top: -25px;
  font-size: 14px;
  line-height: 25px;
  padding-right: 0;
  background-image: linear-gradient(359deg, #93defb 0%, #b6d76bbf 100%);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.marquee-container {
  margin-top: 0px;

}
.photogallery-container .gallery-area {
  margin: 15px 0px 20px 0px;
}
.photogallery-container {
  background: url(../images/gallery-bg.png);
  padding: 75px 0 45px 0;
}

.photogallery-container .gallery-area {
  float: none;
  width: auto;
}
.gallery-area a {
  background: #fff;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  font-size: 14px;
  padding: 5px 10px;
  position: relative;
}

.gallery-heading {
  position: absolute;
  top: -50px;
  /* z-index: 99999; */
  font-size: 10px;
  left: 10px;
}
.marquee-content span a {
  font-size: 14px;
  color: #00008b;
  background: url(../images/ico-list-bullets.jpg) no-repeat 0 25px;
  padding: 5px 0px 5px 0px;
  display: block;
  border-bottom: 1px dotted #c5c5c5;
  line-height: 1.5;
}

.releted-gallery .views-field a {
  font-size: 14px;
  color: #ffffff;
  background: url(../images/ico-list-bullets-w.jpg) no-repeat scroll 0 8px; 
  padding-left: 30px;
}
ul.phem {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 5px 20px 5px 20px;
  list-style: none;
  list-style-type: none;
 background: #f4f4f4;
}
/* 
.marquee-container {
  position: relative;
  width: 100%;
  height: 505px;
  overflow: hidden;
  background-color: #f0f0f0;
  border: none;
  font-size: 16px;
  line-height: 50px;
  background-image: none;
  box-shadow: none;
} */


b.readmore {
  margin-right: 15px;
  top: -340px;
}

.releted-gallery-container {
  width: 100%;
  background-image: none;
  padding: 15px;
  /* border: 2px dotted #058830; */
}


input#b1 {
        background: #140d37;
        border-radius: 2px;
        font-size: 10px;
        padding: 2px 10px 2px 10px;
        color: white;
        font-weight: 600;
}

.releted-gallery-container .moregallery {
  color: #04b940;
  display: inline-block;
  font-weight: 600;
  margin: 10px 15px;
  font-size: 16px;
}

.white-container .imp-link {
  display: flex;
  flex-direction: column-reverse;
}

.footer .block-title {
  margin-top: 0px;
  position: relative;
  font-size: 16px;
  padding: 10px 0 10px 0px;
  font-weight: 600;
}
.footer.ftr1 li a {
  color: black;
  font-size: 14px;
}

.footer li {
  background: url(../images/ico-list-bullets.jpg) no-repeat scroll 0 16px;
  margin-bottom: 11px;
  padding-left: 20px;
  width: 100%;
  float: none;
}
.visitor {
  padding-right: 0px;
}
.imp-link .implinkcontent {
  
  color: #9b9b9b;
  line-height: 30px;
}
.block-region.region-footer-second {
  padding-top: 30px;
}

.implink-content li {
  background: url(../images/ico-list-bullets.jpg) no-repeat scroll 0 16px;
  margin-bottom: 11px;
  padding-left: 15px;
  width: 100%;
  float: left;
}
.imp-link .implinkcontent {
   width: 100%; 
  float: left;
  color: black;
  font-size: 20px;
}
.footer-top-wrapper ul li {
  width: 50%;
  text-align: left;
  padding: 7px 0px 0 20px;
  background: #353535 !important;
  border-right: none;
  float: left;
}

.aboutus-section .field-content p {
  width: 400%;
  padding: 15px 20px 15px 20px;
  line-height: 1.9;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  font-size: 14px;
}

span.menu-text {
	 text-transform: uppercase;
	font-size: 10px;
	font-weight: 600;
	display: flex;
	margin: 190px 0px 0px -465px;
}

.external-link-popup.external-link-popup-id-default {
  position: fixed !important;
  height: auto !important;
  width: 100% !important;
  top: 0px !important;
  left: 0% !important;
  z-index: 9999;
}

div#minister-image-modal img {
  width: 90% !important;
  height: 40% !important;
  /* border-radius: 5px;
  border: 10px solid rgb(255, 255, 255);
  margin-left: -28%; */
}

div#minister-image-modal span {
  position: absolute;
  top: 20% !important;
  right: 5% !important;
  font-size: 50px !important;
  color: rgb(255, 255, 255);
  cursor: pointer;
}

div#minister-image-modal a:first-of-type {

    top: 75% !important;
    left: 5% !important;

}

div#minister-image-modal a:last-of-type {

  top: 75% !important;
  left: 15% !important;

}
.view-header .button-container .button {
  background-color: #FFFFFF;
  border: 0;
  padding: 0 10px 0px 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  cursor: pointer;
  touch-action: manipulation;
  margin-top: 10px;
  width: 315px;
}


.view-filters form#views-exposed-form-pension-circulars-page-1 {
  display: flex;
  padding-top: 25px;
  justify-content: flex-end;
  padding-bottom: 50px;
  flex-direction: column;
}
.view-header .button-container {
  margin: 0px 0px 65px 0px;
}

.stqc-certificate {
  float: inline-end;
  padding-top: 0px;
  padding-right: 20px;
}
.copyright-content {
  margin: 0px;
  padding-top: 60px;
  float: none;
  display: block;
  text-align: center;
  padding-bottom: 8px;
  width: 100%;
}

.logo-cmf a {
  display: inline-block;
  margin: 12px -200px;
  border: none;
}

div#flexCarousel .image-field {
  margin: 0 0 0px 0px;
  border-bottom: 1px solid #db4848;
  border-bottom-style: dotted;
}


.logo-cmf {
  float: left;
  padding: 20px 0 0 0;
  text-align: right;
  width: auto;
}
.footer-top-wrapper ul li a {
  color: white;
  font-size: 14px;
  list-style-type: square;
  display: list-item;
}

div#block-cmf-system-main p{
text-align: justify;
padding-bottom: 10px;
line-height: 170%;
color: black;
font-size: 14px;
/* padding: 0 25px 0 25px; */
}
.body-container p {
  text-align: justify;
  padding-bottom: 10px;
}


.node-content li {
  padding: 5px 0;
  text-align: justify;
  color: black;
  font-size: 14px;
  line-height: 25px;
}

.view-footer h1 {
  margin-top: 1rem;
  font-size: 20px;
  font-weight: 600;
}
td, th {
  padding: 10px;
  border: 1px solid #e4e4e4;
  text-align: left;
  line-height: 145%;
  font-size: 14px;
}
.pager-items {
  display: flex;
  gap: 1px;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 10px;
  justify-content: initial;
}

.pager-item {
  display: grid;
  place-content: center;
  color: var(--bold-color);
  height: 30px;
  min-width: 32px;
  border-radius: 4px;
  border: 1px solid var(--bold-color);
}

.pager-item a {
  display: grid;
  place-content: center;
  height: 30px;
  min-width: 30px;
  font-size: 10px;
}
.pager__item a:hover, .pager__item.is-active a {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: #ffffff;
  border-radius: 4px;
}
.view-content {
  overflow-y: scroll;
}

form#views-exposed-form-who-s-who-page-1 {
  display: flex;
  flex-direction: column;
}
.js-form-item-field-email-feedback-value {
  padding-left: 0px;
}

input#edit-submit-who-s-who {
  margin: 0px;
}
.logo p {
  text-align: justify;
  padding-bottom: 0px;
  line-height: 100%;
  color: black;
  font-size: 12px;
}

.ministercontainer .block-title {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 15px 10px 15px;
  background: lavender;
}
.aboutus-section {
   padding: 0px 0px; 
   width: 100%;
}
.aboutus-section .block-title {
  text-align: center;
  position: relative;
  color: #0b0002;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 15px 15px 15px;
  text-shadow: none;
  margin-bottom: 0px;
  box-shadow: none;
  border-bottom: 2px solid #a22424;
  border-bottom-style: dotted;
  background: #f1f4f9;
  margin-top: 20px;
}

.field--type-text-with-summary.field--label-hidden.field-item h3 {
  color: #271c68;
  font-weight: 600;
  font-size: 22px;
  margin-top: 10px;
}

.field--type-text-with-summary.field--label-hidden.field-item h4 > b {
  color: #271c68;
  font-weight: 600;
  font-size: 20px;
  margin-top: 10px;
}

.photogallery-container .views-view-grid .views-col {
  float: left;
  width: 100% !important;
}
.modal-content {
  margin: 85% auto !important;
  display: flex;
  justify-content: center;
}



/* Next & Previous Buttons */
.prev, .next {
  cursor: pointer;
  position: relative !important;
  top: -25% !important;
  width: auto;
  padding: 20px;
  color: #fff;
  font-weight: bold;
  font-size: 25px;
  transition: 0.3s;
  user-select: none;
  background-color: rgb(93 93 93 / 50%);
}

img#modal-image {
  width: 90%;
  height: 40vh !important;
}
form#webform-submission-feedback1-add-form textarea#edit-feedback-suggestion {
  height: 100%;
    width: 100%;
}
form#webform-submission-feedback1-add-form input#edit-contact-no-phone {
  width: 100%;
}

form#webform-submission-feedback1-add-form input#edit-e-mail-address {
  width: 100%;
}

form#webform-submission-feedback1-add-form input#edit-name {
  padding: 10px 10px 10px 7px;
  width: 100%;
}

}


.ministryPanel ul li:nth-child(2) {
    margin-left: 0px;
    cursor: pointer;
    margin-top: 10px;
}



a.tiranga-logo {
     border-right: 1px solid #bbbbbb;
     padding: 15px 0px 20px 0px;
}

.right-content.clearfix a.sw-logo.G20 {
  width: 150px;
  padding: 0 30px 0 30px;
}
.right-content.clearfix a.sw-logo.bharat {
  width: 180px;
  position: absolute;
  padding: 0px 0px 0 30px;
}
a.sw-logo.G20 {
    border-right: 1px solid #bbbbbb;
    margin-left: 0px;
}

.common-right ul li:not(:last-child):after{
  content: "";
  position: absolute;
  right: 0px;
  top: 3px;
  height: 30px;
}



.track span.field-content a {
  font-size: 16px;
  color: black;
  background: url(../images/icons33.png) no-repeat 0 25px;
  border-bottom: 1px solid #ca2121;
  padding: 20px 0px 15px 35px;
}

.archive-section {
  float: right;
  margin-top: -80px;
  padding-right: 10px;
  display: none;
}
.archive-section h1 {
  font-size: 30px;
  font-weight: 600;
  color: #034414;
  border-left: 1px solid;
  padding-left: 350px;
  text-transform: uppercase;
  display: none;
}
.view-filters .views-exposed-form {
  display: flex;
  /* padding-top: 20px; */
  justify-content: flex-end;
}
.view-filters div#edit-actions {
  font-size: 16px;
  height: 0px;
  padding: 0px 0px 0 0px;
}

.view-filters input#edit-submit-documents {
  /* padding: 7px 25px 7px 25px;
  border-radius: 5px; */
  margin-top: 30px;
}
.view-filters input#edit-submit-documents:hover {
  padding: 7px 25px 7px 25px;
  border-radius: 5px;
  border: 1px solid #dcdcd4;
  background-color: #1c9572;
  color: white;
}
.view-filters .form-item label {
  display: block;
}

/* External Link Pop-ups  CSS */
.external-link-popup.external-link-popup-id-default {
  position: fixed ;
  height: auto ;
  width: 35% ;
  top: 0px;
  left: 30% ;
  z-index: 9999;
}
.ui-dialog-titlebar.ui-corner-all.ui-widget-header.ui-helper-clearfix {
  background-color: #ededed;
  color: black;
}
.external-link-popup div#ui-id-1 {
  background-color: #ffffff;
}
.external-link-popup.ui-dialog .ui-dialog-buttonpane {
  background-color: #ededed;
      margin-top: .1em;
}


.track span.field-content :hover {

  color: #f50909;

}

.ministercontainer .image-field-container:first-of-type .image-field {
  /* Styles for the first image */
  width: 200px;
  height: auto;
}

.ministercontainer .image-field-container:nth-of-type(2) .image-field {
  /* Styles for the second image */
  width: 50px;
  height: auto;
}

.view-header .button-container .button {
  background-color: #FFFFFF;
  border: 0;
  border-radius: .5rem;
  box-sizing: border-box;
  padding: 0 25px 0px 25px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  cursor: pointer;
  touch-action: manipulation;
    }

  /* Image Gallery */
.gallery-holder .image-field {
  cursor: pointer;
}


div#flexCarousel .views-view-grid .views-col{
  display: flex;
}


/* Modal */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 95%);
}

/* Modal Content */
.modal-content {
  margin: 5% auto;
  display: flex;
  justify-content: center;
  position: relative;
  text-align: center;
}


img#modal-image {
  height: 80vh;
  border-radius: 5px;
  BORDER: 10px solid #fff;
}

/* Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 0px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  background-color: rgb(93 93 93 / 50%);
  padding: 0 15px 0 15px;
}

/* Next & Previous Buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 45%;
  width: auto;
  padding: 20px;
  color: #fff;
  font-weight: bold;
  font-size: 25px;
  transition: 0.3s;
  user-select: none;
  background-color: rgb(93 93 93 / 50%);
}

.next {
  right: 0;

}

.prev {
  left: 0;

}

.modal-title {
  position: absolute;
  bottom: 20px; /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  width: 500px;
}

article.node.node-type-photo-gallery.node-view-mode-full img.image-field{
  padding: 15px 0px 15px 0px !important;
  border-bottom: 1px dotted #b8c0bb;
  width: 100% !important;
  height: 100% !important;

}


/* Breadcrumb Design Code */


/* Breadcrumb
--------------------------*/

.block-region.region-breadcrumb {
  background: #e3e1e3;
  text-align: center;
  padding: 30px 20px;
}

.breadcrumb-items {
  margin: 0;
  padding: 0;
  list-style: none;
  /* display: flex; */
  align-items: center;
  flex-wrap: wrap;
}

ol.breadcrumb-items li {
  color: black;
  display: inline-block;
  font-size: 14px;

}
ol.breadcrumb-items li:last-child {
 border-right: none;
}


.breadcrumb-item-seperator {
  margin: 0 10px;
}
#breadcrumb {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 30px 0;
    z-index: 2;
    background: white;
}

.breadcrumb ol li a {
  color: #b51a1a;
  font-weight: bold;
  display: inline-block;
  /* padding: 0 10px; */
  font-size: 14px;
}

.breadcrumb-container {
  padding: 10px 0;
  background-color: #f5f5f5;
}

.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid;
  color: #ddccb699;
  padding-bottom: 15px;
}

.breadcrumb li {
  position: relative;
  margin-right: 25px;
}

.breadcrumb li:not(:last-child):after {
  content: "»";
  position: absolute;
  right: -20px;
}


.breadcrumb li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.breadcrumb li a:hover {
  color: #007aff; /* Highlight color on hover */
}

/* Icon for the home link */
.breadcrumb .home-icon::before {
  content: "🏠"; /* Unicode for home icon */
  margin-right: 5px;
}

.view-filters input#edit-submit-sanctions {
  margin-top: 30px;
}
.view-filters input#edit-submit-pension-circulars {
  margin-top: 3px;
}


/* End Breadcrumb Design Code */

@media only screen and (max-width: 768px) {
  .view-filters input#edit-submit-sanctions {
      margin-top: 0px; 
      }

  .view-filters div#edit-actions {
    font-size: 16px;
    height: 0px;
    padding: 0px 0px 10px 0px;
  }

  .view-filters .views-exposed-form {
    display: flex;
    padding-top: 25px;
    padding-bottom: 50px;
    flex-direction: column;
  }
  

  .view-filters input#edit-title {
    padding: 5px 10px 5px 10px;
    line-height: 1.8;
    width: 315px;
  }
  div#block-cmf-system-main h2 {
    color: #271c68;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
}

.modal-title {
  position: absolute;
  bottom: 5%;
  left: 75px;
  transform: translateX(-15%);
  color: white;
  background-color: rgb(0 0 0 / 81%);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  width: auto;
}

.view-media-gallery .views-view-responsive-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
}

.breadcrumb ol li a {
  color: #bc1a1a;
  font-weight: bold;
  display: inline-block;
}
.breadcrumb li:not(:last-child):after {
  content: "»";
  position: absolute;
  right: -15px;
}
.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid;
  color: #ddccb699;
  padding-bottom: 15px;
}
.view-filters input#edit-submit-documents {
  margin-top: 0px;
}

.view-filters input#edit-submit-pension-circulars {
  margin-top: 0px;
}

.container.whats-new-container {
  display: contents;
}
}


