@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;500;600&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=Source+Sans+Pro:ital,wght@0,400;0,600;0,700;1,600;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  min-width: 320px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: auto;
}

::-moz-selection {
  color: #fff;
  background: #FF0084;
}

::selection {
  color: #fff;
  background: #FF0084;
}

.overflow-hidden {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Source Sans Pro", sans-serif;
}

ul,
ol,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #B5015E;
}

.btn {
  border-radius: 6px;
}

.btn-primary-1 {
  border-radius: 8px;
  color: #fff;
  background-color: #B5015E;
  font-size: 20px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  padding: 15px 20px;
  text-decoration: none;
  transition: all 0.5s;
  line-height: 24px;
}
.btn-primary-1:hover {
  opacity: 0.7;
  color: #fff;
}
@media (max-width: 768px) {
  .btn-primary-1 {
    padding: 12px 40px;
    font-size: 16px;
    line-height: 20px;
  }
}

.btn-outline-primary-1 {
  border-radius: 8px;
  border: 2px solid #B5015E;
  color: #B5015E;
  font-size: 20px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  padding: 15px 50px;
  text-decoration: none;
  transition: all 0.5s;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-outline-primary-1:hover {
  color: #fff;
  background-color: #B5015E;
}
@media (max-width: 768px) {
  .btn-outline-primary-1 {
    padding: 12px 40px;
    font-size: 16px;
    line-height: 20px;
  }
}

.form-group {
  margin-bottom: 24px;
}
.form-group .form-label {
  font-size: 20px;
  font-weight: 500;
  color: #3D3D3D;
  margin-bottom: 5px;
}
.form-group .input-group .btn {
  background-color: #fff;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-right: 1px solid #eaeaea;
  font-size: 18px;
  font-weight: 400;
  color: #B5015E;
  outline: none;
}
.form-group .input-group .btn .flag {
  width: 25px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.form-group .input-group .btn:focus {
  border-left: none;
  border-top: none;
  border-bottom: none;
  outline: none;
}
.form-group .input-group .btn:hover, .form-group .input-group .btn:active {
  border-color: transparent;
}
.form-group .error-msg {
  font-size: 16px;
  color: red;
  font-weight: 600;
  margin-top: 3px;
}
.form-group .form-control,
.form-group .form-area {
  border-radius: 8px;
  font-size: 18px;
  color: #000;
  border: none;
  font-weight: 500;
  padding-left: 15px;
  padding-right: 15px;
  outline: none;
  border: 2px solid transparent;
}
.form-group .form-control:focus,
.form-group .form-area:focus {
  box-shadow: none;
  border: 2px solid #FF0084;
  outline: none;
}
.form-group .form-control::-moz-placeholder, .form-group .form-area::-moz-placeholder {
  font-weight: 400;
  color: #898989;
}
.form-group .form-control:-ms-input-placeholder, .form-group .form-area:-ms-input-placeholder {
  font-weight: 400;
  color: #898989;
}
.form-group .form-control::placeholder,
.form-group .form-area::placeholder {
  font-weight: 400;
  color: #898989;
}
.form-group .form-control {
  height: 48px;
}
.form-group .form-area {
  height: 150px;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
}
.form-group.error .form-control,
.form-group.error .form-area {
  border: 2px solid red !important;
}
@media (max-width: 576px) {
  .form-group {
    margin-bottom: 16px;
  }
  .form-group .form-label {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .form-group .input-group .btn {
    font-size: 16px;
  }
  .form-group .form-control {
    font-size: 16px;
    height: 38px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
  }
  .form-group .form-area {
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
  }
  .form-group .error-msg {
    font-size: 14px;
  }
}

.navbar {
  padding-top: 12px;
  padding-bottom: 12px;
  position: fixed;
  left: 0;
  right: 0;
  transition: 0.5s;
  background-color: #fff;
  z-index: 1036;
}
.navbar.top {
  background-color: #fdf2f0;
}
.navbar.hide {
  transform: translateY(-80px);
}
.navbar .navbar-brand {
  z-index: 99;
}
.navbar .navbar-brand img {
  max-width: 160px;
}
.navbar .navbar-nav .nav-item {
  margin-right: 30px;
}
.navbar .navbar-nav .nav-item .nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  transition: all 0.3s ease-in;
}
.navbar .navbar-nav .nav-item .nav-link.active {
  font-weight: 600;
  color: #B5015E;
  position: relative;
}
.navbar .navbar-nav .nav-item .nav-link.active::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 2px;
  height: 6px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: #B5015E;
}
.navbar .navbar-nav .nav-item .nav-link.active::before:hover {
  width: inherit;
}
@media (max-width: 992px) {
  .navbar .navbar-nav .nav-item .nav-link.active::before {
    display: none;
  }
}
.navbar .navbar-nav .nav-item .nav-link.active::after {
  display: none;
}
.navbar .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  border-radius: 50%;
  background-color: #B5015E;
  transition: all 0.2s ease-in;
  opacity: 0;
}
@media (max-width: 992px) {
  .navbar .navbar-nav .nav-item .nav-link::after {
    display: none;
  }
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #B5015E;
}
.navbar .navbar-nav .nav-item .nav-link:hover::after {
  opacity: 1;
}
@media (min-width: 1400px) {
  .navbar .navbar-nav .nav-item {
    margin-right: 60px;
  }
}
.navbar .navbar-nav .btn-nav {
  padding: 4px 20px;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  background-color: #B5015E;
  line-height: 1;
  transition: all 0.5s ease;
}
.navbar .navbar-nav .btn-nav:hover {
  transform: scale(0.9);
}
.navbar .navbar-toggler {
  border: none;
  padding: 0;
  z-index: 99;
}
.navbar .navbar-toggler.menu-open .line-1,
.navbar .navbar-toggler.menu-open .line-2,
.navbar .navbar-toggler.menu-open .line-3 {
  border-radius: 3px;
}
.navbar .navbar-toggler.menu-open .line-2 {
  opacity: 0;
}
.navbar .navbar-toggler.menu-open .line-1 {
  transform: translateY(10px) rotate(-225deg);
}
.navbar .navbar-toggler.menu-open .line-3 {
  transform: translateY(-8px) rotate(225deg);
}
.navbar .navbar-toggler .line-1,
.navbar .navbar-toggler .line-2,
.navbar .navbar-toggler .line-3 {
  height: 3px;
  background-color: #B5015E;
  display: block;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: 0.5s;
}
.navbar .navbar-toggler .line-1,
.navbar .navbar-toggler .line-3 {
  width: 28px;
}
.navbar .navbar-toggler .line-1 {
  margin-bottom: 6px;
}
.navbar .navbar-toggler .line-2 {
  width: 18px;
  margin-bottom: 6px;
  margin-left: auto;
  opacity: 1;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
@media (max-width: 1200px) {
  .navbar .navbar-brand img {
    max-width: 150px;
  }
  .navbar .navbar-nav .btn-nav {
    font-weight: 400;
    padding: 4px 16px;
  }
}
@media (max-width: 992px) {
  .navbar {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .navbar .navbar-brand img {
    max-width: 130px;
  }
  .navbar .navbar-collapse {
    position: absolute;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background-color: #fdf2f0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.6s;
    opacity: 0;
    z-index: 98;
  }
  .navbar .navbar-collapse.active {
    right: 0;
    opacity: 1;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item {
    margin-right: 0;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 20px;
    font-weight: 500;
    color: #FF0084;
  }
  .navbar .navbar-collapse .navbar-nav .btn-nav {
    margin-top: 10px;
    padding: 8px 20px;
  }
  .navbar.fix-nav {
    transform: translateY(0px);
  }
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    max-width: 100px;
  }
}

.dl-banner {
  background-color: #fff;
  padding-top: 120px;
}
.dl-banner .dl-left-wrap .dl-hash {
  font-size: 20px;
  color: #B5015E;
  font-weight: 600;
  margin-top: 26px;
  margin-bottom: 20px;
}
.dl-banner .dl-left-wrap .dl-banner-title {
  font-size: 48px;
  font-weight: 700;
  color: #01161E;
  line-height: 58px;
  margin-bottom: 30px;
  max-width: 620px;
}
.dl-banner .dl-left-wrap .dl-desc {
  font-size: 20px;
  color: #868686;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 36px;
  max-width: 550px;
}
.dl-banner .dl-left-wrap .btn-banner {
  display: inline-block;
  color: #fff;
  background-color: #D1026D;
  padding: 16px 26px;
  font-size: 20px;
  border-radius: 6px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.5s;
  margin-bottom: 60px;
}
.dl-banner .dl-left-wrap .btn-banner img {
  width: 60px;
  height: 26px;
  margin-left: 26px;
}
.dl-banner .dl-left-wrap .btn-banner:hover {
  transform: scale(0.9);
}
.dl-banner .dl-left-wrap .dl-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.dl-banner .dl-left-wrap .dl-social .text {
  font-size: 20px;
  font-weight: 500;
  color: #01161E;
  margin-bottom: 0;
  margin-right: 40px;
}
.dl-banner .dl-left-wrap .dl-social .social-icon {
  margin-right: 30px;
}
.dl-banner .dl-left-wrap .dl-social .social-icon svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s;
}
.dl-banner .dl-left-wrap .dl-social .social-icon svg path {
  fill: #B5015E;
}
.dl-banner .dl-left-wrap .dl-social .social-icon svg:hover {
  transform: scale(1.1);
}
.dl-banner .dl-left-wrap .dl-social .social-icon svg:hover path {
  fill: #FF5CB1;
}
@media (max-width: 1200px) {
  .dl-banner .dl-left-wrap .dl-hash {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .dl-banner .dl-left-wrap .dl-banner-title {
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 20px;
  }
  .dl-banner .dl-left-wrap .dl-desc {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 36px;
    max-width: 400px;
  }
  .dl-banner .dl-left-wrap .btn-banner {
    font-size: 16px;
    padding: 10px 26px;
    margin-bottom: 38px;
  }
  .dl-banner .dl-left-wrap .btn-banner img {
    margin-left: 5px;
    width: 24px;
  }
  .dl-banner .dl-left-wrap .dl-social {
    display: block;
  }
  .dl-banner .dl-left-wrap .dl-social .text {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .dl-banner .dl-left-wrap {
    text-align: center;
  }
  .dl-banner .dl-left-wrap .dl-banner-title {
    margin-top: 20px;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 1rem;
  }
  .dl-banner .dl-left-wrap .dl-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .dl-banner .dl-left-wrap .dl-social .text {
    margin-right: 0;
  }
  .dl-banner .dl-left-wrap .dl-social .dl-social-wrap .social-icon:last-child {
    margin-right: 0;
  }
}
.dl-banner .dl-image-sec .right-imgs {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dl-banner .dl-image-sec .img-wrap {
  height: 240px;
  width: 210px;
}
.dl-banner .dl-image-sec .top-img {
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}
.dl-banner .dl-image-sec .left-img-wrap {
  margin-top: 60px;
  margin-left: -180px;
}
.dl-banner .dl-image-sec .left-img-wrap .left-img {
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}
.dl-banner .dl-image-sec .right-img-wrap {
  margin-top: 30px;
  margin-left: -95px;
}
.dl-banner .dl-image-sec .right-img-wrap .right-img {
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}
@media (max-width: 1200px) {
  .dl-banner .dl-image-sec .img-wrap {
    height: 185px;
    width: 170px;
  }
  .dl-banner .dl-image-sec .top-img-wrap {
    margin-left: 25px;
  }
  .dl-banner .dl-image-sec .left-img-wrap {
    margin-left: -100px;
  }
  .dl-banner .dl-image-sec .right-img-wrap {
    margin-left: -50px;
    margin-top: 25px;
  }
}
@media (max-width: 992px) {
  .dl-banner .dl-image-sec .img-wrap {
    height: 135px;
    width: 130px;
  }
  .dl-banner .dl-image-sec .top-img-wrap {
    margin-top: 30px;
  }
  .dl-banner .dl-image-sec .left-img-wrap {
    margin-left: -68px;
  }
  .dl-banner .dl-image-sec .right-img-wrap {
    margin-left: -30px;
  }
}
@media (max-width: 768px) {
  .dl-banner .dl-image-sec .dl-hash {
    font-size: 14px;
    color: #B5015E;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
  }
  .dl-banner .dl-image-sec .img-wrap {
    height: 135px;
    width: 130px;
  }
  .dl-banner .dl-image-sec .top-img-wrap {
    margin-top: 0px;
    margin-left: 0;
  }
  .dl-banner .dl-image-sec .left-img-wrap {
    margin-left: auto;
    margin-right: 10px;
  }
  .dl-banner .dl-image-sec .right-img-wrap {
    margin-left: 0px;
  }
}
.dl-banner .line-btm {
  margin-top: 40px;
}
@media (max-width: 1200px) {
  .dl-banner {
    padding-top: 100px;
  }
}
@media (max-width: 992px) {
  .dl-banner {
    padding-top: 80px;
  }
}

.dl-partner {
  padding: 60px 0;
}
.dl-partner .title {
  font-size: 38px;
  font-weight: 600;
  line-height: 40px;
  color: #181E4B;
  max-width: 270px;
}
.dl-partner .brand-slider {
  margin-top: -20px;
}
.dl-partner .brand-slider .owl-stage-outer {
  padding: 15px 0;
}
.dl-partner .brand-slider .item {
  padding: 0 20px;
}
.dl-partner .brand-slider .item .slider-card {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0px 7px 10px rgba(15, 23, 66, 0.1);
  background-color: #fff;
}
.dl-partner .brand-slider .item .slider-card .brand-img {
  width: 180px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.dl-partner .brand-slider .owl-nav .owl-prev,
.dl-partner .brand-slider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #b2b8bb;
  outline: none;
}
.dl-partner .brand-slider .owl-nav .owl-prev:hover, .dl-partner .brand-slider .owl-nav .owl-prev:focus,
.dl-partner .brand-slider .owl-nav .owl-next:hover,
.dl-partner .brand-slider .owl-nav .owl-next:focus {
  background: none;
  outline: none;
}
.dl-partner .brand-slider .owl-nav .owl-prev {
  left: -44px;
}
.dl-partner .brand-slider .owl-nav .owl-next {
  right: -44px;
}
@media (max-width: 1200px) {
  .dl-partner {
    padding: 40px 0;
  }
  .dl-partner .title {
    font-size: 32px;
    line-height: 36px;
  }
  .dl-partner .brand-slider .item .slider-card {
    height: 80px;
  }
  .dl-partner .brand-slider .item .slider-card .brand-img {
    width: 150px;
    height: 50px;
  }
  .dl-partner .brand-slider .owl-nav .owl-prev {
    left: -36px;
  }
  .dl-partner .brand-slider .owl-nav .owl-next {
    right: -36px;
  }
}
@media (max-width: 768px) {
  .dl-partner {
    text-align: center;
    padding: 40px 0 0 0;
  }
  .dl-partner .title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .dl-partner .brand-slider .item {
    padding: 10 20px;
  }
  .dl-partner .brand-slider .item .slider-card {
    padding: 15px 20px;
  }
  .dl-partner .brand-slider .item .slider-card .brand-img {
    width: 100px;
    height: 60px;
  }
  .dl-partner .brand-slider .owl-nav .owl-prev {
    left: -50px;
  }
  .dl-partner .brand-slider .owl-nav .owl-next {
    right: -50px;
  }
}

.dl-speciality {
  padding: 40px 0 40px 0;
}
.dl-speciality .title {
  font-size: 38px;
  font-weight: 600;
  line-height: 40px;
  color: #181E4B;
  margin-bottom: 20px;
}
.dl-speciality .dl-desc {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  margin-bottom: 40px;
  font-weight: 400;
}
.dl-speciality .dl-spec-card {
  padding: 25px;
  border-radius: 16px;
  background-color: #FFF1F8;
  margin-bottom: 30px;
  height: calc(100% - 30px);
}
.dl-speciality .dl-spec-card .card-img-wrap {
  padding: 15px;
  background-color: #FFD1E9;
  border-radius: 50%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
.dl-speciality .dl-spec-card .card-title {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
.dl-speciality .dl-spec-card .card-desc {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .dl-speciality .title {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .dl-speciality .dl-spec-card .card-img-wrap {
    margin-left: auto;
    margin-right: auto;
  }
  .dl-speciality .dl-spec-card .card-content {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .dl-speciality {
    padding: 40px 0 0px 0;
  }
  .dl-speciality .title {
    font-size: 24px;
  }
  .dl-speciality .dl-desc {
    font-size: 16px;
  }
  .dl-speciality .dl-spec-card {
    padding: 20px;
  }
  .dl-speciality .dl-spec-card .card-title {
    font-size: 20px;
  }
}

.dl-popular-course {
  padding-top: 40px;
}
.dl-popular-course .title {
  font-size: 38px;
  font-weight: 600;
  line-height: 40px;
  color: #181E4B;
  margin-bottom: 20px;
}
.dl-popular-course .dl-desc {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  margin-bottom: 40px;
  font-weight: 500;
}
.dl-popular-course .dl-course-tab .dl-nav-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.dl-popular-course .dl-course-tab .dl-nav-wrap .nav {
  border-radius: 16px;
  padding: 8px;
  background-color: #eeeeee;
}
.dl-popular-course .dl-course-tab .dl-nav-wrap .nav .nav-item .nav-link {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 20px;
}
.dl-popular-course .dl-course-tab .dl-nav-wrap .nav .nav-item .nav-link.active {
  border-radius: 8px;
  background-color: #B5015E;
  color: #fff;
}
.dl-popular-course .dl-course-tab .dl-course-card {
  background-color: #fff;
  box-shadow: 0px 4px 20px 7px rgba(227, 227, 227, 0.25);
  border-radius: 24px;
  padding: 16px;
  margin: 0 14px;
  margin-bottom: 30px;
  height: calc(100% - 30px);
  transition: all 0.5s;
}
.dl-popular-course .dl-course-tab .dl-course-card .card-img-wrap {
  height: 190px;
}
.dl-popular-course .dl-course-tab .dl-course-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.dl-popular-course .dl-course-tab .dl-course-card .card-body {
  text-align: left;
  padding: 10px;
  padding-bottom: 0;
}
.dl-popular-course .dl-course-tab .dl-course-card .card-body .card-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  line-height: 22px;
  margin-bottom: 10px;
}
.dl-popular-course .dl-course-tab .dl-course-card .card-body .dl-card-detail {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.dl-popular-course .dl-course-tab .dl-course-card .card-body .dl-card-detail img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.dl-popular-course .dl-course-tab .dl-course-card .card-body .dl-card-detail .text {
  font-size: 16px;
  font-weight: 400;
  color: #D1026D;
}
@media (max-width: 768px) {
  .dl-popular-course .dl-course-tab .dl-course-card .card-body .dl-card-detail img {
    width: 16px;
    height: 16px;
  }
  .dl-popular-course .dl-course-tab .dl-course-card .card-body .dl-card-detail .text {
    font-size: 14px;
  }
}
.dl-popular-course .dl-course-tab .dl-course-card .card-body .card-det-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dl-popular-course .dl-course-tab .dl-course-card .card-body .card-det-wrap .text {
  margin-bottom: 0;
  font-size: 16px;
  color: #000;
}
.dl-popular-course .dl-course-tab .dl-course-card .card-body .card-det-wrap .btn-round-arrrow {
  background: #FFFFFF;
  box-shadow: 1px 2px 25px rgba(182, 182, 182, 0.25);
  padding: 8px 9px;
  border-radius: 50%;
  transition: all 0.5s;
}
.dl-popular-course .dl-course-tab .dl-course-card .card-body .card-det-wrap .btn-round-arrrow:hover {
  background-color: #FF0084;
}
.dl-popular-course .dl-course-tab .dl-course-card .card-body .card-det-wrap .btn-round-arrrow:hover svg path {
  fill: #fff;
}
.dl-popular-course .dl-course-tab .dl-course-card:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 3px 10px 35px 8px;
}
.dl-popular-course .btn-view {
  color: #B5015E;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  margin-top: 20px;
}
.dl-popular-course .btn-view img {
  width: 36px;
  height: 36px;
}
.dl-popular-course .btn-view::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  background-color: #B5015E;
  height: 2px;
}
@media (max-width: 1400px) {
  .dl-popular-course .dl-course-tab .dl-course-card .card-img-wrap {
    height: 160px;
  }
}
@media (max-width: 1200px) {
  .dl-popular-course {
    padding: 50px 0 40px 0;
  }
  .dl-popular-course .title {
    font-size: 32px;
    margin-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .dl-popular-course .btn-view {
    font-size: 16px;
  }
  .dl-popular-course .btn-view img {
    width: 22px;
    margin-left: 5px;
  }
  .dl-popular-course .btn-view::before {
    bottom: -5px;
  }
}
@media (max-width: 768px) {
  .dl-popular-course {
    padding-bottom: 0;
  }
  .dl-popular-course .title {
    font-size: 24px;
  }
  .dl-popular-course .dl-desc {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .dl-popular-course .dl-course-tab .dl-nav-wrap .nav {
    border-radius: 6px;
    padding: 5px;
  }
  .dl-popular-course .dl-course-tab .dl-nav-wrap .nav .nav-item .nav-link {
    padding: 8px 12px;
    font-size: 12px;
  }
  .dl-popular-course .dl-course-tab .dl-nav-wrap .nav .nav-item .nav-link.active {
    border-radius: 4px;
  }
  .dl-popular-course .dl-course-tab .dl-course-card {
    padding: 8px;
    border-radius: 6px;
    margin-left: 0;
    margin-right: 0;
  }
  .dl-popular-course .dl-course-tab .dl-course-card .card-img-wrap {
    border-radius: 6px;
    height: 130px;
  }
  .dl-popular-course .dl-course-tab .dl-course-card .card-body .card-title {
    font-size: 18px;
    line-height: 20px;
  }
  .dl-popular-course .dl-course-tab .dl-course-card .card-body .card-duration img {
    width: 16px;
  }
  .dl-popular-course .dl-course-tab .dl-course-card .card-body .card-duration span {
    font-size: 12px;
  }
  .dl-popular-course .dl-course-tab .dl-course-card .card-body .card-det-wrap .text {
    font-size: 12px;
  }
  .dl-popular-course .dl-course-tab .dl-course-card .card-body .card-det-wrap .btn-round-arrrow {
    padding: 8px 12px;
  }
  .dl-popular-course .dl-course-tab .dl-course-card .card-body .card-det-wrap .btn-round-arrrow svg {
    width: 18px;
  }
}
@media (max-width: 576px) {
  .dl-popular-course .dl-course-tab .dl-nav-wrap .nav .nav-item .nav-link {
    padding: 6px 12px;
    font-size: 10px;
  }
}

.students-course-sec {
  background-color: #f7f7f7;
  padding-bottom: 40px;
}
@media (max-width: 1200px) {
  .students-course-sec {
    padding: 40px 0;
  }
}

.dl-faq-section {
  padding: 40px 0 40px 0;
  background-image: url("../img/dots.png");
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: bottom left;
  min-height: 700px;
}
.dl-faq-section .title {
  font-size: 38px;
  font-weight: 600;
  line-height: 40px;
  color: #181E4B;
  margin-bottom: 20px;
}
.dl-faq-section .dl-desc {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  font-weight: 400;
}
.dl-faq-section .dl-img-wrap {
  position: relative;
  margin-right: 60px;
}
.dl-faq-section .dl-img-wrap .q-mark {
  position: absolute;
  font-size: 64px;
  color: #000;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  left: 45%;
  top: -20px;
}
.dl-faq-section .dl-accordion-sec {
  padding-top: 60px;
}
.dl-faq-section .dl-accordion-sec .accordion .accordion-item {
  margin-bottom: 20px;
  border-bottom: none;
  background-color: #FFD6EB;
  border-radius: 20px;
}
.dl-faq-section .dl-accordion-sec .accordion .accordion-item .accordion-header .accordion-button {
  padding: 16px 26px;
  color: #000;
  font-size: 24px;
  line-height: 30px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: #FFD6EB;
  box-shadow: none;
}
.dl-faq-section .dl-accordion-sec .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url(../img/arrow-primary-down.svg);
  width: 30px;
  height: 30px;
  background-size: 28px;
}
.dl-faq-section .dl-accordion-sec .accordion .accordion-item .accordion-header .accordion-button.collapsed {
  border-bottom-width: 0;
  background-color: #F0F0F0;
  border-radius: 16px;
}
.dl-faq-section .dl-accordion-sec .accordion .accordion-item .accordion-header .accordion-button.collapsed::after {
  width: 30px;
  height: 30px;
  background-image: url(../img/arrow-black-down.svg);
  background-size: 28px;
}
.dl-faq-section .dl-accordion-sec .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.dl-faq-section .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #FFD6EB;
  padding-top: 0px;
  padding-left: 26px;
  padding-right: 26px;
}
.dl-faq-section .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body .text {
  margin-bottom: 0;
  font-size: 18px;
  color: #000;
  line-height: 25px;
}
@media (max-width: 1200px) {
  .dl-faq-section {
    padding-top: 40px;
  }
  .dl-faq-section .title {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .dl-faq-section .dl-accordion-sec {
    padding-top: 60px;
  }
  .dl-faq-section .dl-accordion-sec .accordion .accordion-item .accordion-header .accordion-button {
    padding: 18px;
    font-size: 20px;
  }
  .dl-faq-section .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 18px;
    padding-top: 0;
  }
  .dl-faq-section .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body .text {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .dl-faq-section {
    background-image: url("../img/dots-sm-left.png");
    background-size: 50%;
    background-position: top left;
    padding-bottom: 0;
  }
  .dl-faq-section .dl-desc {
    margin-bottom: 30px;
  }
  .dl-faq-section .dl-img-wrap {
    max-width: 400px;
    padding-top: 0;
  }
  .dl-faq-section .dl-accordion-sec {
    padding-top: 30px;
  }
}
@media (max-width: 768px) {
  .dl-faq-section .title {
    font-size: 24px;
  }
  .dl-faq-section .dl-desc {
    font-size: 16px;
  }
  .dl-faq-section .dl-img-wrap {
    max-width: 340px;
  }
  .dl-faq-section .dl-accordion-sec .accordion .accordion-item {
    margin-bottom: 1rem;
    border-radius: 8px;
  }
  .dl-faq-section .dl-accordion-sec .accordion .accordion-item .accordion-header .accordion-button {
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    line-height: 1.2;
  }
  .dl-faq-section .dl-accordion-sec .accordion .accordion-item .accordion-header .accordion-button::after {
    width: 22px;
    height: 22px;
    background-size: 22px;
  }
  .dl-faq-section .dl-accordion-sec .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    border-radius: 8px;
  }
  .dl-faq-section .dl-accordion-sec .accordion .accordion-item .accordion-header .accordion-button.collapsed::after {
    width: 22px;
    height: 22px;
    background-size: 22px;
  }
  .dl-faq-section .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 0px 16px 16px 16px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  .dl-faq-section .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body .text {
    font-size: 12px;
    line-height: 1.3;
  }
}

.line-divider {
  margin-top: 30px;
}

.dl-contact-section {
  padding-top: 50px;
}
.dl-contact-section .contact-wrap {
  padding: 40px 0px 40px 40px;
  border-radius: 24px;
  background-color: #FFD1E9;
  background-image: url("../img/dots-right.png");
  background-size: 42%;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.dl-contact-section .contact-wrap .title {
  font-size: 38px;
  font-weight: 600;
  line-height: 40px;
  color: #181E4B;
  font-family: "Source Sans Pro", sans-serif;
  margin-bottom: 20px;
}
.dl-contact-section .contact-wrap .dl-desc {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
}
.dl-contact-section .contact-wrap .dl-contact-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  justify-content: center;
}
.dl-contact-section .contact-wrap .dl-contact-img-wrap .dl-box-orange {
  border-radius: 50px;
  width: 260px;
  height: 260px;
  background-color: #EA9E46;
  transform: rotate(45deg);
  margin-top: 100px;
}
.dl-contact-section .contact-wrap .dl-contact-img-wrap .dl-img-right {
  position: absolute;
  left: -28px;
  top: 62px;
}
@media (max-width: 1400px) {
  .dl-contact-section .contact-wrap .dl-contact-img-wrap .dl-box-orange {
    width: 230px;
    height: 230px;
  }
  .dl-contact-section .contact-wrap .dl-contact-img-wrap .dl-img-right {
    left: -25px;
    top: 106px;
  }
}
@media (max-width: 1200px) {
  .dl-contact-section .contact-wrap .dl-contact-img-wrap .dl-box-orange {
    margin-top: 60px;
    border-radius: 40px;
    width: 200px;
    height: 200px;
  }
  .dl-contact-section .contact-wrap .dl-contact-img-wrap .dl-img-right {
    left: -21px;
    top: 132px;
  }
}
.dl-contact-section .contact-wrap .form-wrap .input-group .iti {
  max-height: 44px;
  margin-top: 2px;
}
.dl-contact-section .contact-wrap .form-wrap .input-group .iti .iti__country-list {
  max-width: 340px;
  overflow-x: hidden;
}
@media (max-width: 1400px) {
  .dl-contact-section .contact-wrap .form-wrap .input-group .iti .iti__country-list {
    max-width: 292px;
  }
}
@media (max-width: 1200px) {
  .dl-contact-section .contact-wrap .form-wrap .input-group .iti .iti__country-list {
    max-width: 238px;
  }
}
@media (max-width: 992px) {
  .dl-contact-section .contact-wrap .form-wrap .input-group .iti .iti__country-list {
    max-width: 320px;
  }
}
@media (max-width: 768px) {
  .dl-contact-section .contact-wrap .form-wrap .input-group .iti .iti__country-list {
    max-width: 320px;
  }
}
.dl-contact-section .contact-wrap .form-wrap .input-group .iti .iti__flag-container {
  background-color: #fff;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.dl-contact-section .contact-wrap .form-wrap .input-group .iti .iti__flag-container {
  outline: none;
}
.dl-contact-section .contact-wrap .form-wrap .input-group .iti .iti__flag-container:hover .iti__selected-flag {
  background-color: #fff !important;
}
.dl-contact-section .contact-wrap .form-wrap .input-group .iti .iti__selected-flag {
  background-color: #fff;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.dl-contact-section .contact-wrap .form-wrap .input-group .iti .country-code-select {
  border-right: 2px solid #FF0084;
  height: 100%;
  padding-left: 42px;
  padding-right: 5px;
}
.dl-contact-section .contact-wrap .form-wrap .input-group .country-code-select {
  width: 90px;
  border: none;
  outline: none;
  background-color: #fff;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media (max-width: 1200px) {
  .dl-contact-section .contact-wrap .title {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .dl-contact-section .contact-wrap {
    background-image: url("../img/dots-sm-right.png");
    background-size: 40%;
    background-position: center right;
    padding-left: 30px;
  }
  .dl-contact-section .contact-wrap .dl-contact-img-wrap .dl-box-orange {
    width: 180px;
    height: 180px;
    border-radius: 30px;
    margin-top: 0;
  }
  .dl-contact-section .contact-wrap .dl-contact-img-wrap .dl-img-right {
    left: -20px;
    top: 110px;
  }
}
@media (max-width: 768px) {
  .dl-contact-section {
    padding-top: 40px;
  }
  .dl-contact-section .container {
    max-width: 100%;
  }
  .dl-contact-section .container .dl-p-none {
    padding-left: 0;
    padding-right: 0;
  }
  .dl-contact-section .contact-wrap {
    border-radius: 0;
    padding-left: 30px;
    padding-right: 30px;
    background-image: url(../img/dots-diamond.png);
    background-size: 80%;
    background-position: 50% 20%;
  }
  .dl-contact-section .contact-wrap .title {
    font-size: 24px;
  }
  .dl-contact-section .contact-wrap .dl-desc {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .dl-contact-section .contact-wrap .dl-contact-img-wrap .dl-box-orange {
    width: 250px;
    height: 250px;
    border-radius: 40px;
  }
  .dl-contact-section .contact-wrap .dl-contact-img-wrap .dl-img-right {
    max-width: 440px;
    top: -20px;
    left: 40%;
    transform: translateX(-40%);
  }
  .dl-contact-section .contact-wrap .form-wrap {
    margin-top: 100px;
  }
  .dl-contact-section .contact-wrap .form-wrap .btn-primary-1 {
    padding: 12px 15px;
  }
}
@media (min-width: 611px) and (max-width: 700px) {
  .dl-contact-section .contact-wrap .dl-contact-img-wrap .dl-img-right {
    left: 38%;
  }
}
@media (min-width: 577px) and (max-width: 610px) {
  .dl-contact-section .contact-wrap .dl-contact-img-wrap .dl-img-right {
    top: -12px;
    left: 37%;
  }
}
@media (max-width: 576px) {
  .dl-contact-section .contact-wrap .dl-contact-img-wrap .dl-box-orange {
    width: 130px;
    height: 130px;
    border-radius: 22px;
  }
  .dl-contact-section .contact-wrap .dl-contact-img-wrap .dl-img-right {
    max-width: 250px;
    top: 7px;
    left: 42%;
    transform: translateX(-42%);
  }
}
@media (max-width: 460px) {
  .dl-contact-section .contact-wrap .dl-contact-img-wrap .dl-img-right {
    left: 42%;
    transform: translateX(-44%);
  }
}
@media (max-width: 360px) {
  .dl-contact-section .contact-wrap .dl-contact-img-wrap .dl-img-right {
    left: 42%;
    transform: translateX(-44%);
  }
}

.dl-contact-wrap .line-divider {
  margin: 40px 0;
}
@media (max-width: 768px) {
  .dl-contact-wrap .line-divider {
    margin: 40px 0;
  }
}

.dl-code-section {
  padding: 50px 0 200px 0;
  background-image: url("../img/dots-right-2.png");
  background-repeat: no-repeat;
  background-size: 45%;
  background-position: bottom right;
}
.dl-code-section .title {
  font-size: 38px;
  font-weight: 600;
  line-height: 40px;
  color: #181E4B;
  margin-top: 40px;
  margin-bottom: 20px;
}
.dl-code-section .dl-desc {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  font-weight: 400;
  margin-bottom: 80px;
}
.dl-code-section .code-btn-wrap .btn-primary-1,
.dl-code-section .code-btn-wrap .btn-outline-primary-1 {
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dl-code-section .code-btn-wrap .btn-outline-primary-1 {
  padding: 15px 20px;
}
.dl-code-section .dl-code-right-wrap {
  border: 4px solid #000;
  padding: 20px;
  border-radius: 30px;
  position: relative;
}
.dl-code-section .dl-code-right-wrap .dl-code-right-img {
  position: absolute;
  bottom: -150px;
  left: 20px;
}
@media (max-width: 1400px) {
  .dl-code-section {
    background-size: 48%;
  }
}
@media (max-width: 1200px) {
  .dl-code-section {
    padding-bottom: 140px;
  }
  .dl-code-section .title {
    font-size: 32px;
    margin-top: 20px;
  }
  .dl-code-section .dl-code-right-wrap .dl-code-right-img {
    max-width: 300px;
    bottom: -115px;
  }
}
@media (max-width: 992px) {
  .dl-code-section {
    padding-top: 0;
  }
  .dl-code-section .title {
    margin-bottom: 10px;
  }
  .dl-code-section .dl-desc {
    margin-bottom: 26px;
  }
  .dl-code-section .dl-code-right-wrap .dl-code-right-img {
    max-width: 230px;
    bottom: -90px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .dl-code-section .code-btn-wrap .btn-primary-1,
.dl-code-section .code-btn-wrap .btn-outline-primary-1 {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    padding: 15px 9px;
  }
}
@media (max-width: 768px) {
  .dl-code-section {
    background-image: none;
    padding-bottom: 70px;
  }
  .dl-code-section .title {
    font-size: 24px;
    text-align: center;
    margin-top: 80px;
  }
  .dl-code-section .dl-desc {
    font-size: 16px;
    text-align: center;
  }
  .dl-code-section .code-btn-wrap {
    justify-content: center;
  }
  .dl-code-section .code-btn-wrap .btn-outline-primary-1,
.dl-code-section .code-btn-wrap .btn-primary-1 {
    width: auto;
  }
  .dl-code-section .code-btn-wrap .btn-primary-1 {
    padding: 12px 15px;
  }
}

.dl-goal-section {
  padding: 60px 0;
  min-height: 600px;
  background: url("../img/goal-dot-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 32%;
  background-position: left center;
}
@media (max-width: 768px) {
  .dl-goal-section {
    background-size: 40%;
  }
}
.dl-goal-section .dl-title {
  font-size: 38px;
  font-weight: 600;
  line-height: 40px;
  color: #181E4B;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .dl-goal-section .dl-title {
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  .dl-goal-section .dl-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .dl-goal-section .dl-goal-left-wrap {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
.dl-goal-section .goal-right-sec .title {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  max-width: 400px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .dl-goal-section .goal-right-sec .title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .dl-goal-section .goal-right-sec .title {
    font-size: 22px;
    max-width: 100%;
    margin-top: 30px;
  }
}
.dl-goal-section .goal-right-sec .dl-desc {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  font-weight: 400;
  max-width: 600px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .dl-goal-section .goal-right-sec .dl-desc {
    font-size: 16px;
    text-align: center;
    max-width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .dl-goal-section .goal-right-sec .code-btn-wrap .btn-outline-primary-1 {
    padding: 15px 20px;
    font-size: 16px;
    line-height: 1;
  }
}
@media (max-width: 768px) {
  .dl-goal-section .goal-right-sec .code-btn-wrap {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .dl-goal-section .goal-right-sec {
    text-align: center;
  }
}

.dl-testimonial-section {
  padding: 40px 0 40px 0;
}
.dl-testimonial-section .title {
  font-size: 38px;
  font-weight: 600;
  line-height: 40px;
  color: #181E4B;
  margin-bottom: 20px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.dl-testimonial-section .dl-desc {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  font-weight: 500;
  margin-bottom: 30px;
}
.dl-testimonial-section #testimonial-carousel .owl-stage-outer {
  padding-bottom: 150px;
  padding-top: 50px;
}
.dl-testimonial-section #testimonial-carousel .owl-stage-outer .dl-testimonial-card {
  padding: 20px 20px 40px 20px;
  background-color: #fff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  text-align: center;
  position: relative;
  transform: scale3d(0.9, 0.9, 1) translate3d(0px, 30px, 0px);
  transition: all 0.3s ease-in-out;
}
.dl-testimonial-section #testimonial-carousel .owl-stage-outer .dl-testimonial-card .quote-img-wrap {
  margin-bottom: 1rem;
}
.dl-testimonial-section #testimonial-carousel .owl-stage-outer .dl-testimonial-card .quote-img-wrap svg path {
  fill: #a1a1a1;
}
.dl-testimonial-section #testimonial-carousel .owl-stage-outer .dl-testimonial-card .dl-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.dl-testimonial-section #testimonial-carousel .owl-stage-outer .dl-testimonial-card .dl-avatar-det {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.dl-testimonial-section #testimonial-carousel .owl-stage-outer .dl-testimonial-card .dl-avatar-det .dl-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 5px;
  margin-inline: auto;
}
.dl-testimonial-section #testimonial-carousel .owl-stage-outer .dl-testimonial-card .dl-avatar-det .dl-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dl-testimonial-section #testimonial-carousel .owl-stage-outer .dl-testimonial-card .dl-avatar-det .avatar-name {
  font-size: 18px;
  font-weight: 500;
  color: #FF5CB1;
  line-height: 1;
  margin-bottom: 0;
}
.dl-testimonial-section #testimonial-carousel .owl-stage-outer .dl-testimonial-card .dl-avatar-det .avatar-desc {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin-bottom: 0;
  line-height: 1.2;
}
.dl-testimonial-section #testimonial-carousel .owl-stage-outer .owl-item.active.center .dl-testimonial-card {
  background-color: #B5015E;
  box-shadow: none;
  transform: scale3d(1.1, 1.1, 1.1);
}
.dl-testimonial-section #testimonial-carousel .owl-stage-outer .owl-item.active.center .dl-testimonial-card .dl-text {
  color: #fff;
}
@media (max-width: 992px) {
  .dl-testimonial-section #testimonial-carousel .owl-stage-outer .owl-item.active.center .dl-testimonial-card {
    transform: scale3d(1, 1, 1);
  }
}
@media (max-width: 768px) {
  .dl-testimonial-section #testimonial-carousel .owl-stage-outer {
    padding-top: 0;
    padding-bottom: 100px;
  }
}
.dl-testimonial-section #testimonial-carousel .owl-nav .owl-prev,
.dl-testimonial-section #testimonial-carousel .owl-nav .owl-next {
  position: absolute;
  top: 0px;
  width: 30%;
  height: 100%;
  opacity: 0;
}
.dl-testimonial-section #testimonial-carousel .owl-nav .owl-prev {
  left: 0;
}
.dl-testimonial-section #testimonial-carousel .owl-nav .owl-next {
  right: 0;
}
@media (max-width: 1200px) {
  .dl-testimonial-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .dl-testimonial-section .title {
    font-size: 32px;
    max-width: 100%;
    margin-bottom: 5px;
  }
  .dl-testimonial-section .dl-desc {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .dl-testimonial-section #testimonial-carousel .owl-stage-outer {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .dl-testimonial-section {
    padding-top: 0;
  }
  .dl-testimonial-section .title {
    font-size: 24px;
    line-height: 30px;
  }
  .dl-testimonial-section .dl-desc {
    font-size: 16px;
  }
  .dl-testimonial-section #testimonial-carousel {
    padding-top: 0px;
  }
  .dl-testimonial-section #testimonial-carousel .dl-testimonial-card .dl-avatar-det .dl-avatar {
    margin-bottom: 0;
  }
  .dl-testimonial-section #testimonial-carousel .dl-testimonial-card .dl-avatar-det .avatar-name {
    line-height: 24px;
    font-size: 20px;
  }
  .dl-testimonial-section #testimonial-carousel .dl-testimonial-card .dl-avatar-det .avatar-desc {
    line-height: 16px;
  }
}

