@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0");
@import url('https://fonts.googleapis.com/css2?family=Anek+Devanagari:wght@100..800&display=swap');


@import url(bootstrap.min.css);
@import url(animate.min.css);
@import url(aos.css);
@import url(all.min.css);
@import url(bootstrap-icons.min.css);
@import url(icons.min.css);
@import url(slider.min.css);
@import url(owl.carousel.min.css);
@import url(gallery.min.css);

:root {
  --primary-font: 'railroad_gothic_ccbold';
  --secondary-font: "Poppins", sans-serif;
  --secondary-font-2: "Anek Devanagari", serif;
  --h1-size: 4rem;
  --h1-weight: 600;
  --h2-size: 2rem;
  --h2-weight: 600;
  --h3-size: 1.6rem;
  --h3-weight: 600;
  --h4-size: 1.5rem;
  --h4-weight: 600;
  --h5-size: 1.2rem;
  --h5-weight: 600;
  --h6-size: 1rem;
  --h6-weight: 600;
  --p-size: 1rem;
  --p-weight: 400;
  --header-bg-color: #121117;
  --nav-brand-height: 55px;
  --top-nav-item-color: #F5F5F5;
  --nav-item-color: #121117;
  --primary-color: #7c4fe0;
  --secondary-color: #4528DC;
  --white-color: #F9F9F9;
  --black-color: #040402;
  --grey-color: #f3f5f7;
  --dark-grey-color: #191919;
  --primary-t-color: #222;
  --secondary-t-color: #F5F5F5;
  --primary-p-color: #565656;
  --secondary-p-color: #E1E1E1;
  --primary-b-color: #F5F5F5;
  --primary-l-color: rgba(0, 0, 0, .12);
  --secondary-l-color: rgba(45, 49, 54, 0.09);
  --border-radius-sm: 0.5rem;
  --border-radius-md: 1rem;
  --border-radius-lg: 2rem;
  --valid-color: #007A4D;
  --invalid-color: #E34F4F;
  --primary-bg-color: #FFFFFF;
  --primary-bg-color-2: #f5f5f5;
  --primary-bg-color-3: #E5E5E5;
  --secondary-bg-color: #040402;
  --secondary-bg-color-2: #111111;
  --secondary-bg-color-3: #191919;
  --card-bg-color: #16182D;
  --footer-bg-color: #121117;
  --transform-scale: scale3d(1.06, 1.06, 1.06);
  --transition-function: cubic-bezier(.645, .045, .355, 1);
  --transition-duration: 0.35s;
  --transition-duration-short: 0.25s;
}

/* #endregion Root */
/*----------------------------------------------
3. Reset
HTML5 display-role reset for older browsers
----------------------------------------------*/
/* #region Reset */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  overflow-x: hidden;
}

body {
  padding: 0 !important;
  background-color: var(--primary-bg-color);
  font-family: var(--secondary-font);
  color: var(--primary-p-color);
}
body.odd {
  background-color: var(--secondary-bg-color);
  color: var(--secondary-p-color);
}

ol,
ul {
  padding-left: 20px;
}

ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

ul ul {
  list-style: circle;
}

pre,
code {
  display: block;
  margin: 1rem 0;
  color: var(--primary-color);
}

blockquote,
q {
  display: block;
  margin: 1rem 0;
  padding: 1rem 1.5rem;
  border-left: 5px solid var(--primary-bg-color-3);
  quotes: none;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary-color);
}

