@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  /* 1 */
}

html {
  font-family: sans-serif;
  /* 2 */
  line-height: 1.15;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 4 */
  -ms-text-size-adjust: 100%;
  /* 4 */
  -ms-overflow-style: scrollbar;
  /* 5 */
  -webkit-tap-highlight-color: transparent;
  /* 6 */
  scroll-behavior: smooth;
}

/* IE10+ doesn't honor `<meta name="viewport">` in some cases. */
/* stylelint-disable selector-list-comma-newline-after
Shim for "new" HTML5 structural elements to display correctly (IE10, older browsers) */
article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

/*
Body
1. Remove the margin in all browsers.
2. As a best practice, apply a default `background-color`.
3. Set an explicit initial text-align value so that we can later use the `inherit` value on things like `<th>` elements.
*/
body {
  margin: 0;
  /* 1 */
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  /* 3 */
  background-color: #fff;
  font-family: "Nunito Sans", sans-serif;
  /* 2 */
}

/*
Suppress the focus outline on elements that cannot be accessed via keyboard.
This prevents an unwanted focus outline from appearing around elements that might still respond to pointer events.
Credit: https://github.com/suitcss/base
*/
[tabindex="-1"]:focus {
  outline: none !important;
}

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

/* 
Typography
*/
/* 
Remove top margins from headings
By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top margin for easier control within type scales as it avoids margin collapsing.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/*
Reset margins on paragraphs
Similarly, the top margin on `<p>`s get reset. However, we also reset the bottom margin to use `rem` units instead of `em`.
*/
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/*
Abbreviations
1. Remove the bottom border in Firefox 39-.
2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
3. Add explicit cursor to indicate changed behavior.
4. Duplicate behavior to the data-* attribute for our tooltip plugin
*/
abbr[title],
abbr[data-original-title] {
  /* 4 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
  cursor: help;
  /* 3 */
  border-bottom: 0;
  /* 1 */
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

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

dt {
  font-weight: bold;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
  /* Undo browser default */
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
  /* Add the correct font style in Android 4.3- */
}

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Links
*/
a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  /* Remove the gray background on active links in IE 10. */
  -webkit-text-decoration-skip: objects;
  /* Remove gaps in links underline in iOS 8+ and Safari 8+. */
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/*
And undo these styles for placeholder links/named anchors (without href) which have not been made explicitly keyboard-focusable (without tabindex). It would be more straightforward to just use a[href] in previous block, but that causes specificity issues in many other styles that are too complex to fix.
See https://github.com/twbs/bootstrap/issues/19402
*/
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

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

pre {
  /* Remove browser default top margin */
  margin-top: 0;
  /* Reset browser default of `1em` to use `rem`s */
  margin-bottom: 1rem;
  /* Don't allow content to break outside */
  overflow: auto;
  /* We have @viewport set which causes scrollbars to overlap content in IE11 and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to counteract. */
  -ms-overflow-style: scrollbar;
}

/*
Figures
*/
figure {
  /* Apply a consistent margin strategy (matches our type styles). */
  margin: 0 0 1rem;
}

/*
Images and content
*/
img {
  vertical-align: middle;
  border-style: none;
  /* Remove the border on images inside links in IE 10-. */
}

svg:not(:root) {
  overflow: hidden;
  /* Hide the overflow in IE */
}

/*
Avoid 300ms click delay on touch devices that support the `touch-action` CSS property.
In particular, unlike most other browsers, IE11+Edge on Windows 10 on touch devices and IE Mobile 10-11 DON'T remove the click delay when `<meta name="viewport" content="width=device-width">` is present. However, they DO support removing the click delay via `touch-action: manipulation`.
See:
* https://getbootstrap.com/docs/4.0/content/reboot/#click-delay-optimization-for-touch
* https://caniuse.com/#feat=css-touch-action
*  https://patrickhlauke.github.io/touch/tests/results/#suppressing-300ms-delay
*/
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

/*
Tables
*/
table {
  border-collapse: collapse;
  /* Prevent double borders */
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #868e96;
  text-align: left;
  caption-side: bottom;
}

th {
  /* Matches default `<td>` alignment by inheriting from the `<body>`, or the closest parent with a set `text-align`. */
  text-align: inherit;
}

/*
Forms
*/
label {
  /* Allow labels to use `margin` for spacing. */
  display: inline-block;
  margin-bottom: 0.5rem;
}

/*
Remove the default `border-radius` that macOS Chrome adds.
Details at https://github.com/twbs/bootstrap/issues/24093
*/
button {
  border-radius: 0;
}

/*
Work around a Firefox/IE bug where the transparent `button` background results in a loss of the default `button` focus styles.
Credit: https://github.com/suitcss/base/
*/
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  /* Remove the margin in Firefox and Safari */
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

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

button,
select {
  text-transform: none;
  /* Remove the inheritance of text transform in Firefox */
}

/*
1. Prevent a WebKit bug where (2) destroys native `audio` and `video` controls in Android 4.
2. Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/*
Remove inner border and padding from Firefox, but don't restore the outline like Normalize.
*/
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

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

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  /* 
  Remove the default appearance of temporal inputs to avoid a Mobile Safari bug where setting a custom line-height prevents text from being vertically centered within the input.

  See https://bugs.webkit.org/show_bug.cgi?id=139848
  and https://github.com/twbs/bootstrap/issues/11266
  */
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  /* Remove the default vertical scrollbar in IE. */
  /* Textareas should really only resize vertically so they don't break their (horizontal) containers. */
  resize: vertical;
}

fieldset {
  /* 
  Browsers set a default `min-width: min-content;` on fieldsets, unlike e.g. `<div>`s, which have `min-width: 0;` by default. So we reset that to ensure fieldsets behave more like a standard block element.

  See https://github.com/twbs/bootstrap/issues/12359
  and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements  
  */
  min-width: 0;
  /* Reset the default outline behavior of fieldsets so they don't affect page layout. */
  padding: 0;
  margin: 0;
  border: 0;
}

/*
1. Correct the text wrapping in Edge and IE.
2. Correct the color inheritance from `fieldset` elements in IE.
*/
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  /* 1 */
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */
}

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

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

[type=search] {
  /* 
  This overrides the extra rounded corners on search inputs in iOS so that our `.form-control` class can properly style them. Note that this cannot simply be added to `.form-control` as it's not specific enough. 

  For details, see https://github.com/twbs/bootstrap/issues/11586.
  */
  outline-offset: -2px;
  -webkit-appearance: none;
}

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

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

/*
Correct element displays
*/
output {
  display: inline-block;
}

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

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

/* 
Always hide an element with the `hidden` HTML attribute (from PureCSS).
Needed for proper display in IE 10-.
*/
[hidden] {
  display: none !important;
}

