@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
.tagline {
    font-family: 'Inter', sans-serif;
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    scroll-behavior: auto;
}


/* @font-face {
    
    src: url(../fonts/Inter-VariableFont_opsz_wght.ttf);
}

@font-face {
    font-family: mm2;
    src: url(../fonts/Inter-Italic-VariableFont_opsz_wght.ttf);
} */

.color1 {
    color: #301934;
}

.color2 {
    color: #a5dbdc;
}

.color3 {
    color: #edf3f5;
}

.color4 {
    color: #d2e2e2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}


/* header started */

.hamburger {
    display: inline-block;
    cursor: pointer;
    -webkit-transition-property: opacity, -webkit-filter;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    -webkit-transition-duration: 0.9s;
    transition-duration: 0.9s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    font: inherit;
    color: #fff;
    text-transform: none;
    background-color: #fff;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger-box {
    width: 30px;
    height: 21px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1.5px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: #444;
    border-radius: 10px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -9px;
}

.hamburger-inner::after {
    bottom: -9px;
}

.hamburger--elastic .hamburger-inner {
    top: 1.5px;
    -webkit-transition-duration: 0.45s;
    transition-duration: 0.45s;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
    top: 9px;
    -webkit-transition: opacity 0.43s 0.275s ease;
    transition: opacity 0.43s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
    top: 18px;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, 9px, 0) rotate(135deg);
    transform: translate3d(0, 9px, 0) rotate(135deg);
    -webkit-transition-delay: 0.075s;
    transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -18px, 0) rotate(-270deg);
    transform: translate3d(0, -18px, 0) rotate(-270deg);
    -webkit-transition-delay: 0.075s;
    transition-delay: 0.075s;
}

.header {
    position: relative;
    /* background-color: #fff; */
    width: 100%;
    z-index: 9999;
}

.custom-navbar {
    /* display: -webkit-box; */
    /* display: -ms-flexbox; */
    /* display: -webkit-flex; */
    /* display: flex; */
    /* -webkit-box-align: center; */
    /* -webkit-align-items: center; */
    /* -ms-flex-align: center; */
    /* align-items: center; */
    background-color: #fff;
    -webkit-transition: all, 0.3s;
    transition: 1s ease-in-out;
    /* font-family: mm1, cursive; */
}

@media (prefers-reduced-motion: reduce) {
    .custom-navbar {
        -webkit-transition: none;
        transition: none;
    }
}

.logo {
    /* font-size: calc(20px + (30 - 20) * ((100vw - 300px) / (1300 - 300)));
	text-decoration: none;
	color: #301934; */
    width: 22%;
}

.logo img {
    width: 100%;
}

.custom-navbar .container {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all, 0.3s;
    transition: all, 0.3s;
    max-width: 100% !important;
}


/* @media (prefers-reduced-motion: reduce) {
  .custom-navbar .container {
    -webkit-transition: none;
    transition: none;
  }
} */


/* .custom-navbar .hamburger {
  margin-left: 20px;
  padding-top: 5px;
} */


/* .custom-navbar .hamburger .hamburger-inner,
.custom-navbar .hamburger .hamburger-inner::before,
.custom-navbar .hamburger .hamburger-inner::after {
  background: #301934;
} */


/* .custom-navbar .nav {
  list-style-type: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  margin-left: auto;
} */

.hamburger-menu,
.hdr_overlay {
    display: none;
}

.custom-navbar .nav .item {
    margin: 0 15px;
}

.custom-navbar .nav .item .link {
    font-size: 1.2vw;
    color: #301934;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s;
}

.custom-navbar .nav .item .link:hover,
.custom-navbar .nav .item .link.active,
.hdr_overlay .link.active {
    color: #f7c563;
}


/* .custom-navbar.affix {
  background: #fff;
  border-bottom: 1px solid rgba(222, 226, 230, 0.34);
} */


/* .custom-navbar.affix .logo {
  color: #695aa6;
} */


/* .custom-navbar.affix .container {
  min-height: 65px;
} */


/* .custom-navbar.affix .nav .item .link {
  color: #6c757d;
} */


/* .custom-navbar.affix .hamburger-inner,
.custom-navbar.affix .hamburger-inner::before,
.custom-navbar.affix .hamburger-inner::after {
  background: #6c757d;
} */


/* @media (min-width: 768px) {
  .custom-navbar .nav .item {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
    transform: translateY(-50px);
  }

  .custom-navbar .nav .item:nth-child(9) {
    -webkit-transition: all, 0.1s;
    transition: all, 0.1s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
} */


/* @media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .custom-navbar .nav .item:nth-child(9) {
    -webkit-transition: none;
    transition: none;
  }
} */


/* @media (min-width: 768px) {
  .custom-navbar .nav .item:nth-child(8) {
    -webkit-transition: all, 0.2s;
    transition: all, 0.2s;
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
  }
} */


/* @media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .custom-navbar .nav .item:nth-child(8) {
    -webkit-transition: none;
    transition: none;
  }
} */


/* @media (min-width: 768px) {
  .custom-navbar .nav .item:nth-child(7) {
    -webkit-transition: all, 0.3s;
    transition: all, 0.3s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
} */


/* @media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .custom-navbar .nav .item:nth-child(7) {
    -webkit-transition: none;
    transition: none;
  }
} */


/* @media (min-width: 768px) {
  .custom-navbar .nav .item:nth-child(6) {
    -webkit-transition: all, 0.4s;
    transition: all, 0.4s;
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
  }
} */


/* @media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .custom-navbar .nav .item:nth-child(6) {
    -webkit-transition: none;
    transition: none;
  }
} */


/* @media (min-width: 768px) {
  .custom-navbar .nav .item:nth-child(5) {
    -webkit-transition: all, 0.5s;
    transition: all, 0.5s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
} */


/* @media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .custom-navbar .nav .item:nth-child(5) {
    -webkit-transition: none;
    transition: none;
  }
} */


/* @media (min-width: 768px) {
  .custom-navbar .nav .item:nth-child(4) {
    -webkit-transition: all, 0.6s;
    transition: all, 0.6s;
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
  }
} */


/* @media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .custom-navbar .nav .item:nth-child(4) {
    -webkit-transition: none;
    transition: none;
  }
} */


/* @media (min-width: 768px) {
  .custom-navbar .nav .item:nth-child(3) {
    -webkit-transition: all, 0.7s;
    transition: all, 0.7s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
} */


/* @media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .custom-navbar .nav .item:nth-child(3) {
    -webkit-transition: none;
    transition: none;
  }
} */


/* @media (min-width: 768px) {
  .custom-navbar .nav .item:nth-child(2) {
    -webkit-transition: all, 0.8s;
    transition: all, 0.8s;
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
  }
} */


/* @media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .custom-navbar .nav .item:nth-child(2) {
    -webkit-transition: none;
    transition: none;
  }
} */


/* @media (min-width: 768px) {
  .custom-navbar .nav .item:nth-child(1) {
    -webkit-transition: all, 0.9s;
    transition: all, 0.9s;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }
} */


/* @media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .custom-navbar .nav .item:nth-child(1) {
    -webkit-transition: none;
    transition: none;
  }
} */


/* 
@media (min-width: 768px) {
  .custom-navbar .nav.show .item {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
} */


/* @media (max-width: 991.98px) {
  .custom-navbar .hamburger {
    margin-left: auto;
  }

  .custom-navbar .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    background: #fff;
    border-radius: 0 0 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: auto;
    border-bottom: 1px solid #dee2e6;
    padding: 13px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
    -webkit-transition: all, 0.3s;
    transition: all, 0.3s;
  }
} */