.dl-course-banner {
  padding-top: 80px;
  background: linear-gradient(0deg, rgba(114, 1, 60, 0.81), rgba(114, 1, 60, 0.81)), url("../img/course-banner.png"), #D9D9D9;
  background-repeat: no-repeat;
  background-size: cover;
}
.dl-course-banner .dl-course-banner-wrap {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dl-course-banner .dl-course-banner-wrap .dl-course-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
  color: #fff;
}
.dl-course-banner .dl-course-banner-wrap .dl-banner-desc {
  color: #fff;
  font-weight: 400;
  margin-bottom: 36px;
  font-size: 20px;
}
.dl-course-banner .dl-course-banner-wrap .dl-search-wrap {
  padding: 10px 15px;
  background-color: #f4f4f4;
  border-radius: 12px;
}
.dl-course-banner .dl-course-banner-wrap .dl-search-wrap .input-group .search-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 5;
}
.dl-course-banner .dl-course-banner-wrap .dl-search-wrap .input-group .form-control {
  border-radius: 8px !important;
  margin-right: 12px;
  background-color: #e0e0e0;
  height: 46px;
  border: none;
  outline: none;
  padding-left: 50px;
  font-size: 18px;
  font-weight: 500;
}
.dl-course-banner .dl-course-banner-wrap .dl-search-wrap .input-group .form-control::-moz-placeholder {
  font-weight: 400;
}
.dl-course-banner .dl-course-banner-wrap .dl-search-wrap .input-group .form-control:-ms-input-placeholder {
  font-weight: 400;
}
.dl-course-banner .dl-course-banner-wrap .dl-search-wrap .input-group .form-control::placeholder {
  font-weight: 400;
}
.dl-course-banner .dl-course-banner-wrap .dl-search-wrap .input-group .form-control:focus {
  box-shadow: none;
  border: 2px solid #FF0084;
  outline: none;
}
.dl-course-banner .dl-course-banner-wrap .dl-search-wrap .input-group .btn-search {
  border-radius: 8px !important;
  background-color: #B5015E;
  color: #fff;
  font-weight: 500;
  padding-left: 40px;
  padding-right: 40px;
  border: none;
  outline: none;
  transition: all 0.5s;
  font-size: 18px;
}
.dl-course-banner .dl-course-banner-wrap .dl-search-wrap .input-group .btn-search:hover {
  transform: scale(0.93);
}
@media (max-width: 1400px) {
  .dl-course-banner .dl-course-banner-wrap .dl-course-title {
    font-size: 42px;
  }
}
@media (max-width: 1200px) {
  .dl-course-banner .dl-course-banner-wrap {
    min-height: 240px;
  }
  .dl-course-banner .dl-course-banner-wrap .dl-course-title {
    font-size: 32px;
  }
  .dl-course-banner .dl-course-banner-wrap .dl-banner-desc {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .dl-course-banner .dl-course-banner-wrap .dl-search-wrap {
    padding: 5px 8px;
    border-radius: 6px;
  }
  .dl-course-banner .dl-course-banner-wrap .dl-search-wrap .input-group .search-icon {
    width: 12px;
    height: 12px;
    left: 8px;
  }
  .dl-course-banner .dl-course-banner-wrap .dl-search-wrap .input-group .form-control {
    border-radius: 5px !important;
    font-size: 12px;
    height: 30px;
    margin-right: 6px;
    padding-left: 30px;
  }
  .dl-course-banner .dl-course-banner-wrap .dl-search-wrap .input-group .btn-search {
    border-radius: 5px !important;
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  .dl-course-banner .dl-course-banner-wrap .dl-search-wrap {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .dl-course-banner .dl-course-banner-wrap .dl-search-wrap .input-group .btn-search {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .dl-course-banner {
    padding-top: 56px;
  }
  .dl-course-banner .dl-course-banner-wrap {
    min-height: 130px;
  }
  .dl-course-banner .dl-course-banner-wrap .dl-course-title {
    font-size: 24px;
  }
  .dl-course-banner .dl-course-banner-wrap .dl-search {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dl-course-banner .dl-course-banner-wrap .dl-search .dl-search-wrap {
    padding: 3px 5px;
    border-radius: 6px;
    margin-right: 12px;
    max-width: 100%;
    margin-left: unset;
    flex-grow: 1;
  }
  .dl-course-banner .dl-course-banner-wrap .dl-search .dl-search-wrap .input-group .form-control {
    height: 26px;
    border-radius: 5px;
  }
  .dl-course-banner .dl-course-banner-wrap .dl-search .dl-search-wrap .input-group .btn-search {
    padding: 0px 8px;
  }
  .dl-course-banner .dl-course-banner-wrap .dl-search .dl-search-wrap .input-group .btn-search .search-icon-btn {
    width: 14px;
    height: 14px;
    margin-top: -2px;
  }
  .dl-course-banner .dl-course-banner-wrap .dl-search .dl-search-wrap .input-group .btn-search .search-icon-btn path {
    fill: #fff;
  }
  .dl-course-banner .dl-course-banner-wrap .dl-search .filter-btn {
    border: none;
    outline: none;
    background-color: #fff;
    border-radius: 5px;
    padding: 4px 6px;
    align-items: center;
    justify-content: center;
    height: 32px;
  }
  .dl-course-banner .dl-course-banner-wrap .dl-search .filter-btn .filter-icon {
    width: 16;
    height: 16px;
  }
}

.mb-filter-menu {
  display: none;
}
@media (max-width: 768px) {
  .mb-filter-menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background-color: #FFF7FB;
    z-index: 9;
    opacity: 0;
    transition: 0.5s;
    padding-top: 110px;
  }
  .mb-filter-menu.show {
    opacity: 1;
    right: 0;
  }
  .mb-filter-menu .menu-wrap {
    position: relative;
    height: 100%;
    padding-bottom: 60px;
  }
  .mb-filter-menu .menu-wrap .title-wrap {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
  }
  .mb-filter-menu .menu-wrap .title-wrap .title {
    font-size: 24px;
    color: #000;
    font-weight: 600;
    margin-bottom: 0;
  }
  .mb-filter-menu .menu-wrap .title-wrap .close-btn {
    font-weight: 600;
    font-size: 16px;
    position: relative;
  }
  .mb-filter-menu .menu-wrap .title-wrap .close-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    left: 0;
    width: 100%;
    background-color: #B5015E;
  }
  .mb-filter-menu .menu-wrap .mb-middle-sec {
    max-height: calc(100vh - 170px);
    overflow-y: auto;
    text-align: left;
  }
  .mb-filter-menu .menu-wrap .mb-middle-sec .dl-filter-wrap {
    margin-bottom: 16px;
  }
  .mb-filter-menu .menu-wrap .mb-middle-sec .dl-filter-wrap .dl-left-title {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .mb-filter-menu .menu-wrap .mb-middle-sec .dl-filter-wrap .form-check .form-check-input {
    width: 17px;
    height: 17px;
  }
  .mb-filter-menu .menu-wrap .mb-middle-sec .dl-filter-wrap .form-check .form-check-input:focus {
    box-shadow: none;
  }
  .mb-filter-menu .menu-wrap .mb-middle-sec .dl-filter-wrap .form-check .form-check-input:checked {
    background-color: #fff;
    box-shadow: none;
  }
  .mb-filter-menu .menu-wrap .mb-middle-sec .dl-filter-wrap .form-check .form-check-input:checked[type=radio] {
    background-image: url("../img/radio-inner.svg");
    background-size: 70%;
  }
  .mb-filter-menu .menu-wrap .mb-middle-sec .dl-filter-wrap .form-check .form-check-input:checked[type=checkbox] {
    background-color: #B5015E;
  }
  .mb-filter-menu .menu-wrap .mb-middle-sec .dl-filter-wrap .form-check .form-check-label {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-left: 6px;
  }
  .mb-filter-menu .menu-wrap .mb-middle-sec .dl-filter-wrap .form-select {
    max-width: 60%;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
  }
  .mb-filter-menu .menu-wrap .mb-middle-sec .dl-filter-wrap .form-select:focus {
    box-shadow: none;
    border: 1px solid #B5015E;
  }
  .mb-filter-menu .menu-wrap .mb-middle-sec::-webkit-scrollbar {
    display: none;
  }
  .mb-filter-menu .menu-wrap .bt-btn-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    filter: drop-shadow(0px -2px 12px rgba(114, 1, 60, 0.06));
    background-color: #FFF7FB;
  }
  .mb-filter-menu .menu-wrap .bt-btn-wrap .btn-primary-1,
.mb-filter-menu .menu-wrap .bt-btn-wrap .btn-outline-primary-1 {
    font-size: 14px;
    line-height: 1;
    border-radius: 5px;
    padding: 8px 30px;
  }
  .mb-filter-menu .menu-wrap .bt-btn-wrap .btn-outline-primary-1 {
    background-color: transparent;
  }
  .mb-filter-menu .menu-wrap .bt-btn-wrap .btn-primary-1 {
    outline: none;
    border-color: #B5015E;
  }
}

.dl-courses-sec .row {
  margin-left: 0;
  margin-right: 0;
}
.dl-courses-sec .course-wrap-row.row > * {
  padding-left: 0;
  padding-right: 0;
}
.dl-courses-sec .dl-left-sec {
  background-color: #FFF6FB;
  padding: 40px;
  height: 100%;
}
.dl-courses-sec .dl-left-sec .dl-left-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 26px;
  color: #000;
}
.dl-courses-sec .dl-left-sec .form-check {
  margin-bottom: 8px;
}
.dl-courses-sec .dl-left-sec .form-check .form-check-input {
  border: 1px solid #B5015E;
  width: 1.3rem;
  height: 1.3rem;
  cursor: pointer;
}
.dl-courses-sec .dl-left-sec .form-check .form-check-input:checked {
  background-color: #fff;
}
.dl-courses-sec .dl-left-sec .form-check .form-check-input:checked[type=radio] {
  background-image: url("../img/radio-inner.svg");
  background-size: 70%;
  background-position: center center;
  box-shadow: none;
}
.dl-courses-sec .dl-left-sec .form-check .form-check-input[type=checkbox] {
  box-shadow: none;
}
.dl-courses-sec .dl-left-sec .form-check .form-check-input[type=checkbox]:checked {
  background-color: #B5015E;
  box-shadow: none;
}
.dl-courses-sec .dl-left-sec .form-check .form-check-label {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  margin-left: 14px;
  line-height: 1.6;
  cursor: pointer;
}
.dl-courses-sec .dl-left-sec .form-select {
  background-color: #fff;
  border-radius: 4px;
  height: 46px;
  border: none;
  font-size: 18px;
  color: #000;
  cursor: pointer;
}
.dl-courses-sec .dl-left-sec .form-select:focus {
  box-shadow: none;
  border: 1px solid #B5015E;
}
.dl-courses-sec .dl-left-sec .dl-filter-wrap {
  margin-bottom: 36px;
}
.dl-courses-sec .dl-right-sec {
  padding: 40px;
}
.dl-courses-sec .dl-right-sec .dl-course-card {
  padding: 16px;
  border-radius: 24px;
  background-color: #fff;
  margin-bottom: 30px;
  height: calc(100% - 30px);
  transition: all 0.5s;
}
.dl-courses-sec .dl-right-sec .dl-course-card .img-wrap .dl-course-img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.dl-courses-sec .dl-right-sec .dl-course-card .dl-card-body {
  padding-top: 10px;
}
.dl-courses-sec .dl-right-sec .dl-course-card .dl-card-body .card-title {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 5px;
}
.dl-courses-sec .dl-right-sec .dl-course-card .dl-card-body .dl-card-rate {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.dl-courses-sec .dl-right-sec .dl-course-card .dl-card-body .dl-card-rate .rating {
  font-size: 18px;
  color: #000;
  margin-right: 6px;
  font-weight: 400;
}
.dl-courses-sec .dl-right-sec .dl-course-card .dl-card-body .dl-card-rate img {
  width: 20px;
  height: 20px;
}
.dl-courses-sec .dl-right-sec .dl-course-card .dl-card-body .dl-card-detail {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.dl-courses-sec .dl-right-sec .dl-course-card .dl-card-body .dl-card-detail img {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}
.dl-courses-sec .dl-right-sec .dl-course-card .dl-card-body .dl-card-detail .text {
  font-size: 14px;
  font-weight: 400;
  color: #D1026D;
}
.dl-courses-sec .dl-right-sec .dl-course-card:hover, .dl-courses-sec .dl-right-sec .dl-course-card:focus {
  box-shadow: 0px 4px 22px 16px rgba(201, 201, 201, 0.25);
}
.dl-courses-sec .pagination {
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.dl-courses-sec .pagination .page-item {
  padding: 5px;
}
.dl-courses-sec .pagination .page-item .page-link {
  min-width: 40px;
  min-height: 40px;
  border-radius: 6px;
  border: 2px solid #72013C;
  color: #B5015E;
  font-size: 18px;
  font-weight: 700;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dl-courses-sec .pagination .page-item.active .page-link {
  background-color: #B5015E;
  color: #fff;
  border: none;
}
.dl-courses-sec .pagination .page-item:first-child .page-link, .dl-courses-sec .pagination .page-item:last-child .page-link {
  font-size: 14px;
  min-width: 80px;
  background-color: #B5015E;
  color: #fff;
  border: none;
}
.dl-courses-sec .pagination .page-item.disabled .page-link {
  opacity: 0.7;
}
@media (max-width: 992px) {
  .dl-courses-sec .pagination .page-item .page-link {
    min-width: 28px;
    min-height: 28px;
    font-size: 14px;
    border-radius: 5px;
  }
  .dl-courses-sec .pagination .page-item:first-child .page-link, .dl-courses-sec .pagination .page-item:last-child .page-link {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .dl-courses-sec .pagination .page-item {
    padding: 3px;
  }
  .dl-courses-sec .pagination .page-item .page-link {
    min-width: 24px;
    min-height: 24px;
    font-size: 12px;
  }
  .dl-courses-sec .pagination .page-item:first-child .page-link, .dl-courses-sec .pagination .page-item:last-child .page-link {
    font-size: 12px;
    min-width: 70px;
  }
}
@media (max-width: 1200px) {
  .dl-courses-sec .dl-left-sec {
    padding-left: 30px;
    padding-right: 30px;
  }
  .dl-courses-sec .dl-left-sec .dl-left-title {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .dl-courses-sec .dl-left-sec .dl-filter-wrap {
    margin-bottom: 22px;
  }
  .dl-courses-sec .dl-left-sec .dl-filter-wrap .form-check .form-check-input {
    width: 1.1rem;
    height: 1.1rem;
  }
  .dl-courses-sec .dl-left-sec .dl-filter-wrap .form-check .form-check-label {
    font-size: 16px;
    margin-left: 10px;
  }
  .dl-courses-sec .dl-left-sec .dl-filter-wrap .form-select {
    font-size: 16px;
  }
  .dl-courses-sec .dl-right-sec {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 992px) {
  .dl-courses-sec .dl-left-sec {
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .dl-courses-sec .dl-right-sec {
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .dl-courses-sec .dl-right-sec .dl-course-card {
    border-radius: 12px;
    padding: 8px;
    margin-bottom: 20px;
    height: calc(100% - 20px);
  }
  .dl-courses-sec .dl-right-sec .dl-course-card .img-wrap .dl-course-img {
    height: 100px;
    border-radius: 5px;
  }
  .dl-courses-sec .dl-right-sec .dl-course-card .dl-card-body {
    padding-top: 5px;
  }
  .dl-courses-sec .dl-right-sec .dl-course-card .dl-card-body .card-title {
    font-size: 16px;
    line-height: 16px;
  }
  .dl-courses-sec .dl-right-sec .dl-course-card .dl-card-body .dl-card-rate .rating {
    font-size: 14px;
  }
  .dl-courses-sec .dl-right-sec .dl-course-card .dl-card-body .dl-card-rate img {
    width: 16px;
    height: 16px;
  }
  .dl-courses-sec .dl-right-sec .dl-course-card .dl-card-body .dl-card-detail img {
    width: 14px;
    height: 14px;
  }
  .dl-courses-sec .dl-right-sec .dl-course-card .dl-card-body .dl-card-detail .text {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .dl-courses-sec .dl-right-sec {
    padding-left: 0;
    padding-right: 0;
  }
}

.dl-course-det-banner {
  padding-top: 120px;
  padding-bottom: 60px;
  min-height: 600px;
  background: url("../img/course-det-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.dl-course-det-banner .dl-left-wrap .dl-banner-title {
  font-size: 46px;
  color: #fff;
  font-weight: 700;
  line-height: 54px;
  margin-bottom: 20px;
}
.dl-course-det-banner .dl-left-wrap .dl-desc {
  font-size: 18px;
  color: #fff;
  line-height: 28px;
  margin-bottom: 40px;
}
.dl-course-det-banner .dl-left-wrap .banner-btn-wrap {
  margin-bottom: 40px;
}
.dl-course-det-banner .dl-left-wrap .banner-btn-wrap .btn-white,
.dl-course-det-banner .dl-left-wrap .banner-btn-wrap .btn-outline-white {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 8px;
  line-height: 1;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  min-width: 200px;
}
.dl-course-det-banner .dl-left-wrap .banner-btn-wrap .btn-white {
  color: #B5015E;
  background-color: #fff;
}
.dl-course-det-banner .dl-left-wrap .banner-btn-wrap .btn-white:hover {
  transform: scale(0.9);
}
.dl-course-det-banner .dl-left-wrap .banner-btn-wrap .btn-outline-white {
  border: 2px solid #fff;
  color: #fff;
}
.dl-course-det-banner .dl-left-wrap .banner-btn-wrap .btn-outline-white:hover {
  background-color: #fff;
  color: #B5015E;
}
.dl-course-det-banner .dl-right-img-wrap {
  margin-bottom: 30px;
}
.dl-course-det-banner .program-det-wrap {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
.dl-course-det-banner .program-det-wrap .det-wrap {
  border-right: 1px solid #B5015E;
  height: 100%;
  margin-bottom: 10px;
}
.dl-course-det-banner .program-det-wrap .det-wrap .det-title {
  font-size: 18px;
  font-weight: 600;
  color: #B5015E;
  margin-bottom: 6px;
  line-height: 1.1;
}
.dl-course-det-banner .program-det-wrap .det-wrap .det-value {
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
.dl-course-det-banner .program-det-wrap [class*=col-]:last-child .det-wrap {
  border-right: none;
}
@media (max-width: 1200px) {
  .dl-course-det-banner .dl-left-wrap .dl-banner-title {
    font-size: 38px;
    line-height: 42px;
  }
  .dl-course-det-banner .program-det-wrap .det-wrap .det-title {
    font-size: 16px;
  }
  .dl-course-det-banner .program-det-wrap .det-wrap .det-value {
    font-size: 22px;
  }
}
@media (max-width: 992px) {
  .dl-course-det-banner {
    padding-top: 80px;
  }
  .dl-course-det-banner .dl-left-wrap {
    text-align: center;
  }
  .dl-course-det-banner .dl-left-wrap .dl-banner-title {
    font-size: 32px;
    line-height: 40px;
  }
  .dl-course-det-banner .dl-left-wrap .banner-btn-wrap {
    margin-bottom: 0;
  }
  .dl-course-det-banner .program-det-wrap {
    margin-bottom: 20px;
    padding: 10px;
    text-align: left;
    padding: 10px 15px;
  }
  .dl-course-det-banner .program-det-wrap .det-wrap {
    padding-right: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .dl-course-det-banner .program-det-wrap .det-wrap .det-title {
    font-size: 14px;
  }
  .dl-course-det-banner .program-det-wrap .det-wrap .det-value {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .dl-course-det-banner .dl-left-wrap .dl-banner-title {
    font-size: 28px;
    line-height: 32px;
  }
  .dl-course-det-banner .dl-left-wrap .dl-desc {
    font-size: 16px;
    line-height: 26px;
  }
  .dl-course-det-banner .dl-left-wrap .banner-btn-wrap .btn-white,
.dl-course-det-banner .dl-left-wrap .banner-btn-wrap .btn-outline-white {
    height: 40px;
    font-size: 16px;
  }
  .dl-course-det-banner .program-det-wrap .line {
    height: 1px;
    background-color: #B5015E;
    margin: 10px 0;
  }
  .dl-course-det-banner .program-det-wrap [class*=col-]:nth-child(2) .det-wrap {
    border-right: none;
  }
}
@media (max-width: 576px) {
  .dl-course-det-banner .dl-left-wrap .banner-btn-wrap .btn-white,
.dl-course-det-banner .dl-left-wrap .banner-btn-wrap .btn-outline-white {
    min-width: unset;
    border-radius: 5px;
  }
}

@media (max-width: 1200px) {
  .dl-course-det-speciality .dl-spec-card {
    display: flex;
    align-items: center;
  }
  .dl-course-det-speciality .dl-spec-card .card-img-wrap {
    margin-bottom: 0;
    margin-left: unset;
    margin-right: unset;
  }
  .dl-course-det-speciality .dl-spec-card .card-content {
    margin-left: 16px;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .dl-course-det-speciality .dl-spec-card {
    border-radius: 10px;
    margin-bottom: 20px;
    height: calc(100% - 20px);
  }
}

.dl-university-det {
  padding: 50px 0 50px 0;
  position: relative;
}
.dl-university-det::before {
  content: "";
  position: absolute;
  background-color: #B5015E;
  left: 0;
  top: 0;
  height: 100%;
  width: 85%;
  z-index: -1;
}
.dl-university-det .dl-left-wrap .abbr {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}
.dl-university-det .dl-left-wrap .title {
  font-size: 38px;
  font-weight: 600;
  line-height: 40px;
  color: #fff;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.dl-university-det .dl-left-wrap .desc {
  font-weight: 400;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  opacity: 0.8;
  margin-bottom: 30px;
}
.dl-university-det .dl-left-wrap hr {
  height: 2px;
  background-color: #fff;
  opacity: 1;
  z-index: 1;
  margin-bottom: 20px;
}
.dl-university-det .dl-left-wrap .bt-text {
  font-weight: 400;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  opacity: 1;
}
.dl-university-det .dl-cert-wrap {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 4px 27px 5px rgba(0, 0, 0, 0.2);
  padding: 25px;
}
.dl-university-det .dl-cert-wrap .cert-title {
  font-weight: 500;
  color: #01161E;
  font-size: 24px;
}
@media (max-width: 1200px) {
  .dl-university-det .dl-left-wrap .abbr {
    font-size: 38px;
  }
  .dl-university-det .dl-left-wrap .title {
    font-size: 32px;
    line-height: 36px;
  }
  .dl-university-det .dl-left-wrap .desc {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  .dl-university-det .dl-left-wrap .bt-text {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 992px) {
  .dl-university-det::before {
    width: 100%;
  }
  .dl-university-det .dl-left-wrap {
    padding-top: 30px;
  }
}
@media (max-width: 768px) {
  .dl-university-det {
    margin-top: 250px;
  }
  .dl-university-det .dl-left-wrap .abbr {
    font-size: 28px;
  }
  .dl-university-det .dl-left-wrap .title {
    font-size: 24px;
    line-height: 26px;
  }
  .dl-university-det .dl-cert-wrap {
    margin-top: -250px;
    border-radius: 12px;
    padding: 15px;
  }
  .dl-university-det .dl-cert-wrap .cert-title {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .dl-university-det {
    margin-top: 150px;
  }
  .dl-university-det .dl-cert-wrap {
    margin-top: -200px;
  }
}

.dl-syllabus-sec {
  padding: 40px 0 40px 0;
}
.dl-syllabus-sec .title {
  font-size: 38px;
  font-weight: 600;
  line-height: 40px;
  color: #181E4B;
  margin-bottom: 20px;
}
.dl-syllabus-sec .dl-desc {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  margin-bottom: 40px;
  font-weight: 400;
}
.dl-syllabus-sec .nav-wrap {
  background-color: #f6f6f6;
  border-radius: 16px;
}
.dl-syllabus-sec .nav-wrap .title-wrap {
  padding: 20px;
  border-bottom: 2px solid #eaeaea;
  margin-bottom: 10px;
}
.dl-syllabus-sec .nav-wrap .title-wrap .title {
  font-size: 24px;
  color: #000;
  font-size: 600;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.1;
}
.dl-syllabus-sec .nav-wrap .nav .nav-link {
  border-radius: 0;
  font-size: 18px;
  color: #000;
  font-weight: 400;
  position: relative;
  padding: 20px;
  margin-bottom: 5px;
}
.dl-syllabus-sec .nav-wrap .nav .nav-link:hover {
  background-color: #FFD1E9;
}
.dl-syllabus-sec .nav-wrap .nav .nav-link.active {
  background-color: #FFD1E9;
  font-weight: 600;
  color: #B5015E;
}
.dl-syllabus-sec .nav-wrap .nav .nav-link.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background-color: #B5015E;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.dl-syllabus-sec .nav-wrap .nav .nav-link:last-child {
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  margin-bottom: 0;
}
.dl-syllabus-sec .nav-wrap .nav .nav-link:last-child.active {
  border-bottom-left-radius: 0px;
}
@media (max-width: 992px) {
  .dl-syllabus-sec .nav-wrap .title-wrap {
    padding: 16px;
  }
  .dl-syllabus-sec .nav-wrap .title-wrap .title {
    font-size: 20px;
  }
  .dl-syllabus-sec .nav-wrap .nav .nav-link {
    padding: 12px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .dl-syllabus-sec .nav-wrap {
    background-color: unset;
    border-radius: 0;
    margin-bottom: 20px;
  }
  .dl-syllabus-sec .nav-wrap .title-wrap {
    padding: 16px;
    border-bottom: none;
    margin-bottom: 0;
  }
  .dl-syllabus-sec .nav-wrap .title-wrap .title {
    font-size: 20px;
  }
  .dl-syllabus-sec .nav-wrap .nv-wrap {
    display: flex;
  }
  .dl-syllabus-sec .nav-wrap .nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 10px 0px;
  }
  .dl-syllabus-sec .nav-wrap .nav::-webkit-scrollbar {
    display: none;
  }
  .dl-syllabus-sec .nav-wrap .nav .nav-link {
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 5px;
    background-color: #f6f6f6;
  }
  .dl-syllabus-sec .nav-wrap .nav .nav-link.active {
    background-color: #FFD1E9;
    font-weight: 600;
    color: #B5015E;
  }
  .dl-syllabus-sec .nav-wrap .nav .nav-link.active::before {
    left: 0;
    top: unset;
    bottom: -8px;
    width: 100%;
    height: 4px;
    background-color: #B5015E;
    border-radius: 5px 5px 0 0;
  }
  .dl-syllabus-sec .nav-wrap .nav .nav-link.active:last-child {
    border-bottom-left-radius: 5px;
  }
  .dl-syllabus-sec .nav-wrap .nav .nav-link:last-child {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
  }
}
.dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item {
  margin-bottom: 16px;
  border-bottom: none;
  background-color: #f6f6f6;
  border-radius: 20px;
}
.dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-header .accordion-button {
  padding: 20px;
  color: #000;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: none;
  background-color: #f6f6f6;
}
.dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url(../img/arrow-primary-down.svg);
  width: 26px;
  height: 26px;
  background-size: 24px;
}
.dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-header .accordion-button.collapsed {
  border-bottom-width: 0;
  border-radius: 16px;
}
.dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-header .accordion-button.collapsed::after {
  width: 26px;
  height: 26px;
  background-image: url(../img/arrow-black-down.svg);
  background-size: 24px;
}
.dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-header .accordion-button:not(collpased) {
  border-bottom: 2px solid #eaeaea;
}
.dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  background-color: #f6f6f6;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
.dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body .inner-accordion-wrap .accordion-item {
  margin-bottom: 0px;
  border-bottom: none;
  border-radius: 8px;
}
.dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body .inner-accordion-wrap .accordion-item .accordion-header .accordion-button {
  padding: 14px;
  color: #B5015E;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  box-shadow: none;
  background-color: #FFD1E9;
  border-bottom: none;
  position: relative;
  padding-left: 50px;
}
.dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body .inner-accordion-wrap .accordion-item .accordion-header .accordion-button::after {
  background-image: url(../img/arrow-primary-down.svg);
  width: 22px;
  height: 22px;
  background-size: 20px;
  position: absolute;
  left: 10px;
}
.dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body .inner-accordion-wrap .accordion-item .accordion-header .accordion-button.collapsed {
  border-bottom-width: 0;
  border-radius: 16px;
  background-color: transparent;
  color: #000;
}
.dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body .inner-accordion-wrap .accordion-item .accordion-header .accordion-button.collapsed::after {
  width: 22px;
  height: 22px;
  background-image: url(../img/arrow-black-down.svg);
  background-size: 20px;
}
.dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body .inner-accordion-wrap .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body .inner-accordion-wrap .accordion-item .accordion-collapse .accordion-body {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: #FFD1E9;
  padding-top: 0px;
  padding-left: 50px;
  padding-right: 16px;
}
.dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body .inner-accordion-wrap .accordion-item .accordion-collapse .accordion-body .text {
  font-size: 14px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item {
    margin-bottom: 10px;
  }
  .dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-header .accordion-button {
    padding: 14px;
    font-size: 20px;
  }
  .dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body {
    padding-top: 5px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  .dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-header .accordion-button {
    padding: 10px;
    font-size: 18px;
  }
  .dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body {
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body .inner-accordion-wrap .accordion-item .accordion-header .accordion-button {
    padding: 10px;
    font-size: 16px;
    line-height: 1.1;
    padding-left: 40px;
  }
  .dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body .inner-accordion-wrap .accordion-item .accordion-header .accordion-button::after {
    background-image: url(../img/arrow-primary-down.svg);
    width: 18px;
    height: 18px;
    background-size: 16px;
    position: absolute;
    left: 10px;
  }
  .dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body .inner-accordion-wrap .accordion-item .accordion-header .accordion-button.collapsed {
    border-bottom-width: 0;
    border-radius: 16px;
    background-color: transparent;
    color: #000;
  }
  .dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body .inner-accordion-wrap .accordion-item .accordion-header .accordion-button.collapsed::after {
    width: 18px;
    height: 18px;
    background-image: url(../img/arrow-black-down.svg);
    background-size: 16px;
  }
  .dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body .inner-accordion-wrap .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: none;
  }
  .dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body .inner-accordion-wrap .accordion-item .accordion-collapse .accordion-body {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background-color: #FFD1E9;
    padding-top: 0px;
    padding-left: 40px;
    padding-right: 10px;
  }
  .dl-syllabus-sec .tab-content .tab-pane .dl-accordion-sec .accordion .accordion-item .accordion-collapse .accordion-body .inner-accordion-wrap .accordion-item .accordion-collapse .accordion-body .text {
    font-size: 14px;
    margin-bottom: 0;
  }
}
@media (max-width: 1200px) {
  .dl-syllabus-sec .title {
    font-size: 32px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .dl-syllabus-sec .title {
    font-size: 24px;
  }
  .dl-syllabus-sec .dl-desc {
    font-size: 16px;
  }
}

.dl-place-inter-sec {
  padding: 50px 0 50px 0;
  background-color: #f2f2f2;
}
.dl-place-inter-sec .tab-sec-wrap {
  background-color: #B5015E;
  padding: 30px;
  border-radius: 24px;
}
.dl-place-inter-sec .tab-sec-wrap .nav-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.dl-place-inter-sec .tab-sec-wrap .nav-wrap .nav {
  border-radius: 10px;
  padding: 8px;
  background-color: #fff;
}
.dl-place-inter-sec .tab-sec-wrap .nav-wrap .nav .nav-item .nav-link {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 20px;
  border-radius: 5px;
}
.dl-place-inter-sec .tab-sec-wrap .nav-wrap .nav .nav-item .nav-link.active {
  background-color: #B5015E;
  color: #fff;
}
.dl-place-inter-sec .tab-sec-wrap .tab-content {
  min-height: 400px;
}
.dl-place-inter-sec .tab-sec-wrap .tab-content .tab-pane .dl-left-img {
  max-width: 300px;
}
.dl-place-inter-sec .tab-sec-wrap .tab-content .tab-pane .dl-right-wrap .desc {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 25px;
}
@media (max-width: 768px) {
  .dl-place-inter-sec .tab-sec-wrap .tab-content .tab-pane .dl-right-wrap .desc {
    font-size: 16px;
    line-height: 20px;
  }
}
.dl-place-inter-sec .tab-sec-wrap .tab-content .tab-pane .dl-right-wrap ul {
  padding-left: 0;
}
.dl-place-inter-sec .tab-sec-wrap .tab-content .tab-pane .dl-right-wrap ul li {
  position: relative;
  padding-left: 2rem;
}
@media (max-width: 768px) {
  .dl-place-inter-sec .tab-sec-wrap .tab-content .tab-pane .dl-right-wrap ul li {
    padding-left: 1.4rem;
  }
}
.dl-place-inter-sec .tab-sec-wrap .tab-content .tab-pane .dl-right-wrap ul li::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #fff;
  top: 5px;
  left: 0;
}
@media (max-width: 768px) {
  .dl-place-inter-sec .tab-sec-wrap .tab-content .tab-pane .dl-right-wrap ul li::before {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 768px) {
  .dl-place-inter-sec .tab-sec-wrap {
    padding: 25px;
  }
  .dl-place-inter-sec .tab-sec-wrap .nav-wrap .nav {
    border-radius: 6px;
    padding: 5px;
  }
  .dl-place-inter-sec .tab-sec-wrap .nav-wrap .nav .nav-item .nav-link {
    border-radius: 4px;
    font-size: 12px;
  }
  .dl-place-inter-sec .tab-sec-wrap .tab-content .tab-pane .desc {
    margin-bottom: 0.8rem;
  }
  .dl-place-inter-sec .tab-sec-wrap .tab-content .tab-pane .dl-left-img {
    max-width: 200px;
  }
}
@media (max-width: 576px) {
  .dl-place-inter-sec .tab-sec-wrap .tab-content .tab-pane .dl-left-img {
    max-width: 150px;
  }
}

.dl-eligibility-sec {
  padding: 40px 0 40px 0;
}
.dl-eligibility-sec .title {
  font-size: 38px;
  font-weight: 600;
  line-height: 40px;
  color: #181E4B;
  margin-bottom: 40px;
}
.dl-eligibility-sec .time-line-wrap {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dl-eligibility-sec .time-line-wrap .time-line {
  display: flex;
  width: 90%;
  height: 3px;
  background-color: #dcdcdc;
  position: relative;
}
.dl-eligibility-sec .time-line-wrap .time-line::before {
  content: "";
  position: absolute;
  display: none;
}
.dl-eligibility-sec .time-line-wrap .time-line .time-line-item {
  position: relative;
}
.dl-eligibility-sec .time-line-wrap .time-line .time-line-item .item-wrap .tick-icon {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}
.dl-eligibility-sec .time-line-wrap .time-line .time-line-item .text {
  color: #000;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  max-width: 200px;
}
.dl-eligibility-sec .time-line-wrap .time-line .time-line-item.top .text {
  margin-top: -150px;
}
.dl-eligibility-sec .time-line-wrap .time-line .time-line-item.bottom .text {
  margin-top: 40px;
}
.dl-eligibility-sec .time-line-wrap .time-line .time-line-item:first-child .text {
  text-align: left;
  margin-left: -65px;
}
.dl-eligibility-sec .time-line-wrap .time-line .time-line-item:first-child .item-wrap .tick-icon {
  left: -50px;
}
.dl-eligibility-sec .time-line-wrap .time-line .time-line-item:last-child .text {
  text-align: right;
  margin-right: -30px;
}
.dl-eligibility-sec .time-line-wrap .time-line .time-line-item:last-child .item-wrap .tick-icon {
  right: -54px;
  left: unset;
}
@media (max-width: 992px) {
  .dl-eligibility-sec .time-line-wrap .time-line .time-line-item .text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .dl-eligibility-sec .time-line-wrap {
    justify-content: flex-start;
    align-items: unset;
    margin-top: 40px;
  }
  .dl-eligibility-sec .time-line-wrap .time-line {
    display: block;
    width: auto;
    height: auto;
    background-color: transparent;
    padding-left: 1rem;
  }
  .dl-eligibility-sec .time-line-wrap .time-line::before {
    content: "";
    position: absolute;
    display: block;
    height: 83%;
    width: 3px;
    background-color: #dcdcdc;
  }
  .dl-eligibility-sec .time-line-wrap .time-line .time-line-item {
    min-height: 80px;
  }
  .dl-eligibility-sec .time-line-wrap .time-line .time-line-item .item-wrap .tick-icon {
    left: 0 !important;
    width: 30px;
    height: 30px;
    top: 0;
  }
  .dl-eligibility-sec .time-line-wrap .time-line .time-line-item .item-wrap .text {
    margin-top: 0;
    text-align: left;
    max-width: 300px;
  }
  .dl-eligibility-sec .time-line-wrap .time-line .time-line-item .text {
    font-size: 14px;
    margin-left: 30px;
    text-align: left;
    max-width: 300px;
  }
  .dl-eligibility-sec .time-line-wrap .time-line .time-line-item:first-child .text, .dl-eligibility-sec .time-line-wrap .time-line .time-line-item:last-child .text {
    margin-left: 30px;
  }
  .dl-eligibility-sec .time-line-wrap .time-line .time-line-item:first-child .text {
    margin-top: -26px;
  }
  .dl-eligibility-sec .time-line-wrap .time-line .time-line-item:first-child .item-wrap .tick-icon {
    top: 0px;
  }
  .dl-eligibility-sec .time-line-wrap .time-line .time-line-item:last-child .text {
    margin-top: 0px;
    text-align: left;
  }
}
@media (max-width: 576px) {
  .dl-eligibility-sec .time-line-wrap .time-line .time-line-item .item-wrap .text {
    max-width: 200px;
  }
  .dl-eligibility-sec .time-line-wrap .time-line .time-line-item .text {
    max-width: 200px;
  }
  .dl-eligibility-sec .time-line-wrap .time-line .time-line-item:last-child .item-wrap .tick-icon {
    top: 12px;
  }
}
@media (max-width: 1200px) {
  .dl-eligibility-sec .title {
    font-size: 32px;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .dl-eligibility-sec {
    padding-bottom: 0;
  }
  .dl-eligibility-sec .title {
    font-size: 24px;
  }
}

.dl-skills-sec {
  padding: 40px 0 40px 0;
}
.dl-skills-sec .title {
  font-size: 38px;
  font-weight: 600;
  line-height: 40px;
  color: #181E4B;
  margin-bottom: 40px;
}
.dl-skills-sec .dl-skill-card {
  padding: 25px;
  border-radius: 16px;
  background-color: #fff;
  color: #B5015E;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
}
.dl-skills-sec .dl-skill-card .icon-wrap {
  background-color: #B5015E;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.dl-skills-sec .dl-skill-card .icon-wrap svg {
  width: 40px;
  height: 40px;
}
.dl-skills-sec .dl-skill-card .dl-desc {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 0;
}
.dl-skills-sec .dl-skill-card.selected {
  background-color: #B5015E;
  color: #fff;
}
.dl-skills-sec .dl-skill-card.selected .icon-wrap {
  background-color: #fff;
}
.dl-skills-sec .dl-skill-card.selected .icon-wrap svg path {
  fill: #B5015E;
}
@media (max-width: 1200px) {
  .dl-skills-sec .title {
    font-size: 32px;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .dl-skills-sec .title {
    font-size: 24px;
  }
  .dl-skills-sec .dl-skill-card {
    padding: 20px;
    height: calc(100% - 20px);
    margin-bottom: 20px;
    min-height: 190px;
  }
  .dl-skills-sec .dl-skill-card .icon-wrap {
    padding: 12px;
    margin-bottom: 10px;
  }
  .dl-skills-sec .dl-skill-card .icon-wrap svg {
    width: 26px;
    height: 26px;
  }
  .dl-skills-sec .dl-skill-card .dl-desc {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .dl-skills-sec .dl-skill-card {
    padding: 16px;
    min-height: 150px;
  }
  .dl-skills-sec .dl-skill-card .icon-wrap {
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
  }
  .dl-skills-sec .dl-skill-card .icon-wrap svg {
    width: 20px;
    height: 20px;
  }
  .dl-skills-sec .dl-skill-card .dl-desc {
    font-size: 14px;
    line-height: 1.2;
  }
}

.dl-course-det-faq .dl-faq-section {
  background-image: none;
  padding-bottom: 40px;
}
.dl-course-det-faq .dl-faq-section .title {
  margin-bottom: 36px;
}
.dl-course-det-faq .dl-faq-section .dl-sub-title {
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .dl-course-det-faq .dl-faq-section .dl-sub-title {
    max-width: 350px;
  }
}
.dl-course-det-faq .dl-faq-section .dl-img-wrap {
  max-width: 360px;
}
.dl-course-det-faq .dl-faq-section .dl-accordion-sec {
  padding-top: 0;
}
@media (max-width: 992px) {
  .dl-course-det-faq .dl-faq-section .title {
    margin-bottom: 10px;
  }
  .dl-course-det-faq .dl-faq-section .dl-sub-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .dl-course-det-faq .dl-faq-section .dl-sub-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .dl-course-det-faq .dl-faq-section .dl-img-wrap {
    max-width: 260px;
    margin-bottom: 16px;
  }
}

.dl-not-found-sec {
  padding: 120px 0 60px 0;
}
.dl-not-found-sec .content-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dl-not-found-sec .content-wrap .content {
  text-align: center;
}
.dl-not-found-sec .content-wrap .content .dl-title {
  font-size: 46px;
  font-weight: 700;
  color: #B5015E;
  line-height: 1;
  z-index: 1;
}
.dl-not-found-sec .content-wrap .content .dl-desc {
  font-size: 20px;
  color: #000;
  line-height: 1.1;
  z-index: 1;
}
.dl-not-found-sec .content-wrap .content .img-wrap {
  margin-top: -80px;
}
.dl-not-found-sec .content-wrap .content .img-wrap .not-found-img {
  max-width: 50%;
  height: auto;
}
.dl-not-found-sec .content-wrap .content .btn-home {
  background-color: #B5015E;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  line-height: 1;
  border: none;
  outline: none;
  transition: all 0.5s;
}
.dl-not-found-sec .content-wrap .content .btn-home:hover {
  transform: scale(0.9);
}
@media (max-width: 992px) {
  .dl-not-found-sec {
    padding: 80px 0 40px 0;
  }
  .dl-not-found-sec .content-wrap .content .dl-desc {
    font-size: 16px;
  }
  .dl-not-found-sec .content-wrap .content .dl-title {
    font-size: 38px;
  }
  .dl-not-found-sec .content-wrap .content .img-wrap .not-found-img {
    max-width: 70%;
  }
}
@media (max-width: 768px) {
  .dl-not-found-sec .content-wrap .content .dl-desc {
    line-height: 1.2;
  }
  .dl-not-found-sec .content-wrap .content .dl-title {
    font-size: 24px;
  }
  .dl-not-found-sec .content-wrap .content .img-wrap {
    margin-top: -75px;
  }
  .dl-not-found-sec .content-wrap .content .img-wrap .not-found-img {
    max-width: 400px;
  }
  .dl-not-found-sec .content-wrap .content .btn-home {
    border-radius: 5px;
    font-size: 16px;
    padding: 10px 20px;
  }
}
@media (max-width: 576px) {
  .dl-not-found-sec .content-wrap .content .img-wrap {
    margin-top: -60px;
  }
  .dl-not-found-sec .content-wrap .content .img-wrap .not-found-img {
    max-width: 320px;
  }
}

.dl-contact-sec {
  padding: 120px 0 60px 0;
  background: url("../img/contact-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
  background-position: center center;
}
.dl-contact-sec .dl-left-wrap {
  display: flex;
  align-items: center;
  height: 100%;
}
.dl-contact-sec .dl-left-wrap .content .dl-left-title {
  font-size: 46px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}
.dl-contact-sec .dl-left-wrap .content .dl-desc {
  font-size: 18px;
  color: #fff;
  opacity: 0.7;
}
@media (max-width: 992px) {
  .dl-contact-sec .dl-left-wrap .content {
    text-align: center;
  }
  .dl-contact-sec .dl-left-wrap .content .dl-left-title {
    font-size: 38px;
    margin-bottom: 16px;
  }
  .dl-contact-sec .dl-left-wrap .content .dl-desc {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .dl-contact-sec .dl-left-wrap .content .dl-left-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .dl-contact-sec .dl-left-wrap .content .dl-desc {
    margin-bottom: 24px;
  }
}
.dl-contact-sec .dl-contact-wrap {
  padding: 40px 30px;
  border-radius: 12px;
  background-color: #FFD1E9;
  min-height: 550px;
}
.dl-contact-sec .dl-contact-wrap .form-wrap .form-group {
  margin-bottom: 16px;
}
.dl-contact-sec .dl-contact-wrap .form-wrap .form-group .form-label {
  margin-bottom: 0;
}
.dl-contact-sec .dl-contact-wrap .form-wrap .input-group .iti {
  max-height: 44px;
  margin-top: 2px;
}
.dl-contact-sec .dl-contact-wrap .form-wrap .input-group .iti .iti__country-list {
  max-width: 275px;
  overflow-x: hidden;
}
@media (max-width: 1400px) {
  .dl-contact-sec .dl-contact-wrap .form-wrap .input-group .iti .iti__country-list {
    max-width: 230px;
  }
}
@media (max-width: 1200px) {
  .dl-contact-sec .dl-contact-wrap .form-wrap .input-group .iti .iti__country-list {
    max-width: 390px;
  }
}
@media (max-width: 992px) {
  .dl-contact-sec .dl-contact-wrap .form-wrap .input-group .iti .iti__country-list {
    max-width: 305px;
  }
}
@media (max-width: 768px) {
  .dl-contact-sec .dl-contact-wrap .form-wrap .input-group .iti .iti__country-list {
    max-width: 320px;
  }
}
.dl-contact-sec .dl-contact-wrap .form-wrap .input-group .iti .iti__flag-container {
  background-color: #fff;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.dl-contact-sec .dl-contact-wrap .form-wrap .input-group .iti .iti__flag-container {
  outline: none;
}
.dl-contact-sec .dl-contact-wrap .form-wrap .input-group .iti .iti__flag-container:hover .iti__selected-flag {
  background-color: #fff !important;
}
.dl-contact-sec .dl-contact-wrap .form-wrap .input-group .iti .iti__selected-flag {
  background-color: #fff;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.dl-contact-sec .dl-contact-wrap .form-wrap .input-group .iti .country-code-select {
  border-right: 2px solid #FF0084;
  height: 100%;
  padding-left: 42px;
  padding-right: 5px;
}
.dl-contact-sec .dl-contact-wrap .form-wrap .input-group .country-code-select {
  width: 90px;
  border: none;
  outline: none;
  background-color: #fff;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.dl-contact-sec .dl-contact-wrap .form-check {
  margin-bottom: 10px;
}
.dl-contact-sec .dl-contact-wrap .form-check .form-check-label {
  color: #FF0084;
  font-size: 14px;
  margin-left: 6px;
}
.dl-contact-sec .dl-contact-wrap .form-check .form-check-input {
  width: 20px;
  height: 20px;
}
.dl-contact-sec .dl-contact-wrap .form-check .form-check-input:focus {
  box-shadow: none;
}
.dl-contact-sec .dl-contact-wrap .form-check .form-check-input:checked {
  background-color: #fff;
  box-shadow: none;
}
.dl-contact-sec .dl-contact-wrap .form-check .form-check-input:checked[type=checkbox] {
  background-color: #B5015E;
}
.dl-contact-sec .dl-contact-wrap .btn-wrap .btn-outline-primary-1,
.dl-contact-sec .dl-contact-wrap .btn-wrap .btn-primary-1 {
  font-size: 18px;
  padding: 13px 20px;
  min-width: 150px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .dl-contact-sec .dl-contact-wrap .btn-wrap .btn-outline-primary-1,
.dl-contact-sec .dl-contact-wrap .btn-wrap .btn-primary-1 {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
  }
}
@media (max-width: 576px) {
  .dl-contact-sec .dl-contact-wrap .btn-wrap .btn-outline-primary-1,
.dl-contact-sec .dl-contact-wrap .btn-wrap .btn-primary-1 {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    min-width: 100px;
  }
}
.dl-contact-sec .dl-contact-wrap.success-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dl-contact-sec .dl-contact-wrap .success-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
}
.dl-contact-sec .dl-contact-wrap .success-box .success-title {
  font-size: 24px;
  color: #000;
  font-weight: 600;
  margin-bottom: 30px;
}
.dl-contact-sec .dl-contact-wrap .success-box .desc {
  font-size: 18px;
  color: #000;
  line-height: 1.3;
}
.dl-contact-sec .dl-contact-wrap .success-box .check-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}
.dl-contact-sec .dl-contact-wrap .success-box .check-icon .checkmark__circle {
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  stroke-width: 4;
  stroke-miterlimit: 10;
  stroke: #B5015E;
  fill: none;
  -webkit-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
          animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.dl-contact-sec .dl-contact-wrap .success-box .check-icon .checkmark {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  stroke-width: 3;
  stroke: #B5015E;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #B5015E;
  -webkit-animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
          animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}
.dl-contact-sec .dl-contact-wrap .success-box .check-icon .checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  -webkit-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
          animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@-webkit-keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
.dl-contact-sec .dl-contact-wrap .success-box .btn-wrap {
  padding-top: 30px;
}
.dl-contact-sec .dl-contact-wrap .success-box .btn-wrap .btn-home {
  background-color: #B5015E;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  line-height: 1;
  border: none;
  outline: none;
  transition: all 0.5s;
}
.dl-contact-sec .dl-contact-wrap .success-box .btn-wrap .btn-home:hover {
  opacity: 0.7;
}
@media (max-width: 992px) {
  .dl-contact-sec .dl-contact-wrap {
    min-height: 400px;
  }
}
@media (max-width: 768px) {
  .dl-contact-sec .dl-contact-wrap {
    padding: 30px 20px;
    border-radius: 10px;
  }
  .dl-contact-sec .dl-contact-wrap .success-box .success-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .dl-contact-sec .dl-contact-wrap .success-box .desc {
    font-size: 16px;
    margin-bottom: 0;
  }
  .dl-contact-sec .dl-contact-wrap .success-box .check-icon {
    margin: 20px 0;
  }
}
@media (max-width: 992px) {
  .dl-contact-sec {
    padding: 80px 0 40px 0;
  }
}

.dl-students-banner {
  background: #72013C;
  padding-bottom: 80px;
  min-height: 600px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .dl-students-banner {
    padding-bottom: 0;
  }
}
.dl-students-banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 80%;
  bottom: 0;
  left: 0;
  background: url("../img/bg-grid.png");
  background-size: 35%;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: 0;
}
@media (max-width: 1200px) {
  .dl-students-banner::after {
    background-size: contain;
  }
}
@media (max-width: 768px) {
  .dl-students-banner::after {
    background-position: bottom center;
    height: 40%;
    background-size: 52%;
    z-index: -1;
  }
}
@media (max-width: 576px) {
  .dl-students-banner::after {
    height: 35%;
    background-size: contain;
  }
}
.dl-students-banner .right-img-wrap {
  position: absolute;
  bottom: 0;
  max-width: 400px;
  right: 16%;
  z-index: 2;
}
@media (max-width: 1200px) {
  .dl-students-banner .right-img-wrap {
    right: 100px;
    max-width: 350px;
  }
}
@media (max-width: 992px) {
  .dl-students-banner .right-img-wrap {
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .dl-students-banner .right-img-wrap {
    position: initial;
    margin-inline: auto;
  }
}
@media (max-width: 576px) {
  .dl-students-banner .right-img-wrap {
    max-width: 260px;
  }
}
.dl-students-banner .dl-left-wrap {
  z-index: 3;
  position: relative;
}
.dl-students-banner .dl-left-wrap .dl-hash {
  color: #FF5CB1;
}
.dl-students-banner .dl-left-wrap .dl-banner-title {
  color: #fff;
}
.dl-students-banner .dl-left-wrap .dl-desc {
  color: #DADADA;
}
.dl-students-banner .dl-left-wrap .btn-banner-wrap {
  margin-bottom: 30px;
}
.dl-students-banner .dl-left-wrap .btn-banner-wrap .btn-white,
.dl-students-banner .dl-left-wrap .btn-banner-wrap .btn-outline-white {
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  min-width: 200px;
  border-radius: 8px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
@media (max-width: 992px) {
  .dl-students-banner .dl-left-wrap .btn-banner-wrap .btn-white,
.dl-students-banner .dl-left-wrap .btn-banner-wrap .btn-outline-white {
    font-size: 16px;
    min-width: 150px;
  }
}
@media (max-width: 768px) {
  .dl-students-banner .dl-left-wrap .btn-banner-wrap .btn-white,
.dl-students-banner .dl-left-wrap .btn-banner-wrap .btn-outline-white {
    border-radius: 5px;
  }
}
.dl-students-banner .dl-left-wrap .btn-banner-wrap .btn-white {
  background-color: #fff;
  color: #B5015E;
  border: 2px solid #fff;
}
.dl-students-banner .dl-left-wrap .btn-banner-wrap .btn-white:hover {
  transform: scale(0.9);
}
.dl-students-banner .dl-left-wrap .btn-banner-wrap .btn-outline-white {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.dl-students-banner .dl-left-wrap .btn-banner-wrap .btn-outline-white:hover {
  background-color: #fff;
  color: #B5015E;
}
@media (max-width: 768px) {
  .dl-students-banner .dl-left-wrap .btn-banner-wrap {
    justify-content: center;
  }
}
.dl-students-banner .dl-left-wrap .dl-social .text {
  color: #fff;
}
.dl-students-banner .dl-left-wrap .dl-social .dl-social-wrap .social-icon svg path {
  fill: #fff;
}
@media (max-width: 768px) {
  .dl-students-banner .dl-left-wrap .dl-social {
    margin-bottom: 30px;
  }
}

.dl-course-desc-sec {
  padding: 40px 0;
}
.dl-course-desc-sec .dl-title {
  font-size: 38px;
  font-weight: 600;
  line-height: 40px;
  color: #181E4B;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .dl-course-desc-sec .dl-title {
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  .dl-course-desc-sec .dl-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
  }
}
.dl-course-desc-sec .desc {
  font-size: 18px;
  line-height: 24px;
  color: #000;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .dl-course-desc-sec .desc {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .dl-course-desc-sec .desc {
    font-size: 16px;
    margin-bottom: 35px;
  }
}
@media (max-width: 768px) {
  .dl-course-desc-sec .img-section {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .dl-course-desc-sec .dl-img-wrap {
    max-width: 62%;
    margin-inline: auto;
  }
}
.dl-course-desc-sec .dl-right-sec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 768px) {
  .dl-course-desc-sec .dl-right-sec {
    margin-top: 20px;
    text-align: center;
    align-items: center;
  }
}
.dl-course-desc-sec .dl-box-sec .dl-box {
  display: flex;
  padding: 30px 0;
  border-top: 1px solid #FF5CB1;
}
.dl-course-desc-sec .dl-box-sec .dl-box .count-wrap {
  margin-right: 20px;
}
.dl-course-desc-sec .dl-box-sec .dl-box .count-wrap .count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #B5015E;
  line-height: 1;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 768px) {
  .dl-course-desc-sec .dl-box-sec .dl-box .count-wrap .count {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
.dl-course-desc-sec .dl-box-sec .dl-box .details .title {
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  color: #000;
  margin-bottom: 16px;
}
.dl-course-desc-sec .dl-box-sec .dl-box .details .det {
  font-size: 20px;
  color: #000;
  line-height: 26px;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .dl-course-desc-sec .dl-box-sec .dl-box .details .title {
    font-size: 26px;
    line-height: 26px;
  }
  .dl-course-desc-sec .dl-box-sec .dl-box .details .det {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 768px) {
  .dl-course-desc-sec .dl-box-sec .dl-box .details .title {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .dl-course-desc-sec .dl-box-sec .dl-box .details .det {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 992px) {
  .dl-course-desc-sec .dl-box-sec .dl-box {
    padding: 20px 0;
  }
}

.dl-achievements-section {
  background-color: #B5015E;
  padding: 40px 0;
}
.dl-achievements-section .title {
  color: #fff;
  max-width: 100%;
}
.dl-achievements-section .dl-desc {
  color: #fff;
}
.dl-achievements-section #achievements-carousel {
  padding: 30px 0;
}
.dl-achievements-section #achievements-carousel .slide {
  padding: 0 25px;
}
.dl-achievements-section #achievements-carousel .slide .dl-achievement-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px;
  transition: all 0.5s;
  opacity: 0.8;
  transform: scale3d(0.8, 0.8, 0.8);
}
.dl-achievements-section #achievements-carousel .slide .dl-achievement-card .dl-avatar-det {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.dl-achievements-section #achievements-carousel .slide .dl-achievement-card .dl-avatar-det .dl-avatar {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}
.dl-achievements-section #achievements-carousel .slide .dl-achievement-card .dl-avatar-det .dl-avatar img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dl-achievements-section #achievements-carousel .slide .dl-achievement-card .dl-avatar-det .det-wrap .avatar-name {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #000;
  line-height: 1;
  margin-bottom: 0px;
}
.dl-achievements-section #achievements-carousel .slide .dl-achievement-card .dl-avatar-det .det-wrap .avatar-desc {
  font-size: 16px;
  margin-bottom: 0;
  color: #000;
  line-height: 1;
}
@media (max-width: 992px) {
  .dl-achievements-section #achievements-carousel .slide .dl-achievement-card .dl-avatar-det {
    margin-bottom: 20px;
  }
  .dl-achievements-section #achievements-carousel .slide .dl-achievement-card .dl-avatar-det .dl-avatar {
    margin-right: 10px;
  }
  .dl-achievements-section #achievements-carousel .slide .dl-achievement-card .dl-avatar-det .det-wrap .avatar-name {
    font-size: 20px;
  }
  .dl-achievements-section #achievements-carousel .slide .dl-achievement-card .dl-avatar-det .det-wrap .avatar-desc {
    font-size: 14px;
  }
}
.dl-achievements-section #achievements-carousel .slide .dl-achievement-card .card-body .card-title {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #000;
  line-height: 26px;
  margin-bottom: 15px;
}
.dl-achievements-section #achievements-carousel .slide .dl-achievement-card .card-body .desc {
  font-size: 16px;
  color: #000;
  line-height: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dl-achievements-section #achievements-carousel .slide .dl-achievement-card .card-body .line {
  height: 1px;
  width: 100%;
  background-color: #B5015E;
}
.dl-achievements-section #achievements-carousel .slide .dl-achievement-card .card-body .dl-org {
  font-size: 24px;
  font-weight: 600;
  color: #FF0084;
  margin-bottom: 0;
  line-height: 1;
}
@media (max-width: 992px) {
  .dl-achievements-section #achievements-carousel .slide .dl-achievement-card .card-body .card-title {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .dl-achievements-section #achievements-carousel .slide .dl-achievement-card .card-body .desc {
    font-size: 14px;
    line-height: 18px;
  }
  .dl-achievements-section #achievements-carousel .slide .dl-achievement-card .card-body .dl-org {
    font-size: 22px;
  }
}
@media (max-width: 1200px) {
  .dl-achievements-section #achievements-carousel .slide {
    padding: 0 0;
  }
}
@media (max-width: 992px) {
  .dl-achievements-section #achievements-carousel .slide {
    padding: 10px;
  }
  .dl-achievements-section #achievements-carousel .slide .dl-achievement-card {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.dl-achievements-section #achievements-carousel .owl-item.center .slide .dl-achievement-card {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
.dl-achievements-section #achievements-carousel .owl-nav .owl-next,
.dl-achievements-section #achievements-carousel .owl-nav .owl-prev {
  color: #fff;
  font-size: 80px;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  transition: scale 0.5s;
  background: none;
  outline: none;
  border: none;
}
.dl-achievements-section #achievements-carousel .owl-nav .owl-next:hover,
.dl-achievements-section #achievements-carousel .owl-nav .owl-prev:hover {
  background: none;
  transform: translateY(-50%) scale(1.1);
}
.dl-achievements-section #achievements-carousel .owl-nav .owl-next {
  right: 0;
}
.dl-achievements-section #achievements-carousel .owl-nav .owl-prev {
  left: 0;
}
@media (max-width: 992px) {
  .dl-achievements-section #achievements-carousel .owl-nav .owl-next,
.dl-achievements-section #achievements-carousel .owl-nav .owl-prev {
    font-size: 60px;
  }
  .dl-achievements-section #achievements-carousel .owl-nav .owl-next,
.dl-achievements-section #achievements-carousel .owl-nav .owl-prev {
    top: 40%;
  }
  .dl-achievements-section #achievements-carousel .owl-nav .owl-next {
    right: -35px;
  }
  .dl-achievements-section #achievements-carousel .owl-nav .owl-prev {
    left: -35px;
  }
}
@media (max-width: 768px) {
  .dl-achievements-section #achievements-carousel .owl-nav .owl-next,
.dl-achievements-section #achievements-carousel .owl-nav .owl-prev {
    top: unset;
    bottom: -72px;
  }
  .dl-achievements-section #achievements-carousel .owl-nav .owl-next {
    right: 10%;
  }
  .dl-achievements-section #achievements-carousel .owl-nav .owl-prev {
    left: 10%;
  }
}
.dl-achievements-section #achievements-carousel .owl-dots {
  margin-top: 20px;
}
.dl-achievements-section #achievements-carousel .owl-dots .owl-dot.active span {
  background: #fff !important;
  transform: scale(1.3) !important;
}
.dl-achievements-section #achievements-carousel .owl-dots .owl-dot span {
  transition: scale 0.4s;
}
@media (max-width: 768px) {
  .dl-achievements-section #achievements-carousel .owl-dots {
    margin-top: 20px;
  }
}
@media (max-width: 992px) {
  .dl-achievements-section #achievements-carousel {
    padding: 0 0;
  }
}