#header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  background: white;
}
#header .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 2rem;
  width: 100%;
  background: #f8f8f8;
  color: #000;
  border-bottom: 1px solid #eee;
}
#header .top_menu .marque {
  width: 58%;
  background: #f8f8f8;
  color: #000;
  border-radius: 10px;
  padding: 2px;
  border: 1px solid #eee;
}
#header .top_menu .marque marquee {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .top_menu .marque marquee a {
  color: #ff0844 !important;
}
#header .top_menu .menu ul {
  margin: 0;
  display: flex;
  padding: 0;
}
#header .top_menu .menu ul li {
  display: flex;
  margin: 0 10px;
}
#header .top_menu .menu ul li a {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .top_menu .menu ul li a span {
  background: #c0392b;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  margin-right: 10px;
}
#header .menu-area {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#header .menu-area .logo {
  width: 18%;
}
#header .menu-area .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .menu-area .logo a img {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 3px;
}
#header .menu-area .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 65%;
  padding: 0;
}
#header .menu-area .menu li {
  display: flex;
  margin: 0 1rem;
}
#header .menu-area .menu li a {
  color: #0b3d62;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.4s;
}
#header .menu-area .menu li a:hover {
  color: #c0392b;
  text-decoration: underline;
}
#header .menu-area .hambruerMenu {
  color: #000;
  font-weight: 800;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .menu-area .hambruerMenu .openbtn {
  background: linear-gradient(to top, #c0392b 0%, #c0392b 100%);
  width: 50px;
  height: 50px;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-left: 11px;
}
#header .menu-area .hambruerMenu .openbtn .openbtn-area {
  transition: all 0.4s;
}
#header .menu-area .hambruerMenu .openbtn span {
  position: absolute;
  background: #fff;
  display: inline-block;
  border-radius: 3px;
  left: 13px;
  height: 3px;
  transition: all 0.4s;
  width: 50%;
}
#header .menu-area .hambruerMenu .openbtn span:nth-of-type(1) {
  top: 16px;
}
#header .menu-area .hambruerMenu .openbtn span:nth-of-type(2) {
  top: 24px;
}
#header .menu-area .hambruerMenu .openbtn span:nth-of-type(3) {
  top: 32px;
}
#header .menu-area .hambruerMenu .openbtn.active .openbtn-area {
  transform: rotatex(360deg);
}
#header .menu-area .hambruerMenu .openbtn.active span:nth-of-type(1) {
  width: 45%;
  top: 18px;
  left: 14px;
  transform: translateY(6px) rotate(-135deg);
}
#header .menu-area .hambruerMenu .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
#header .menu-area .hambruerMenu .openbtn.active span:nth-of-type(3) {
  width: 45%;
  top: 30px;
  left: 14px;
  transform: translateY(-6px) rotate(135deg);
}

#main_hamburger_menu {
  width: 100vw;
  height: 100vh;
  background: #005ea6;
  position: fixed;
  top: 0;
  left: -100vw;
  z-index: 99999999;
  transition: left 0.5s ease-in-out;
}
#main_hamburger_menu .wireframe_logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#main_hamburger_menu .wireframe_logo img {
  filter: brightness(0) invert(1);
  width: 50%;
  opacity: 0.5;
}
#main_hamburger_menu .inner_hambguer_menu {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 11;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 3rem;
  flex-direction: column;
}
#main_hamburger_menu .inner_hambguer_menu .button_grid_inner {
  display: flex;
  margin-bottom: 3rem;
}
#main_hamburger_menu .inner_hambguer_menu .button_grid_inner a {
  background: transparent;
  border: 1px solid #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.5em 1em;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.5s ease all;
  z-index: 2;
  width: 300px;
  display: flex;
  height: 43px;
  justify-content: center;
  align-items: center;
  margin-right: 2rem;
  transition: all 0.4s;
}
#main_hamburger_menu .inner_hambguer_menu .button_grid_inner a::after {
  content: "";
  transition: all 0.4s;
  position: absolute;
  width: 0;
  height: 100%;
  background: #fff;
  left: 0;
  top: 0;
  z-index: -1;
}
#main_hamburger_menu .inner_hambguer_menu .button_grid_inner a:hover {
  color: #000 !important;
  text-decoration: none;
}
#main_hamburger_menu .inner_hambguer_menu .button_grid_inner a:hover::after {
  width: 100% !important;
}
#main_hamburger_menu .inner_hambguer_menu ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  width: 20%;
}
#main_hamburger_menu .inner_hambguer_menu ul li {
  display: flex;
}
#main_hamburger_menu .inner_hambguer_menu ul li a {
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
  height: 55px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-transform: uppercase;
  transition: all 0.4s;
  opacity: 0.6;
  text-decoration: none;
}
#main_hamburger_menu .inner_hambguer_menu ul li a:hover {
  opacity: 1 !important;
}

.close {
  position: absolute !important;
  right: 6% !important;
  color: #fff;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  cursor: pointer;
}
.close span {
  font-size: 1.3rem;
  margin-right: 10px;
  margin-left: 10px;
}
.close:hover {
  color: #fff;
}

.openMainMenu {
  left: 0 !important;
}

.dropdown-menu a {
  display: flex;
  width: 100%;
}

.dropdown-menu.show {
  display: block;
  transform: translate3d(0px, 23px, 0px) !important;
  width: 300px;
}
.dropdown-menu.show li {
  height: 45px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #ccc;
}
.dropdown-menu.show li a {
  color: #000 !important;
  text-shadow: 0 0 black !important;
  font-size: 13px !important;
}

.owl-dots {
  display: none !important;
}

#hero {
  height: 120vh;
  overflow: hidden;
  position: relative;
  padding-top: 130px;
}
#hero .hero_sec::after {
  content: "";
}
#hero .owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
#hero .owl-nav button {
  width: 40px;
  height: 40px;
  background-image: linear-gradient(to top, #ff0844 0%, #ec3337 100%);
  border-radius: 50%;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#hero .owl-nav button span {
  font-size: 30px;
  position: relative;
  top: -4px;
  color: #fff;
}
#hero .owl-nav button.disabled {
  opacity: 0.5;
  cursor: pointer;
}

#explore {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, #c0392b 0%, #c0392b 100%);
  z-index: 999;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#explore a {
  margin: 0;
  color: #fff;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 700;
  text-decoration: none;
}
#explore a span {
  font-size: 20px;
}

.common_sec {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.table_wrapper {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #000;
}
.table_wrapper table {
  width: 100%;
}
.table_wrapper table thead tr {
  background: #035da6;
  color: #fff;
}
.table_wrapper table thead tr th {
  padding: 10px;
  text-align: left;
}
.table_wrapper table thead tr p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
}
.table_wrapper table tbody tr td {
  padding: 10px;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 300;
  text-align: left;
}
.table_wrapper table tbody tr td p {
  margin: 0;
}
.table_wrapper table tbody tr:nth-child(odd) {
  background: #fff;
}