/* @media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .custom-navbar .nav {
    -webkit-transition: none;
    transition: none;
  }
} */


/* @media (max-width: 991.98px) {
  .custom-navbar .nav.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .custom-navbar .nav .item .link {
    padding: 17px 12px;
    display: block;
    color: #6c757d;
  }
} */


/* header end */

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background-color: #f0f0f0;
    padding: 5px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.marquee:before,
.marquee:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    background: linear-gradient(to right, #f0f0f0, transparent);
    z-index: 1;
}

.marquee:after {
    right: 0;
    transform: rotate(180deg);
}

.marquee:before {
    left: 0;
}

.marquee-content {
    /* display: inline-block; */
    animation: marquee 40s linear infinite;
    color: #333;
    transition: all 0.3s ease;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-content span {
    display: inline-block;
    margin-right: 40px;
    position: relative;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s ease;
}

.marquee-content span:after {
    content: "*";
    color: crimson;
    margin-left: 10px;
    font-size: 14px;
    position: absolute;
    right: -26px;
    transform: rotate(0deg);
    animation: rotateSymbol 2s infinite ease-in-out;
}

.marquee-content span:last-child:after {
    content: "";
}

.marquee-content span:hover {
    color: #007bff;
}

@keyframes rotateSymbol {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(360deg) scale(1.2);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .marquee-content {
        animation-duration: 25s;
        font-size: 16px;
    }
}


/* ######## index page started ############## */


/* .carousel-item {
  min-height: 400px;
} */

.sctn1Bnnr1 {
    background: url(../assets/img/education_background.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    padding: 6% 0 5.35% 0;
}

.bnnr1txtl {
    padding: 20% 0 0;
    text-align: center;
}

.bnnr1txtl h2 {
    font-size: 2.5vw;
    color: #fff;
    display: inline-block;
    animation: zoomInAnime 0.8s ease forwards;
    transform-origin: center center;
}

@keyframes zoomInAnime {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.sctn1Bnnr1cont {
    width: 85%;
    margin: auto;
}

.sctn1Bnnr1imgsl img {
    width: 100%;
    position: relative;
}

.sctn1Bnnr1imgsl {
    width: 100%;
    position: relative;
}

.sctn1Bnnr1imgsl1 img,
.sctn1Bnnr1imgsl2 img,
.sctn1Bnnr1imgsl3 img,
.sctn1Bnnr1imgsl4 img,
.sctn1Bnnr1imgsl5 img {
    width: 100%;
}

.sctn1Bnnr1imgsl1 {
    width: 10%;
    position: absolute;
    top: 24%;
    left: 7%;
    animation: fadeDown 1.5s ease-out;
    animation-fill-mode: forwards;
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.sctn1Bnnr1imgsl2 {
    width: 15%;
    position: absolute;
    top: 4%;
    left: 21%;
    animation: fadeDown 1.5s ease-out;
    animation-fill-mode: forwards;
}

.sctn1Bnnr1imgsl3 {
    width: 11%;
    position: absolute;
    top: -10%;
    left: 43%;
    animation: fadeDown 1.5s ease-out;
    animation-fill-mode: forwards;
}

.sctn1Bnnr1imgsl4 {
    width: 11%;
    position: absolute;
    top: 8%;
    right: 23%;
    animation: fadeDown 1.5s ease-out;
    animation-fill-mode: forwards;
}

.sctn1Bnnr1imgsl5 {
    width: 17%;
    position: absolute;
    top: 23%;
    right: 2%;
    animation: fadeDown 1.5s ease-out;
    animation-fill-mode: forwards;
}

.sctn1Bnnr2 {
    background: url(../assets/img/job_background.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    padding: 2% 0 0 0;
    position: relative;
}

.sctn1Bnnr2txt {
    width: 22%;
    text-align: center;
    position: absolute;
    top: 15%;
    left: 60%;
    transform: translate(-50%, 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sctn1Bnnr2txt1 {
    font-size: calc(1.1vw + 1.1vh);
    display: block;
    padding: 1.5% 9%;
    background-color: #f7c563;
    color: #000;
    width: 190px;
    margin-bottom: 4%;
    clip-path: polygon(9% 100%, 91% 100%, 100% 0, 0 0);
}

.sctn1Bnnr2txt2 {
    font-size: calc(1.1vw + 1.1vh);
    display: inline-block;
    padding: 1.5% 15%;
    background-color: #000;
    width: 190px;
    margin-bottom: 4%;
    color: #fff;
    clip-path: polygon(9% 100%, 91% 100%, 100% 0, 0 0);
}

.sctn1Bnnr2btn {
    text-decoration: none;
    font-size: calc(0.9vw + 0.9vh);
    color: #fff;
    background-color: #000;
    padding: 1% 5%;
    border: 1px solid #000;
    margin-top: 10%;
    border-radius: 4px;
    transition: ease 1s;
}

.sctn1Bnnr2btn:hover {
    color: #f7c563;
}


/* .sctn1Bnnr2cont {
        position: relative;
    } */

.sctn1Bnnr2quotecont {
    padding: 27% 15% 5%;
}

.sctn1Bnnr2quotetxt {
    font-size: calc(1.4vw + 1.4vh);
    color: #fff;
    text-align: justify;
    line-height: 1;
    margin: 0;
    animation: zoomInAnime 0.8s ease forwards;
    transform-origin: center center;
}

.sctn1Bnnr2quoteauthor {
    /* font-family: mm1, cursive; */
    font-size: calc(1.2vw + 1.2vh);
    color: #fff;
    text-align: end;
    margin: 0;
    animation: zoomInAnime 0.8s ease forwards;
    transform-origin: center center;
}


/* @keyframes zoomIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
} */

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(150px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sctn1Bnnr2hd {
    position: absolute;
    top: 16%;
    left: 29%;
    /* font-family: mm1, cursive; */
    font-size: 3.5vw;
    text-align: center;
}

.sctn1Bnnr2cont {
    /* text-align: center;
	padding-top: 30%; */
}


/* .sctn1Bnnr2cont h3 {
	font-family: mm1, cursive;
	font-size: 3.3vw;
	color: #301934;
} */

.sctn1Bnnr2contimg img {
    width: 100%;
}

.sctn1Bnnr2contimg {
    width: 70%;
    float: right;
    position: relative;
    animation: fadeRight 2s ease forwards;
    opacity: 0;
}

.sctn2 {
    width: 75%;
    margin: auto;
    padding: 5% 0;
}

.sctn2img img {
    width: 100%;
    height: 100%;
}

.sctn2img {
    width: 100%;
    height: 100%;
    /* filter: drop-shadow(3px 3px 3px #301934); */
}

.sctn2Content {
    /* margin: 12% 0 0; */
    text-align: center;
    padding: 0 1%;
}

.sctn2Content1 {
    color: #000;
    font-size: 1.2vw;
    text-decoration: none;
    opacity: 0.6;
    transition: all 0.3s;
}

.sctn2Content1:hover {
    color: #000;
    opacity: 1;
}

.sctn2Txt h3 {
    font-size: 3.5vw;
    font-weight: 500;
    line-height: 1;
    color: #301934;
    text-align: center;
    margin-bottom: 2%;
}

.sctn2Txt p {
    font-size: calc(0.75vw + 0.75vh);
    line-height: 1;
    text-align: justify;
    margin-bottom: 3%;
}

.sctn2Txt a {
    padding: 1% 5% 1.4%;
    font-size: calc(0.67vw + 0.67vh);
    text-transform: capitalize;
    text-decoration: none;
    border: none;
    background-color: #301934;
    border-radius: 4px;
    color: #e6e6fa;
    transition: all 1s;
}

.sctn2Txt a:hover {
    background-color: #f7c563;
    color: #301934;
}


/* blog section started */

.sctn3 {
    background-color: #f6f5fc;
    padding: 3% 0 5%;
}

.sctn3hd {
    font-size: 3vw;
    color: #301934;
    text-align: center;
    margin-bottom: 1%;
}

.sctn3hdMb {
    margin-bottom: 3%;
}

.sctn3blg {
    width: 80%;
    /* padding: 0 7%; */
    margin: auto;
}

.sctn3Boxes {
    /* box-shadow: 2px 2px 6px rgb(100 95 136 / 16%); */
    transition: all 0.3s;
    margin: 8% 3%;
    border: 2px solid #eee;
    background-color: #fff;
    /* width: 100%; */
}

.sctn3Boxes:hover {
    box-shadow: 0 1px 2px -2px #4b4b4b, 0 3px 6px 0 #4b4b4b, 0 3px 12px 2px #4b4b4b;
}

.sctn3Cont {
    padding: 5% 5% 7%;
    /* background-color: #fff; */
}

.sctn3Img img {
    width: 100%;
}

.sctn3Img {
    width: 100%;
}

.sctn3Cont h5 {
    color: #301934;
    font-size: calc(1vw + 1vh);
    /* font-family: mm1, cursive; */
    text-transform: capitalize;
}

.sctn3Cont p {
    font-size: calc(0.72vw + 0.72vh);
    color: #000;
    line-height: 1.2;
    text-align: justify;
}

.sctn3DtBtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5%;
}

.sctn3DtBtn p {
    font-size: calc(0.8vw + 0.8vh);
    color: #301934;
    font-weight: bold;
    margin: 0;
}

.sctn3DtBtn a {
    font-size: calc(0.55vw + 0.55vh);
    font-weight: bold;
    color: #fff;
    padding: 1.2% 4%;
    border-radius: 4px;
    border: 1px solid #301934;
    background-color: #301934;
    text-decoration: none;
    transition: all 1s;
}

.sctn3DtBtn a:hover {
    color: #301934;
    background-color: #f7c563;
    border: 1px solid #f7c563;
}

.owl-carousel .owl-nav span {
    display: none;
}

.owl-carousel .owl-nav .owl-prev:before,
.owl-carousel .owl-nav .owl-next:before {
    background: none;
    padding: 0;
    display: block;
    position: absolute;
    top: 43%;
    transform: translate(-50%, -50%);
    font-family: "unicons";
    font-size: 3vw;
    line-height: normal;
    color: #301934;
    transition: all 1s;
}

.owl-carousel .owl-nav .owl-prev:before {
    content: "\276E";
    left: -4%;
}

.owl-carousel .owl-nav .owl-next:before {
    content: "\276F";
    right: -6%;
}

.owl-carousel .owl-nav .owl-prev:hover:before,
.owl-carousel .owl-nav .owl-next:hover:before {
    color: #f7c563;
}

.owl-theme .owl-nav [class*="owl-"] {
    background: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    color: #ffc200 !important;
}


/* book section started */

.bksect {
    overflow: hidden;
    background-color: #301934;
}

.bksectinnrimg img {
    width: 100%;
}

.bksectinnrimg {
    width: 100%;
}

.bksectinnrtxt {
    text-align: center;
    padding: 17% 8% 17%;
}

.bksectinnrtxt h3 {
    font-size: 3.5vw;
    color: #f7c563;
    margin-bottom: 3%;
}

.bksectinnrtxt a {
    padding: 0.3% 1% 0.4%;
    border: 1px solid #f7c563;
    font-size: 1.2vw;
    text-transform: capitalize;
    font-weight: bold;
    color: #301934;
    background-color: #f7c563;
    margin-top: 3%;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.5s ease-in-out;
}

.bksectinnrtxt a:hover {
    background-color: #301934;
    color: #f7c563;
    border: 1px solid #f7c563;
}


/* book section end */

.tutsect {
    width: 85%;
    margin: auto;
    padding: 3% 2% 5%;
}

.tutsect h2 {
    color: #301934;
    font-size: 3vw;
    text-align: center;
    margin-bottom: 3%;
}

.tutsectbox {
    width: 100%;
    height: 150px;
    background-color: #301934;
    border-radius: 10px;
    margin-bottom: 6%;
    position: relative;
    transition: 0.5s ease-in-out;
}

.tutsectbox:hover {
    box-shadow: 0 1px 2px -2px #4b4b4b, 0 3px 6px 0 #4b4b4b, 0 3px 12px 2px #4b4b4b;
}

.tutsectshape {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #f7c563;
    left: 0;
    bottom: 0;
    border-radius: 0 90% 0 10px;
}

.tutsectbox h5 {
    color: #f7c563;
    font-size: calc(1vw + 1vh);
    position: absolute;
    right: 10%;
    bottom: 7%;
}

.newspage {
    overflow: auto;
}

.sctn4 {
    background-color: #f6f5fc;
    padding: 3% 0;
}

.sctn4innr {
    width: 67%;
    margin: auto;
    padding: 0 0 2% 0;
}

.sctn4btn,
.tutsectbtn {
    text-align: center;
}

#pagingBox {
    padding: 0 2%;
}

.sctn4btn a,
.tutsectbtn a {
    text-decoration: none;
    background-color: #301934;
    border: 1px solid #301934;
    color: #fff;
    text-transform: capitalize;
    font-size: calc(0.75vw + 0.75vh);
    padding: 0.5% 2% 0.7%;
    border-radius: 4px;
    transition: all 0.5s;
}

.sctn4btn a:hover,
.tutsectbtn a:hover {
    background-color: #f7c563;
    border: 1px solid #f7c563;
    color: #301934;
}


/* blog section started */


/* career counselling started */

.sectpath {
    background-color: #fff;
    padding: 4% 12% 5%;
}

.sectpathHd {
    font-size: 3vw;
    color: #301934;
    text-align: center;
    line-height: 1;
    margin-bottom: 1%;
}

.sectpathText {
    font-size: 10px;
    line-height: 1;
    color: #301934;
    text-align: center;
    margin-bottom: 1%;
}

.sectpathContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3%;
    margin-bottom: 3%;
}

.sectpathImgs {
    /* background-color: #fff; */
    /* border-radius: 16px; */
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); */
    /* width: 200px; */
    /* padding: 20px; */
    margin-bottom: 3%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sectpathImgs:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12); */
}

.sectpathImgs img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    /* margin-bottom: 12px; */
}

.sectpathImgs h3 {
    font-size: 16px;
    color: #301934;
    margin: 0;
}


/* ############ index page end ##################### */


/* ############  blog page started ################### */

.blg-cont {
    background-color: #f4f5f8;
}

.blg {
    width: 83%;
    margin: auto;
    padding: 3% 0;
    background-color: #f6f5fc;
}

.blginnr {
    position: relative;
    /* display: flex; */
    /* flex-direction: column; */
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 10%;
    /* box-shadow: 0 10px 10px #eee; */
    transition: all 1s;
}

.blginnr:hover {
    box-shadow: 0 1px 2px -2px #4b4b4b, 0 3px 6px 0 #4b4b4b, 0 3px 12px 2px #4b4b4b;
    /* box-shadow: 0px 0px 30px 1px rgba(0,0,0,0.06); */
}

.pagingBoxCont {
    display: flex;
    flex-wrap: wrap;
}

.blgcrd {
    /* padding: 1.5%; */
    width: 100%;
    background-color: #fff;
}

.pagingBoxContInner {
    width: 46%;
    margin: 0 2%;
}

.blgflx1 {
    width: 100%;
    /* height: 12rem; */
    /* border: 1px solid #eee; */
}

.blgflx1 img,
.blgflx1 iframe {
    width: 100%;
    /* height: 100%; */
    height: 170px;
    /* object-fit: cover; */
    transition: all 1s;
}

.blgflx1 img:hover {
    transform: scale(0.98);
}

.blgttl {
    color: #301934;
    text-decoration: none;
    font-size: 1.3vw;
    font-weight: bold;
    text-align: justify;
    transition: all 0.3s;
}

.blgbd {
    color: #000;
    text-decoration: none;
    text-align: justify;
    word-wrap: break-word;
    font-size: 1.1vw;
}

.blgflx2 {
    /* border: 1px solid #eee; */
    padding: 4% 5% 7%;
    width: 100%;
}

.blgflx2 p {
    margin-top: 1%;
    margin-bottom: 0;
}

.blgflxul {
    display: flex;
    margin: 3% 0;
}

.blgflxulmr {
    margin-right: 4%;
    color: #666 !important;
    font-size: 1.1vw;
    text-decoration: none;
    transition: all 0.3s;
}

.blgflxulmr2 {
    color: #666;
    font-size: 1.1vw;
    text-decoration: none;
    transition: all 0.3s;
}

.blgflxulmr svg {
    font-size: 1.1vw;
    color: #f7c563;
}

.blgflxulmr2 svg,
.blgflxulmr2 i {
    font-size: 1.1vw;
    color: #f7c563;
}

.ctnbtn {
    display: inline-block;
    color: #301934;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid #301934;
    padding: 0% 2% 0.5%;
    font-size: 1.1vw;
    border-radius: 4px;
    margin-top: 5%;
    transition: all 0.5s;
}

.ctnbtn:hover {
    background-color: #301934;
    color: #f7c563;
}

.blgbd:hover {
    color: #000;
}

.blgttl:hover {
    color: #301934;
    text-decoration: underline;
}

.blgflxulmr:hover {
    color: #301934;
}

.scholar_sidebar,
.course_details_sidebar,
.blog_card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 3%;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 10%;
    /* box-shadow: 0 10px 10px #eee; */
}

.blog_card_body {
    display: flex;
    flex-direction: column;
}

.scholar_sidebar h6,
.course_details_sidebar h6,
.blog_post h6,
.blog_categories h6 {
    font-size: 1.3vw;
    font-weight: bold;
    padding: 1.3% 2.5% 2%;
    /* background-color: grey; */
    border-radius: 4px;
    position: relative;
    margin-bottom: 3%;
}

.scholar_sidebar h6::after,
.course_details_sidebar h6::after,
.blog_post h6::after,
.blog_categories h6::after {
    background-color: #f7c563;
    width: 20%;
    height: 2px;
    position: absolute;
    content: "";
    left: 10px;
    bottom: 0;
}


/* .blog_categories {
  margin-bottom: 8%;
} */

.single_blog_txt {
    display: block;
    text-decoration: none;
    padding: 1% 0 1% 3%;
    margin: 0 2.5%;
    color: #666;
    text-transform: capitalize;
    font-size: 1.2vw;
    font-weight: 600;
    position: relative;
    /* border-bottom: 1px solid #eee; */
    transition: all 0.3s;
}

.single_blog_txt::before {
    content: "";
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #f7c563;
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    transform: translateY(-50%);
}

.single_blog_txt:hover {
    color: #301934;
    /* padding-left: 1%; */
    text-decoration: underline;
}

.blg {
    overflow: hidden;
}

.blog-separator-background-color {
    background-color: #666;
    margin: 0 10px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    align-self: center;
    display: block;
}

.blogbnnr {
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../assets/img/blog/blogbanner.jpeg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    width: 100%;
    padding: 10% 0;
}

.blghd h1 {
    font-weight: bold;
    font-size: calc(1.5vw + 1.5vh);
    color: #fff;
    text-align: end;
    margin: 0;
    margin-right: 10%;
}

.sblg {
    width: 83%;
    margin: auto;
    padding: 3% 0;
}

.sblginnr {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 10px 10px #eee;
}

.sblgcrd {
    display: flex;
    flex-direction: column;
    padding: 1.5%;
    flex: 1 1 auto;
    width: 100%;
}

.single_img {
    width: 100%;
    /* height: 20rem; */
}

.single_img img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    /* object-fit: cover; */
    transition: all 1s;
}