.dl-feedback-section {
  padding: 40px 0;
}
.dl-feedback-section .title {
  font-size: 38px;
  font-weight: 600;
  line-height: 40px;
  color: #181E4B;
  margin-bottom: 20px;
}
.dl-feedback-section .dl-desc {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  font-weight: 500;
  margin-bottom: 30px;
}
.dl-feedback-section #feedback-carousel .owl-stage-outer {
  padding: 20px 0;
}
.dl-feedback-section #feedback-carousel .slide {
  padding: 0 25px;
}
.dl-feedback-section #feedback-carousel .slide .dl-feedback-card {
  background-color: #FFCEE7;
  border-radius: 24px;
  padding: 25px;
  padding-bottom: 90px;
  padding-top: 35px;
  position: relative;
  transform: scale3d(0.8, 0.8, 0.8);
  opacity: 0.6;
  transition: all 0.5s;
}
@media (max-width: 992px) {
  .dl-feedback-section #feedback-carousel .slide .dl-feedback-card {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .dl-feedback-section #feedback-carousel .slide .dl-feedback-card {
    padding: 30px 20px 80px 20px;
  }
}
.dl-feedback-section #feedback-carousel .slide .dl-feedback-card .quote {
  position: absolute;
  top: -10px;
  left: -20px;
}
.dl-feedback-section #feedback-carousel .slide .dl-feedback-card .card-body {
  text-align: center;
}
.dl-feedback-section #feedback-carousel .slide .dl-feedback-card .card-body .card-title {
  font-size: 24px;
  color: #000;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}