.common_heading {
  padding-bottom: 1rem;
}
.common_heading h2 {
  font-size: 2.5rem;
  letter-spacing: 1px;
  font-weight: 900;
}
.common_heading p {
  font-size: 21px;
  letter-spacing: 1px;
  line-height: 32px;
  width: 70%;
  margin: 1rem auto;
}

.common_wrapper .full {
  width: 100%;
}
.common_wrapper p {
  font-size: 21px;
  letter-spacing: 1px;
  line-height: 32px;
}

.common_button {
  color: #fff;
  background: #c0392b;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1);
  width: 20rem;
  display: flex;
  margin: auto;
  justify-content: center;
  align-items: center;
  height: 50px;
  letter-spacing: 1px;
  font-weight: 800;
  transition: all 0.4s;
}
.common_button span {
  margin-left: 10px;
}
.common_button:hover {
  color: #fff;
  text-decoration: none;
}

.bg_gray {
  background: #f8f8f8;
}

.bg_dark {
  background: #005ea6;
}
.bg_dark .common_heading h2,
.bg_dark .common_heading p {
  color: #fff !important;
}

.addmissionOpen .common_heading {
  margin: 0;
}
.addmissionOpen .common_heading p {
  font-size: 2.3rem;
  padding: 0;
  margin: 0 auto;
}
.addmissionOpen p {
  width: 65%;
  margin: 1rem auto;
  color: #fff;
  opacity: 0.8;
}

.infra_grid {
  width: 100%;
}
.infra_grid .grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  grid-gap: 10px;
  padding: 10px;
}
.infra_grid .grid-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15), 0 3px 3px rgba(0, 0, 0, 0.15);
  margin: 0.45em;
}
.infra_grid .grid-item.large {
  grid-column: span 2;
}
.infra_grid .grid-item img {
  width: 100%;
  height: 300px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: inherit;
     object-position: inherit;
  filter: brightness(0.6);
}
.infra_grid .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  color: #000;
  padding: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  z-index: 1;
  cursor: pointer;
}
.infra_grid .overlay::after, .infra_grid .overlay::before {
  content: "";
  background: #005ea6;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: -1;
  transition: all 0.4s;
}
.infra_grid .overlay::before {
  content: "";
  transition: top 0.4s ease;
  top: 100%;
}
.infra_grid .overlay h2 {
  letter-spacing: 1px;
  display: none;
  transition: opacity 0.4s ease;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
}
.infra_grid .overlay .category {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px #0b0a0a;
}
.infra_grid .overlay:hover h2 {
  display: block !important;
}
.infra_grid .overlay:hover::before {
  top: 0%;
  opacity: 0.8;
}

#feedback .testimonial-container {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 90%;
  text-align: center;
  margin: 1rem auto;
}
#feedback .testimonial-container h2 {
  margin: 0;
  padding-bottom: 20px;
  font-size: 24px;
}
#feedback .testimonial-card {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0px;
}
#feedback .testimonial-image {
  width: 25%;
}
#feedback .testimonial-image img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}
#feedback .testimonial-content {
  text-align: left;
  width: 60%;
}
#feedback .testimonial-quote {
  font-size: 2rem;
  letter-spacing: 1px;
  color: #99060d;
  font-weight: bold;
}
#feedback .testimonial-text {
  margin: 10px 0;
  font-size: 21px;
  letter-spacing: 1px;
  line-height: 29px;
  font-style: italic;
}
#feedback .testimonial-author {
  font-weight: 800;
  margin: 0;
  font-size: 26px;
  letter-spacing: 1px;
  color: #c0392b;
}
#feedback .testimonial-role {
  color: #888888;
  margin: 0;
}
#feedback .testimonial-socials a img {
  width: 20px;
  margin: 0 5px;
}

.owl-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-nav button {
  width: 40px;
  height: 40px;
  background-image: linear-gradient(to top, #c0392b 0%, #c0392b 100%) !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  color: #fff !important;
}

.bg_dot {
  background: url(https://templatekit.tokomoo.com/schoolkit/wp-content/uploads/sites/25/2021/06/Elipse-Group.png);
  background-size: contain;
  background-position: bottom;
}

.darkHeader {
  z-index: 99999 !important;
  background: #fff !important;
  padding-bottom: 0px !important;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.darkHeader .top_menu a {
  color: #000 !important;
}
.darkHeader .menu-area {
  background: #fff;
}
.darkHeader .menu-area a,
.darkHeader .menu-area .hambruerMenu {
  color: #000 !important;
}

.cusotm_container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 20px;
}
.cusotm_container .image {
  width: 40%;
}
.cusotm_container .image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.cusotm_container .content {
  width: 48%;
}
.cusotm_container blockquote, .cusotm_container li {
  font-size: 24px;
  font-style: italic;
  color: #333;
  margin: 0 0 10px 0;
  position: relative;
  text-align: left;
}
.cusotm_container li {
  font-size: 20px !important;
}
.cusotm_container blockquote::before {
  content: "“";
  font-size: 7rem;
  position: absolute;
  left: -43px;
  top: -68px;
  color: #e53935;
}
/*
.cusotm_container p {
  font-size: 16px;
  color: #c0392b;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 27px;
  margin: 0;
  background: rgba(166, 120, 159, 0.1411764706);
  padding: 10px;
  border: 3px solid #c0392b;
  border-radius: 10px;
  text-align: left;
}
  */
.cusotm_container .common_button {
  transition: background-color 0.3s, color 0.3s;
  margin: 1rem 0;
  width: 18rem;
}

.rl {
  flex-direction: row-reverse;
  justify-content: space-evenly;
}

.footer_img {
  width: 100%;
  height: 600px;
  background-size: cover;
}

.footer {
  padding: 2rem 0;
}
.footer .footer_grid {
  width: 30% !important;
  margin: 10px 0 0 0 !important;
}
.footer .footer_grid h3 {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 1px;
}
.footer .footer_grid ul {
  margin: 0;
  padding: 0;
}
.footer .footer_grid ul li {
  display: flex;
}
.footer .footer_grid ul li a {
  color: #000;
  letter-spacing: 1px;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 2px 0;
  position: relative;
  letter-spacing: 1px;
  line-height: 27px;
  padding: 10px;
  border-radius: 10px;
  width: 100%;
}
.footer .footer_grid ul li a span {
  width: 30px;
  height: 30px;
  background: #c0392b;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  margin-right: 10px;
}
.footer .footer_grid ul li a:hover {
  background: #f8f8f8;
  text-decoration: none;
}

.footer_bottom {
  text-align: center;
  background: linear-gradient(to top, #c0392b 0%, #c0392b 100%);
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_bottom p {
  margin: 0;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
}

.wrapper_flex {
  display: flex;
}

.event-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px;
}
.event-cards .card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 10px;
  overflow: hidden;
  width: 300px;
  position: relative;
}
.event-cards .card img {
  width: 100%;
  height: auto;
}
.event-cards .date {
  background-color: #c0392b;
  color: white;
  padding: 5px 10px;
  position: absolute;
  top: 44%;
  left: 22px;
  border-radius: 4px;
  width: 60px;
  font-weight: 800;
  letter-spacing: 1px;
}
.event-cards .details {
  padding: 15px;
  padding-top: 2rem;
  position: relative;
  height: 300px;
}
.event-cards .details .common_button {
  position: absolute;
  bottom: 0;
  width: 90% !important;
  left: 0;
  transform: translate(6%, -37%);
}
.event-cards .type {
  color: #c0392b;
  font-weight: bold;
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 1px;
}
.event-cards h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 32px;
}
.event-cards .time {
  color: #666;
}

#fixed-buttons {
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 999;
  margin: 0;
  padding: 0;
}
#fixed-buttons:hover {
  right: 0;
}
#fixed-buttons li {
  display: block;
  transition: right 0.4s;
  right: -162px;
  position: absolute;
}
#fixed-buttons li:hover {
  right: 0 !important;
}
#fixed-buttons li:nth-child(1) {
  top: 20px;
}
#fixed-buttons li:nth-child(2) {
  top: 60px;
}
#fixed-buttons li:nth-child(3) {
  top: 100px;
}
#fixed-buttons li:nth-child(4) {
  top: 140px;
}
#fixed-buttons li:nth-child(5) {
  top: 180px;
}
#fixed-buttons li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 197px;
  height: 34px;
  background: #c0392b;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 900;
  transition: right 0.4s;
  font-size: 13px;
  text-decoration: none;
  border-radius: 5px;
}
#fixed-buttons li a span {
  font-size: 18px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  color: #fff;
  border-radius: 4px;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  position: relative;
  width: 94%;
  height: 400px;
  margin: auto;
  transition: all 400ms;
}