.single_img iframe {
    width: 100%;
    height: 350px;
}

.single_img img:hover {
    transform: scale(0.98);
}

.scontainer h2,
.sblgcrdtxt h1,
.companyNotes h1,
.sblgcrdtxt h2,
.companyNotes h2,
.sblgcrdtxt h3,
.companyNotes h3,
.sblgcrdtxt h4,
.companyNotes h4,
.sblgcrdtxt h5,
.companyNotes h5,
.sblgcrdtxt h6,
.companyNotes h6 {
    font-weight: 600;
    color: #301934;
    margin-bottom: 1%;
}

.sblgcrdtxt h1,
.companyNotes h1 {
    font-size: 2.5vw;
}

.scontainer h2,
.sblgcrdtxt h2,
.companyNotes h2 {
    font-size: 2vw;
}

.sblgcrdtxt h3,
.companyNotes h3 {
    font-size: 1.75vw;
}

.sblgcrdtxt h4,
.companyNotes h4 {
    font-size: 1.5vw;
}

.sblgcrdtxt h5,
.tutorial-slide,
.companyNotes h5 {
    font-size: 1.25vw;
}

.sblgcrdtxt h6,
.companyNotes h6 {
    font-size: 1vw;
}

.scholarship_section p,
.scholarship_section ul li,
.sblgcrdtxt p,
.sblgcrdtxt ul li,
.sblgcrdtxt ol li,
.companyNotes p,
.companyNotes ul li,
.companyNotes ol li,
.news-table tr th,
.news-table tr td {
    font-size: 1.2vw;
    color: #000;
    line-height: 1.5rem;
    margin-bottom: 0.5rem;
}