.dl-feedback-section #feedback-carousel .slide .dl-feedback-card .card-body .desc {
  font-size: 18px;
  color: #000;
  line-height: 22px;
}
@media (max-width: 768px) {
  .dl-feedback-section #feedback-carousel .slide .dl-feedback-card .card-body .card-title {
    font-size: 20px;
  }
  .dl-feedback-section #feedback-carousel .slide .dl-feedback-card .card-body .desc {
    font-size: 14px;
  }
}
.dl-feedback-section #feedback-carousel .slide .dl-feedback-card .dl-avatar-det {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  bottom: -10px;
  right: -25px;
}
.dl-feedback-section #feedback-carousel .slide .dl-feedback-card .dl-avatar-det .det-wrap {
  text-align: right;
  margin-right: 16px;
}
.dl-feedback-section #feedback-carousel .slide .dl-feedback-card .dl-avatar-det .det-wrap .avatar-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.1;
}
.dl-feedback-section #feedback-carousel .slide .dl-feedback-card .dl-avatar-det .det-wrap .avatar-desc {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
@media (max-width: 768px) {
  .dl-feedback-section #feedback-carousel .slide .dl-feedback-card .dl-avatar-det .det-wrap .avatar-desc {
    font-size: 14px;
  }
}
.dl-feedback-section #feedback-carousel .slide .dl-feedback-card .dl-avatar-det .dl-avatar {
  width: 100px;
  height: 100px;
}
.dl-feedback-section #feedback-carousel .slide .dl-feedback-card .dl-avatar-det .dl-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 4px solid #B5015E;
}
@media (max-width: 768px) {
  .dl-feedback-section #feedback-carousel .slide .dl-feedback-card .dl-avatar-det .dl-avatar {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 576px) {
  .dl-feedback-section #feedback-carousel .slide {
    padding: 0 28px;
  }
}
.dl-feedback-section #feedback-carousel .owl-item.center .slide .dl-feedback-card {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
.dl-feedback-section #feedback-carousel .owl-nav .owl-next,
.dl-feedback-section #feedback-carousel .owl-nav .owl-prev {
  position: absolute;
  color: #B5015E;
  font-size: 80px;
  top: 45%;
  transform: translateY(-50%);
  transition: scale 0.5s;
  background: none;
  outline: none;
  border: none;
}
.dl-feedback-section #feedback-carousel .owl-nav .owl-next:hover,
.dl-feedback-section #feedback-carousel .owl-nav .owl-prev:hover {
  transform: translateY(-50%) scale(1.2);
}
.dl-feedback-section #feedback-carousel .owl-nav .owl-next {
  right: 0;
}
.dl-feedback-section #feedback-carousel .owl-nav .owl-prev {
  left: 0;
}
@media (max-width: 992px) {
  .dl-feedback-section #feedback-carousel .owl-nav .owl-next,
.dl-feedback-section #feedback-carousel .owl-nav .owl-prev {
    font-size: 60px;
  }
  .dl-feedback-section #feedback-carousel .owl-nav .owl-next {
    right: -35px;
  }
  .dl-feedback-section #feedback-carousel .owl-nav .owl-prev {
    left: -35px;
  }
}
@media (max-width: 768px) {
  .dl-feedback-section #feedback-carousel .owl-nav {
    margin-top: 10px;
  }
  .dl-feedback-section #feedback-carousel .owl-nav .owl-next,