.odd blockquote,
q {
  border-left: 5px solid var(--secondary-bg-color-3);
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

blockquote p,
q p {
  margin: 0;
}

figure {
  margin-bottom: 1.5rem;
}

figcaption {
  margin-bottom: 1.5rem;
  font-style: italic;
  padding: 1rem 1.5rem;
  border-left: 5px solid var(--primary-bg-color-3);
}

.odd figcaption {
  border-left: 5px solid var(--secondary-bg-color-3);
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 10px;
}
table tr:not(:last-child) {
  border-bottom: 1px solid;
  border-color: var(--primary-l-color);
}
table .odd tr:not(:last-child) {
  border-color: var(--secondary-l-color);
}
table td {
  padding: 10px 0;
}
table th {
  padding: 10px 0;
}


/* #endregion Reset */
/*----------------------------------------------
4. General
----------------------------------------------*/
/* #region General */
::-moz-selection {
  background: rgba(166, 175, 189, 0.3);
}

::selection {
  background: rgba(166, 175, 189, 0.3);
}

::-moz-selection {
  background: rgba(166, 175, 189, 0.3);
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

a:not(.btn),
a:link:not(.btn),
a:visited:not(.btn),
a:hover:not(.btn),
a:active:not(.btn) {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.4s ease-out 0s;
}

a:not([href]),
a:not([href]):hover,
a:not([href]) i,
a:not([href]) i:hover {
  color: var(--primary-b-color);
}

p {
  margin: 1.5rem 0;
  font-size: var(--p-size);
  font-weight: var(--p-weight);
  line-height: 1.5;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

.odd:not(.comment) p {
  color: var(--white-color);
}

.page-template .odd p {
  opacity: 0.7;
}

.swiper-wrapper.odd p {
  opacity: 0.8;
}
p.mission {
  margin: 0px 0 -20px;
  font-size: 20px;
}
h1 {
  margin-bottom: 1.5rem;
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: 1.2;
  font-family: var(--primary-font);
  color: var(--primary-t-color);
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
h1 em {
  display: block;
  font-size: var(--h2-size);
  font-weight: 300;
}

h2 {
  margin: 1.5rem 0;
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: 1.2;
  font-family: var(--secondary-font-2);
  color: var(--primary-t-color);
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.odd h2 {
  color: var(--white-color);
}

h3 {
  margin: 1.5rem 0;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  font-family: var(--secondary-font-2);
  color: var(--primary-t-color);
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

h4 {
  margin: 1.5rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  font-family: var(--secondary-font-2);
  color: var(--primary-t-color);
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.odd h4 {
  color: var(--secondary-t-color);
}

h5 {
  margin: 1.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  font-family: var(--secondary-font-2);
  color: var(--primary-t-color);
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

h6 {
  margin: 1.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  font-family: var(--secondary-font-2);
  color: var(--primary-t-color);
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

b,
strong {
  font-weight: 700;
}

li {
  margin: 0.5rem 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

dt {
  margin: 15px 0;
}

address {
  margin-bottom: 1rem;
}

form {
  width: 100%;
}

input,
textarea,
select {
  width: 100%;
  height: 50px;
  background: no-repeat;
  box-shadow: none;
  padding: 0.7rem 1rem;
  border-color: var(--primary-l-color);
  border-width: 2px;
  border-radius: 0.375rem;
}

input {
  border-color: var(--primary-p-color);
  color: var(--primary-p-color);
}
input:focus {
  border-color: var(--primary-t-color);
  color: var(--primary-t-color);
}
input[type=radio] {
  height: initial;
}
input[type=submit] {
  border: 1px solid;
  padding: 2.5px 10px;
  display: block;
  width: fit-content;
  max-width: 200px;
  text-align: center;
  color: var(--primary-color);
}
input[type=submit]:hover {
  background-color: var(--primary-color);
  color: var(--primary-b-color);
  border-color: var(--primary-color);
}
input[type=checkbox] {
  padding: 0;
}

textarea {
  height: 100px;
  resize: none;
  border-color: var(--primary-p-color);
  color: var(--primary-t-color);
}
textarea:focus {
  border-color: var(--primary-t-color);
  color: var(--primary-t-color);
}

select {
  appearance: none;
  text-indent: 1px;
  text-overflow: "";
  line-height: 1.2;
  border-color: var(--primary-l-color);
  color: var(--primary-t-color);
}
select option {
  color: #2f323a;
}
select:focus {
  border-color: var(--primary-t-color);
  color: var(--primary-t-color);
}

.input-group .btn {
  border-radius: 0.375rem;
}

hr {
  margin: 35px 0;
  border-top: 1px solid var(--primary-l-color);
}

.odd hr {
  margin: 35px 15px;
  border-top: 1px solid var(--secondary-l-color);
}

.hero-section::before{
  content: "";
  background: url(https://www.jagranjosh.com/events/campus-connect/assets/images/shadow_pink_header.png) no-repeat;
  position: absolute;
  top: 0;
  width: 80%;
  height: 80%;
  z-index: 1;
}

/* #endregion General */
/*----------------------------------------------
5. Section
----------------------------------------------*/
/* #region Section */
section {
  width: 100%;
  padding: 130px 0 80px;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
section.no-hero {
  padding: 150px 0 130px;
}
section#slider:not(.bg-inherit) {
  background-color: var(--hero-bg-color);
}

main {
  padding: 0;
}

.container {
  padding: 0;
  max-width: 1170px;
}
.container.header {
  max-width: 1140px;
}
.container.full {
  max-width: 100%;
}
.container.full-grid {
  padding: 0;
  max-width: calc(100% - 30px);
  margin: 0 15px;
}
.container.smaller {
  max-width: 970px;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.vh-75 {
  height: 75vh;
}

.vh-85 {
  height: 85vh;
}
@media (max-width: 575px) {
  .vh-85 {
    height: 100%;
  }
}

.vh-90 {
  height: 90vh;
}
@media (max-width: 575px) {
  .vh-90 {
    height: 100%;
  }
}

.clearfix {
  display: block;
  content: "";
  clear: both;
}

/* #endregion Section */
/*----------------------------------------------
6. Helper Class
----------------------------------------------*/
/* #region Helper Class */
.avatar-sm {
  height: 3rem;
  width: 3rem;
}

.avatar-md {
  height: 4rem;
  width: 4rem;
}

.avatar-lg {
  height: 5rem;
  width: 5rem;
}

.avatar-max-lg {
  height: 6rem;
  width: 6rem;
}

.swap-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 26px;
}
.swap-icon .icon {
  margin: 0 !important;
  height: auto;
  width: auto;
  font-size: 2rem !important;
  line-height: 1;
}
.swap-icon:hover .icon {
  animation: swap ease-out var(--transition-duration);
}

@keyframes swap {
  0% {
    transform: translateX(0);
  }
  25% {
    opacity: 0;
  }
  30% {
    transform: translateX(1rem);
  }
  35% {
    transform: translateX(-1rem);
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
.video-play-button {
  display: flex;
}
.video-play-button a.play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  background-color: #fff;
  border-radius: 100%;
  transform: scale(1);
}
.video-play-button a.play-button i {
  fill: var(--primary-color);
  font-size: 18px;
}
.video-play-button a.play-button::before {
  position: absolute;
  content: "";
  top: -2px;
  left: -2px;
  bottom: -2px;
  right: -2px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  animation: ripple 2s cubic-bezier(0.23, 1, 0.32, 1) both infinite;
}
.video-play-button a.play-button.hide-animation::before {
  display: none;
}
.video-play-button a.play-button:hover {
  transform: scale(1.1);
  background-color: #ffffff;
}

@keyframes ripple {
  0% {
    border-width: 4px;
    transform: scale(1);
  }
  80% {
    border-width: 1px;
    transform: scale(1.35);
  }
  100% {
    opacity: 0;
  }
}
.intro {
  margin-bottom: 60px;
}
.intro .title:not(.layout-2) {
  position: relative;
}
/* .intro .title:not(.layout-2)::after {
  position: absolute;
  content: "";
  height: 3px;
  width: 50px;
  background-color: var(--primary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
} */




.intro .title:not(.layout-2).layout-3::after {
  left: 0;
  transform: inherit;
}
.intro .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}
.intro .badge i {
  color: var(--primary-color);
}

.intro p{
  margin-top: 0;
}
.intro h2{
  margin-bottom: 10px;
}
.positionRelative{
  position: relative;
  z-index: 1;
}
.list-group-item {
  margin: 0;
  background: none;
  font-size: 1rem;
  padding-right: 0;
  padding-left: 0;
  background-color: transparent;
  border-color: var(--card-bg-color);
}
.list-group-item a {
  transition: 0.3s;
}
.list-group-item .badge.circle {
  background-color: var(--card-bg-color);
}

.post-holder {
  list-style: none;
  width: 100%;
  border-left: 5px solid var(--primary-color);
  background-color: var(--primary-bg-color-2);
  padding: 25px;
  margin-top: 35px;
}

.posted-on a:not(.btn) {
  font-weight: 600;
}

.module {
  display: flex;
  margin: 20px 0;
  padding: 30px;
  border-radius: 8px;
  background-color: #fff;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
  box-shadow: rgba(249, 194, 196, 0.4) 10px 2px 60px 10px;
  /* box-shadow: -5px 18px 60px 0px rgba(210, 210, 234, 0.4); */
  min-height: 260px;
}

.module:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.module-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  border-radius: 50%;

}
.module-icon.campus{
  width: auto;
  height: auto;
  margin-bottom: 0;
  border-radius: unset;
}

.module-icon img {
  max-width: 100%;
  max-height: 100%;
  padding: 15px;
}
.module-icon.campus img{
  width: auto;
  height: auto;
  padding: 0;
}
.module-content {
  flex-grow: 1;
}

.module-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}


.module-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}
.campusmod .module .module-description{
  margin: 0;
}
.campusmod .module ul li{
  font-size: 14px;
}
.module-2, .module-4{
  margin-top: 80px;
}
.module-1 .module-icon{
  background: rgb(253, 224, 224);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(253, 224, 224, 0.4) 0px 10px 20px -5px;
}
.module-2 .module-icon{
  background: rgb(211, 240, 226);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(211, 240, 226, 0.4) 0px 10px 20px -5px;
}
.module-3 .module-icon{
  background: rgb(252, 237, 220);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(252, 237, 220, 0.4) 0px 10px 20px -5px;
}
.module-4 .module-icon{
  background: rgb(211, 236, 240);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(211, 236, 240, 0.4) 0px 10px 20px -5px;
}

.module-1 .module-icon.campus, .module-2 .module-icon.campus{
  background: transparent;
  box-shadow: none;
}

.text-dark-gray {
  color: #333;
}
.bg-red {
  background-color: rgb(225, 29, 29, .4);
  margin-top: 10px;
}
.fs-16 {
  font-size: 16px;
}
.fs-20 {
  font-size: 20px;
}
.fs-100 {
  font-size: 6.25rem;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.opacity-1 {
  opacity: 1;
}
.h-70px {
  height: 70px;
}
.w-70px {
  width: 70px;
}
.mt-25 {
  margin-top: 25% !important;
}
.mt-minus-12 {
  margin-top: -18%;
}

.tab-block {
  width: 650px;
  height: 290px;
  margin: 50px auto;
}
.tab-block .tab-mnu {
  display: block;
  list-style: none;
}
.tab-block .tab-mnu:after {
  content: "";
  display: table;
  clear: both;
}
.tab-block .tab-mnu li {
  box-sizing: border-box;
  float: left;
  background-color: #b2bbc0;
  color: white;
  width: 130px;
  text-align: center;
  padding-top: 13px;
  padding-bottom: 13px;
  cursor: pointer;
}
.tab-block .tab-mnu li:not(:last-child) {
  border-right: 1px solid #4c607c;
}
.tab-block .tab-mnu li:hover:not(.active) {
  background-color: #c0c7cb;
}
.tab-block .tab-mnu .active {
  background-color: #fff;
  color: #596165;
  border-bottom: 1px solid #eaecec;
  cursor: default;
}
.tab-block .tab-cont {
  box-sizing: border-box;
  border-top: 1px solid white;
  background-color: white;
  color: #292d2f;
}
.tab-block .tab-cont .tab-pane {
  padding: 20px 25px;
}



.feature-box {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 1;
}
.feature-box h2{
  color: #e5e5e5;
  font-family: var(--secondary-font-2);
  font-weight: bold;
  font-size: 128px;
}
.feature-box-left-icon-middle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}




















.list-group .list-group-item {
  margin: 0.25rem 0;
}
.list-group .list-group-item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.5rem;
  width: 3.5rem;
  background-color: #fff;
  border-radius: var(--border-radius-sm);
  font-size: 1.5rem;
  color: var(--primary-color);
}
.list-group .list-group-item .icon span {
  font-size: 2rem;
}
.list-group .list-group-item .icon.layout-2 {
  background-color: transparent;
}
.list-group.list-group-horizontal .list-group-item:not(:last-child) {
  margin-right: 0.8rem;
}

.btn {
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-color);
  line-height: 1;
  text-align: center;
  padding: 16px 50px;
  border: 0 none;
  border-radius: 100px;
  outline: 0 none;
  cursor: pointer;
  z-index: 1;
}
.btn:hover, .btn:focus, .btn:active {
  color: var(--white-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.btn.btn-bordered {
  background: transparent none repeat scroll 0 0;
  color: #444;
}
.btn.btn-bordered::before {
  position: absolute;
  content: "";
  height: calc(100% + 4px);
  width: calc(100% + 4px);
  background-image: linear-gradient(135deg, var(--primary-color) 10%, var(--secondary-color));
  top: -2px;
  left: -2px;
  border-radius: 100px;
  transition: all 0.3s ease 0s;
  z-index: -2;
}
.btn.btn-bordered:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 100px;
  background: #fff none repeat scroll 0 0;
  transition: all 0.3s ease 0s;
  z-index: -1;
}
.btn.btn-bordered:hover, .btn.btn-bordered:focus, .btn.btn-bordered.active {
  color: #fff;
}
.btn.btn-bordered:hover::after, .btn.btn-bordered:focus::after, .btn.btn-bordered.active::after {
  opacity: 0;
}
.btn.btn-bordered-white {
  background: transparent none repeat scroll 0 0;
  border: 2px solid #fff;
}
.btn.btn-bordered-white::after {
  position: absolute;
  content: "";
  height: calc(100% + 4px);
  width: calc(100% + 4px);
  background-image: linear-gradient(135deg, var(--primary-color) 10%, var(--secondary-color));
  top: -2px;
  left: -2px;
  border-radius: 100px;
  opacity: 0;
  transition: all 0.3s ease 0s;
  z-index: -1;
}
.btn.btn-bordered-white:hover, .btn.btn-bordered-white:focus {
  border-color: transparent;
  outline: 0 none;
}
.btn.btn-bordered-white:hover::after, .btn.btn-bordered-white:focus::after {
  opacity: 1;
}
.btn.content-btn {
  padding: 0;
  font-weight: 600;
  color: var(--primary-t-color);
  text-align: left;
  line-height: 1.2;
  background: transparent;
  box-shadow: none;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .btn.content-btn {
    margin-bottom: 5px;
  }
}
.btn.content-btn::before {
  position: absolute;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.btn.content-btn::after {
  position: absolute;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.btn.content-btn:hover {
  color: var(--primary-color);
}
.btn.content-btn:hover::before {
  right: -10px;
  opacity: 1;
}
.btn.content-btn:hover::after {
  right: -20px;
  opacity: 0;
}

.btn-smaller {
  font-size: 0.9rem;
  padding: 12px 18px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 30px;
}

.breadcrumb-area {
  height: 450px;
  background-image: url("../img/content/download-bg.jpg");
  background-attachment: scroll;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 1;
}
.breadcrumb-area.bg-overlay::after {
  opacity: 0.89;
}

/* #endregion Helper Class */
/*----------------------------------------------
7. Header
----------------------------------------------*/
/* #region Header */
header {
  position: relative;
  z-index: 5;
}
header .navbar-expand {
  position: fixed;
  top: 0;
  z-index: 2;
  width: 100%;
  padding: 20px 25px;
}
header .navbar-expand .navbar-brand {
  padding: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 0;
  color: var(--nav-item-color);
}
header .navbar-expand .navbar-brand i {
  font-size: 1.8rem;
  font-weight: bold;
  font-style: initial;
  color: var(--primary-color);
}
header .navbar-expand .navbar-nav.toggle {
  display: none;
}
header .navbar-expand .navbar-nav.toggle i {
  font-size: 20px;
}
header .navbar-expand .navbar-nav .nav-item {
  margin: 0;
}
header .navbar-expand .navbar-nav .nav-item a:not(.btn) {
  display: flex;
  align-items: center;
  padding-right: 1rem;
  padding-left: 1rem;
  font-weight: 500;
  color: var(--white-color);
}
header .navbar-expand .navbar-nav .nav-item a:not(.btn).active{color: #000000;}
header .navbar-sticky .navbar-nav .nav-item a:not(.btn).active{color: #ff0000;} 
header .navbar-expand .navbar-nav .dropdown .dropdown-menu {
  display: block;
  width: max-content;
  min-width: 14.375rem;
  padding: 0.625rem 0;
  border: none;
  border-radius: 2px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu::before {
  content: "";
  position: absolute !important;
  top: -10px;
  right: auto;
  bottom: auto;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu .nav-link:not(.btn) {
  justify-content: space-between;
  padding: 0.625rem;
  color: var(--nav-item-color);
  font-size: 0.8125rem;
  text-transform: uppercase;
  font-weight: 700;
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu .nav-link.title {
  font-weight: 600;
  color: var(--primary-t-color);
  opacity: 0.8;
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu .nav-link:not(.btn):not(.title):hover {
  background-color: rgba(1, 114, 128, 0.05);
  color: var(--primary-color);
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu .dropdown-menu {
  top: -8px;
  left: 100%;
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu .dropdown-menu::before {
  content: none;
}
header .navbar-expand .navbar-nav .dropdown i.icon-arrow-down {
  position: relative;
  top: 1.5px;
  margin: 0 0 0 0.3rem;
  font-size: 12px;
  font-weight: 600;
}
header .navbar-expand .navbar-nav .dropdown i.icon-arrow-right {
  position: relative;
  top: 0;
  left: 5px;
  margin: 0 0 0 0.3rem;
  font-size: 10px;
  font-weight: 600;
}
header .navbar-expand .navbar-nav .dropdown:hover > .dropdown-menu {
  visibility: unset;
  opacity: 1;
  margin: 0;
  transform: translateY(0px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
header .navbar-expand .icons i {
  font-weight: 400;
}
header .navbar-expand:not(.navbar-sticky) .navbar-brand:not(.invert) img {
  filter: brightness(0) invert(1);
}
header .navbar-sticky {
  background-color: rgba(255, 255, 255, 0.69);
  backdrop-filter: blur(10px);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
header .navbar-sticky .navbar-nav .nav-item a:not(.btn) {
  color: var(--nav-item-color);
}

.dropdown .dropdown-menu > li {
  padding: 0 0.625rem;
}

.menu .items {
  margin-left: -5px;
  width: calc(100% + 10px);
}
.menu .navbar-nav {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}
.menu .navbar-nav .nav-item {
  margin: 0;
}
.menu .navbar-nav .nav-item .nav-link:not(.btn) {
  width: calc(100% - 12px);
  padding: 0.5rem 1rem;
  margin: 0 5px;
  border-radius: var(--border-radius-sm);
}
.menu .navbar-nav .nav-item .nav-link:not(.btn):hover {
  background-color: #e5e6f6;
  color: var(--primary-color);
}
.menu .navbar-nav .nav-item .nav-link:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-t-color);
}
.menu .navbar-nav .dropdown .dropdown-menu {
  display: none;
  width: 100%;
  padding: 0 0 0 10px;
  margin: 0 0 10px;
  background: none;
  border: none;
  visibility: visible;
  opacity: 1;
}
.menu .navbar-nav .dropdown .dropdown-menu.show {
  display: block;
}
.menu .navbar-nav .dropdown .dropdown-menu .nav-link {
  padding: 0.625rem;
  margin: 5px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--nav-item-color);
  text-align: left;
  text-transform: uppercase;
}
.menu .navbar-nav .dropdown .dropdown-menu .nav-link:hover, .menu .navbar-nav .dropdown .dropdown-menu .nav-link.active {
  color: var(--primary-color);
}
.menu .navbar-nav .dropdown .dropdown-menu .nav-link.title {
  font-weight: 600;
  color: var(--primary-t-color);
  border: none;
  opacity: 0.8;
}
.menu .navbar-nav .dropdown .dropdown-menu .dropdown-menu {
  position: relative;
  top: initial;
  left: initial;
}
.menu .navbar-nav .dropdown .dropdown-menu .left,
.menu .navbar-nav .dropdown .dropdown-menu .right {
  width: 50%;
}
.menu .navbar-nav .dropdown:first-child {
  margin-top: 0;
}
.menu .navbar-nav i.icon-arrow-down {
  font-size: 18px;
}

.dropdown .nav-link i {
  transition: transform 0.3s ease-in-out;
}

.rotate-arrow {
  transform: rotate(-180deg);
  transition: transform 0.3s ease-in-out; /* Smooth transition for the rotation */
}

.navbar-nav .dropdown-menu {
  transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.navbar-nav .show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* #endregion Header */
/*----------------------------------------------
8. Feature
----------------------------------------------*/
/* #region Feature */
.preloader-main {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99999;
}
.preloader-main .preloader-wapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.preloader-main .loader-section {
  position: fixed;
  top: 0;
  height: 100%;
  width: calc(50% + 1px);
  background-color: var(--primary-bg-color);
}
.preloader-main .loader-section.section-left {
  left: 0;
}
.preloader-main .loader-section.section-right {
  right: 0;
}
.preloader-main .preloader {
  position: relative;
  display: block;
  height: 80px;
  width: 170px;
  top: -40px;
  z-index: 99;
}
.preloader-main .loaded .section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}
.preloader-main .loaded .section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}
.preloader-main .loaded .preloader {
  transition: 0.3s ease-out;
  visibility: hidden;
  opacity: 0;
}
.preloader-main circle.dot:nth-of-type(1) {
  animation: slide 2s ease infinite;
}
.preloader-main circle.dot:nth-of-type(2) {
  transform: translateX(55px);
  animation: slide 2s ease infinite;
  animation-delay: 1s;
}

@keyframes slide {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(70px);
  }
}
.icon {
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 44px;
  display: block;
  margin: auto;
}
.icon.smaller {
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 24px;
}
.icon.bigger {
  width: 7rem;
  height: 7rem;
  margin: 0;
  font-size: 6.5rem;
  line-height: 7rem;
  font-weight: bold;
}
.icon.circle {
  border-radius: 100px;
  font-size: 28px;
}

.icons {
  display: inline-block;
  font-size: 3rem;
  line-height: 1;
}

.items .item {
  margin-top: 30px;
}

.card {
  background-color: transparent;
  border: none;
  border-radius: var(--border-radius-sm);
}
.card .image-holder {
  position: relative;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}
.card .image-holder img {
  transition: all var(--transition-function) var(--transition-duration);
}
.card .card-overlay {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  display: flex;
  padding: 3vh;
  color: var(--white-color);
}
.card .card-overlay.top {
  top: 0;
  bottom: auto;
  background: 17, 16, 19;
  background: linear-gradient(180deg, rgba(17, 16, 19, 0.5) 0%, rgba(17, 16, 19, 0) 100%);
}
.card .card-overlay.fade-up {
  transform: translateY(6%);
  opacity: 0;
  transition: all var(--transition-function) var(--transition-duration);
}
.card .card-overlay.fade-down {
  transform: translateY(-6%);
  opacity: 0;
  transition: all var(--transition-function) var(--transition-duration);
}
.card .card-overlay:not(.top) {
  bottom: 0;
}
.card.scale:hover .card-thumb img {
  transform: var(--transform-scale);
}
.card.has-shadow .card-thumb::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 85%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(3, 7, 18, 0)), to(rgba(3, 7, 18, 0.45)));
  background: linear-gradient(180deg, rgba(3, 7, 18, 0), rgba(3, 7, 18, 0.45));
  -webkit-transition: opacity var(--transition-function) var(--transition-duration);
  transition: opacity var(--transition-function) var(--transition-duration);
}
.card.layout-2 .card-overlay {
  color: var(--white-color);
}
.card.layout-2 .card-overlay .title,
.card.layout-2 .card-overlay .badge {
  color: var(--white-color);
}
.card.layout-2 .card-overlay .show-project .project-link a {
  color: var(--white-color);
}
.card.layout-2 .card-overlay:not(.top) {
  background: 17, 16, 19;
  background: linear-gradient(360deg, rgba(17, 16, 19, 0.5) 0%, rgba(17, 16, 19, 0) 100%);
}
.card:hover .card-overlay.fade-up {
  transform: none;
  opacity: 1;
}
.card:hover .card-overlay.fade-down {
  transform: none;
  opacity: 1;
}

.has-overlay {
  position: relative;
  z-index: 1;
}
.has-overlay::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.94;
  z-index: -1;
}
/* .has-overlay.overlay-gradient::after {
  background: linear-gradient(-47deg, var(--primary-color) 0%, var(--secondary-color) 100%);
} */
.has-overlay.overlay-dark::after {
  background: rgba(16, 16, 45, 0.9);
}

.clip-text,
.text-effect {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-text, .btn,
.text-effect,
.blog-details .pagination > li.active > a {
  /* background-image: linear-gradient(150deg, var(--secondary-color) 0%, var(--primary-color) 78%); */
  background: #000;
}
.btn:hover{
  /* background-image: linear-gradient(150deg, var(--secondary-color) 0%, var(--primary-color) 78%); */
  background: #fcd9d7;
  color: #000;
}

a.badge:not(.btn),
.badge {
  display: inline-flex;
  gap: 0.25em;
  margin: 0.25rem 0;
  padding: 0.35rem 0.62rem;
  border-radius: 50rem;
  font-size: 0.94em;
  font-weight: 500;
  transition: all var(--transition-function) var(--transition-duration);
}
a.badge:not(.btn).small,
.badge.small {
  padding: 0.35rem 0.65rem;
}
a.badge:not(.btn).outlined,
.badge.outlined {
  border: 2px solid currentColor;
  color: currentColor;
}
a.badge:not(.btn):not(.outlined),
.badge:not(.outlined) {
  background-color: #e5e6f6;
}
a.badge:not(.btn):hover,
.badge:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.shapes-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.shape {
  position: relative;
}

.shape-bottom {
  position: absolute;
  top: auto;
  bottom: -1px;
  left: 0;
  right: 0;
}

.shape_right{
  position: absolute;
  top: 50px;
  right: -220px;
  z-index: 1;
  overflow: hidden;
}

.shape_right img{
  width: 100%;
}
.mt_80{
  margin-top: -80px !important;
}

.bg-shape {
  position: absolute;
  background: url(https://www.jagranjosh.com/events/campus-connect/assets/images/p1_shape.png) no-repeat ;
  background-position: top right;
  background-size: contain;
  height: 100%;
  width: 100%;
  display: block;

  z-index: 0;
}
@media (max-width: 991px) {
  .bg-shape {
    height: 130%;
  }
}

.social-icons i {
  display: block;
  height: 100%;
  margin: 0 auto;
  line-height: 2.5rem;
  transition: all var(--transition-function) var(--transition-duration-short);
}
.social-icons > a.icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 5px;
  background-color: var(--white-color);
  border-radius: calc(var(--border-radius-sm) / 2);
  color: var(--primary-color);
  transition: all var(--transition-function) var(--transition-duration-short);
  overflow: hidden;
}
.social-icons > a.icon:hover i:first-child {
  margin-top: -2.5rem;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  margin-top: 15px;
  position: relative;
}

.swiper-pagination-bullet {
  width: 40px !important;
  height: 3px !important;
  border-radius: 5px !important;
  background-color: var(--primary-p-color);
  border: none !important;
  opacity: 0.25 !important;
}

.swiper-pagination-bullet-active {
  background-color: #333;
  opacity: 1 !important;
}

.main {
  background-color: var(--primary-bg-color);
}

.scroll-to-top {
  position: fixed;
  z-index: 5;
  right: 25px;
  bottom: 25px;
  display: none;
  width: 40px;
  height: 45px;
  border-radius: 4px;
  background-color: rgba(35, 35, 35, 0.65);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  line-height: 45px;
  text-align: center;
  opacity: 0.85;
  transition: all var(--transition-function) var(--transition-duration);
}
.scroll-to-top a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 45px !important;
}
.scroll-to-top i {
  font-size: 22px;
  font-weight: 600;
  color: var(--white-color);
}
.scroll-to-top:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  opacity: 1;
}

.primary-bg {
  background-color: var(--primary-bg-color-2);
}
.primary-bg .btn-bordered::after {
  background-color: var(--primary-bg-color-2);
}
.primary-bg .badge {
  background-color: #fff !important;
}

.download-button img {
  max-width: 190px;
}

.hero-section {
  position: relative;
  background-attachment: scroll;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero-section .hero-content {
  position: relative;
  z-index: 1;
  margin-top: -200px;
}
.hero-section .hero-content h1{
  text-transform: uppercase;
  font-family: 'railroad_gothic_ccbold';
  font-weight: bold;
  line-height: 72px;
  font-size: 78px;
  color: #fff;
  margin-bottom: 0;
}
.hero-section .hero-content h1 span{font-size:50px;}
.hero-section .hero-content p{
  color: #fff;
  font-weight: 200;
  margin-top: 5px;
}
.hero-section .hero-content .sub-heading {
  font-size: 1.2rem;
  line-height: 1.6;
}
.hero-section .hero-thumb.animate img {
  position: relative;
  animation: bounceHero 3s infinite;
}
.hero-section .hero-thumb{
  position: relative;
  z-index: 1;
}
.hero-section .hero-thumb::before{
  content: "";
  position: absolute;
  background: url(https://www.jagranjosh.com/events/campus-connect/assets/images/girl_bg_circle_effect.png) no-repeat;
  background-size: contain;
  width: 70%;
  height: 70%;
  z-index: -1;
  left: 40%;
  top: 40%;
  transform: translate(-50%, -50%);
}
.hero-section.layout-1 {
  background-image: url("../img/content/welcome-bg.jpg");
}
.hero-section.layout-1 .hero-thumb {
  max-width: 300px;
}
@media (max-width: 767px) {
  .hero-section.layout-1 .hero-thumb {
    max-width: 270px;
  }
}
@media (max-width: 575px) {
  .hero-section.layout-1 .hero-thumb {
    max-width: 230px;
  }
}
.hero-section.layout-2 {
  background-image: url("../img/content/welcome-bg-3.jpg");
}
.hero-section.layout-2 .shapes-container {
  background-color: #fff;
}
.hero-section.layout-3 {
  background-image: url("../img/content/welcome-bg-4.jpg");
  background-attachment: fixed;
}
.hero-section.layout-3 .shape-bottom svg {
  overflow: hidden;
  width: 100%;
  line-height: 0;
  direction: ltr;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.hero-section.layout-4 {
  background-image: url("../img/content/welcome-bg-5.jpg");
}
.hero-section.layout-4 .shape-bottom {
  transform: rotate(180deg);
}
.hero-section.layout-4 .shape-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  left: 50%;
  transform: translateX(-50%) rotateY(180deg);
}
.hero-section.layout-5 {
  background-image: url("../img/content/welcome-bg-2.jpg");
}
.hero-section.layout-5 .shape-bottom {
  left: -30px;
}

.hero-form {
  position: relative;
  padding: 45px;
  background-color: #fff;
  border-radius: var(--border-radius-md);
  z-index: 1;
}
@media (max-width: 575px) {
  .hero-section .hero-content h1 span{font-size:30px;}
  .hero-form {
    padding: 32px;
  }
}
.hero-form hr {
  border-style: solid;
}
.hero-form .form-text a:not(.btn) {
  font-size: 1em;
  font-weight: 500;
}


/* Shapes */
.shape-topLeft{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.shape-cicleStripe {
  position: absolute;
  top: 100px;
  right: -55px;
  z-index: 1;
  overflow: hidden;
  opacity: 50%;
}
.shape-halfPie{
  position: absolute;
  top: 150px;
  left: 100px;
  z-index: 1;
  overflow: hidden;
  opacity: 50%; 
}
.shape-topLeft img, .shape-cicleStripe img{
  width: 100%;
}

.navbar-nav.icons{
  margin-left: 100px;
}
.btn-nav{
  background: #fcd9d7;
    color: #333 !important;
    border-radius: 20px;
    text-transform: uppercase;
}


@keyframes bounceHero {
  0% {
    top: 0px;
  }
  50% {
    top: 25px;
  }
  100% {
    top: 0px;
  }
}
.counter:not(.is-visible) {
  visibility: hidden;
}

.counter-area {
  padding: 50px 0;
}
.counter-area .item .counter-item {
  position: relative;
}
.counter-area .item .counter-item span {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  background-image: linear-gradient(-47deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .counter-area .item .counter-item span {
    font-size: 2.5rem;
  }
}
.counter-area .item .counter-item::after {
  position: absolute;
  content: "";
  height: 70%;
  width: 1px;
  background-color: var(--primary-t-color);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0.15;
}
@media (max-width: 767px) {
  .counter-area .item .counter-item::after {
    height: 45%;
  }
}
.counter-area .item:last-of-type .counter-item::after {
  display: none;
}
@media (max-width: 575px) {
  .counter-area .item:nth-child(2) .counter-item::after {
    display: none;
  }
}

.countdown {
  text-transform: uppercase;
  color: var(--white-color);
}
.countdown .countdown-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 0.25rem;
  padding: 0.5rem;
}
@media (max-width: 767px) {
  .countdown .countdown-container {
    margin: 0 0.2rem;
    padding: 0.25rem;
  }
}
@media (max-width: 575px) {
  .countdown .countdown-container {
    margin: 0 0.15rem;
    padding: 0;
  }
}
.countdown .countdown-container .countdown-heading {
  margin: 10px;
  font-size: 1rem !important;
  font-weight: 600;
}
.countdown .countdown-container .countdown-value {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  width: 4rem;
  background-color: var(--white-color);
  border-radius: calc(var(--border-radius-sm) / 2);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.image-box {
  padding: 45px;
  border-radius: 1rem;
  box-shadow: 0 3px 20px 0px var(--primary-l-color);
  transition: transform 0.3s ease 0s;
}
.image-box .icon {
  color: var(--primary-color);
  transition: transform var(--transition-function) var(--transition-duration-short);
}
.image-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 3rem rgba(31, 45, 61, 0.125);
}
.image-box:hover .icon {
  transform: var(--transform-scale);
}
.image-box.layout-2 {
  box-shadow: none;
}
.image-box.layout-2.center {
  display: flex;
  gap: 1rem;
}
.image-box.layout-2:hover {
  transform: inherit;
  box-shadow: inherit;
}

.features-section {
  /* overflow: hidden; */
  position: relative;
  background: #fff5f4;
}
.features-section::before{
  content: "";
  position: absolute;
  background: url(https://www.jagranjosh.com/events/campus-connect/assets/images/shape_4.png) no-repeat;
  background-size: 70%;
  width: 100%;
  height: 100%;
  top: -221px;
  z-index: 1;
}
.features-section::after{
  content: "";
  position: absolute;
  background: url(https://www.jagranjosh.com/events/campus-connect/assets/images/shape_3.png) no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  z-index: 1;
  right: 0;
  top: -280px;
  background-position: top right;
}
.features-section.roles::before, .features-section.roles::after{
  background: transparent;
}

.features-section.why .nav-pills{
  position: relative;
  z-index: 3;
  justify-content: center;
}
.features-section.why .nav-pills .nav-link{
  border-radius: 25px;
  background: #fff;
  padding: 10px 30px;
  position: relative;
  z-index: 1;
  color: #111;
}
.features-section.why .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background: red;
  color: #fff;
  z-index: 2;
}
.features-section.why ul.nav-pills li:last-child{
  margin-left: -15px;
}
.features-section .features-slider-wrapper {
  background: rgba(0, 0, 0, 0) url("../img/content/mobile-slider.png") no-repeat scroll top center/cover;
  padding: 67px 23px 90px 26px;
  background-size: 100%;
  max-width: 290px;
  margin: 0 auto;
}
.features-section .intro{
  position: relative;
  z-index: 1;
}
.features-section .features-slider-wrapper .features-slider {
  padding: 0;
}
.features-section .features-slider-wrapper .slide-item {
  margin: 0;
}
@media (max-width: 767px) {
  .features-section .features-slider-wrapper {
    padding: 52px 18px 90px 21px;
    max-width: 245px;
  }
}
@media (max-width: 575px) {
  .features-section .features-slider-wrapper {
    padding: 52px 18px 90px 21px;
    max-width: 220px;
  }
}
.features-section .features-item.list-group .list-group-item {
  margin: 0;
  margin-top: 30px;
}
@media (max-width: 575px) {
  .features-section .features-item.list-group .list-group-item {
    padding: 0;
  }
}

.work-section .item {
  position: relative;
}
.work-section .item::after {
  position: absolute;
  content: "\f054";
  font-size: 45px;
  font-weight: 900;
  color: var(--white-color);
  font-family: "Font Awesome 5 Free";
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
@media (max-width: 767px) {
  .work-section .item::after {
    content: none;
  }
}
.work-section .item:hover::after {
  transform: translateX(5px) translateY(-50%);
}
.work-section .item:last-of-type::after {
  content: none;
}

@media (max-width: 575px) {
  .app-screenshots-slides .item {
    transform: scale(0.9);
  }
}

.features-section.roles .image-box{
  position: relative;
}

/* .icon-custom-bg{
    display: inline-block;
    width: 200px;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20200%20200%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20fill%3D%22%23f7d6d2%22%20d%3D%22M54.4%2C-27.6C66%2C-11.2%2C68%2C14.6%2C57.3%2C31.9C46.6%2C49.1%2C23.3%2C57.8%2C-0.3%2C58C-23.9%2C58.2%2C-47.9%2C49.8%2C-55.4%2C34.4C-63%2C18.9%2C-54.2%2C-3.6%2C-42.2%2C-20.3C-30.3%2C-36.9%2C-15.1%2C-47.6%2C3.1%2C-49.3C21.3%2C-51.1%2C42.7%2C-44.1%2C54.4%2C-27.6Z%22%20transform%3D%22translate%28100%20100%29%22%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(230deg);
} */
/* .icon-custom-bg img{
  transform: rotate(130deg);
  fill: #e1746d;
} */

.reviews {
  position: relative;
  border: 1px solid var(--primary-l-color);
  transition: all 0.3s ease 0s;
  overflow: hidden;
}
.reviews .quot-icon {
  position: absolute;
  top: 5%;
  right: 5%;
}
.reviews .review-meta {
  position: relative;
}
.reviews .review-meta::after {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  background-color: var(--primary-bg-color-2);
  bottom: calc(100% - 10px);
  left: 15%;
  transform: rotate(45deg);
}
.reviews .review-meta .reviewer span {
  font-weight: 500;
}
.reviews:hover {
  box-shadow: 0 1rem 3rem rgba(31, 45, 61, 0.125);
}
.bg-white{
  background: #fff !important;
}
ul.whySectionShape{
  background: url(https://www.jagranjosh.com/events/campus-connect/assets/images/why_join_us_icon.png) no-repeat;
  background-size: contain;
  background-position: top center;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.whySectionShape li{
  list-style-type: none;
  padding: 25px 15px;
  flex: 0 0 22%;
}
ul.whySectionShape li p{
  font-size: 14px;
  color: #333;
}
ul.whySectionShape li .image-box.layout-2 .icon-custom-bg img, ul.whySectionShape li .image-box.layout-2 .icon-custom-bg svg{
  width: 48px;
  height: 48px;
}

.testimonial-area .item img {
  width: 100px;
  height: 100px;
  border: 1px solid var(--primary-l-color);
  border-radius: 50%;
}
.testimonial-area .review-text {
  font-size: 1.2rem;
  color: var(--primary-t-color);
}

.pricing-table {
  position: relative;
  padding: 45px;
  background-color: #fff;
  border-radius: 1rem;
}
@media (max-width: 575px) {
  .pricing-table {
    padding: 30px;
  }
}
.pricing-table .package-type {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--primary-t-color);
}
.pricing-table .package-price {
  font-size: 3rem;
  font-weight: 700;
}
.pricing-table .package-price small {
  font-size: 0.75em;
}
.pricing-table .package-list li {
  margin: 0;
  padding: 1rem 0;
  border-color: var(--primary-l-color);
}
.pricing-table .package-button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.pricing-table .package-button .btn {
  border-radius: var(--border-radius-sm);
}
@media (max-width: 767px) {
  .pricing-table .package-button {
    position: inherit;
    left: inherit;
    transform: inherit;
  }
}

.notice,
.notice > a {
  font-weight: 500 !important;
}

#josh-accordion .accordion-item {
  background-color: transparent;
  color: var(--primary-p-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  border-radius: 8px;
}
#josh-accordion .accordion-item:not(.outlined) {
  border: none;
}
#josh-accordion .accordion-item:not(.outlined):not(:last-child) {
  margin-bottom: 1.8rem;
}
#josh-accordion .accordion-item.outlined {
  padding: 0.8rem 0;
}
#josh-accordion .accordion-item .accordion-header {
  margin: 0;
}
#josh-accordion .accordion-item .accordion-button {
  position: relative;
  background-color: #fff;
  border-radius: var(--border-radius-sm);
  box-shadow: none;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary-t-color);
}
#josh-accordion .accordion-item .accordion-button::after {
  position: absolute;
  content: "+";
  left: calc(100% - 3rem);
  height: inherit;
  background-image: none;
  font-size: inherit;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  transition-timing-function: var(--transition-function);
}
#josh-accordion .accordion-item .accordion-button:focus {
  z-index: 1;
}
#josh-accordion .accordion-item:has(.collapse.show) .accordion-button::after {
  content: "\2015" !important;
}

.team-item {
  border-radius: var(--border-radius-md);
}
.team-item .image-holder {
  border-radius: var(--border-radius-md);
}
.team-item .card-overlay {
  top: 0;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius-md);
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition-function) var(--transition-duration);
}
.team-item .card-overlay::after {
  border-radius: var(--border-radius-md);
}
.team-item .card-overlay .social-icons i {
  line-height: 2.2rem;
}
.team-item .card-overlay .social-icons > a.icon {
  width: 2.2rem;
  height: 2.2rem;
}
.team-item .card-overlay .social-icons > a.icon:hover i:first-child {
  margin-top: -2.2rem;
}
.team-item:hover .card-overlay {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.download-area {
  position: relative;
  background-image: url("../img/content/download-bg.jpg");
  background-repeat: no-repeat;
  z-index: 1;
}

.subscribe-area {
  background-image: url("../img/content/map.png");
  background-attachment: scroll;
  background-repeat: no-repeat;
}
.subscribe-area .subscribe-btn {
  border-radius: var(--border-radius-sm);
}

.contact-info .list-group .list-group-item {
  margin: 0;
  padding: 1rem 0;
  border-color: var(--primary-l-color);
}
.contact-info .list-group .list-group-item .icon {
  background-color: var(--primary-color);
  color: #fff;
}
.contact-info .list-group .list-group-item .icon .contact-icon {
  font-size: 24px !important;
  color: var(--white-color) !important;
}
.contact-info .list-group .list-group-item span,
.contact-info .list-group .list-group-item a {
  font-size: 1.2rem !important;
}
.contact-info .list-group .list-group-item span:not(:hover),
.contact-info .list-group .list-group-item a:not(:hover) {
  color: var(--primary-t-color) !important;
}
.contact-area{
  padding-bottom: 0;
  position: relative;
  bottom: -70px;
  overflow: hidden;
}
.contact-form{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background: red;
  padding: 40px;
  border-radius: 15px;column-gap: 30px;
}
.form-control{padding: .375rem 1.75rem;}
.contact-form .contact-info h3{
  color: #fff;
}
.contact-form .form-control {
  background-color: var(--primary-bg-color-2);
  border-width: 0;
}
.contact-form.outlined .form-control {
  background-color: rgba(255,255,255, 0.85);
  border-radius: 35px;
}

.error-area h1 {
  font-size: 18vmax;
}
@media (max-width: 767px) {
  .error-area h1 {
    font-size: 8em !important;
  }
}
@media (max-width: 575px) {
  .error-area h1 {
    font-size: 7em !important;
  }
}

.height-emulator {
  float: left;
  height: 585px;
}

.breadcrumb-area .breadcrumb-content .breadcrumb {
  background-color: transparent;
  margin: 0;
}
.breadcrumb-area .breadcrumb-content .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: var(--white-color);
}
.breadcrumb-area .breadcrumb-content .breadcrumb .breadcrumb-item,
.breadcrumb-area .breadcrumb-content .breadcrumb .breadcrumb-item a {
  font-weight: 500;
}

.accounts {
  background-image: url("../img/content/accounts.jpg");
  background-attachment: scroll;
  background-repeat: no-repeat;
}

.coming-soon {
  background-image: url("../img/content/welcome-bg-2.jpg");
  background-attachment: scroll;
  background-repeat: no-repeat;
}

.download-page {
  background-image: url("../img/content/download-bg-2.jpg");
  background-attachment: scroll;
  background-repeat: no-repeat;
}

.download {
  background-image: url("../img/content/inner-bg.jpg");
  background-repeat: no-repeat;
}

@keyframes grow {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
.map-area {
  height: 550px;
  width: 100%;
}
@media (max-width: 575px) {
  .map-area {
    height: 450px;
  }
}
.map-area iframe {
  height: 100%;
  width: 100%;
}

.preview .hero-section {
  background-image: url("../img/preview/preview-mockup.png");
}
@media (max-width: 575px) {
  .preview .hero-section {
    background-position: top left;
    padding: 70px 0;
  }
  .preview .hero-section h1 {
    font-size: 2.3rem;
  }
}
.preview .hero-content .btn {
  background-image: none;
  background-color: var(--secondary-color);
}
.preview .hero-content .icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-right: 0.25rem !important;
  border-radius: 50%;
  background-color: rgba(144, 145, 156, 0.35);
}
.preview .hero-content .icon::before {
  content: "";
  background-image: url("../img/preview/envato-logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 26px;
  height: 26px;
}
.preview .single-preview > a > img {
  box-shadow: 0 0.313rem 0.875rem var(--secondary-l-color);
  border-radius: 8px;
  transition: all 0.3s ease 0s;
}
.preview .single-preview h6 {
  color: #555;
  transition: all 0.3s ease 0s;
}
@media (max-width: 575px) {
  .preview .single-preview h6 {
    margin-bottom: 0;
  }
}
.preview .single-preview:hover > a > img {
  transform: translateY(-10px);
  box-shadow: 0 0.313rem 0.875rem rgba(45, 49, 54, 0.12);
}
.preview .review-item {
  padding: 2rem;
  background-color: #fff;
  border-radius: var(--border-radius-md);
}
.preview .review-item p {
  color: var(--primary-p-color);
}
.preview .review-item .icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-right: 0.8rem !important;
  border-radius: 50%;
  background-color: rgba(144, 145, 156, 0.35);
}
.preview .review-item .icon::before {
  content: "";
  background-image: url("../img/preview/envato-logo-dark.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 26px;
  height: 26px;
}
.preview .review-item span:last-child {
  color: #555;
}

/*----------------------------------------------
9. Footer
----------------------------------------------*/
/* #region Footer */
.footer-area .footer-top {
  padding: 80px 0;
}
.footer-area .footer-top hr {
  margin: 25px 0;
  border-style: solid;
}
.footer-area .footer-top .social-icons a.icon {
  color: var(--white-color);
}
.footer-area .nav-item {
  margin: 0;
}
.footer-area .nav-item a.nav-link {
  display: inline-block;
  padding: 0.5rem 0;
  font-weight: 500;
}
.footer-area .nav-item a.nav-link:not(:hover) {
  color: var(--nav-item-color);
}
.footer-area .copyright-area {
  border-top: 1px solid var(--primary-l-color);
}
.footer-area .copyright-area span{
  color: #fff;
  font-weight: 300;
}

.footer-bottom{
  background: #030200;
}
.footer-bottom a{
  display: inline-block;
  padding: 0 10px;
}
.footer-bottom a i{
  color: #fff;
  font-size: 20px;
}
.footer-bottom a svg{
  fill: #fff;
  width: 20px;
  height: 20px;
}
/* @media (min-width: 992px) {
  .footer-area.footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
  }
} */
@media (max-width: 575px) {
  .footer-area .items .item:first-child {
    margin-top: 0;
  }
}

/* #endregion Footer */
/*----------------------------------------------
10. Modal
----------------------------------------------*/
/* #region Modal */
.modal-open {
  overflow-x: hidden;
  overflow-y: hidden;
}

.modal-dialog-slideout {
  min-height: 100%;
  margin: 0 0 0 auto;
}

.modal.fade .modal-dialog.modal-dialog-slideout {
  height: 100%;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  transform: translate(100%, 0) scale(1);
}

.modal.fade.show .modal-dialog.modal-dialog-slideout {
  display: flex;
  align-items: start;
  height: 100%;
  transform: translate(0, 0);
}

.modal-content {
  overflow-x: hidden;
  border: none;
  border-radius: 0;
  background-color: var(--primary-bg-color);
}
.modal-content.full {
  height: 100%;
}

.modal-header {
  align-items: center;
  padding: 25px;
  border: none;
  border-radius: 0;
  font-weight: 600;
  color: var(--primary-t-color);
}
.modal-header .modal-title {
  line-height: 0;
}
.modal-header .icon-close {
  font-size: 24px;
  cursor: pointer;
}

.modal-body {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 25px 25px 75px;
  flex-direction: column;
}
.contactForm .btn-close{
  position: absolute;
  top: 15px;
  right: 20px;
}
.contactForm .btn.swap-icon{
  margin: 0 auto;
  padding: 0 60px;
  color: #fff;
  border: transparent;
  text-transform: uppercase;
}
.contactForm .btn.swap-icon:hover{
  background: red;
}
.contactForm .modal-body{
  padding: 25px;
}
.contactForm .modal-content{
  border-radius: 15px;
}
/* #endregion Modal */
/*----------------------------------------------
11. Blog
----------------------------------------------*/
/* #region Blog */
.blog-item .card-thumb {
  display: block;
  overflow: hidden;
}
.blog-item .card-thumb img {
  object-fit: cover;
  transition: all var(--transition-function) var(--transition-duration);
}
.blog-item .post-author {
  font-weight: 500;
}
.blog-item .card-content .post-meta span:not(.post-author),
.blog-item .card-overlay .post-meta span:not(.post-author) {
  opacity: 0.85;
}
.blog-item .card-content .title,
.blog-item .card-overlay .title {
  margin: 16px 0;
  letter-spacing: -0.02em;
}
.blog-item .card-content .title a,
.blog-item .card-overlay .title a {
  font-size: 1.5rem;
  color: var(--primary-t-color);
  display: inline;
  padding-bottom: 5px;
  background-image: linear-gradient(to right, var(--primary-t-color) 0%, var(--primary-t-color) 100%);
  background-size: 100% 5%;
  background-repeat: no-repeat;
  background-position: left 80%;
  transition: all 0.4s ease;
}
.blog-item:hover .card-content .title a,
.blog-item:hover .card-overlay .title a {
  background-size: 0% 5%;
}
.blog-item.scale:hover .card-thumb img {
  transform: var(--transform-scale);
}
.blog-item.has-shadow .card-thumb::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 85%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(3, 7, 18, 0)), to(rgba(3, 7, 18, 0.45)));
  background: linear-gradient(180deg, rgba(3, 7, 18, 0), rgba(3, 7, 18, 0.45));
  -webkit-transition: opacity var(--transition-function) var(--transition-duration);
  transition: opacity var(--transition-function) var(--transition-duration);
}
.blog-item.layout-2 .card-overlay {
  color: var(--white-color);
}
.blog-item.layout-2 .card-overlay .title a {
  background-image: linear-gradient(to right, var(--white-color) 0%, var(--white-color) 100%);
  color: var(--white-color);
}
.blog-item.layout-2 .card-overlay:not(.top) {
  background: 17, 16, 19;
  background: linear-gradient(360deg, rgba(17, 16, 19, 0.5) 0%, rgba(17, 16, 19, 0) 100%);
}

.blog-single .post-thumbnail img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  border-radius: calc(var(--border-radius-sm) / 2);
}
.blog-single .author span {
  font-weight: 500;
}
.blog-single .comments .nav-link {
  font-weight: 500;
}

ul.page-numbers,
.page-links {
  display: flex;
  width: fit-content;
  padding-left: 0;
  margin: 35px auto;
  border-radius: 0.25rem;
  list-style: none;
  transition: all var(--transition-function) var(--transition-duration);
}

ul.page-numbers li {
  margin: 0;
  font-weight: 500;
}

a.page-numbers:not(.btn),
span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: calc(var(--border-radius-sm) / 2);
  font-weight: 500;
  color: var(--primary-t-color);
}
a.page-numbers:not(.btn).current,
span.page-numbers.current {
  background-color: var(--primary-color);
  color: var(--white-color);
}
a.page-numbers:not(.btn):hover:not(.current),
span.page-numbers:hover:not(.current) {
  color: var(--primary-color);
}

.sidebar {
  padding: 40px;
  background-color: var(--primary-bg-color-2);
  border-radius: var(--border-radius-sm);
}
@media (max-width: 575px) {
  .sidebar {
    padding: 30px;
  }
}
.sidebar .item {
  margin-bottom: 35px;
}
.sidebar .widget {
  margin-bottom: 45px;
}
.sidebar .widget li:not(:last-child) {
  border-bottom: 1px solid var(--primary-l-color);
}
.sidebar .widget:last-child {
  margin: 0;
}
.sidebar ul {
  padding-left: 0;
}
.sidebar ul li {
  margin: 0;
  padding: 0.5rem 0;
}
.sidebar ul li a:not(.btn):not(:hover) {
  color: inherit;
}
.sidebar ul li .nav-link {
  padding: 0;
  font-weight: 500;
}
.sidebar ul li .badge {
  justify-content: center;
  align-items: center;
  height: 2rem;
  width: 2rem;
  padding: 0.5rem;
  border-radius: 50rem;
}
.sidebar ul li .badge:not(:hover) {
  color: var(--primary-color);
}

.related-posts .blog-item {
  padding: 1rem 0;
  border-radius: 0;
}
.related-posts .blog-item .image-holder {
  border-radius: 0;
}
.related-posts .blog-item .image-holder img {
  object-fit: contain;
  border-radius: calc(var(--border-radius-sm) / 2);
}
.related-posts .blog-item .card-content .title a,
.related-posts .blog-item .card-overlay .title a {
  font-size: 1.2rem;
  line-height: 1;
}

.absContent{
  position: absolute; color: #efefef; font-size: 100px; font-weight: bold;
  top: -35px; text-wrap-mode: nowrap;
  z-index: 1;
}
.absContent h1{
  text-transform: capitalize;
}
.absContent1{
  position: absolute;
  color: #efefef;
  font-size: 100px;
  font-weight: bold;
  text-wrap-mode: nowrap;
  z-index: 2;
  top: 0;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}
.showMobile{display: none;}
		.mobileButton {display: inline-flex;justify-content: center; margin-top: 30px;}

/* #endregion Blog */
/*----------------------------------------------
12. All Media Queries
----------------------------------------------*/
/* #region All Media Queries */
@media (max-width: 1199px) {
  /* #region Section */
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
  /* #endregion Section */
  /* #region Header */
  header .navbar-expand .navbar-nav.toggle {
    display: flex;
  }
  header .navbar-expand .navbar-nav.contacts, header .navbar-expand .navbar-nav.items, header .navbar-expand .navbar-nav.icons .social {
    display: none;
  }
  /* #endregion Header */
}
@media (max-width: 991px) {
  /* #region General */
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2rem;
  }
  /* #endregion General */
  /* #region Helper Class */
  .intro {
    margin-bottom: 50px;
  }
  /* #endregion Helper Class */
}
@media (max-width: 767px) {

  .showMDesktop{display: none;}
			.showMobile{display: block;}
      a.btn.showMobile {padding: 16px 30px;}

  /* #region General */
  body {
    overflow-x: hidden;
  }
  h1 {
    font-size: 2.8rem;
  }
  /* #endregion General */
  /* #region Section */
  section {
    padding: 90px 0;
  }
  /* #endregion Section */
  /* #region Header */
  .navbar-brand {
    margin: 0;
  }
  /* #endregion Header */
}
@media (max-width: 600px) {
  /* #region Header */
  header .navbar-sticky {
    margin-top: 0 !important;
  }
  /* #endregion Header */
}