.entrance_section ol li,
.entrance_section ul li {
    font-weight: 500;
    margin-bottom: 0;
}

.nwsovrly tr th,
.nwsovrly tr td {
    color: #fff;
}

.code_block {
    margin-bottom: 0.5rem;
}

.code_block {
    background: rgb(238, 238, 238);
    border: 1px solid rgb(204, 204, 204);
    padding: 5px 10px;
    position: relative;
}

.copy_button {
    position: absolute;
    top: 5px;
    right: 10px;
    background-color: #008cba;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 12px;
}

.copy_button:hover {
    background-color: #006494;
}

#your_summernote.sblgcrdtxt2 {
    font-size: 1.2vw;
    color: #000;
    line-height: 1.5rem;
}

.sblgcrdtxt2 {
    font-size: 1.2vw;
    color: #000;
    line-height: 1.5rem;
}

.sblgcrdtxt pre,
.companyNotes pre {
    margin-bottom: 0;
}

.sblgcrdtxt img {
    width: 100% !important;
    height: 100% !important;
}


/* ############  blog page end ################### */


/* ############   navigation button started ################### */

#page_navigation {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#page_navigation a {
    /* padding: 0.5% 1%; */
    border: 1px solid #eee;
    margin: 2px;
    font-size: 1.1vw;
    color: #666;
    background-color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 45px;
    /* line-height: 50px; */
    border-radius: 50%;
    text-align: center;
}

.active_page {
    background-color: #f7c563 !important;
    color: #fff;
}