.dl-feedback-section #feedback-carousel .owl-nav .owl-prev {
    top: unset;
    bottom: -72px;
  }
  .dl-feedback-section #feedback-carousel .owl-nav .owl-next {
    right: 10%;
  }
  .dl-feedback-section #feedback-carousel .owl-nav .owl-prev {
    left: 10%;
  }
}
.dl-feedback-section #feedback-carousel .owl-dots {
  margin-top: 20px;
}
.dl-feedback-section #feedback-carousel .owl-dots .owl-dot.active span {
  background: #B5015E !important;
  transform: scale(1.3) !important;
}
.dl-feedback-section #feedback-carousel .owl-dots .owl-dot span {
  transition: scale 0.4s;
}
@media (max-width: 768px) {
  .dl-feedback-section #feedback-carousel .owl-dots {
    margin-top: 20px;
  }
}
@media (max-width: 1200px) {
  .dl-feedback-section .title {
    font-size: 32px;
    max-width: 100%;
    margin-bottom: 5px;
  }
  .dl-feedback-section .dl-desc {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .dl-feedback-section .title {
    font-size: 24px;
    line-height: 30px;
  }
  .dl-feedback-section .dl-desc {
    font-size: 16px;
  }
}

.dl-about-banner {
  padding-bottom: 60px;
}
.dl-about-banner .btn-wrap {
  margin-bottom: 60px;
}
.dl-about-banner .btn-wrap .btn-primary-1,
.dl-about-banner .btn-wrap .btn-outline-primary-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 15px 20px;
  min-width: 200px;
}
@media (max-width: 1200px) {
  .dl-about-banner .btn-wrap .btn-primary-1,
.dl-about-banner .btn-wrap .btn-outline-primary-1 {
    font-size: 16px;
    min-width: 150px;
  }
}
.dl-about-banner .btn-wrap .btn-primary-1:hover {
  transform: scale(0.9);
  opacity: 1;
}
@media (max-width: 768px) {
  .dl-about-banner .btn-wrap {
    justify-content: center;
    margin-bottom: 30px;
  }
}
.dl-about-banner .dl-about-image-sec .img-wrap {
  border-radius: 10px;
}
.dl-about-banner .dl-about-image-sec .img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.dl-about-banner .dl-about-image-sec .left-img-wrap {
  height: 350px;
  margin-top: 50px;
}
.dl-about-banner .dl-about-image-sec .right-img-top-wrap {
  height: 200px;
  margin-bottom: 20px;
}
.dl-about-banner .dl-about-image-sec .right-img-btm-wrap {
  height: 280px;
}
@media (max-width: 992px) {
  .dl-about-banner .dl-about-image-sec {
    padding-top: 30px;
  }
  .dl-about-banner .dl-about-image-sec .left-img-wrap {
    height: 260px;
    margin-top: 40px;
  }
  .dl-about-banner .dl-about-image-sec .right-img-top-wrap {
    height: 160px;
  }
  .dl-about-banner .dl-about-image-sec .right-img-btm-wrap {
    height: 230px;
  }
}
@media (max-width: 768px) {
  .dl-about-banner .dl-about-image-sec {
    padding-top: 0;
  }
  .dl-about-banner .dl-about-image-sec .dl-hash {
    text-align: center;
    font-weight: 600;
    color: #B5015E;
  }
}
@media (max-width: 576px) {
  .dl-about-banner .dl-about-image-sec .left-img-wrap {
    height: 220px;
  }
  .dl-about-banner .dl-about-image-sec .right-img-top-wrap {
    height: 130px;
  }
  .dl-about-banner .dl-about-image-sec .right-img-btm-wrap {
    height: 170px;
  }
}