.mobile-show{
  display: none;
}
.bytheBest{
  position: absolute; top: 35%; left: 50%; transform: translate(-50%, -35%); z-index: 3;
}
@media (max-width: 576px) {
  /* #region Helper Class */
  .avatar-lg {
    width: 4rem;
    height: 4rem;
  }
  /* #endregion Helper Class */
  /* #region Modal */
  .modal-body {
    align-items: start;
  }
  /* #endregion Modal */
  .shape-topLeft{
    display: none;
  }
  header .navbar-expand{
    padding: 5px;
  }
  header .navbar-expand .navbar-brand svg{
    width: 90px;
    height: 32px;
  }
  .navbar-nav.icons{
    margin-left: 0;
  }
  .hero-section .hero-thumb img{
    display: none;
  }

  .shape-cicleStripe, .shape-halfPie{
    display: none;
  }
  .features-section::before{
    background: none;
    z-index: 0;
    top: auto;
  }
  .features-section::after{
    z-index: 0;
  }
  .hero-section.layout-2{
    padding-top: 220px;
  }
  .hero-section .hero-content h1{
    padding-top: 0;
    font-size: 48px;
    line-height: 48px;
    padding-left: 54px;
  }
  .hero-section::before{
    background-size: contain;
    top: 0;
    right: 30%;
    width: 100vh;
    height: 100vh;
    z-index: 1;
  }
  .bg-shape{
    background: url(https://www.jagranjosh.com/events/campus-connect/assets/images/mobileBg.png) no-repeat;
      width: 90%;
      right: 0;
      z-index: 2;
    }
    
    .hero-section .hero-content{
      margin-top: 0;
      z-index: 3;
    }
    .hero-section .hero-content .sub-heading {
      font-size: 1rem;
      line-height: 1.4;
      padding-left: 64px;
    } 
    .hero-section .hero-thumb::before{
      width: 350px;
      height: 350px;
      z-index: -1;
      top: 135px;
      left: -20%;
    } 
    .features-section .intro h2, .features-section .intro p{
      text-align: left;
    } 
    .features-section .intro p{
      font-size: .9rem;
      color: #111;
    }
    .features-section{
      padding-top: 100px !important;
    } 
    .features-section.roles{
      padding-top: 40px !important;
      background: #fef5f3;
    } 
    .features-section::after{
      display: none;
    }
    .perks{
      padding-top: 50px !important;
      padding-bottom: 0px !important;
    }
    .perks .position-absolute{
      display: none;
    }
    .perks .position-relative a.btn{
      display: none;
    }
    .perks .feature-box{
      padding: 0 !important;
    }
    .perks .feature-box h2{
      margin-top: 0;
      font-size: 72px;
      line-height: 72px;
    }
    .perks .bg-red{
      margin-top: 2px;
    }
    .perks .col.mt-25{
      margin-top: 40px !important;
    }
    .perks .col.mt-minus-12{
      margin-top: 50px !important;
    }
    .shape_right {
      position: absolute;
      top: -25px;
      right: -300px;
      z-index: 1;
      overflow: hidden;
    }
    .shape_right img{
      width: 75%;
    }
    #resources{
      padding-bottom: 40px;
    }
    .contact-form{
      padding: 25px;
      display: block;
    }
    .contact-form.outlined .form-control{
      margin-bottom: 15px;
    }
    .web-show{
      display: none;
    }
    .mobile-show{
      display: block;
    }
    .module{
      margin: 0;
      padding: 20px;
      min-height: auto;
    }
    .module-2, .module-4{
      margin-top: 0;
    }
    .module-description{
      color: #111;
      text-align: left;
      font-size: .8rem;
    }
    .absContent{
      font-size: 48px;
      top: -6px;
    }
    .absContent1 h2{
      font-size: 1.2rem;
    }
    .contact-area{
      bottom: -30px;
    }
    .contact-area .col-12.mt-4{
      margin-top: 0 !important;
    }
    ul.whySectionShape{
      background: transparent;
      flex-direction: column;
    }
    .campusmod .module.module-2.mt_80, .po .module.module-2.mt_80{
      margin-top: 30px !important;
    }
    .po .web-show{
      display: block !important;
    }
    .mapsection{
      overflow: hidden;
    }
    .mapsection .position-absolute{
      position: relative !important;
    }
    .mapsection .position-absolute img{
      display: none;
    }
    .bytheBest{
      position: relative;
      top: 155px;
      left: 20%;
      transform: none;
      margin-bottom: 45px;
    }
}


.slider-wrap {
  overflow: hidden;
  height: 100%;
  width: 100%;
  background: red;
}
.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  border-radius: 8px;
}
.swiper-slide {
  opacity: .25;
}
.swiper-container {
  overflow: visible;
}
.swiper-slide-visible {
  opacity: 1;
}
.swiper-slide img{
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.swiper-slide .content{
  min-height: 120px;
  padding: 25px;
  text-align: left;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 2px;
}