.page_link,
.previous_link,
.next_link {
    padding: 5px 10px;
    margin: 0 5px;
    background-color: #f2f2f2;
    color: #333;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

.page_link:hover,
.previous_link:hover,
.next_link:hover {
    color: #fff !important;
    background-color: #301934 !important;
}

.page_link.active_page {
    background-color: #301934;
    color: #fff !important;
}


/* ############   navigation button end ################### */


/* ############   news started ################### */

.news-cont {
    background-color: #f4f5f8;
}

.newsbnnr {
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../assets/img/news/job_news.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    width: 100%;
    padding: 10% 0;
}

.newshd h1 {
    font-weight: bold;
    font-size: calc(2.5vw + 2.5vh);
    color: #fff;
    text-align: center;
    margin: 0;
    text-transform: capitalize;
}

.companylogo img {
    width: 100%;
    height: 96px;
    transition: all 1s;
}

.companylogo {
    width: 80%;
    margin: auto;
}

.news {
    width: 83%;
    margin: auto;
    padding: 3% 0;
}

.newsinnr {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 5%;
    width: 100%;
    margin: auto;
    margin-bottom: 11%;
    border-radius: 4px;
    /* box-shadow: 0 0px 10px 1px rgba(0, 0, 0, 0.15); */
    position: relative;
    overflow: hidden;
}

.nwsovrly {
    padding: 5%;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 350ms cubic-bezier(0, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background-color: #301934;
    color: #fff;
}

.nwsovrly.top {
    left: 0;
    top: -100%;
}

.newsinnr:hover .nwsovrly.top {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.newsbutton a {
    font-size: calc(0.7vw + 0.7vh);
    text-decoration: none;
    color: #301934;
    background-color: #f7c563;
    border: 1px solid #f7c563;
    /* padding: 0.5% 7px 0.7%; */
    padding: 1px 7px 2.5px;
    transition: all 0.5s;
}

.newsbutton a:hover {
    border: 1 solid #301934;
    color: #f7c563;
    background-color: #301934;
}

.newshd h4 {
    text-align: center;
    font-size: calc(1vw + 1vh);
}

.news-table {
    width: 100%;
    margin: 5% 0;
}

.companybox {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 1px #efefef;
    margin-bottom: 2%;
    text-align: center;
    font-size: 1.2vw;
    color: #616263;
    /* margin: 0 5px 30px 5px; */
}

.news-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 3%;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 10px 10px rgb(0 0 0 / 15%);
}

.news-card-body {
    display: flex;
    flex-direction: column;
}

.newspost h6,
.newscategories h6 {
    font-size: 1.3vw;
    font-weight: bold;
    padding: 1.3% 2.5% 2%;
    /* background-color: grey; */
    border-radius: 4px;
    position: relative;
}

.newspost h6::after,
.newscategories h6::after {
    background-color: #f7c563;
    width: 20%;
    height: 2px;
    position: absolute;
    content: "";
    left: 10px;
    bottom: 0;
}

.newscategories {
    margin-bottom: 8%;
}

.single-news-txt {
    display: block;
    text-decoration: none;
    padding: 1% 0;
    margin: 0 2.5%;
    color: #301934;
    text-transform: capitalize;
    font-size: 1.2vw;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.single-news-txt:hover {
    color: #301934;
    padding-left: 1%;
}


/* ############   news end ################### */


/* ############   single news started ################### */

.single-news-bnnr {
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../assets/img/news/single-news.jpeg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    width: 100%;
    padding: 10% 0;
}

.single-news-hd h1 {
    font-weight: bold;
    font-size: calc(1.5vw + 1.5vh);
    color: #fff;
    text-align: center;
    margin: 0;
}

.news-container {
    background-color: #f4f5f8;
}

.single-news {
    width: 80%;
    margin: auto;
}

.singlecompanylogo img {
    width: 100%;
    transition: all 1s;
}

.singlecompanylogo {
    width: 50%;
    margin: auto;
}

.signlenewshd {
    text-align: center;
    margin: 3% 0;
}

.signlenewshd h4 {
    font-size: 2vw;
    font-weight: bold;
    text-transform: capitalize;
}

.news {
    width: 80%;
    margin: auto;
    padding: 3% 0;
}

.singlenewsinnr {
    border: 1px solid #eee;
    padding: 4%;
    border-radius: 4px;
    background-color: #fff;
    /* box-shadow: 0 10px 10px rgba(0, 0, 0, .15); */
}

.news-table {
    width: 100%;
    margin: 3% auto;
}

.single-news-th,
.single-news-td {
    padding-left: 2%;
    font-size: 1.2vw;
}

table,
th,
td {
    border: 1px solid #eee;
    border-collapse: collapse;
    padding: 1% 0;
}

.companydetailsHd {
    font-family: "mm1";
    font-size: 1.8vw;
    font-weight: bold;
}

.companyNotes {
    text-align: justify;
}


/* .companyNotes p {
  
  font-size: calc(0.72vw + 0.72vh);
} */


/* .companyNotes h3 {
  
  font-size: calc(0.75vw + 0.75vh);
  font-weight: bold;
} */

.sharebtn {
    /* text-align: end; */
    /* display: flex;
  justify-content: space-between;
  align-items: center; */
}

.sharebtnicn img {
    width: 5%;
}

.sharebtnscl {
    text-align: end;
}

.sharebtndt p {
    margin: 0;
    font-size: calc(0.72vw + 0.72vh);
    font-weight: bold;
    /* background-color: #eee; */
}

.sharebtnscl span {
    margin-left: 5px;
    /* font-size: calc(0.9w + 0.9vh); */
}

.sharebtnscl a {
    text-decoration: none;
}

.singlecommentform {
    border: 1px solid #eee;
    background-color: #fff;
    padding: 4%;
    margin-top: 5%;
    border-radius: 4px;
    /* box-shadow: 0 10px 10px rgb(0 0 0 / 15%); */
}

.singlecommenthd {
    padding-bottom: 1.5%;
    margin-bottom: 1%;
    border-bottom: 1px solid #eee;
}

.singlecommenthd h5 {
    font-size: 1.6vw;
    font-weight: 700;
    /* border-bottom: 1px solid #eee; */
}

.singlecommentform input {
    width: 100%;
    padding: 2% 5%;
    margin: 3% 0;
    font-size: 1.2vw;
    background-color: #eee;
    border: 1px solid #fff;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.singlecommentform textarea {
    width: 100%;
    padding: 2% 2.5%;
    font-size: 1.2vw;
    background-color: #eee;
    border: 1px solid #fff;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.comment-area {
    display: block;
    padding: 20px 16px;
    overflow: hidden;
}

.comment {
    display: flex;
}

.commentimg {
    width: 40%;
}

.comment img {
    border-radius: 100%;
    width: 100%;
}

.comment-body {
    padding: 0 3%;
}

.comment-body h5 {
    font-size: 1.8vw;
    font-weight: 600;
}

.meta {
    font-size: 1.1vw;
    color: #ada8b4;
}

.comment-body p {
    font-size: 1.2vw;
}


/* ############   sinlge news end ################### */


/* ############   about started ################### */

.abtbannr {
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../assets/img/about/abt.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    width: 100%;
    padding: 10% 0;
}

.abtcont {
    overflow: hidden;
    background-color: #f4f5f8;
}

.abthd h1 {
    font-weight: bold;
    font-size: calc(2.5vw + 2.5vh);
    color: #fff;
    text-align: center;
    margin: 0;
}

.abtcontinnr {
    width: 85%;
    margin: auto;
    padding: 5% 0;
}

.abtconttxt {
    margin-top: 6%;
}


/* .abtcontinnr h2 */

.our-vision h2,
.about-section h2,
.offerings h2,
.why-choose-us h2,
.community h2,
.abtcntct h2,
.abtcmmt h2,
.social-media h2 {
    font-size: calc(1.5vw + 1.5vh);
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 1%;
}

.offering h3 {
    margin: 2% 0;
    font-size: calc(1vw + 1vh);
    font-weight: 600;
    color: #000;
}


/* .abtcontinnr p */

.abt-intro,
.our-vision p,
.about-section p,
.offerings p,
.why-choose-us p,
.community p,
.abtcntct p,
.abtcmmt p,
.social-media p {
    font-size: calc(0.9vw + 0.9vh);
    color: #000;
    text-align: justify;
    /* margin-bottom: 3%; */
}

.abtcontimg img {
    width: 100%;
    border-radius: 20px;
}

.abtcontimg {
    width: 100%;
}

.abtcmmt {
    margin-top: 5%;
}

.our-vision,
.about-section,
.offerings,
.why-choose-us,
.community,
.abtcntct,
.abtcmmt,
.social-media {
    margin: 40px 0;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    /* Space above the grid */
}

.offering {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    background-color: #fff;
    /* Light background for offerings */
}

.offering img {
    width: 120px;
    margin-bottom: 10px;
}

.social-media {
    text-align: center;
    margin: 40px 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2%;
}

.social-icons a {
    color: #555;
    font-size: 1.8rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #301934;
}


/* ############   about end ################### */


/* ############   contact started ################### */


/* ############   contact end ################### */

.ctnbnnr {
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../assets/img/contact/contact.jpeg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    width: 100%;
    padding: 10% 0;
}

.ctnhd h1 {
    font-weight: bold;
    font-size: calc(2.5vw + 2.5vh);
    color: #fff;
    text-align: end;
    margin: 0;
    margin-right: 10%;
}


/* .contactpage {
        width: 77%;
        margin: auto;
        padding: 5% 0;
    } */

.contact-details {
    display: flex;
    flex-direction: column;
    padding: 15% 0;
}

.contact-box {
    display: flex;
    align-items: center;
    margin-bottom: 10%;
}

.contact-icon {
    margin-right: 5%;
}

.contact-txt h4 {
    font-size: 1.8vw;
    font-weight: 700;
    margin: 0;
}

.contact-txt p {
    font-size: 1.2vw;
    font-weight: 500;
    color: #495057;
    margin: 0;
}

.contacthd h6 {
    font-size: 1.2vw;
    color: #495057;
    font-weight: bold;
}

.contacthd h3 {
    font-size: 2.5vw;
    color: #000;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1% 2%;
    font-size: 1.2vw;
    background-color: #e5e5e5;
    border: 1px solid #fff;
    border-radius: 4px 0 0 4px;
    outline: none;
    /* border: none; */
}

.contact-form input:focus,
.contact-form textarea:focus {
    color: #495057;
    border: 1px solid #301934;
    outline: 0;
}

.contact-form input:hover,
.contact-form textarea:hover {
    color: #495057;
    border: 1px solid #301934;
    outline: 0;
}

.contact_blocks_wrapper {
    background-color: #ffffff;
    width: 80%;
    margin: auto;
}

.clv_section {
    padding: 5% 0;
}

.contact_block {
    position: relative;
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    background-color: #ffffff;
    text-align: center;
    padding: 9% 4% 10%;
    z-index: 1;
    border: 1px solid #eee;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.contact_block:before,
.contact_block:after,
.contact_block span:before,
.contact_block span:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-width: 1px 0px 0px 1px;
    border-radius: 10px 0px 0px 0px;
    z-index: -1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.contact_block:after {
    top: auto;
    bottom: 0;
    border-radius: 0px 0px 0px 10px;
    border-width: 0px 0px 1px 1px;
}

.contact_block span:before {
    left: auto;
    right: 0;
    border-radius: 0px 10px 0px 0px;
    border-width: 1px 1px 0px 0px;
}

.contact_block span:after {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    border-radius: 0px 0px 10px 0px;
    border-width: 0px 1px 1px 0px;
}


/* .contact_block:hover:before {
        width: 90px;
        height: 60px;
        border-color: #fec007;
    }

    .contact_block:hover:after {
        width: 60px;
        height: 90px;
        border-color: #fec007;
    } */


/* .contact_block:hover span:before {
        width: 60px;
        height: 90px;
        border-color: #fec007;
    }

    .contact_block:hover span:after {
        width: 90px;
        height: 60px;
        border-color: #fec007;
    } */

.contact_block .contact_icon,
.contact_block .contact_icon2 {
    margin-bottom: 15px;
}

.contact_icon img {
    width: 18%;
}

.contact_icon2 img {
    width: 21%;
}

.contact_block h4 {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 17px;
    text-transform: capitalize;
    font-size: calc(1vw + 1vh);
    color: #222222;
    font-weight: 600;
}

.contact_block h4:before,
.contact_block h4:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 104px;
    height: 1px;
    background-color: #fec007;
}

.contact_block h4:after {
    width: 56px;
    top: calc(100% + 5px);
}

.contact_block p {
    margin: 0;
    font-size: calc(0.8vw + 0.8vh);
}

.contact_form_wrapper {
    background-color: #f4f5f8;
}

.contact_form_wrap {
    width: 80%;
    margin: auto;
}

.contact_form_section {
    background-color: #ffffff;
    border-radius: 10px 10px 10px 10px;
    padding: 33px 40px 10px;
}

.contact_form_section h3 {
    text-transform: capitalize;
    font-size: calc(1.3vw + 1.3vh);
    margin-bottom: 2%;
    color: #222222;
    font-weight: 600;
}

.contact_form_section form {
    display: contents;
}

.form_block {
    margin-bottom: 3%;
}

.form_block .form_field {
    height: 45px;
    width: 100%;
    border-radius: 4px;
    font-size: calc(0.75vw + 0.75vh);
    padding: 0px 15px;
    border: 1px solid #eee;
    outline: none;
}

.form_block .form_field:focus,
.form_block textarea.form_field:focus {
    border: 1px solid #fec007;
}

.form_block textarea.form_field {
    min-height: 120px;
    padding-top: 15px;
    resize: none;
    font-size: calc(0.75vw + 0.75vh);
}

.clv_btn,
.clv_btn:focus {
    display: inline-block;
    outline: none;
    border: 1px solid #301934;
    background: none;
    cursor: pointer;
    text-align: center;
    text-transform: capitalize;
    border-radius: 4px;
    font-size: calc(0.8vw + 0.8vh);
    font-weight: bold;
    padding: 0.3% 4% 0.5%;
    color: #ffffff;
    background-color: #301934;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.clv_btn:hover {
    background-color: #f7c563;
    color: #301934;
    border: 1px solid #f7c563;
}


/* .clv_btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        border-radius: 4px;
        background-color: #fec007;
        transition: all 0.3s;
    }

    .clv_btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        opacity: 0;
        border-radius: 4px;
        transition: all 0.3s;
        border: 1px solid #fec007;
        transform: scale(1.2, 1.2);
    }

    .clv_btn:hover {
        color: #fec007;
    }

    .clv_btn:hover::before {
        opacity: 0;
        -webkit-transform: scale(0.5, 0.5);
        transform: scale(0.5, 0.5);
    }

    .clv_btn:hover::after {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    } */

#map {
    height: 760px;
    width: 100%;
}


/* ############   path start ################### */

.careerpage {
    /* padding-bottom: 5%; */
    overflow: hidden;
    background-color: #f4f5f8;
}

.careerheading {
    text-align: center;
    padding: 8% 0%;
    background: url(../assets/img/education_background.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
}

.main_content_banner h3,
.careerheading h3 {
    font-size: calc(1.5vw + 1.5vh);
    color: #f7c563;
    margin: 0;
    font-weight: bolder;
}

.careerheading p {
    font-size: calc(0.7vw + 0.7vh);
    color: #fff;
    margin: 0;
}

.career-path {
    margin-bottom: 3%;
}

.career-path h3 {
    /* font-size: 1.8vw; */
    font-size: 25px;
    color: #301934;
    margin: 0;
    font-weight: bolder;
}

.career-path p {
    /* font-size: calc(0.6vw + 0.6vh); */
    font-size: 12px;
    color: #000;
    margin: 0;
}

.counselingcat {
    width: 95%;
    margin: auto;
    padding: 4% 0%;
}

.logobtn,
.logobtn2,
.logobtn3 {
    display: inline-block;
    width: 9%;
    border: 5px solid #f2f2f2;
    /* padding: 0.8%; */
    background-color: #f7c563;
}

.logobtn img,
.logobtn2 img,
.logobtn3 img {
    width: 100%;
    cursor: pointer;
}

.logobtn.active {
    border: 5px solid #301934;
    background-color: #fff;
}

.logobtn2.active {
    border: 5px solid #301934;
    background-color: #fff;
}

.logobtn3.active {
    border: 5px solid #301934;
    background-color: #fff;
}

.logobtn:hover,
.logobtn2:hover,
.logobtn3:hover {
    animation: heartbeat 3s linear infinite;
}

.counselingsectionname {
    text-align: center;
    margin-top: 2%;
}

.counselingsectionname h3 {
    /* font-size: calc(1.1vw + 1.1vh); */
    font-size: 25px;
    color: #301934;
    font-weight: bold;
}

.counselingHd {
    line-height: 1;
    margin-bottom: 3%;
}

.counselingdetails {
    width: 72%;
    margin: auto;
}

@keyframes heartbeat {
    0%,
    40% {
        transform: scale(1);
    }
    4%,
    32% {
        transform: scale(1.08);
    }
    8%,
    24% {
        transform: scale(1.1);
    }
    20% {
        transform: scale(0.96);
    }
}

.career-diagram {
    margin-top: 2%;
}

.path {
    text-align: center;
    flex-grow: 1;
    border: 1px solid #f7c563;
    padding: 10px;
    /* margin: 0 10px; */
    border-radius: 10px;
    /* transition: transform 0.3s; */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
}


/* .diagram .path:hover {
        transform: scale(1.1);
        background-color: #f7c563;
    } */

.path h4 {
    /* font-size: calc(1vw + 1vh); */
    font-size: 20px;
    color: #301934;
    margin: 0 0 2% 0;
    font-weight: bold;
}

.path p {
    /* font-size: calc(0.6vw + 0.6vh); */
    font-size: 13px;
    color: #000;
    flex-grow: 1;
}

.career-courses {
    /* margin-top: 9%; */
    margin-top: 25px;
}

.career-courses ul {
    padding-left: 0;
    list-style: none;
    margin-left: 60px;
}

.career-courses li {
    color: #301934;
    margin-bottom: 3%;
    position: relative;
    /* padding-left: 2%; */
    /* font-size: calc(0.7vw + 0.7vh); */
    font-size: 15px;
    text-align: left;
}

.career-courses li a {
    text-decoration: none;
    color: #301934;
}

.career-courses li a:hover {
    color: #f7c563;
}

.career-courses li img {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-84%);
    width: 45px;
    height: auto;
}


/* ############   path end ################### */


/* ############   course start ################### */

.main_content_banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../assets/img/education_background.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    padding: 10% 0;
    text-align: center;
    color: #fff;
}

.main_content_innr {
    margin-top: 3%;
}

.main_content {
    background-color: #f4f5f8;
}

.main_content_innr {
    width: 80%;
    margin: 3% auto;
    padding-bottom: 3%;
}

.course-details {
    background-color: #fff;
    border-radius: 4px;
    padding: 3%;
    margin-bottom: 3%;
    border: 1px solid #eee;
}

.course-details h2,
.entrance_section h2 {
    font-weight: bold;
    font-size: 2.5vw;
    color: #301934;
    /* margin-bottom: 0; */
    border-bottom: 3px solid #f7c563;
    display: inline-block;
    text-transform: capitalize;
    margin-bottom: 3%;
}

.content_container h2 {
    font-weight: bold;
    font-size: 2.5vw;
    color: #301934;
    /* margin-bottom: 0; */
    border-bottom: 3px solid #f7c563;
    margin-bottom: 3%;
}

.course-details h4,
.content_container h4,
.entrance_section h4 {
    font-size: 1.8vw;
    /* font-weight: bold; */
    color: #34495e;
    margin-bottom: 1%;
}

.entrance_section p,
.content_container p,
.course-details p,
.course-details ul li,
.content_container ul li,
.content_container ol li,
.entrance_section ul li,
.entrance_section ol li {
    font-size: 1.2vw;
    line-height: 1.8;
    color: #576574;
}

.entrance_section ul li strong,
.entrance_section ol li strong {
    color: #34495e;
}

.course-details ul li a,
.content_container ul li a,
.entrance_section ul li a {
    color: #576574;
}

.course-details p,
.content_container p,
.entrance_section p {
    margin-top: 1%;
    /* padding-left: 7%; */
    margin-bottom: 3%;
    text-align: justify;
}

.course-details strong,
.content_container strong {
    /* font-weight: 700; */
    color: #34495e;
}

.course-details-points {
    background-color: #f9f9f9;
    padding: 1.5% 2%;
    border-radius: 8px;
    border-left: 4px solid #f7c563;
    margin: 3% 0;
}

.icon-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2%;
    margin: 1.5% 0;
    color: #34495e;
}