.img {
  background: var(--image) center center;
  width: 100%;
  height: 100%;
  background-size: cover;
  transition: all 400ms;
  cursor: pointer;
  position: relative;
  border: 2px solid #000;
  border-radius: 10px;
}

.gallery:hover .img {
  filter: grayscale(100%) opacity(24%);
  transition: all 400ms;
}

.gallery .img:hover {
  filter: grayscale(0%) opacity(100%);
  transition: all 400ms;
}

.gallery:has(.box-1:hover) {
  grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
}

.gallery:has(.box-2:hover) {
  grid-template-columns: 1fr 3fr 1fr 1fr 1fr;
}

.gallery:has(.box-3:hover) {
  grid-template-columns: 1fr 1fr 3fr 1fr 1fr;
}

.gallery:has(.box-4:hover) {
  grid-template-columns: 1fr 1fr 1fr 3fr 1fr;
}

.gallery:has(.box-5:hover) {
  grid-template-columns: 1fr 1fr 1fr 1fr 5fr;
}

.img:nth-child(odd) {
  transform: translateY(-1rem);
}

.img:nth-child(even) {
  transform: translateY(1rem);
}

.img::after {
  content: attr(data-text);
  position: absolute;
  background-color: #000;
  color: #fff;
  padding: 5px 8px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
  opacity: 0;
  transition: all 600ms;
}

.img:hover::after {
  bottom: 20px;
  opacity: 1;
}

@keyframes Index {
  0%, 100% {
    z-index: 1;
  }
}
#whatsapp_chat {
  position: fixed;
  width: 80px;
  height: 80px;
  bottom: 20px;
  right: 20px;
  padding: 10px;
  z-index: 9;
}
#whatsapp_chat img {
  width: 100%;
}

#app_breadcum {
  width: 100%;
  height: 400px;
  background-size: cover !important;
  background-position: top !important;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#app_breadcum::after {
  content: "";
  background: rgba(13, 13, 13, 0.5490196078);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#app_breadcum .left,
#app_breadcum .right {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: flex-end;
}
#app_breadcum .left h2,
#app_breadcum .right h2 {
  margin: 0;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 4rem;
  color: #f3f4f4;
  margin-bottom: 100px;
  text-align: center;
}
#app_breadcum .left p,
#app_breadcum .right p {
  margin: 0;
  font-size: 24px;
  color: #f3f4f4;
  letter-spacing: 1px;
  font-weight: 600;
}
#app_breadcum .left a,
#app_breadcum .right a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}
#app_breadcum .right {
  border-left: 0.5px solid #bac5c6;
  display: none;
}

.row_reverse {
  flex-direction: row-reverse;
}
.marque {
  background: #c03a2b;
  padding: 1rem 0;
}
.marque p {
  margin: 0 !important;
}

.simple_para p {
  background: transparent;
  border: none;
  color: #000;
  font-weight: 500;
}

.education_sec h2 {
  font-size: 25px !important;
  line-height: 40px !important;
}
.education_sec h3 {
  font-size: 25px !important;
  line-height: 40px !important;
  color: #fff;
  padding: 0;
  margin: 0;
  text-align: left;
  letter-spacing: 1px;
  opacity: 0.8;
}
.education_sec ul {
  padding: 0;
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
}
.education_sec ul li {
  background: #fff;
  padding: 10px;
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  margin: 10px;
  margin-top: 2rem;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 30px;
}
.education_sec ul li span {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #c03a2b;
  border-radius: 50%;
  background: #c03a2b;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  margin-top: -33px;
  margin-bottom: 11px;
}

.faq-container {
  max-width: 80%;
  margin: 0 auto;
}