.dl-about-us-sec {
  padding: 40px 0;
}
.dl-about-us-sec .dl-title {
  font-size: 38px;
  font-weight: 600;
  line-height: 40px;
  color: #000;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .dl-about-us-sec .dl-title {
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  .dl-about-us-sec .dl-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
  }
}
.dl-about-us-sec .left-img-sec .img-wrap {
  height: 350px;
  border-radius: 10px;
}
.dl-about-us-sec .left-img-sec .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .dl-about-us-sec .left-img-sec {
    margin-top: 40px;
  }
  .dl-about-us-sec .left-img-sec .img-wrap {
    height: 240px;
  }
}
@media (max-width: 768px) {
  .dl-about-us-sec .left-img-sec {
    margin-top: 20px;
  }
  .dl-about-us-sec .left-img-sec .img-wrap {
    height: 200px;
  }
}
.dl-about-us-sec .right-sec .right-sec-title {
  font-size: 32px;
  color: #000;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}
.dl-about-us-sec .right-sec .desc {
  font-size: 18px;
  color: #000;
  line-height: 24px;
}
@media (max-width: 1200px) {
  .dl-about-us-sec .right-sec .right-sec-title {
    font-size: 26px;
    line-height: 1.2;
  }
}
@media (max-width: 992px) {
  .dl-about-us-sec .right-sec .right-sec-title {
    font-size: 24px;
    line-height: 1.1;
  }
  .dl-about-us-sec .right-sec .desc {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media (max-width: 768px) {
  .dl-about-us-sec .right-sec {
    padding-top: 30px;
  }
  .dl-about-us-sec .right-sec .right-sec-title {
    font-size: 20px;
    text-align: center;
  }
  .dl-about-us-sec .right-sec .desc {
    text-align: center;
  }
}

.dl-vision-sec .img-container {
  border-radius: 10px;
}
.dl-vision-sec .img-container img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .dl-vision-sec .img-container {
    height: 400px;
  }
}
@media (max-width: 756px) {
  .dl-vision-sec .img-container {
    height: 300px;
  }
}

.dl-univsersity-about-sec {
  position: relative;
}
.dl-univsersity-about-sec .title-sec {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
.dl-univsersity-about-sec .title-sec .dl-title {
  font-size: 38px;
  font-weight: 600;
  line-height: 40px;
  color: #fff;
  margin-bottom: 16px;
}
@media (max-width: 1200px) {
  .dl-univsersity-about-sec .title-sec .dl-title {
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  .dl-univsersity-about-sec .title-sec .dl-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
  }
}
.dl-univsersity-about-sec .title-sec .dl-desc {
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  opacity: 0.7;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .dl-univsersity-about-sec .title-sec .dl-desc {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .dl-univsersity-about-sec .title-sec .dl-desc {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .dl-univsersity-about-sec .title-sec {
    max-width: 100%;
    left: 40%;
    transform: translateX(-36%);
  }
}
@media (max-width: 850px) {
  .dl-univsersity-about-sec .title-sec {
    max-width: 100%;
    left: 20%;
    transform: translateX(-15%);
  }
}
.dl-univsersity-about-sec .university-slider-section {
  margin-bottom: -10px;
}
.dl-univsersity-about-sec .university-slider-section .item .uni-det-slide {
  min-height: 700px;
  background-size: cover !important;
  display: grid;
  place-items: center;
  padding-top: 150px;
  padding-bottom: 60px;
}
.dl-univsersity-about-sec .university-slider-section .item .uni-det-slide .uni-det-card {
  max-width: 400px;
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  min-height: 360px;
  text-align: center;
  margin-left: 16px;
  margin-right: 16px;
}
.dl-univsersity-about-sec .university-slider-section .item .uni-det-slide .uni-det-card .logo-wrap {
  width: 160px;
  height: 60px;
  margin-inline: auto;
  margin-bottom: 16px;
}
.dl-univsersity-about-sec .university-slider-section .item .uni-det-slide .uni-det-card .logo-wrap .university-logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.dl-univsersity-about-sec .university-slider-section .item .uni-det-slide .uni-det-card .card-title {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}
.dl-univsersity-about-sec .university-slider-section .item .uni-det-slide .uni-det-card .year {
  margin-bottom: 20px;
}
.dl-univsersity-about-sec .university-slider-section .item .uni-det-slide .uni-det-card .year,
.dl-univsersity-about-sec .university-slider-section .item .uni-det-slide .uni-det-card .desc {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .dl-univsersity-about-sec .university-slider-section .item .uni-det-slide .uni-det-card .logo-wrap {
    width: 120px;
    height: 50px;
  }
  .dl-univsersity-about-sec .university-slider-section .item .uni-det-slide .uni-det-card .card-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .dl-univsersity-about-sec .university-slider-section .item .uni-det-slide .uni-det-card .year {
    margin-bottom: 16px;
  }
}
@media (max-width: 430px) {
  .dl-univsersity-about-sec .university-slider-section .item .uni-det-slide {
    padding-top: 200px;
  }
}
.dl-univsersity-about-sec .university-slider-section .owl-nav .owl-prev,
.dl-univsersity-about-sec .university-slider-section .owl-nav .owl-next {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background-color: #fff;
  color: #000;
  font-size: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.dl-univsersity-about-sec .university-slider-section .owl-nav .owl-prev span,
.dl-univsersity-about-sec .university-slider-section .owl-nav .owl-next span {
  line-height: 1;
  margin-top: -3px;
}
.dl-univsersity-about-sec .university-slider-section .owl-nav .owl-prev {
  left: 20%;
}
.dl-univsersity-about-sec .university-slider-section .owl-nav .owl-next {
  right: 20%;
}
@media (max-width: 992px) {
  .dl-univsersity-about-sec .university-slider-section .owl-nav .owl-prev {
    left: 15%;
  }
  .dl-univsersity-about-sec .university-slider-section .owl-nav .owl-next {
    right: 15%;
  }
}
@media (max-width: 768px) {
  .dl-univsersity-about-sec .university-slider-section .owl-nav .owl-prev,
.dl-univsersity-about-sec .university-slider-section .owl-nav .owl-next {
    top: unset;
    bottom: 20px;
    width: 30px;
    height: 30px;
    font-size: 25px;
  }
  .dl-univsersity-about-sec .university-slider-section .owl-nav .owl-prev span,
.dl-univsersity-about-sec .university-slider-section .owl-nav .owl-next span {
    margin-top: -1px;
  }
  .dl-univsersity-about-sec .university-slider-section .owl-nav .owl-prev {
    left: 20%;
  }
  .dl-univsersity-about-sec .university-slider-section .owl-nav .owl-next {
    right: 20%;
  }
}
.dl-univsersity-about-sec .university-slider-section .owl-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
}
.dl-univsersity-about-sec .university-slider-section .owl-dots .owl-dot.active span {
  transform: scale3d(1.2, 1.2, 1.2);
  background-color: #B5015E;
}

.dl-blog-banner {
  padding: 120px 0 40px 0;
}
.dl-blog-banner .dl-left-img-wrap {
  margin-bottom: 20px;
}
.dl-blog-banner .dl-left-img-wrap .blog-img {
  border-radius: 16px;
}
.dl-blog-banner .dl-right-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.dl-blog-banner .dl-right-wrap .dl-date {
  font-size: 16px;
  font-weight: 500;
  color: #868686;
  line-height: 1;
}
@media (max-width: 768px) {
  .dl-blog-banner .dl-right-wrap .dl-date {
    font-size: 14px;
  }
}
.dl-blog-banner .dl-right-wrap .dl-blog-title {
  font-size: 24px;
  color: #000;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .dl-blog-banner .dl-right-wrap .dl-blog-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.dl-blog-banner .dl-right-wrap .dl-blog-desc {
  font-size: 16px;
  color: #838383;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .dl-blog-banner .dl-right-wrap .dl-blog-desc {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.dl-blog-banner .dl-right-wrap .author-det-wrap .author-img-wrap {
  width: 65px;
  height: 65px;
  margin-right: 10px;
}
.dl-blog-banner .dl-right-wrap .author-det-wrap .author-img-wrap .author-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .dl-blog-banner .dl-right-wrap .author-det-wrap .author-img-wrap {
    width: 40px;
    height: 40px;
  }
}
.dl-blog-banner .dl-right-wrap .author-det-wrap .author-det .name {
  font-size: 16px;
  color: #000;
  font-weight: 600;
  margin-bottom: 3px;
}
@media (max-width: 768px) {
  .dl-blog-banner .dl-right-wrap .author-det-wrap .author-det .name {
    margin-bottom: 0;
    line-height: 1;
  }
}
.dl-blog-banner .dl-right-wrap .author-det-wrap .author-det .author-role {
  color: #838383;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 1200px) {
  .dl-blog-banner {
    padding-top: 100px;
  }
}
@media (max-width: 992px) {
  .dl-blog-banner {
    padding-top: 80px;
  }
}

.dl-blog-sub-section {
  padding: 40px 0;
}
.dl-blog-sub-section .title-wrap {
  margin-bottom: 30px;
}
.dl-blog-sub-section .title-wrap .blog-sub-title {
  font-size: 38px;
  font-weight: 600;
  color: #B5015E;
  position: relative;
}
@media (max-width: 1200px) {
  .dl-blog-sub-section .title-wrap .blog-sub-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .dl-blog-sub-section .title-wrap .blog-sub-title {
    font-size: 24px;
  }
}
.dl-blog-sub-section .title-wrap .line {
  width: 30%;
  height: 3px;
  background-color: #B5015E;
  margin: 0 0;
  opacity: 1;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .dl-blog-sub-section .title-wrap {
    margin-bottom: 10px;
  }
}
.dl-blog-sub-section .dl-blog-card {
  padding: 10px;
  transition: all 0.2s;
  border-radius: 10px;
  height: calc(100% - 20px);
  margin-bottom: 20px;
}
.dl-blog-sub-section .dl-blog-card .img-wrap {
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
}
.dl-blog-sub-section .dl-blog-card .img-wrap .blog-card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .dl-blog-sub-section .dl-blog-card .img-wrap {
    height: 160px;
  }
}
.dl-blog-sub-section .dl-blog-card .date {
  font-size: 16px;
  font-weight: 500;
  color: #838383;
  margin-bottom: 8px;
  line-height: 1;
}
@media (max-width: 768px) {
  .dl-blog-sub-section .dl-blog-card .date {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
.dl-blog-sub-section .dl-blog-card .card-title {
  font-size: 22px;
  color: #000;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 768px) {
  .dl-blog-sub-section .dl-blog-card .card-title {
    font-size: 20px;
    margin-bottom: 6px;
  }
}
.dl-blog-sub-section .dl-blog-card .desc {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 768px) {
  .dl-blog-sub-section .dl-blog-card .desc {
    font-size: 14px;
  }
}
.dl-blog-sub-section .dl-blog-card:hover, .dl-blog-sub-section .dl-blog-card:focus {
  box-shadow: 0px 0px 5px 5px rgba(198, 198, 198, 0.25);
}

.dl-blog-det-banner {
  padding: 120px 0 0px 0;
}
.dl-blog-det-banner .dl-blog-title {
  font-size: 46px;
  color: #000;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 54px;
  margin-top: 60px;
}
@media (max-width: 1200px) {
  .dl-blog-det-banner .dl-blog-title {
    font-size: 38px;
    line-height: 42px;
  }
}
@media (max-width: 992px) {
  .dl-blog-det-banner .dl-blog-title {
    font-size: 32px;
    line-height: 38px;
    margin-top: 30px;
  }
}
.dl-blog-det-banner .dl-blog-desc {
  font-size: 18px;
  color: #686868;
  line-height: 26px;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .dl-blog-det-banner .dl-blog-desc {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .dl-blog-det-banner .dl-blog-desc {
    margin-bottom: 40px;
    line-height: 20px;
  }
}
.dl-blog-det-banner .author-det-wrap {
  justify-content: center;
  margin-bottom: 60px;
}
.dl-blog-det-banner .author-det-wrap .author-img-wrap {
  width: 90px;
  height: 90px;
  margin-right: 16px;
}
.dl-blog-det-banner .author-det-wrap .author-img-wrap .author-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .dl-blog-det-banner .author-det-wrap .author-img-wrap {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 768px) {
  .dl-blog-det-banner .author-det-wrap .author-img-wrap {
    width: 60px;
    height: 60px;
  }
}
.dl-blog-det-banner .author-det-wrap .author-det {
  text-align: left;
}
.dl-blog-det-banner .author-det-wrap .author-det .name {
  font-size: 24px;
  margin-bottom: 0;
  line-height: 1.2;
  color: #000;
  font-weight: 600;
}
.dl-blog-det-banner .author-det-wrap .author-det .author-role {
  font-size: 16px;
  margin-bottom: 0;
  color: #686868;
}
@media (max-width: 768px) {
  .dl-blog-det-banner .author-det-wrap {
    margin-bottom: 40px;
  }
}
.dl-blog-det-banner .dl-blog-img-wrap {
  margin-bottom: 60px;
}
.dl-blog-det-banner .dl-blog-img-wrap img {
  border-radius: 20px;
  width: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .dl-blog-det-banner .dl-blog-img-wrap {
    margin-bottom: 40px;
  }
}
@media (max-width: 1200px) {
  .dl-blog-det-banner {
    padding-top: 100px;
  }
}
@media (max-width: 992px) {
  .dl-blog-det-banner {
    padding-top: 80px;
  }
}

.dl-blog-det-banner .para,
.blog-section .para {
  font-size: 20px;
  color: #000;
  line-height: 34px;
  margin-bottom: 30px;
  font-weight: 400;
}
.dl-blog-det-banner .para.blog-fp::first-letter,
.blog-section .para.blog-fp::first-letter {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .dl-blog-det-banner .para,
.blog-section .para {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .dl-blog-det-banner .para.blog-fp::first-letter,
.blog-section .para.blog-fp::first-letter {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .dl-blog-det-banner .para,
.blog-section .para {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .dl-blog-det-banner .para.blog-fp::first-letter,
.blog-section .para.blog-fp::first-letter {
    font-size: 20px;
  }
}

.blog-section .blog-sec-title {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .blog-section .blog-sec-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .blog-section .blog-sec-title {
    font-size: 24px;
    margin-bottom: 14px;
  }
}
.blog-section .blog-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .blog-section .blog-subtitle {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.blog-section .sub-sec-wrap {
  padding-left: 0;
}
.blog-section .sub-sec-wrap .sub-section {
  padding-left: 0;
}
.blog-section .blog-inner-img {
  max-width: 800px;
  margin-bottom: 30px;
}
.blog-section .blog-inner-img img {
  border-radius: 10px;
}
@media (max-width: 768px) {
  .blog-section .blog-inner-img {
    margin-bottom: 20px;
  }
}
.blog-section .bullet-list {
  margin-bottom: 20px;
}
.blog-section .bullet-list li {
  position: relative;
}
.blog-section .bullet-list li .para {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .blog-section .bullet-list li .para {
    margin-bottom: 10px;
  }
}
.blog-section .bullet-list li::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 10px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #B5015E;
}
@media (max-width: 992px) {
  .blog-section .bullet-list li::before {
    width: 12px;
    height: 12px;
    top: 7px;
  }
}
@media (max-width: 768px) {
  .blog-section .bullet-list li::before {
    width: 10px;
    height: 10px;
    top: 5px;
  }
}
.blog-section .code-block {
  background-color: #eeeeee;
  border-radius: 16px;
  padding: 20px 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .blog-section .code-block {
    margin-bottom: 20px;
    border-radius: 8px;
    padding: 15px;
  }
}

.dl-related-blogs {
  padding: 40px 0;
}
.dl-related-blogs .rel-blog-title {
  font-size: 32px;
  font-weight: 600;
  color: #B5015E;
  margin-bottom: 0;
  line-height: 1;
}
@media (max-width: 768px) {
  .dl-related-blogs .rel-blog-title {
    font-size: 24px;
  }
}
.dl-related-blogs .bt-line {
  width: 100%;
  height: 3px;
  background-color: #B5015E;
  opacity: 1;
}
.dl-related-blogs .rel-blog-card {
  display: flex;
  padding: 16px;
  margin-bottom: 16px;
}
.dl-related-blogs .rel-blog-card .blog-img-wrap {
  margin-right: 16px;
}
.dl-related-blogs .rel-blog-card .blog-img-wrap .blog-img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .dl-related-blogs .rel-blog-card .blog-img-wrap .blog-img {
    width: 100px;
    height: 100px;
    border-radius: 6px;
  }
}
.dl-related-blogs .rel-blog-card .blog-card-body .card-title {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  line-height: 26px;
  margin-bottom: 12px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  .dl-related-blogs .rel-blog-card .blog-card-body .card-title {
    font-size: 16px;
    line-height: 18px;
    -webkit-line-clamp: 2;
    margin-bottom: 6px;
  }
}
.dl-related-blogs .rel-blog-card .blog-card-body .desc {
  font-size: 16px;
  font-weight: 400;
  color: #686868;
  line-height: 20px;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  .dl-related-blogs .rel-blog-card .blog-card-body .desc {
    font-size: 12px;
    -webkit-line-clamp: 2;
    line-height: 15px;
    margin-bottom: 8px;
  }
}
.dl-related-blogs .rel-blog-card .blog-card-body .btn-wrap {
  justify-content: flex-end;
}
.dl-related-blogs .rel-blog-card .blog-card-body .btn-wrap .btn-link {
  color: #B5015E;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  line-height: 30px;
}
.dl-related-blogs .rel-blog-card .blog-card-body .btn-wrap .btn-link svg path {
  fill: #B5015E;
}
@media (max-width: 768px) {
  .dl-related-blogs .rel-blog-card .blog-card-body .btn-wrap .btn-link {
    line-height: 16px;
    font-size: 16px;
  }
  .dl-related-blogs .rel-blog-card .blog-card-body .btn-wrap .btn-link svg {
    width: 20px;
    height: 20px;
  }
}

.pagination {
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.pagination .page-item {
  padding: 5px;
}
.pagination .page-item .page-link {
  min-width: 40px;
  min-height: 40px;
  border-radius: 6px;
  border: 2px solid #72013C;
  color: #B5015E;
  font-size: 18px;
  font-weight: 700;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .page-item.active .page-link {
  background-color: #B5015E;
  color: #fff;
  border: none;
}
.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
  font-size: 14px;
  min-width: 80px;
  background-color: #B5015E;
  color: #fff;
  border: none;
}
.pagination .page-item.disabled .page-link {
  opacity: 0.7;
}
@media (max-width: 992px) {
  .pagination .page-item .page-link {
    min-width: 28px;
    min-height: 28px;
    font-size: 14px;
    border-radius: 5px;
  }
  .pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .pagination .page-item {
    padding: 3px;
  }
  .pagination .page-item .page-link {
    min-width: 24px;
    min-height: 24px;
    font-size: 12px;
  }
  .pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
    font-size: 12px;
    min-width: 70px;
  }
}

.footer {
  background-color: #B5015E;
  padding: 40px 0 0 0;
}
.footer .footer-top {
  padding-bottom: 20px;
}
.footer .footer-top .dl-about-section .footer-logo-wrap {
  margin-bottom: 20px;
}
.footer .footer-top .dl-about-section .footer-logo-wrap img {
  max-width: 200px;
}
.footer .footer-top .dl-about-section .dl-desc {
  font-size: 20px;
  font-weight: 400;
  color: #DADADA;
  font-family: "Montserrat", sans-serif;
  line-height: 24px;
  margin-bottom: 40px;
  max-width: 400px;
}
.footer .footer-top .dl-about-section .social-wrap img {
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: all 0.5s;
}
.footer .footer-top .dl-about-section .social-wrap img:hover {
  transform: translateY(-5px);
}
.footer .footer-top .dl-loc-wrap {
  padding: 20px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
  margin-bottom: 5px;
  height: calc(100% - 5px);
}
.footer .footer-top .dl-loc-wrap .dl-country {
  font-size: 22px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.footer .footer-top .dl-loc-wrap .dl-loc-details {
  padding-left: 0;
  margin-bottom: 0;
}
.footer .footer-top .dl-loc-wrap .dl-loc-details li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.footer .footer-top .dl-loc-wrap .dl-loc-details li img {
  margin-right: 10px;
}
.footer .footer-top .dl-loc-wrap .dl-loc-details li .text {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
  color: #fff;
}
.footer .footer-top .dl-loc-wrap .dl-loc-details li:last-child {
  margin-bottom: 0;
}
.footer .footer-top .dl-loc-wrap .map-preview {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  bottom: -300px;
  transition: all 0.5s;
}
.footer .footer-top .dl-loc-wrap:hover {
  background-color: #D1036D;
  transition: all 0.5s;
}
.footer .footer-top .dl-loc-wrap:hover .map-preview {
  bottom: -230px;
}
.footer .footer-top .dl-loc-wrap:hover .map-preview:hover {
  bottom: 0;
  cursor: pointer;
}
@media (max-width: 500px) {
  .footer .footer-top .dl-loc-wrap {
    margin-bottom: 1rem;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.footer .footer-middle {
  padding: 40px 0;
}
.footer .footer-middle .dl-link-title {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #FF99CE;
  margin-bottom: 20px;
}
.footer .footer-middle ul {
  padding-left: 0;
  margin-bottom: 0;
}
.footer .footer-middle ul li {
  margin-bottom: 10px;
}
.footer .footer-middle ul li a {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  font-family: "Source Sans Pro", sans-serif;
  text-decoration: none;
  line-height: 30px;
}
.footer .footer-middle ul li:last-child {
  margin-bottom: 0;
}
.footer .dl-copy-right {
  padding: 30px 0 32px 0;
  text-align: center;
}
.footer .dl-copy-right .copy-right-text {
  margin-bottom: 0;
  font-weight: 500;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}
@media (max-width: 1200px) {
  .footer {
    padding-top: 40px;
  }
  .footer .footer-top {
    padding-bottom: 10px;
  }
  .footer .footer-top .dl-loc-wrap {
    padding: 15px;
    padding-bottom: 30px;
  }
  .footer .footer-top .dl-loc-wrap ul li .text {
    word-break: break-word;
  }
  .footer .footer-top .dl-loc-wrap:hover .map-preview {
    bottom: -228px;
  }
  .footer .footer-middle {
    padding: 25px 0;
  }
  .footer .dl-copy-right {
    padding: 20px 0 24px 0;
  }
}
@media (max-width: 992px) {
  .footer .footer-top .dl-about-section .social-wrap {
    margin-bottom: 60px;
  }
  .footer .footer-top .dl-loc-wrap {
    padding: 20px;
    background-color: #D1036D;
    padding-bottom: 25px;
  }
  .footer .footer-top .dl-loc-wrap .map-preview {
    display: none;
  }
  .footer .footer-middle .dl-link-title {
    font-size: 20px;
    margin-bottom: 1rem;
  }
  .footer .footer-middle ul li a {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .footer .footer-top .dl-about-section .footer-logo-wrap img {
    max-width: 130px;
  }
  .footer .footer-top .dl-about-section .dl-desc {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .footer .footer-top .dl-about-section .social-wrap {
    margin-bottom: 40px;
  }
  .footer .footer-top .dl-about-section .social-wrap img {
    width: 30px;
    height: 30px;
  }
  .footer .footer-top .dl-loc-wrap {
    border-radius: 8px;
    padding: 16px;
  }
  .footer .footer-top .dl-loc-wrap .dl-country {
    font-size: 20px;
  }
  .footer .footer-top .dl-loc-wrap .dl-loc-details li img {
    width: 20px;
  }
  .footer .footer-top .dl-loc-wrap .dl-loc-details li .text {
    font-size: 16px;
  }
  .footer .footer-top .dl-loc-wrap .map-preview {
    bottom: -230px;
  }
  .footer .footer-middle .dl-link-title {
    font-size: 16px;
  }
  .footer .footer-middle ul {
    margin-bottom: 20px;
  }
  .footer .footer-middle ul li a {
    font-size: 14px;
    line-height: 16px;
  }
  .footer .footer-middle ul.last-ul {
    margin-bottom: 0;
  }
  .footer .dl-copy-right .copy-right-text {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .footer .footer-top .dl-about-section .dl-desc {
    margin-bottom: 20px;
  }
  .footer .footer-top .dl-about-section .social-wrap {
    margin-bottom: 30px;
  }
  .footer .footer-top .dl-loc-wrap .dl-country {
    font-size: 16px;
  }
  .footer .footer-top .dl-loc-wrap .dl-loc-details li {
    font-size: 14px;
  }
  .footer .footer-top .dl-loc-wrap .map-preview {
    bottom: -228px;
  }
}
@media (max-width: 500px) {
  .footer .footer-top .m-full-width {
    width: 100%;
  }
  .footer .footer-top .m-full-width .dl-loc-wrap {
    margin-bottom: 1rem;
  }
}

.loader-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1999;
}
.loader-wrapper .logo-loader {
  width: 50px;
  -webkit-animation: zoom 1s linear infinite;
          animation: zoom 1s linear infinite;
}
@-webkit-keyframes zoom {
  0% {
    transform: scale(0.4) rotate(0deg);
  }
  50% {
    transform: scale(1) rotate(360deg);
  }
  100% {
    transform: scale(0.4) rotate(360deg);
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.4) rotate(0deg);
  }
  50% {
    transform: scale(1) rotate(360deg);
  }
  100% {
    transform: scale(0.4) rotate(360deg);
  }
}

/* width */
::-webkit-scrollbar {
  width: 14px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #FF0084;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #B5015E;
}/*# sourceMappingURL=styles.css.map */