.course-details p.icon-title i {
    /* color: #e67e22; */
    /* font-size: 1.5rem; */
}

.course-details ul,
.content_container ul {
    margin-top: 1%;
    padding-left: 7%;
    margin-bottom: 3%;
}


/* .course-details ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.6;
} */

.course-details ul li::marker,
.course-details ol li::marker,
.content_container ol li::marker,
.content_container ul li::marker,
.entrance_section ul li::marker {
    color: #f7c563;
    /* font-size: 1.2rem; */
}


/* ############   course end ################### */


/* ############   scholarship start ################### */

.scholarship_cont {
    background-color: #f6f5fc;
}

.scholarship_cont_innr {
    width: 85%;
    margin: auto;
    padding: 3% 0;
}

.scontainer,
.econtainer {
    padding: 3%;
    margin-bottom: 10%;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #eee;
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); */
}

.scholarship_section {
    margin-bottom: 30px;
}

.scontainer h2 {
    text-transform: uppercase;
    border-bottom: 2px solid #301934;
}


/* .scholarship_section p{
  
  font-size: 1.3vw;
  color: #000;
} */

.scholarship_section ul {}

.short-info {
    background-color: #f4f5f8;
    padding: 2% 3%;
    border-left: 5px solid #301934;
    font-size: 1.4vw;
    color: #000;
    line-height: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.important-dates li {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.scholar_button {
    background-color: #301934;
    color: white;
    /* padding: 10px 30px 14px; */
    padding: 1.3% 5%;
    text-align: center;
    border-radius: 4px;
    font-size: calc(1vw + 1vh);
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 3%;
}

.scholar_button:hover {
    background-color: #f7c563;
    color: #301934;
}

.scholarship_section {
    margin-bottom: 40px;
    text-align: left;
}

.scholarship_section h2 {
    font-size: 2vw;
    font-weight: bold;
    color: #000;
    margin-bottom: 1%;
    /* text-decoration: underline; */
}

.scholarship_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.scholarship_card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1%;
    width: calc(33.333% - 20px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.scholarship_card a {
    font-size: 1.4vw;
    color: #301934;
    margin-top: 0;
    text-decoration: none;
}

.active_scholarship {
    border-left: 5px solid #2ecc71;
}

.inactive_scholarship {
    border-left: 5px solid #e74c3c;
    /* opacity: 0.7; */
}


/* ############   scholarship end ################### */


/* ############   tutorial start ################### */

.sidebar_main_wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: row;
    background-color: #f4f5f8;
}

.sidebar_tut,
.right_sidebar_tut {
    width: 250px;
    color: #fff;
    background-color: #301934;
    overflow-y: auto;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.sidebar_tut_header {
    padding: 20px;
    background-color: #f7c563;
    color: #301934;
}

.sidebar_tut_nav {
    padding: 10px 0;
}

.sidebar_tut_nav a {
    display: block;
    padding: 12px 20px;
    /* color: #333; */
    color: #f4f5f8;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.sidebar_tut_nav a:hover {
    /* background-color: #e9e9e9;
        border-left-color: #718096; */
    background-color: #f7c563;
    color: #301934;
    border-left-color: #f7c563;
}

.sidebar_tut_nav a.active {
    background-color: #f4f5f8;
    color: #301934;
    border-left-color: #f7c563;
    font-weight: 500;
}

.content_container {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    overflow: auto;
    border-right: 1px solid #e0e0e0;
}

.content_container h2 {
    margin-bottom: 0px;
    /* padding-bottom: 10px; */
    border-bottom: 2px solid #f7c563;
    color: #301934;
}

.content_container p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666;
}

.content_container code {
    background-color: #f4f5f8;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
    color: #301934;
}

.code-block {
    background-color: #f4f5f8;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    overflow-x: auto;
    border: 1px solid #f7c563;
}

.code-block pre {
    font-family: monospace;
    color: #301934;
}

.video-wrapper iframe {
    border: 2px solid #f7c563;
    border-radius: 5px;
}

.right_sidebar_tut {
    width: 250px;
    background-color: #301934;
    color: #fff;
    height: 100%;
}

.nav_tut_btn {
    background-color: #301934;
    color: #f7c563;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.nav_tut_btn:hover {
    background-color: #f7c563;
    color: #301934;
}

.tut_nav_links {
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.tutorialSwiper {
    padding: 0px 20px;
    background-color: #301934;
    /* border-bottom: 1px solid #ddd; */
}

.swiper-slide {
    width: auto !important;
}

.tutorial-slide {
    display: inline-block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.tutorial-slide:hover {
    color: #301934;
    background-color: #f4f5f8;
}

.tutorial-slide.active-tutorial {
    background-color: #f7c563;
    color: #301934;
    font-weight: bold;
    box-shadow: 0 0 0 2px #f7c563;
}

.tut_sidebar_toggle_btn {
    display: none;
}

.tut_sidebar_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
}


/* ############   tutorial end ################### */


/* ############   footer start ################### */

footer {
    /* box-shadow: #f2f2f2 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset; */
    background-color: #fff;
}


/* .ftr {
  margin-bottom: 0.5%;
} */

.ftrlogo {
    width: 75%;
    margin: auto;
    padding-top: 15%;
}

.ftrlogo img {
    width: 100%;
}

.scpltfrm {
    width: 100%;
    margin-top: 6%;
    text-align: center;
}

.scpltfrm a {
    text-decoration: none;
    color: #301934;
    margin: 0 3%;
}

.scpltfrm a svg {
    font-size: calc(1.1vw + 1.1vh);
    transition: transform 0.3s ease, color 0.3s ease;
}

.scpltfrm a svg:hover {
    color: #f7c563;
    transform: scale(1.2);
}

.sctn5 {
    /* background-color: #F6F5FC; */
    /* box-shadow: #f6f5fc 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset; */
}

.sctn5Innr {
    padding: 6% 0;
}

.subscribe {
    text-align: center;
}

.subscribe h3 {
    font-size: calc(1.5vw + 1.5vh);
    line-height: 1;
    color: #fff;
    margin-bottom: 0%;
}

.subscribe p {
    font-family: "mm1";
    font-size: calc(0.75vw + 0.75vh);
    color: #d5d5d5;
    line-height: 1;
    margin-bottom: 5%;
    margin-top: 5%;
}

.subscribeform {
    display: flex;
}

.subscribeform input[type="email"] {
    padding: 5px 10px;
    font-size: calc(0.75vw + 0.75vh);
    width: 70%;
    border: 1px solid #eee;
    border-radius: 4px 0 0 4px;
    outline: none;
    background-color: #f6f5fc;
    transition: all 1s;
}

.subscribeform input[type="submit"] {
    padding: 5px 0;
    width: 30%;
    font-size: calc(0.75vw + 0.75vh);
    background-color: #f7c563;
    border: 1px solid #f7c563;
    color: #fff;
    text-align: center;
    font-weight: 700;
    border-radius: 0 4px 4px 0;
    outline: none;
    transition: all 1s;
}

.subscribeform input[type="submit"]:hover {
    color: #000;
    border: 1px solid #f7c563;
}

.ftrUppr {
    margin-bottom: 0.5%;
}

.ftrght {
    background-color: #301934;
    padding: 3% 6% 3.3% 6%;
}

.qklink h5,
.learnLink h5 {
    font-size: calc(1vw + 1vh);
    font-weight: bold;
    color: #fff;
    margin-bottom: 3%;
    position: relative;
}

.qklink h5::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 32%;
    height: 3px;
    background-color: #fff;
}

.learnLink h5::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 23%;
    height: 3px;
    background-color: #fff;
}

.qklink a,
.learnLink a {
    display: block;
    text-decoration: none;
    font-size: calc(0.85vw + 0.85vh);
    color: #fff;
    transition: 0.5s ease-in-out;
}

.qklink a:hover,
.learnLink a:hover {
    padding-left: 2%;
    color: #f7c563;
}

.ftrbtm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #301934;
    padding: 1% 5%;
}