.faq {
  background-color: transparent;
  border: 1px solid #A555EC;
  border-radius: 10px;
  padding: 16px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq.active {
  background-color: #FFF8C9;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.faq-title {
  margin: 0 35px 0 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
}

.faq-text {
  display: none;
  margin: 30px 0 0;
}

.faq.active .faq-text {
  display: block;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 28px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}
.faq.active .faq-text a {
  font-weight: 500;
  text-decoration: underline;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 3px;
  right: 30px;
  height: 40px;
  width: 40px;
  background: #f8f8f8;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.faq-toggle .chevron,
.faq-toggle .close {
  width: 12px;
  height: 12px;
  position: relative !important;
  left: auto;
  right: auto !important;
}

.faq-toggle .close {
  display: none;
}

.faq.active .faq-toggle .close {
  display: block;
}

.faq.active .faq-toggle .chevron {
  display: none;
}

.faq.active .faq-toggle {
  background-color: #A555EC;
  border-radius: 50%;
  color: #ffffd9;
}

.blog_detail {
  overflow: hidden;
  width: 70%;
  margin: 1rem auto;
  padding-top: 4rem;
}
.blog_detail .blog_img img {
  width: 100%;
}
.blog_detail .blog_content {
  padding: 2rem 0;
}
.blog_detail .blog_content h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 3rem;
}
.blog_detail .blog_content p {
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 300;
  line-height: 30px;
}
.blog_detail .blog_content ul li,
.blog_detail .blog_content ol li {
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 300;
  line-height: 30px;
  margin: 10px 0;
}

.form {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 3rem 0;
  position: relative;
}

.contact-form {
  background-color: #0b3d62;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #ffffff);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #0b3d62;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 10px 0;
}

.input {
  width: 100%;
  outline: none;
  border: 1px solid #fafafa;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  border-radius: 5px;
  transition: 0.3s;
  height: 59px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 13px;
  letter-spacing: 1px;
  margin: 1rem 0;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(16px);
}

.btn {
  padding: 0.6rem 1.3rem;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  transition: 0.3s;
  margin: 0;
  width: 100%;
  height: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 19px;
  background: #c03a2b;
  color: #fff;
  border: none;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
  border: 3px solid #c03a2b;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #1abc9c;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-8%);
  left: 25px;
  background: #fff;
  color: #000;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 4px 13px;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}
.contact-info ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.contact-info ul li {
  display: flex;
  padding: 10px;
  margin: 10px 0;
  background: #f8f8f8;
  border-radius: 10px;
  border: 1px solid #eee;
}
.contact-info ul li img {
  width: 31px;
  height: auto;
  margin-right: 10px;
}
.contact-info ul li a {
  color: #000;
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 700;
}

.contact-info .title {
  color: #c03a2b;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.information i {
  color: #1ABC9C;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #1abc9c, #149279);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #1abc9c;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #1cd4af, #159b80);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }
  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }
  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }
  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }
  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }
  .text {
    margin: 1rem 0 1.5rem 0;
  }
  .social-media {
    padding: 1.5rem 0 0 0;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0.5rem;
  }
  .contact-info:before {
    display: none;
  }
  .square,
  .big-circle {
    display: none;
  }
  form,
  .contact-info {
    padding: 10px;
  }
  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }
  .title {
    font-size: 1.15rem;
  }
  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .icon {
    width: 23px;
  }
  .input {
    padding: 0.45rem 1.2rem;
  }
  .btn {
    padding: 0.45rem 1.2rem;
  }
}
.curriculum {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.curriculum li {
  border-left: 3px solid #c03a2b;
  background: #fff;
  width: 31%;
  height: 170px;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: all 0.4s;
}
.curriculum li:hover {
  transform: translateY(-10px);
}
.curriculum li b {
  height: 60px;
  width: 84%;
  text-align: center;
}
.curriculum li a {
  font-size: 17px;
  color: #000;
  letter-spacing: 1px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 140px;
  width: 100%;
  position: relative;
  border: 1px solid #eee;
  transition: all 0.4s;
}
.curriculum li a::after {
  content: "";
  background: url("../img/logo.png");
  position: absolute;
  width: 50%;
  height: 100%;
  opacity: 0.8;
  left: 50%;
  top: 63%;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
}

.img_gallery {
  flex-wrap: wrap;
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
}
.img_gallery a {
  width: 23%;
  overflow: hidden;
  display: flex;
  height: 360px;
  margin: 10px;
  border: 1px solid #eee;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  background: #fff;
  padding: 7px;
  border-radius: 10px;
  flex-direction: column;
}
.img_gallery a img {
  width: 100%;
}
.img_gallery a p {
  font-size: 13px;
  line-height: 22px;
  width: 100%;
  padding: 10px;
  color: #000;
}

.video-gallery-container,
.video-gallery-container * {
  box-sizing: border-box;
}

.video-gallery-container h2.title {
  text-align: center;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 34px;
  margin-bottom: 24px;
}

.video-gallery-container .video-gallery {
  display: flex;
  background: #02151e;
  justify-content: center;
  padding: 16px;
  padding-top: 24px;
  gap: 24px;
  color: #fff;
}

.video-gallery h3.video-title {
  line-height: 1.6;
  font-weight: 700;
  font-size: 20px;
  width: 100%;
}

.video-gallery .thumbnail {
  height: 120px;
  cursor: pointer;
}

.video-gallery .video {
  position: relative;
}

.video-gallery .video:hover .play-icon {
  opacity: 1;
}

.video-gallery .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms ease;
}

.video-gallery .video .play-icon img {
  height: 50px;
  width: 50px;
}

