@charset "UTF-8";
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&amp;display=swap");

:root {
  --main-color-one: #071327;
  --heading-color: #071327;
  --secondary-color: #e50000;
  --secondary-color-two: #2e2e2e;
  --paragraph-color: #4b4b4b;
  --heading-font: "Rajdhani", sans-serif;
  --body-font: "Roboto", sans-serif;
  --animate-delay: 0.3s;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: var(--body-font);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

li {
  list-style: none;
}

button:focus,
a.btn:focus,
.btn:focus {
  outline: none;
  border: 0;
  box-shadow: none;
}

.navbar-toggler:focus {
  outline: 0;
}

input.form-control:focus {
  box-shadow: none;
}

body {
  margin: 0;
  color: var(--heading-color);
  height: 100%;
  font-family: var(--body-font);
  font-size: 14px;
}

/*::-webkit-scrollbar {*/
/*	width: 5px;*/
/*}*/

/*::-webkit-scrollbar-thumb {*/
/*	background-image: linear-gradient(125deg, #e50000 0%, #e50000 100%);*/
/*	border-radius: 10px;*/
/*}*/

h1 {
  font-size: 48px;
  line-height: 1.0833333333;
}

h2 {
  font-size: 36px;
  line-height: 1.4444444444;
}

h3 {
  font-size: 24px;
  line-height: 1.0833333333;
}

h4 {
  font-size: 20px;
  line-height: 1.2380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  text-transform: capitalize;
}

p {
  color: var(--paragraph-color);
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 10px;
  line-height: 24px;
}

a {
  color: inherit;
  text-decoration: none;
  color: var(--paragraph-color);
}

a:hover {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

li {
  list-style: none;
}

button:focus,
a.btn:focus {
  outline: none;
  border: 0;
  box-shadow: none;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

.btn.boxed-btn.read-btn {
  background: var(--secondary-color);
  height: fit-content;
  width: 110px;
  color: #fff !important;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  margin-left: 35px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

a.btn.boxed-btn.read-btn:hover {
  background: var(--secondary-color);
}

.btn.boxed-btn.read-btn::after {
  content: "";
  position: absolute;
  height: 40px;
  width: 50px;
  background: #ffffffb3;
  transform: skewX(-45deg);
  left: -100%;
  top: -2px;
  z-index: 0;
  transition: 0.5s;
}

.btn.boxed-btn.read-btn:hover::after {
  left: 200%;
}
/*=================== header area  ========================*/
/*header*/
.header {
  position: relative;
  width: 100%;
  top: 0;
  z-index: 9999;
  transition: width 0.2s, height 0.4s;
  background: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
header.header.sticky_header {
  background: #fff;
  box-shadow: 0px 5px 10px rgba(129, 129, 129, 0.5);
  animation-name: animatenav;
  animation-duration: 1s;
  animation-fill-mode: both;
  transition: 1s;
  position: fixed;
}
header.header.sticky_header .logo a img {
  width: 85px;
  transition: width 0.2s, height 0.4s;
}

@keyframes animatenav {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }
}
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: #811506;
}
/* .header .logo {
  padding: 0 15px;
} */
.logo a img {
  width: 15%;
  display: table;
  margin: auto;
  padding: 5px 0px;
}
/* .header .logo a {
	font-size: 30px;
	text-transform: capitalize;
	color: #fad525;
	font-weight: 600;
} */
.header .nav-menu {
  padding: 0 15px;
}
ul.menu {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2rem;
}
.header .menu > .menu-item {
  display: inline-block;
  /* margin-left: 30px; */
  position: relative;
}
.header .menu > .menu-item > a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: #fff;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus {
  display: inline-block;
  height: 12px;
  width: 12px;
  position: relative;
  margin-left: 5px;
  pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: #000000;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after {
  background-color: #fad525;
}
.header .menu > .menu-item > a .plus:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a {
  color: #fad525;
}
.header .menu > .menu-item > .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 220px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #ffffff;
  padding: 10px 0;
  border-top: 3px solid #fad525;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 992px) {
  .header .menu > .menu-item-has-children:hover > .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .header .menu > .menu-item-has-children:hover > a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.header .menu > .menu-item > .sub-menu > .menu-item {
  display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.header .open-nav-menu {
  height: 34px;
  width: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header .open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: #000000;
  position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  box-sizing: border-box;
}
.header .open-nav-menu span:before {
  top: -7px;
}
.header .open-nav-menu span:after {
  top: 7px;
}
.header .close-nav-menu {
  height: 40px;
  width: 40px;
  background-color: #ffffff;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.header .close-nav-menu img {
  width: 16px;
}
.header .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.close-nav-menu svg {
  height: 20px;
  width: 20px;
}
.close-nav-menu svg path {
  fill: #fad525;
}

/*=================== header area close ========================*/

/* banner  */
.navigation_linksMenu {
  background-color: #fff;
  height: 50px;
  list-style-type: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
}
.nlinks_1 {
  padding: 2px 0;
}
.container_head {
  margin: 0 auto;
  width: 90%;
}
.marquee-div {
  float: left;
  width: 100%;
}
.marquee {
  font-size: 25px;
  margin-bottom: 0;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 6px;
  vertical-align: super;
  float: left;
  width: 100%;
  font-weight: bold;
  color: #5d130e;
}

section.importent_sec {
  padding: 5rem 0rem;
  background: #20b2aa;
}

.imp_note ul {
  display: grid;
  gap: 20px;
  align-items: center;
}
.imp_note ul li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
}
span.point svg {
  height: 25px;
  width: 25px;
}
span.point svg path {
  fill: #fff;
}
p.tp {
  font-size: 17px;
  color: #fff;
  margin: 0;
}
h2.title {
  font-size: 30px;
  color: #fff;
  margin: 0px 0px 20px;
}
.login_op {
  float: right;
  width: 450px;
  margin-top: 0;
  padding: 40px 30px;
  background-color: rgba(255, 255, 255, 0.8);
}
.loginHeading {
  display: block;
  font-size: 16px;
  margin-bottom: 15px;
  text-align: center;
  line-height: 17px;
  color: #811506;
}
.login_op p {
  margin: 0;
}
.login_op ul {
  display: grid;
  gap: 20px;
}
.button3 {
  background-color: #7d7d7d;
  font-size: 16px;
  font-weight: bold;
  line-height: 30px;
  margin: 0 auto;
  width: 100%;
  display: block;
  text-align: center;
  color: #fff;
}
section.last_sec {
  padding: 3rem 0rem;
}
span.pdf svg {
  height: 20px;
  width: 20px;
}
a.my_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid #eaeaea;
  transition: 0.3s ease;
}
a.my_btn:hover {
  background-color: #e3e3e3;
}

.dow_head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.dow {
  width: 450px;
  margin: auto;
  display: grid;
  gap: 15px;
}

span.text {
  font-size: 25px;
  display: inline-block;
}
a.my_btn p {
  margin: 0;
  color: #1b72b8;
}

footer.footer_sec {
  background: #606065;
  text-align: center;
  padding: 10px;
}
footer.footer_sec p {
  margin: 0;
  font-size: 14px;
  line-height: 25px;
  color: #fff;
}