.ftrbtmRight {
    width: 60%;
}

.ftrbtmRight p {
    font-size: calc(0.75vw + 0.75vh);
    color: #fff;
    margin: 0;
}

.ftrbtmRes {
    width: 40%;
    color: #fff;
    text-align: end;
}

.ftrbtmRes a {
    color: #fff;
    text-decoration: none;
    margin-left: 4%;
    font-size: calc(0.8vw + 0.8vh);
}


/* ############   footer end ################### */


/* ############   terms and condition start ################### */

.main_content_term {
    background-color: #f4f5f8;
    padding: 3% 0;
}

.main_content_term_inner {
    max-width: 60%;
    margin: 0 auto;
    background: #fff;
    border-radius: 0px;
    padding: 3%;
    border: 1px solid #eee;
}

.main_content_term h2,
.main_content_term h3 {
    font-size: 25px;
    font-weight: bold;
    color: #34495e;
    margin-bottom: 0%;
}

.main_content_term h3 {
    margin-top: 2%;
}

.main_content_term a {
    color: #0056b3;
    text-decoration: none;
}

.main_content_term a:hover {
    text-decoration: underline;
}

.main_content_term ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 0%;
}

.main_content_term p,
.main_content_term ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #576574;
}

.main_content_term section {
    margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
    .main_content_term_inner {
        max-width: 90%;
    }
}

@media only screen and (max-width: 575px) {
    .main_content_term_inner {
        max-width: 95%;
    }
    .main_content_term h2,
    .main_content_term h3 {
        font-size: 17px;
    }
    .main_content_term p,
    .main_content_term ul li {
        font-size: 12px;
        line-height: 1.2;
    }
}


/* ############   terms and condition end ################### */