.video-gallery .all-videos {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-gallery .responsive-iframe {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  padding-bottom: 30px;
}

.video-gallery .responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .video-gallery-container {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .video-gallery-container .video-gallery {
    flex-direction: column;
  }
  .video-gallery .all-videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .video-gallery .thumbnail {
    height: unset;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .video-gallery .all-videos {
    grid-template-columns: 1fr;
  }
  .video-gallery-container {
    max-width: 400px;
  }
  .video-gallery-container h2.title {
    font-size: 24px;
    font-weight: bold;
  }
}
.video_gallery {
  width: 100%;
}
.video_gallery .video-gallery-container {
  width: 100%;
  font-family: "Roboto", sans-serif;
  background: #ffd166;
  padding: 8px 0 0 0;
  margin: 0 auto;
}
.video_gallery .video-gallery-container .featured-video {
  width: 70%;
}
.video_gallery .video-gallery-container .grid {
  width: 30%;
}
.video_gallery .video-gallery-container .grid ul {
  margin: 0;
  padding: 0;
}
.video_gallery .video-gallery-container .grid ul li {
  display: flex;
  background: #fff;
  padding: 6px;
  margin: 10px 0;
  cursor: pointer;
}

blockquote {
  padding: 0;
  margin: 0;
}

section.t-bq-section {
  width: 48%;
  margin: 0.6rem;
}

.t-bq-wrapper.t-bq-wrapper-boxed {
  max-width: 100%;
  margin: 0 auto;
}

.t-bq-wrapper.t-bq-wrapper-fullwidth {
  max-width: 100%;
}

.feedback_grid {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
}

.t-bq-quote-paul {
  position: relative;
  display: flex;
  flex-direction: row;
  min-height: 250px;
  box-shadow: 2px 2px 25px #cecece;
  border-radius: 10px;
}

.t-bq-quote-paul .t-bq-quote-paul-pattern {
  flex-basis: 80px;
  background: #005ea6;
  border-radius: 10px 0 0 10px;
}

.t-bq-quote-paul .t-bq-quote-paul-base {
  flex-basis: calc(100% - 80px);
  background: #ffffff;
  padding: 40px 30px 50px 80px;
  font-size: 11pt;
  line-height: 1.62em;
  border-radius: 0 10px 10px 0;
}

.t-bq-quote-paul .t-bq-quote-paul-qmark {
  position: absolute;
  top: 37px;
  left: 105px;
  font-size: 42pt;
  color: #5dbb53;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.t-bq-quote-paul-text {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 27px;
}

.t-bq-quote-paul .t-bq-quote-paul-userpic {
  position: absolute;
  top: 120px;
  left: 11px;
  width: 133px;
  height: auto;
  border-radius: 10px;
  background: #c0382c;
  overflow: hidden;
  padding: 6px;
}
.t-bq-quote-paul .t-bq-quote-paul-userpic img {
  width: 100%;
}

.t-bq-quote-paul .t-bq-quote-paul-meta {
  margin-top: 30px;
  padding-top: 10px;
  border-top: 2px dotted #777777;
}

.t-bq-quote-paul .t-bq-quote-paul-meta .t-bq-quote-paul-author,
.t-bq-quote-paul .t-bq-quote-paul-meta .t-bq-quote-paul-source {
  color: #777777;
}

.t-bq-quote-paul .t-bq-quote-paul-meta .t-bq-quote-paul-author {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 10pt;
  font-weight: bold;
}

.t-bq-quote-paul .t-bq-quote-paul-meta .t-bq-quote-paul-author cite {
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
  color: #c03a2b;
}

.t-bq-quote-paul .t-bq-quote-paul-meta .t-bq-quote-paul-source {
  font-size: 9pt;
}

/* ========== 06. Jasper ========== */
.t-bq-quote-jasper {
  position: relative;
  box-shadow: 2px 2px 25px #cecece;
  border-radius: 10px;
}

.t-bq-quote-jasper .t-bq-quote-jasper-pattern {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 80px;
  align-items: center;
  justify-content: flex-start;
  background: url("https://raw.githubusercontent.com/taviskaron/t-div-blockquotes/main/img/hexabump.png") repeat;
  border-radius: 10px 10px 0 0;
}

.t-bq-quote-jasper .t-bq-quote-jasper-pattern .t-bq-quote-jasper-qmark {
  flex-basis: 100px;
  font-family: Garamond, Georgia, "Times New Roman", serif;
  font-size: 60pt;
  color: #999999;
  text-align: center;
  height: 80px;
  line-height: 90pt;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.t-bq-quote-jasper .t-bq-quote-jasper-userpic {
  position: absolute;
  top: 45px;
  left: calc(50% - 35px);
  width: 70px;
  height: 70px;
  background: url("https://raw.githubusercontent.com/taviskaron/t-div-blockquotes/main/img/strug.jpg") center center no-repeat;
  background-size: cover;
  border-radius: 50%;
}

.t-bq-quote-jasper .t-bq-quote-jasper-base {
  background: #ffffff;
  padding: 60px;
  font-size: 11pt;
  line-height: 1.62em;
  border-radius: 0 0 10px 10px;
}

.t-bq-quote-jasper .t-bq-quote-jasper-meta {
  margin-top: 30px;
  padding-top: 10px;
  border-top: 2px dotted #777777;
  text-align: center;
}

.t-bq-quote-jasper .t-bq-quote-jasper-meta .t-bq-quote-jasper-author,
.t-bq-quote-jasper .t-bq-quote-jasper-meta .t-bq-quote-jasper-source {
  color: #777777;
}

.t-bq-quote-jasper .t-bq-quote-jasper-meta .t-bq-quote-jasper-author {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 10pt;
  font-weight: bold;
}

.t-bq-quote-jasper .t-bq-quote-jasper-meta .t-bq-quote-jasper-author cite {
  font-style: normal;
}

.t-bq-quote-jasper .t-bq-quote-jasper-meta .t-bq-quote-jasper-source {
  font-size: 9pt;
}

@media screen and (max-width: 768px) {
  .t-bq-quote-jasper .t-bq-quote-jasper-base {
    padding-left: 30px;
  }
}
/* ========== 07. Horace ========== */
.t-bq-quote-horace {
  position: relative;
  min-height: 250px;
  border-radius: 10px;
  box-shadow: 2px 2px 25px #cecece;
}

.t-bq-quote-horace .t-bq-quote-horace-base {
  background: url("https://raw.githubusercontent.com/taviskaron/t-div-blockquotes/main/img/hexabump.png") repeat;
  color: #ffffff;
  font-weight: bold;
  padding: 60px;
  border-radius: 10px;
}

.t-bq-quote-horace .t-bq-quote-horace-meta {
  display: flex;
  flex-direction: row;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px dotted #ffffff;
}

.t-bq-quote-horace .t-bq-quote-horace-meta .t-bq-quote-horace-author {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 10pt;
  font-weight: bold;
}

.t-bq-quote-horace .t-bq-quote-horace-meta .t-bq-quote-horace-author cite {
  font-style: normal;
}

.t-bq-quote-horace .t-bq-quote-horace-meta .t-bq-quote-horace-source {
  font-size: 10pt;
}

.t-bq-quote-horace .t-bq-quote-horace-qmark {
  position: absolute;
  top: 140px;
  right: 5px;
  font-size: 280pt;
  color: #ffffff;
  opacity: 0.17;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.t-bq-quote-horace .t-bq-quote-horace-userpic {
  width: 70px;
  height: 70px;
  background: url("https://raw.githubusercontent.com/taviskaron/t-div-blockquotes/main/img/strug.jpg") center center no-repeat;
  background-size: cover;
  border-radius: 50%;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .t-bq-quote-horace .t-bq-quote-horace-base {
    padding-left: 40px;
    padding-right: 40px;
  }
  .t-bq-quote-horace .t-bq-quote-horace-meta {
    flex-direction: column;
    text-align: center;
  }
  .t-bq-quote-horace .t-bq-quote-horace-meta .t-bq-quote-horace-userpic {
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
.hideInWeb {
  display: none !important;
}

.partners_grid {
  width: 100%;
  display: flex;
}
.partners_grid ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.partners_grid ul li {
  width: 18%;
  height: 144px;
  background: #f8f8f8;
  display: flex;
  border: 1px solid #000;
  padding: 10px;
  border-radius: 10px;
}
.partners_grid ul li img {
  width: 100%;
}

#tabs {
  width: 100%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 10px;
}
#tabs ul {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
#tabs ul li {
  display: flex;
  margin-right: 1.5rem;
  padding-bottom: 7px;
}
#tabs ul li a {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.4s;
}
#tabs ul li a:hover {
  color: #c0382a !important;
}

.activeTab {
  border-bottom: 3px solid #c0382a;
}
.activeTab a {
  color: #c0382a !important;
}

.card_grid .custon_gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.card_grid .custon_gallery a {
  width: 300px;
  display: flex;
  overflow: hidden;
  margin: 10px;
  padding: 10px;
  background: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  flex-direction: column;
}
.card_grid .custon_gallery a img {
  width: 100%;
  height: 230px;
}
.card_grid .custon_gallery a h4 {
  margin: 10px 0;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 27px;
  color: #c03a2b;
  font-weight: bold;
}

.yt_video_gallery {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.yt_video_gallery .iframe {
  width: 31%;
  margin: 10px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border: 1px solid #eee;
}

.content_descriptions p {
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 27px;
  width: 80%;
  margin: 10px auto;
}
.content_descriptions .img_grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  width: 90%;
  margin: auto;
}
.content_descriptions .img_grid img {
  width: 48%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 10px;
  border: 1px solid #eee;
  padding: 10px;
  background: #f8f8f8;
}

.tab-container {
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  filter: drop-shadow(2px 4px 6px #e0e0e0);
  width: 90%;
}

.tabs {
  display: flex;
  gap: 1.4rem;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}
.tabs .tab {
  padding: 18px 20px;
  text-align: center;
  cursor: pointer;
  background: white !important;
  border: none;
  outline: none;
  color: #333;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 32%;
  font-size: 21px;
  letter-spacing: 1px;
}
.tabs .tab:last-child {
  margin-right: 0;
}
.tabs .tab.active {
  border: 1px solid transparent;
  border-bottom: 4px solid #e83335;
  font-weight: bold;
  position: relative;
  top: 1px;
  color: #e83335;
}
.tabs .tab:hover:not(.active) {
  border: 1px solid transparent;
  background-color: #e2e1e1;
  border-bottom: 2px solid #989797;
}

.tab-content {
  background: #fff;
  padding: 20px;
  min-height: 100px;
}
.tab-content .filters {
  display: flex;
  align-items: center;
  gap: 20px;
}
.tab-content .filters .filter {
  display: flex;
  flex-direction: column;
}
.tab-content .filters .filter label {
  font-size: 15px;
  padding-bottom: 2px;
}
.tab-content .filters .filter select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  color: #333;
  width: 200px;
}
.tab-content .filters .btn {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  margin-left: auto;
  margin-top: 20px;
}
.tab-content .filters .btn.primary {
  background: #007bff;
  color: #fff;
  margin-right: 20px;
}
.tab-content .filters .btn.clear {
  background: transparent;
  color: #007bff;
  text-decoration: underline;
}

.datesheet-container {
  width: 70%;
  margin: 10px auto;
  border-radius: 8px;
  border: 1px solid #eee;
  height: 400px;
  background: #f8f8f8;
  overflow: hidden scroll;
  scrollbar-width: none;
}

.datesheet-row {
  display: flex;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #f8f8f8;
  transition: background-color 0.3s;
}
.datesheet-row a {
  display: flex;
  width: 100%;
}
.datesheet-row a .details {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding-left: 20px;
  font-size: 20px;
  letter-spacing: 1px;
  color: #000;
  font-weight: 600;
}

.datesheet-row:hover {
  background-color: #fff;
}

.date {
  width: 100px;
  background-color: #c1392b;
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: 8px 0 0 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.day {
  font-size: 24px;
  font-weight: bold;
}

.month-year {
  font-size: 14px;
}

.datesheet-row:last-child {
  border-bottom: none;
}

.evetns_grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.evetns_grid .inner_gird {
  width: 32%;
}
.evetns_grid .inner_gird .heading {
  font-size: 23px;
  text-transform: capitalize;
  font-weight: 700;
  color: #c03a2b;
}
.evetns_grid .inner_gird .datesheet-container {
  width: 100% !important;
}
.evetns_grid .inner_gird .datesheet-container .date {
  background-color: #035da6;
}
.evetns_grid .inner_gird .datesheet-container .details {
  font-size: 14px;
  text-align: left;
  font-weight: 700;
}

.nested_menu {
  cursor: pointer;
  justify-content: space-between !important;
  width: 100%;
}

.tab_section {
  position: absolute;
  right: 0;
  width: 76%;
  top: 120px;
  background: #fff;
  height: 100%;
  padding: 2rem;
  border-radius: 10px;
}
.tab_section h4 {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  width: 100%;
  border-bottom: 1px solid #bfbaba;
  padding-bottom: 10px;
}
.tab_section ul {
  width: 100% !important;
}
.tab_section ul li a {
  color: #000 !important;
  font-weight: 800;
  height: 35px;
}

@media only screen and (max-width: 768px) {
  .hideInWeb {
    display: flex !important;
  }
  #header {
    position: sticky;
    top: 0;
  }
  #header .top_menu,
  #header .button_grid_inner,
  #header .menu {
    display: none !important;
  }
  #header .menu-area {
    justify-content: space-between;
  }
  #header .menu-area .logo {
    width: 40%;
  }
  #header .menu-area .hambruerMenu {
    font-size: 12px;
  }
  #header .menu-area .hambruerMenu .openbtn {
    width: 40px;
    height: 40px;
    padding: 0;
  }
  #header .menu-area .hambruerMenu .openbtn span {
    width: 75%;
    left: 5px;
  }
  #header .menu-area .hambruerMenu .openbtn span:nth-of-type(1) {
    top: 10px;
  }
  #header .menu-area .hambruerMenu .openbtn span:nth-of-type(2) {
    top: 18px;
  }
  #header .menu-area .hambruerMenu .openbtn span:nth-of-type(3) {
    top: 28px;
  }
  #main_hamburger_menu .button_grid_inner {
    display: none !important;
  }
  #main_hamburger_menu .inner_hambguer_menu {
    padding: 10px 0px 20px 0px;
  }
  #main_hamburger_menu .inner_hambguer_menu ul {
    width: 100%;
    margin-top: 1rem;
    overflow-y: scroll;
    height: 100vh;
  }
  #main_hamburger_menu .inner_hambguer_menu ul li a {
    width: 100%;
    height: 40px;
    padding: 10px;
    font-size: 11px;
    border-bottom: 1px solid rgba(238, 238, 238, 0.6117647059);
  }
  #hero {
    height: auto;
    padding-top: 0;
  }
  .tabs {
    flex-wrap: wrap;
  }
  .tabs .tab {
    width: 100% !important;
    font-size: 15px !important;
    padding: 10px;
  }
  .datesheet-container {
    width: 100%;
  }
  .datesheet-container .details {
    font-size: 13px !important;
  }
  .datesheet-container .date {
    width: 100px;
    padding: 6px;
  }
  .datesheet-container .date .day {
    font-size: 16px;
  }
  .datesheet-container .date .month-year {
    font-size: 11px;
  }
  .tab-content {
    padding: 9px;
  }
  .evetns_grid {
    flex-wrap: wrap;
  }
  .evetns_grid .inner_gird {
    width: 100%;
  }
  .partners_grid ul {
    flex-wrap: wrap;
  }
  .partners_grid ul li {
    width: 43%;
    height: 108px;
    margin: 10px;
  }
  .common_sec {
    padding: 1rem;
  }
  .tab_section {
    width: 100%;
    top: 0;
    padding: 20px;
  }
  .img_gallery a {
    width: 100% !important;
    height: auto;
  }
  .common_heading {
    padding-bottom: 2px;
    width: 100%;
  }
  .common_heading h2 {
    font-size: 20px;
  }
  .common_heading p {
    width: 100%;
    font-size: 16px !important;
    margin-top: 10px;
    line-height: 26px;
  }
  .common_wrapper p {
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 26px;
    width: 100% !important;
    margin: 10px 0 !important;
  }
  .cusotm_container {
    flex-direction: column;
    margin: 0;
  }
  .cusotm_container blockquote {
    font-size: 15px;
    line-height: 26px;
  }
  .cusotm_container blockquote::before {
    content: "“";
    font-size: 11rem;
    position: absolute;
    left: -30px;
    top: -160px;
    color: #e53935;
  }
  .cusotm_container .content,
  .cusotm_container .image {
    width: 100%;
    margin: 10px 0;
  }
  .infra_grid .grid-container {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 0;
    padding: 0;
  }
  .infra_grid .grid-item img {
    height: auto;
  }
  .infra_grid .overlay .category {
    font-size: 1.5rem;
  }
  .event-cards {
    margin: 0;
  }
  .event-cards .details {
    height: auto;
  }
  .event-cards .details .common_button {
    position: relative;
    transform: translate(0);
  }
  .gallery {
    display: flex;
    flex-wrap: wrap;
  }
  .gallery .img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transform: translate(0) !important;
    margin: 3px 0;
  }
  #feedback .testimonial-container {
    padding: 0;
    width: 100%;
  }
  #feedback .testimonial-container .testimonial-card {
    flex-direction: column;
  }
  #feedback .testimonial-container .testimonial-card .testimonial-image,
  #feedback .testimonial-container .testimonial-card .testimonial-content {
    width: 100% !important;
    padding: 20px;
  }
  .footer_img {
    height: 200px;
  }
  .wrapper_flex {
    flex-direction: column;
  }
  .wrapper_flex .footer_grid {
    width: 100% !important;
  }
  .footer_bottom p {
    font-size: 12px;
  }
  .owl-item {
    height: 0;
  }
  .owl-item.active {
    height: auto;
  }
  .testimonial-text {
    margin: 5px 0 !important;
    font-size: 15px !important;
    line-height: 24px !important;
  }
  .dropdown {
    flex-direction: column;
  }
  .dropdown .dropdown-menu {
    height: auto !important;
    background: #fff;
    color: #000;
    position: relative;
    top: 0;
    left: 0;
    width: 90% !important;
    margin: 1rem auto !important;
    display: none !important;
  }
  .dropdown .dropdown-menu a {
    color: #000 !important;
  }
  .dropdown .show {
    display: flex !important;
    position: relative !important;
    transform: translate(0) !important;
  }
  .wireframe_logo img {
    width: 93% !important;
    opacity: 0.2 !important;
  }
  #feedback .testimonial-author {
    font-size: 17px !important;
  }
  #app_breadcum {
    flex-direction: column !important;
    height: auto !important;
    padding: 10px;
  }
  #app_breadcum ::after {
    background: rgba(13, 13, 13, 0.79) !important;
  }
  #app_breadcum .left,
  #app_breadcum .right {
    width: 100%;
    padding: 5px;
    height: auto;
  }
  #app_breadcum .left h2,
  #app_breadcum .right h2 {
    font-size: 20px;
    line-height: normal;
    text-align: center;
  }
  #app_breadcum .left p,
  #app_breadcum .right p {
    font-size: 18px;
    text-align: center;
  }
  .curriculum li {
    width: 100%;
    height: auto;
  }
  .curriculum li a {
    align-items: center;
    min-height: 100px;
    height: 100px;
  }
  .curriculum li b {
    height: auto;
    width: 96%;
    text-align: center;
    font-size: 16px;
  }
  .curriculum li a::after {
    height: 65px;
    opacity: 0.3;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
  }
  .form {
    margin: 0;
    flex-direction: column;
    display: flex;
    padding: 12px !important;
  }
  .contact-info {
    padding: 12px !important;
  }
  .contact-info ul li img {
    width: 20px;
  }
  .contact-info ul li a {
    color: #000;
    font-size: 14px !important;
  }
  .contact-info .title {
    font-size: 17px;
  }
  .common_button {
    width: 100% !important;
  }
  .feedback_grid {
    padding: 10px;
  }
  .feedback_grid .t-bq-section {
    width: 100% !important;
  }
}
.filter-section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  width: 100%;
  background: #fff;
  padding: 16px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 10px;
}

.filter {
  align-items: flex-start;
  width: 24%;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.filter label {
  margin-right: 10px;
  margin-top: 10px;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
}
.filter input {
  width: 100%;
  height: 40px;
  border: 2px solid #c03a2b;
  border-radius: 10px;
  padding: 10px;
}

#button_grid {
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
#button_grid button {
  font-size: 18px;
  width: 48%;
  height: 43px;
  border: none;
  border-radius: 10px;
  margin-top: 2rem;
  letter-spacing: 1px;
}
#button_grid button:nth-child(1) {
  background: #c03a2b;
}
.calendar-btn {
  background-color: transparent;
  border: none;
  font-size: 18px;
}

.filter-btn {
  background-color: #3f51b5;
  color: white;
}

.refresh-btn {
  background-color: #4caf50;
  color: white;
}

.chronicles-title {
  font-size: 24px;
  color: #3f51b5;
  text-align: center;
  margin-bottom: 10px;
}

.divider {
  width: 50%;
  margin: 0 auto;
  border: 1px solid #f44336;
}

.chronicles-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.chronicle-card {
  width: 32%;
  padding: 20px;
  margin-bottom: 20px;
  background-color: rgba(3, 93, 166, 0.0784313725);
  border: 1px solid #f44336;
  border-radius: 8px;
  text-align: center;
  position: relative;
  font-size: 16px;
  color: #035da6;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  letter-spacing: 1px;
}
.chronicle-card .file-icon {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 14px;
  color: #fff;
  background: #c03a2b;
}

.form-container {
  background-color: white;
  padding: 10px;
  width: 27%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
}
.form-container form {
  padding: 0px 20px 20px 20px !important;
}
.form-container .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-weight: bold;
}
.form-container h2 {
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 17px;
  color: #283593;
  text-align: center;
}
.form-container .form-group {
  margin-bottom: 15px;
}
.form-container input[type=text] {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 0;
}
.form-container textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 0;
  height: 60px;
  resize: none;
}
.form-container button.submit-btn {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  background-color: #283593;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
}
.form-container button.submit-btn:hover {
  background-color: #1a237e;
}

.enqForm {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .t-bq-quote-paul .t-bq-quote-paul-pattern {
    flex-basis: 20px;
  }
  .t-bq-quote-paul .t-bq-quote-paul-base {
    flex-basis: calc(100% - 20px);
    padding: 100px 30px 50px 30px;
  }
  .t-bq-quote-paul .t-bq-quote-paul-userpic {
    width: 50px;
    height: 50px;
    left: 40px;
    top: 20px;
  }
  .t-bq-quote-paul .t-bq-quote-paul-qmark {
    left: 100px;
    top: 45px;
  }
  .form-container {
    width: 88% !important;
  }
}
#adProcess p {
  text-align: left;
  font-size: 20px;
}
#adProcess ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#adProcess ul li {
  font-size: 18px;
}
#adProcess h4 {
  text-align: left;
  font-size: 2rem;
  color: #c03a2b;
  font-weight: 900;
}/*# sourceMappingURL=style.css.map */