@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  text-transform: capitalize;
  font-family: var(--main-font);
  font-weight: 500;
}

body li {
  list-style: none;
  margin: 0;
  padding: 0;
}

body ul {
  margin: 0;
  padding: 0;
}

body .form-control:focus,
body .form-select:focus {
  box-shadow: none;
  border-color: #117e9b;
}

body a {
  text-decoration: none;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

p {
  font-weight: 500;
}

body img {
  max-width: 100%;
}

:root {
  --main-font: "Quicksand";
  --sub-font: "Poppins";
  --main-color: #117e9b;
  --text-color: #818a8c;
}

pre {
  text-wrap: balance;
  font-family: var(--main-font) !important;
  font-size: 16px !important;
  text-align: justify;
  font-weight: 500;
  margin-bottom: 0 !important;
}

/* preloader */
#pre_loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loaded {
  visibility: hidden;
  opacity: 0;
}

.svg-calLoader {
  width: 200px;
  height: 200px;
  transform-origin: 100px 100px;
  animation: 1.4s linear infinite loader-spin;
}

.cal-loader__plane {
  fill: var(--main-color);
}

.cal-loader__path {
  stroke: #000;
  animation: 2.4s ease-in-out infinite loader-path;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loader-path {
  0% {
    stroke-dasharray: 0, 580, 0, 0, 0, 0, 0, 0, 0;
  }

  50% {
    stroke-dasharray: 0, 450, 10, 30, 10, 30, 10, 30, 10;
  }

  100% {
    stroke-dasharray: 0, 580, 0, 0, 0, 0, 0, 0, 0;
  }
}

/* .......................................................

                                Header
...........................................................*/
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.container_wrap {
  max-width: 1600px;
  width: 100%;
  margin: auto;
  background-color: #fff;
  border-radius: 60px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.logo a img {
  width: 100px;
}

nav {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

nav .link_part ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav .link_part .megamenu {
  display: grid;
  grid-template-columns: repeat(4, 25%);
  gap: 30px;
  width: 800px;
  position: absolute;
  left: calc(1920px - 2230px);
}

nav .link_part ul li a {
  font-size: 16px;
  font-family: var(--sub-font);
  font-weight: 500;
}

.link_part a:hover,
.link_part .active>a,
.link_part li:hover>a {
  color: var(--main-color);
}

.link_part ul li {
  position: relative;
}

/* nav .sub_link,
nav .sub_link1 {
  position: relative;
} */

nav .sub_link a i {
  margin-left: 5px;
}

.drop_down {
  gap: 20px !important;
  flex-direction: column;
  align-items: start !important;
  padding: 15px;
  width: 250px;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: absolute;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s all;
}

.drop_down1 {
  gap: 20px !important;
  flex-direction: column;
  align-items: start !important;
  padding: 15px;
  width: 250px;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: absolute;
  top: 0px;
  right: -350px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s all;
}

.drop_down li a,
.drop_down1 li a {
  font-size: 16px !important;
}

nav .sub_link:hover .drop_down,
nav .sub_link1:hover .drop_down1 {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

nav .link_part .btn_d_none {
  display: none;
}

.togglelink1 {
  position: relative;
}

.togglelink1::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -70px;
  display: block;
  width: 7px;
  height: 7px;
  border: 2px solid;
  border-left: 0;
  border-bottom: 0;
  transform: translateY(-50%) rotate(45deg);
}

nav .login {
  font-size: 17px;
  font-family: var(--sub-font);
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 37px;
  padding: 15px 35px;
  font-weight: 500;
  margin-right: 10px;
  transition: 0.4s all;
}

nav .login:hover {
  color: #fff;
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
}

nav .btn_same:hover {
  color: #fff;
}

nav .btn_same {
  font-size: 17px;
  font-family: var(--sub-font);
  color: #fff;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 37px;
  padding: 15px 35px;
  font-weight: 500;
  transition: 0.4s all;
}

nav .btn_same:hover {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  background-color: #fff;
}

.humberger {
  font-size: 25px;
  display: none;
}

.close_icon {
  display: none;
}

.close_icon i {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--main-color);
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

/* .......................................................

                          Header
...........................................................*/

/* ----------------------------
               main
-----------------------------*/
.main_part {
  background-color: #dff8ff;
  position: relative;
  padding-top: 90px;
  font-family: var(--main-font);
}

.main_part .container {
  z-index: 100 !important;
  position: relative;
}

.main_part::after {
  content: "";
  width: 100%;
  background-image: url(../image/main_after.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 240px;
  position: absolute;
  left: 0;
  bottom: -100px;
  z-index: 100;
}

.main_part .left_text {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.main_part .left_text h4 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px !important;
}

.main_part .left_text h2 {
  font-size: 50px;
  color: #117e9b;
  font-weight: 600;
  margin-bottom: 20px !important;
}

.main_part .left_text p {
  color: #777777;
  font-weight: 500;
}

.main_part .left_text .content {
  margin-bottom: 60px;
}

.main_part .count {
  background-color: #fff;
  border-radius: 30px;
  padding: 20px 5px;
  max-width: max-content;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: relative;
}

.main_part .count_warp {
  position: relative;
  z-index: 99;
  background-color: #fff;
}

.main_part .count ul {
  display: flex;
  align-items: center;
}

.main_part .count ul li {
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.main_part .count ul li h5 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 5px;
}

.main_part .count ul li:nth-child(2),
.main_part .count ul li:nth-child(1) {
  border-right: 1px solid #d8d9da;
}

.main_part .right_part {
  position: relative;
}

.main_part .right_part::before {
  content: "";
  height: 60px;
  width: 60px;
  background-image: url(../image/plan.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 60px;
  left: 40px;
}

.main_part .right_part::after {
  content: "";
  height: 100px;
  width: 100px;
  background-image: url(../image/box.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 90px;
  right: -140px;
}

.main_part .round1 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.main_part .round2 {
  position: absolute;
  top: 140px;
  left: 0;
  z-index: 1;
}

.main_part .round2 img {
  height: 250px;
}

.main_part .right_part .animated_part {
  position: absolute;

  background-color: #fff;
  padding: 15px 20px;
  border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: updown 5s linear infinite alternate;
}

@keyframes updown {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1) translateY(-10px);
  }
}

.main_part .right_part .student {
  top: 220px;
}

.main_part .right_part .congratulations {
  top: 400px;
  right: 0;
}

.main_part .right_part .user {
  bottom: 90px;
  left: 0;
}

.main_part .right_part .user .user_icon {
  height: 50px;
  height: 50px;
  border-radius: 50%;
}

.main_part .right_part .user .user_icon img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

.main_part .blue_icon img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

.main_part .yellow_icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  background-color: #eba205;
  border-radius: 10px;
}

.main_part .right_part .animated_part h5 {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 5px !important;
}

/* ----------------------------
               main
-----------------------------*/

/* .......................................................

                         HERO
...........................................................*/

.same_section {
  margin-top: 70px;
}

.same_title_text {
  text-align: center;
  font-size: 36px;
  font-family: var(--main-font);
  font-weight: 600;
  margin-bottom: 70px;
}

.home_popup button {
  background-color: var(--main-color);
  font-family: var(--main-font);
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 25px;
  text-align: center;
  transition: 0.4s all;
}

/* .......................................................

                         HERO
...........................................................*/

/* .......................................................

                         BREADCRUMB
...........................................................*/

.breadcrumb_main {
  background-image: url(../image/brand.jpg);
  width: 100%;
  background-position: center;
  height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.breadcrumb_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.bread_con {
  height: 100%;
  display: flex;
  align-items: center;
}

.breadcrumb_main .breadcrumb_text {
  position: absolute;
  z-index: 999;
}

.breadcrumb_main .breadcrumb_text h2 {
  color: #fff;
  font-weight: bold;
  font-size: 60px;
  font-family: var(--main-font);
}

.breadcrumb_main .breadcrumb_text ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.breadcrumb_main .breadcrumb_text li,
.breadcrumb_main .breadcrumb_text li a {
  font-weight: bold;
  font-size: 25px;
  font-family: var(--main-font);
  color: #fff !important;
}

/* .......................................................

                        BREADCRUMB
...........................................................*/

/* .......................................................

                        About us
...........................................................*/
.about_text_main {
  display: flex;
  height: 100%;
  align-items: center;
}

.about_first_part .about_text_part h2 {
  font-weight: bold;
  font-size: 46px;
  font-family: var(--main-font);
}

.about_first_part .about_text_part h2 span {
  color: var(--main-color);
}

.about_first_part .about_text_part p {
  padding-top: 30px !important;
  font-family: var(--main-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-color);
}

.about_first_part .image_part img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.about_first_part .about_img_radius {
  border-radius: 60px 60px 0 60px;
}

.about_first_part .about_img_radius1 {
  border-radius: 60px 60px 60px 0px;
}

.about_first_part .about_img_radius2 {
  border-radius: 60px 0px 60px 60px;
}

.about_first_part .about_img_radius3 {
  border-radius: 0px 60px 60px 60px;
}

.vision_mission_box {
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  gap: 25px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 100%;
}

.vision_mission_box .image_part img {
  width: 120px !important;
  height: unset;
  max-width: 50px;
}

.vision_mission_box .vision_text h5 {
  font-size: 20px;
  font-weight: bold;
  font-family: var(--main-font);
  color: var(--main-color);
}

.vision_mission_box .vision_text p {
  padding-top: 10px !important;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--main-font);
  color: var(--text-color);
}

.same_title_sections h2 {
  font-family: var(--main-font);
  color: var(--main-color);
  font-weight: bold;
  font-size: 36px;
  text-align: center;
}

.achievement_slider_main {
  padding-top: 50px;
}

.achievement_slider_main .achievement_box {
  text-align: center;
  background-color: #f5fdff;
  border-radius: 10px;
  padding: 20px;
}

.achievement_slider_main .achievement_box .image_part {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.achievement_slider_main .achievement_box .image_part img {
  width: 220px;
  height: 100px;
  object-fit: contain;
}

.achievement_slider_main .achievement_box h4 {
  font-size: 20px;
  font-family: var(--sub-font);
  font-weight: 600;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

/* .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 21px;
} */

.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--main-color);
  opacity: 1;
}

.university_slider_main {
  padding-top: 50px;
}

.university_slider img {
  width: unset !important;
  height: 60px;
}

.about_founders_main .founders_box {
  display: flex;
  gap: 20px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 100%;
}

.about_founders_main .founder_row {
  margin-top: 50px;
}

.about_founders_main .founders_box .founder_img img {
  height: 100px;
  max-width: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.about_founders_main .founders_box .founder_name {
  margin-bottom: 10px;
}

.about_founders_main .founders_box .founder_name h5 {
  font-size: 20px;
  font-weight: bold;
  font-family: var(--sub-font);
}

.about_founders_main .founders_box .founder_name label {
  font-size: 14px;
  font-family: var(--sub-font);
  font-weight: 300 !important;
  color: #818a8c;
}

.about_founders_main .founders_box .founder_desc p {
  font-size: 16px;
  font-family: var(--main-font);
  font-weight: 500;
  color: #818a8c;
}

.image_part img {
  width: 100%;
  height: 100%;
}

.about_video video {
  width: 100%;
  /* height: 100%; */
}

.rector_message img {
  width: 100%;
  height: 100%;
}

.uni_about_text h4 {
  font-weight: 600;
  color: var(--main-color);
  margin: 0 0 20px 0;
}

.medical_doctor thead tr th,
.medical_doctor tbody tr td {
  border: 2px solid #000;
  text-align: center;
}

.first_title {
  background-color: var(--main-color);
}

.university_details p {
  text-transform: none;
  color: #fff;
  padding: 10px 0;
  font-size: 18px;
  text-align: center;
}

.university_details p a {
  font-weight: bolder;
  color: #fff;
}

.some_details p {
  text-align: center;
  font-weight: bold;
}

.table_title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 20px 0;
}

.table_title .title_img img {
  max-width: 90px;
  border: 3px solid var(--main-color);
}

.table_title .title_text h4 {
  background: var(--main-color);
  color: #fff;
  padding: 20px 48px;
  font-size: 30px;
  margin: 0;
}

.university_table thead tr th {
  background: #c8dde3;
  text-align: center;
  padding: 15px 1rem;
}

.university_table tbody tr td ul {
  padding-left: 20px;
}

.university_table tbody tr td {
  font-weight: 500;
}

.university_table tbody tr td ul li {
  list-style-type: disc;
  font-weight: 500;
}

.notes {
  text-align: center;
  border-bottom: 1px double;
  padding: 0 0 10px 0;
  margin: 0 0 30px 0;
}

.notes p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.notes p:last-child {
  color: maroon;
}

.para h4 {
  text-align: center;
  font-weight: 600;
  padding: 0 0 10px 0;
}

.section_title h4 {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--main-color);
  font-size: 30px;
}

.section_title p {
  font-size: 20px;
  text-transform: uppercase;
  padding: 10px 0 0 0;
}

.overview_details h5 {
  padding: 0 0 10px 0;
  color: var(--main-color);
}

.overview_details ul {
  padding: 0 0 0 30px;
}

.overview_details ul li {
  padding: 5px 0;
  font-weight: 500;
  list-style-type: disc;
}

.important_area {
  background: #e3e0e0;
  border: 1px solid #000;
  padding: 10px 10px 0 10px;
}

.important_area h5 {
  text-align: center;
  text-transform: uppercase;
}

.list_of_universiti p {
  background: darkblue;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 26px;
}

.universiti_table .table tbody tr td {
  padding: 10px 1rem;
  font-weight: 500;
}

.universiti_table .table tbody tr td:nth-child(2) {
  color: blue;
}

.overview_desc p {
  font-size: 20px;
}

.overview_desc h4 {
  font-size: 26px;
  padding: 0 0 10px 0;
}

.overview_desc ul {
  padding-left: 20px;
}

.overview_desc ul li {
  padding: 5px 0;
  list-style-type: disc;
  font-weight: 500;
  font-size: 18px;
}

/* .......................................................
                        About us
...........................................................*/

/* .......................................................
                  institute slider
...........................................................*/
.institution_slider_main img {
  width: unset !important;
  height: 100px;
}

.institute_img_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* .......................................................
                  institute slider
...........................................................*/
/* .......................................................
                  country
...........................................................*/
.destination {
  background-color: #f5fdff;
  padding: 70px 0;
}

.up_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.up_title h2 {
  font-family: var(--sub-font);
  font-weight: 600;
  font-size: 30px;
}

.up_title h2 span {
  color: var(--main-color);
}

.up_title p {
  font-family: var(--main-font);
  color: #777777;
  font-size: 18px;
  max-width: 500px;
  width: 100%;
}

.bottom_part .nav {
  justify-content: space-between !important;
  background-color: #f4f8fa;
  padding: 20px;
  margin-bottom: 30px !important;
  flex-wrap: nowrap;
  overflow-x: scroll;
  text-wrap: nowrap;
  gap: 30px;
}

.bottom_part .nav::-webkit-scrollbar {
  width: 2px;
  height: 3px;
}

.bottom_part .nav::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  height: 5px;
  width: 5px;
  border-radius: 20px;
}

.bottom_part .nav .nav-link {
  color: #000;
  font-weight: 600;
  font-family: var(--sub-font);
  padding: 10px 30px;
}

.bottom_part .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: #117e9b;
}

.country_box {
  background-color: #fff;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.country_box img {
  border-radius: 50%;
}

.bottom_part .country_box h6 {
  font-family: var(--sub-font);
  font-weight: 600;
  font-size: 17px;
}

/* .......................................................
                  country
...........................................................*/

/* ------------------------------------------------
                  four_section
-------------------------------------------------*/
.title_main {
  text-align: center;
  margin-bottom: 40px;
}

.title_main h2 {
  font-family: var(--sub-font);
  color: var(--main-color);
  font-size: 35px;
  margin-bottom: 5px !important;
  font-weight: 600;
}

.global .owl-stage-outer {
  padding: 10px;
}

.global_instutue_box {
  margin: 0 15px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 20px;
}

.global_instutue_box .img_box {
  height: 300px;
  position: relative;
}

.global_instutue_box .rating {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  gap: 15px;
  align-items: center;
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
}

.global_instutue_box .rating i {
  color: gold;
  font-size: 15px;
}

.global_instutue_box .rating h6 {
  font-size: 14px;
  color: var(--main-color);
  font-weight: 600;
}

.global_instutue_box .rating h6 span {
  color: #777777;
}

.global_instutue_box .img_box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.title_main p {
  font-weight: 600;
  font-family: var(--sub-font);
  font-size: 16px;
  color: #777777;
}

.global_instutue_box .content_part {
  padding: 35px 25px;
}

.global_instutue_box .content_part .title_part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.global_instutue_box .content_part .title_part h6 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-color);
}

.global_instutue_box .content_part .title_part h6 img {
  width: 30px;
  border-radius: 50%;
}

.global_instutue_box .content_part ul {
  margin-bottom: 40px;
}

.global_instutue_box .content_part ul li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.global_instutue_box .content_part ul li h6 {
  font-weight: 700;
  color: #000;
}

.main_btn {
  padding: 15px 25px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.4s all;
  border: none;
}

.main_btn:hover {
  border: 1px solid var(--main-color);
  background-color: #fff;
  color: var(--main-color);
}

/* ------------------------------------------------
                  four_section
-------------------------------------------------*/
/* ------------------------------------------------
                  result_of_education
-------------------------------------------------*/
.result_of_education {
  background-image: url(../image/page_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 8% 0;
  position: relative;
}

.result_of_education .container,
.result_of_education .row {
  height: 100%;
}

.result_of_education .row .col-lg-6 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.result_of_education .right_text {
  padding: 0 20px;
}

.result_of_education .right_text h2 {
  font-family: var(--sub-font);
  font-weight: 600;
  margin-bottom: 10px !important;
}

.result_of_education .right_text p {
  color: #777777;
  font-weight: 700;
}

.result_of_education .right_text ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px 0;
  gap: 30px;
}

.result_of_education .right_text ul li {
  display: flex;
  gap: 20px;
}

.result_of_education .right_text ul li .icon {
  height: 50px;
  max-width: 50px;
  width: 100%;
  background-color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.result_of_education .right_text ul li h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
  font-family: var(--sub-font);
  margin-bottom: 10px !important;
}

.result_of_education .right_text ul li p {
  font-size: 13px;
}

.result_of_education .left_img {
  position: relative;
}

.result_of_education .left_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 120px;
  height: 30px;
  width: 30px;
  background-color: #fb94a7;
  border-radius: 50%;
}

.result_of_education .left_img .students {
  display: flex;
  gap: 20px;
  align-items: center;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  max-width: 200px;
  width: 100%;
  border-radius: 20px;
  padding: 10px 15px;
  position: absolute;
  left: -50px;
  bottom: 50px;
}

.result_of_education .left_img .students .icon {
  height: 50px;
  width: 50px;
  background-color: #117e9b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.result_of_education .left_img .students .icon img {
  object-fit: contain;
  width: unset;
  height: 30px;
}

.result_of_education .left_img .students h5 {
  font-weight: 700;
  font-size: 20px;
}

.result_of_education .left_img .students p {
  color: #777777;
  font-weight: 500;
  font-size: 13px;
}

.result_of_education .left_img .thirdbox {
  width: 100%;
}

.result_of_education .left_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.result_of_education .leftdots .yellow {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: #fbd995;
  position: absolute;
  top: 220px;
  left: 20px;
}

.result_of_education .leftdots .red {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: #fb94a7;
  position: absolute;
  bottom: 220px;
  left: 20px;
}

.result_of_education .rightdots .blue {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: #8abec1;
  position: absolute;
  top: 220px;
  right: 20px;
}

.result_of_education .rightdots .yellow {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: #fbd995;
  position: absolute;
  bottom: 220px;
  right: 100px;
}

/* ------------------------------------------------
                  result_of_education
-------------------------------------------------*/

/* ------------------------------------------------
                  services
-------------------------------------------------*/
.services .services_warp {
  position: relative;
}

.services .services_warp::after {
  content: "";
  height: 70px;
  width: 70px;
  background-image: url(../image/box.svg);
  position: absolute;
  right: -30px;
  top: 185px;
  z-index: -1;
}

.services .services_warp::before {
  content: "";
  height: 70px;
  width: 70px;
  background-image: url(../image/box.svg);
  position: absolute;
  left: 130px;
  bottom: -15px;
  z-index: -1;
}

.services .services_warp .services_boxs {
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 40px 20px;
  border-radius: 20px;
  font-family: var(--sub-font);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  flex-direction: column;
  z-index: 100;
}

.services .services_warp .services_boxs .icon {
  height: 90px;
  width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color);
  border-radius: 10px;
  margin-bottom: 25px;
}

.services .services_warp .services_boxs .icon img {
  width: 50px;
}

/* ------------------------------------------------
                  services
-------------------------------------------------*/

/* ------------------------------------------------
                  lons
-------------------------------------------------*/
.loans .left_text h4 {
  font-size: 38px;
  font-weight: 600;
  color: #000;
  margin-bottom: 40px !important;
}

.loans .left_text h4 span {
  color: var(--main-color);
}

.loans .left_text ul li {
  margin-bottom: 20px;
}

.loans .left_text ul li span {
  height: 10px;
  width: 10px;
  display: block;
  background-color: var(--main-color);
}

.loans .left_text ul {
  margin-bottom: 50px;
}

.loans .left_text ul li h6 {
  font-weight: 700;
  color: #616162;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.loans .img_part {
  position: relative;
}

.loans .red {
  height: 60px;
  width: 60px;
  background-color: #fb94a7;
  border-radius: 50%;
  position: absolute;
  right: 110px;
  top: 250px;
  opacity: 60%;
}

.loans .blue {
  height: 110px;
  width: 110px;
  background-color: #117e9b;
  border-radius: 50%;
  position: absolute;
  left: 70px;
  bottom: 0px;
  opacity: 60%;
}

.loans .yellow {
  height: 80px;
  width: 80px;
  background-color: #fbd995;
  border-radius: 50%;
  position: absolute;
  left: 70px;
  top: -30px;
  opacity: 60%;
  z-index: -1;
}

/* ------------------------------------------------
                  lons
-------------------------------------------------*/
/* ------------------------------------------------
                  client
-------------------------------------------------*/
.client .client_box .content_part {
  /* border: 1px solid #c3ccd7; */
  border-radius: 10px;
  padding: 30px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  /* margin-bottom: 30px; */
}

.client .client_box {
  margin: 20px;
}

/* .client .client_box .content_part::after {
  content: "";
  height: 20px;
  width: 20px;
  background-image: url(../image/arrow_client.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 30px;
  bottom: -11px;
} */

.client .client_box .content_part i {
  color: #ffc107;
  font-size: 30px;
  margin-bottom: 20px;
}

.client .client_box .content_part p {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  /* display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis; */
  margin-bottom: 5px !important;
  text-align: center;
}

.client .client_box .user_name {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  gap: 20px;
  margin-top: 25px;
}

.client .client_box .user_name .pic {
  height: 80px;
  width: 80px;
}

.client .client_box .user_name .pic img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.client .client_box .user_name .name h5 {
  font-weight: 600;
  margin-bottom: 5px !important;
}

.client .client_box .user_name .name p {
  font-weight: 400;
  color: #777777;
  font-size: 13px;
  text-align: start !important;
}

.client_box a {
  color: var(--main-color);
  font-size: 14px;
  font-family: var(--main-font);
  font-weight: bold;
}

.client .title_main p {
  margin-bottom: 15px !important;
}

.client .title_main a {
  border-radius: 5px;
  padding: 8px 15px;
  font-family: var(--sub-font);
  color: var(--main-color);
  font-weight: bold;
  font-size: 14px;
  border: 2px solid var(--main-color);
}

/* ------------------------------------------------
                  client
-------------------------------------------------*/
/* ------------------------------------------------
                  FOOTER
-------------------------------------------------*/

footer {
  padding: 50px 0px 00px 0px;
  background-color: #e3f1f9;
}

.footer_text p {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--main-font);
  padding: 30px 0 10px 0 !important;
  margin: 0;
}

.social_icons_main {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0 0 0;
}

.social_icons_main .social_icon i {
  width: 40px;
  height: 40px;
  color: #fff;
  background-color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 20px;
  transition: 0.5s all;
  cursor: pointer;
}

.social_icons_main .social_icon i:hover {
  background-color: #fff;
  border: 2px solid var(--main-color);
  color: var(--main-color);
}

.footer_title h3 {
  font-size: 25px;
  font-family: var(--sub-font);
  font-weight: 600;
  color: var(--main-color);
  padding-bottom: 25px !important;
}

footer ul li {
  font-size: 18px;
  font-family: var(--main-font);
  font-weight: 600;
  padding: 12px 0;
}

footer ul li a:hover {
  color: #000;
}

.footer ul li:first-child {
  padding-top: 0 !important;
}

.footer_sec {
  padding-left: 50px;
}

.footer_contact li {
  display: flex;
  gap: 20px;
}

.footer_below {
  margin-top: 30px !important;
  border-top: 1px solid #bad5e5;
  text-align: center;
}

.footer_below p {
  padding: 25px 0 !important;
  font-size: 18px;
  font-family: var(--main-font);
  font-weight: 600;
}

.contact_text p {
  margin: 0;
}

/* ------------------------------------------------
                  FOOTER
-------------------------------------------------*/

/* ------------------------------------------------
                  SERVICE
-------------------------------------------------*/

.service_part .col_padding {
  padding: 0 !important;
}

.service_box {
  height: 100%;
  text-align: center;
  padding: 20px 30px;
  border-top: 1px solid #e3e3e3;
  border-right: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}

.col_3_border {
  border-right: 0 !important;
}

.col_up_border {
  border-top: 0 !important;
}

.col_l_border {
  border-left: 1px solid #e3e3e3;
}

.col_b_border {
  border-bottom: 0;
}

.service_part .row {
  display: flex;
  justify-content: center;
}

.service_row_margin {
  margin-top: 50px !important;
}

.service_icon_main {
  display: flex;
  justify-content: center;
}

.same_title_sections p {
  padding-top: 15px !important;
  font-family: var(--main-font);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #777;
}

.service_icon {
  width: 120px;
  height: 120px;
  background-color: #ddf7f8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service_yellow {
  background-color: #fff5e1;
}

.service_red {
  background-color: #ffe0e0;
}

.service_blue {
  background-color: #e1efff;
}

.service_dgreen {
  background-color: #ddf3dd;
}

.service_purple {
  background-color: #f0e0ff;
}

.service_dgreen1 {
  background-color: #d4f6ff;
}

.service_text h4 {
  font-family: var(--main-font);
  color: var(--main-color);
  font-size: 25px;
  font-weight: 600;
  padding: 20px 0 !important;
}

.service_text p {
  font-size: 16px;
  font-family: var(--main-font);
  font-weight: 500;
  color: #333333;
}

/* ------------------------------------------------
                  SERVICE
-------------------------------------------------*/

/* ------------------------------------------------
                  newsletter
-------------------------------------------------*/

.news_letter {
  position: relative;
  padding: 170px 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../image/news.png);
}

.news_letter::after {
  content: "";
  position: absolute;
  bottom: 80px;
  left: 40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fb94a7;
}

.news_letter::before {
  content: "";
  position: absolute;
  right: 150px;
  top: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #8abec1;
}

.news_letter_text h2 {
  font-family: var(--sub-font);
  font-weight: 600;
  font-size: 45px;
  color: var(--main-color);
}

.news_letter_text p {
  padding-top: 10px !important;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 23px;
}

.news_letter_input {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  background-color: #fff;
  border-radius: 20px;
}

.news_letter .btn_submit {
  font-family: var(--main-font);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  background-color: var(--main-color);
  border: none;
}

.news_letter_input input {
  border: none;
  outline: none;
}

.news_letter_input input:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

/* ------------------------------------------------
                  newsletter
-------------------------------------------------*/

/* ------------------------------------------------
                  SIM CARD
-------------------------------------------------*/

.sim_card_section .sim_text_part h2 {
  font-size: 36px;
  font-weight: bold;
  font-family: var(--main-font);
  color: var(--main-color);
  padding-bottom: 30px !important;
}

.sim_card_text_outer {
  display: flex;
  height: 100%;
  align-items: center;
}

.sim_card_section .sim_text_part p {
  font-size: 18px;
  font-weight: 600;
  color: #777;
  opacity: 1;
}

/* ------------------------------------------------
                  SIM CARD
-------------------------------------------------*/

/* ------------------------------------------------
                 COURSE
-------------------------------------------------*/

.course_details_text {
  background-color: #fff;
  padding: 20px 15px;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: relative;
  top: -40px;
}

.course_box .image_part img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.course_loc_date {
  display: flex;
  align-items: center;
  gap: 50px;
}

.course_loc_date .month {
  display: flex;
  align-items: center;
  gap: 10px;
}

.course_loc_date .month i {
  color: var(--main-color);
}

.course_box .course_details_text h2 {
  font-size: 22px;
  font-family: var(--main-font);
  font-weight: bold;
  color: var(--main-color);
}

.course_box .course_details_text p {
  font-size: 13px;
  font-family: var(--main-font);
  font-weight: 500;
  color: #777;
  opacity: 1;
  padding: 15px 0 !important;
}

.course_box .course_details_text i {
  font-size: 14px;
}

.course_box .course_details_text label {
  font-weight: bold;
  font-family: var(--main-font);
  font-size: 14px;
}

.course_btn_same {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  font-size: 17px;
  font-family: var(--sub-font);
  color: #fff;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 37px;
  padding: 10px 19px;
  font-weight: 500;
}

.course_btn_same:hover {
  color: #fff;
}

.course_btn_same i {
  margin-left: 15px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  color: var(--main-color);
}

.course_detail_wrap {
  padding: 0 18px;
}

/* ------------------------------------------------
                 COURSE
-------------------------------------------------*/

/* ------------------------------------------------
                contect us
-------------------------------------------------*/

.contact_main .contact_box {
  padding: 20px;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 25px;
  height: 100%;
}

.contact_main .contact_box .contact_icons {
  padding: 5px;
  border-radius: 50%;
  border: 2px solid var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_main .contact_box .contact_icon_inner {
  width: 80px;
  height: 80px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_main .contact_box .contact_icon_inner i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.contact_main .contact_box .contact_text h5 {
  font-size: 25px;
  font-family: var(--main-font);
  font-weight: bold;
  margin-bottom: 10px !important;
}

.contact_main .contact_box .contact_text p {
  font-weight: 500;
  color: #777;
}

.contact_second_part img {
  border-radius: 10px;
}

.contact_form_outer {
  display: flex;
  align-items: center;
  height: 100%;
}

.contact_form_box .title {
  margin-bottom: 25px;
}

.contact_form_box .title h6 {
  font-size: 30px;
  font-family: var(--main-font);
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  padding-bottom: 10px !important;
}

.contact_form_box .title p {
  font-family: var(--sub-font);
  font-size: 18px;
  text-align: center;
  font-weight: 300;
  color: #777;
}

.contact_form_box .form-group label {
  font-size: 13px;
  font-weight: bold;
  font-family: var(--main-font);
  margin-bottom: 5px;
  color: #777;
}

.contact_form_box .form-group {
  margin-bottom: 20px;
}

.contact_form_box .submit_btn {
  margin-top: 20px !important;
  text-align: center;
}

.contact_form_box input::placeholder {
  font-size: 14px;
  font-weight: 400;
}

.map iframe {
  width: 100%;
  height: 400px;
}

/* ------------------------------------------------
                contect us
-------------------------------------------------*/
/* ------------------------------------------------
                travel ticket
-------------------------------------------------*/
.ticket .title {
  margin-bottom: 50px;
  text-align: center;
}

.ticket .title h3 {
  color: var(--main-color);
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 10px !important;
}

.ticket .title p {
  color: #777777;
  font-size: 14px;
  font-weight: 600;
}

.ticket .boxs_warp .ticket_box {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  border: 1px solid #d9d9d9;
  padding: 20px;
  height: 180px;
  border-radius: 15px;
}

.ticket .boxs_warp .ticket_box img {
  max-width: 180px;
}

.ticket .boxs_warp .ticket_box .text h5 {
  margin-bottom: 10px !important;
  font-weight: 700;
  color: var(--main-color);
}

.ticket .boxs_warp .ticket_box .text p {
  font-size: 14px;
  font-weight: 500;
  color: #777777;
}

/* ------------------------------------------------
                travel ticket
-------------------------------------------------*/
/* ------------------------------------------------
                education_loan
-------------------------------------------------*/
.education_loan .first_part .text h2 {
  color: #000;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px !important;
}

.education_loan .first_part .text h2 span {
  color: var(--main-color);
}

.education_loan .first_part .text p {
  font-size: 17px;
  font-weight: 600;
  color: #777777;
  margin-bottom: 25px !important;
}

.education_loan .first_part ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px !important;
}

.education_loan .first_part ul li {
  width: 50%;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

.education_loan .first_part ul li .icon {
  height: 50px;
  width: 50px;
  background-color: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.education_loan .second_part .slider img {
  width: 200px;
  object-fit: contain;
  aspect-ratio: 1/1;
}

.education_loan .first_part .text1 {
  font-size: 16px;
  font-weight: bold;
  font-family: var(--sub-font);
}

.education_loan .first_part .text1 {
  font-size: 16px;
  font-weight: bold;
  font-family: var(--sub-font);
}

.edu_loan_title {
  margin-bottom: 40px;
}

/* ------------------------------------------------
                education_loan
-------------------------------------------------*/
/* ------------------------------------------------
                user_review
-------------------------------------------------*/

/* new add */
.user_add_review {
  padding: 25px 20px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  margin-bottom: 50px;
}

.user_add_review .rev_title h2 {
  font-weight: 600;
  font-family: var(--main-font);
  color: var(--main-color);
  margin-bottom: 15px !important;
}

.user_add_review .rev_title {
  text-align: center;
}

.stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px !important;
}

.stars i {
  color: #e6e6e6;
  font-size: 25px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.stars i.active {
  color: gold;
}

/* new add */

.user_review .up_user_review {
  margin-bottom: 60px;
}

.user_review .up_user_review .title_part h2 {
  font-weight: 700;
  color: var(--main-color);
  font-size: 50px;
  margin-bottom: 10px !important;
}

.user_review .up_user_review .title_part p {
  font-weight: bold;
  font-size: 14px;
  color: #777777;
}

.user_review .up_user_review .review_design .review_design_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 30px;
  border-radius: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.user_review .up_user_review .review_design .review_design_box:nth-child(1) {
  margin-right: 80px;
}

.user_review .up_user_review .review_design .review_design_box:nth-child(2) {
  margin-left: 80px;
}

.star ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user_review .up_user_review .review_design .review_design_box h5 {
  font-weight: 700;
}

.star ul li i {
  color: gold;
  font-size: 18px;
}

.down_reviews_part .reviews_boxs {
  border: 1px solid #a5a5a5;
  border-radius: 30px;
  padding: 30px;
  display: none;
  height: 100%;
}

.user_review .load_more_Warp {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.user_review .load_more {
  text-align: center;
  padding: 15px 40px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
}

.down_reviews_part .reviews_boxs .user_part {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.down_reviews_part .reviews_boxs .user_part .img_part {
  height: 80px;
  width: 80px;
  object-fit: cover;
  position: relative;
}

.down_reviews_part .reviews_boxs .user_part .img_part::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 80px;
  width: 80px;
  border-radius: 20px;
  background-color: var(--main-color);
  z-index: -1;
  transform: translate(-10px) translateY(-8px);
}

.down_reviews_part .reviews_boxs .user_part .img_part img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 20px;
}

.down_reviews_part .reviews_boxs .description {
  margin-bottom: 30px;
}

.down_reviews_part .reviews_boxs .description p {
  font-weight: 700;
  font-size: 14px;
  color: #777777;
}

textarea.form-control {
  height: auto;
}

/* .down_reviews_part .reviews_boxs .score {
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

/* .down_reviews_part .reviews_boxs .score .ielts {
  font-size: 16px;
  font-weight: 700;
  color: var(--main-color);
} */

.down_reviews_part .name h6 {
  font-weight: 700;
  font-size: 20px;
}

.down_reviews_part .name p {
  font-weight: 400;
  color: #777777;
}

.down_reviews_part .star ul {
  gap: 10px;
}

.down_reviews_part .star ul li i {
  font-size: 13px;
}

.user_review .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.user_review .pagination ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user_review .pagination ul li a {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  color: var(--main-color);
  transition: 0.5s all;
}

.user_review .pagination ul li a:hover {
  background-color: var(--main-color);
  color: #fff;
}

.user_review .active_cur a {
  background-color: var(--main-color) !important;
  color: #fff !important;
}

.user_review .diseble a {
  opacity: 0.5 !important;
  pointer-events: none;
}

/* ------------------------------------------------
                user_review
-------------------------------------------------*/

/* ------------------------------------------------
                 Scholarship
-------------------------------------------------*/
.form_part_main {
  background: linear-gradient(to right, #ddf8ff, #baf0ff);
  border-radius: 40px;
}

.form_box {
  margin: 20px;
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
}

.form_section .form_box input,
.form_section .form_box select {
  padding: 15px;
  border: none;
  background-color: #f0f9ff;
  color: #117e9b !important;
  font-family: var(--main-font);
  font-size: 14px !important;
  font-weight: bold !important;
}

.form_box input::placeholder {
  color: var(--main-color);
  font-family: var(--main-font);
  font-size: 14px;
  font-weight: bold !important;
}

.form_box input:focus,
.form_box select:focus {
  outline: none;
  box-shadow: none;
  background-color: #f0f9ff;
}

.form_box .form-select {
  color: var(--main-color);
  font-family: var(--main-font);
  font-size: 14px;
  font-weight: bold;
}

.form_btn {
  border: none;
  padding: 10px 35px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  background-color: var(--main-color);
  color: #fff;
  cursor: pointer;
}

.form_btn i {
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.image_parts img {
  width: 460px;
  height: 502px;
}

.form_part_main {
  position: relative;
}

.form_part_main .image_parts {
  position: relative;
  z-index: 99;
}

.form_part_main .image_parts::after {
  content: "";
  background-image: url(../image/form_1.png);
  position: absolute;
  left: 40px;
  top: 40px;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
}

.form_part_main .image_parts::before {
  content: "";
  background-image: url(../image/form_3.png);
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
}

.edu_img {
  position: absolute;
  right: 40px;
  top: 100px;
}

.edu_img1 {
  position: absolute;
  left: 60%;
  bottom: 140px;
}

.candidate_eligible {
  margin-top: 50px;
  background-image: url(../image/page_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5% 0;
  background-position: center;
  position: relative;
}

.candidate_eligible h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  font-family: var(--main-font);
  padding-bottom: 50px !important;
}

.candidate_rules ul li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.candidate_rules ul li p {
  font-size: 18px;
  font-family: var(--main-font);
  font-weight: 600;
}

.candidate_rules ul li img {
  height: unset;
  max-width: 20px;
}

.candidate_image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.candidate_eligible .image_part img {
  width: 100%;
  height: 100%;
}

.candidate_eligible .leftdots .yellow {
  width: 80px;
  height: 80px;
  background-color: #ffc107;
  position: absolute;
  top: 10%;
  left: 10%;
  border-radius: 50%;
}

.candidate_eligible .leftdots .red {
  width: 80px;
  height: 80px;
  background-color: #fb94a7;
  position: absolute;
  bottom: 20%;
  left: 4%;
  border-radius: 50%;
}

.candidate_eligible .rightdots .blue {
  width: 50px;
  height: 50px;
  background-color: #8abec1;
  position: absolute;
  right: 10%;
  top: 10%;
  border-radius: 50%;
}

.candidate_eligible .rightdots .yellow {
  width: 100px;
  height: 100px;
  background-color: #89c6fc;
  position: absolute;
  right: 2%;
  bottom: 10%;
  border-radius: 50%;
}

.how_work_h2 h2 {
  color: #000 !important;
  margin-bottom: 50px !important;
}

.iamge_parts img {
  width: 100%;
  height: 100%;
}

.how_work .how_work_text_box .number span {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-family: var(--main-font);
  border-radius: 50%;
  background-color: #fc534e;
  font-size: 30px;
}

.how_work .how_work_text_box h4 {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  font-family: var(--main-font);
  padding: 25px 0 !important;
}

.how_work .how_work_text_box p {
  font-size: 18px;
  font-weight: 500;
  color: #777;
  font-family: var(--main-font);
}

.how_work_text_outer {
  display: flex;
  height: 100%;
  align-items: center;
}

.arrrow_image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrrow_image img {
  width: 300px;
  height: unset;
}

/* ------------------------------------------------
                 Scholarship
-------------------------------------------------*/

/* ------------------------------------------------
                 visa assistance
-------------------------------------------------*/

.visa_section_main .image_part img {
  border-radius: 30px;
}

.visa_text_parts h2 {
  font-size: 38px;
  font-family: var(--sub-font);
  font-weight: 600;
  color: var(--main-color);
}

.visa_text_parts .p1_text {
  font-size: 18px;
  font-family: var(--main-font);
  font-weight: 600;
  padding: 25px 0 !important;
}

.visa_text_part_main {
  display: flex;
  align-items: center;
  height: 100%;
}

.visa_pr {
  padding-right: 40px;
}

.visa_pl {
  padding-left: 40px;
}

.set_bg_image {
  position: relative;
}

.set_bg_image::after {
  content: "";
  position: absolute;
  left: -45px;
  top: -30px;
  background-image: url(../image/box_png.png);
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  z-index: -1;
}

.set_bg_image::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -40px;
  background-image: url(../image/box_png.png);
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  z-index: -1;
}

.visa_section_bg {
  background-image: url(../image/page_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 8% 0;
  background-position: center;
  position: relative;
  z-index: -1;
}

.visa_text_parts h6 {
  font-size: 22px;
  font-weight: bold;
  font-family: var(--main-font);
  color: var(--main-color);
  padding-bottom: 20px !important;
}

.visa_section_bg .pink {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fb94a7;
  position: absolute;
  top: 25%;
  left: 50px;
}

.visa_section_bg .yellow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #8abec1;
  position: absolute;
  top: 10%;
  right: 80px;
}

.visa_assisatance_main .visa_service_parts {
  position: relative;
  margin-top: 50px;
}

.visa_assisatance_main .visa_service_parts::after {
  content: "";
  height: 70px;
  width: 70px;
  background-image: url(../image/box.svg);
  position: absolute;
  right: -35px;
  top: 299px;
  z-index: -1;
}

.visa_assisatance_main .visa_service_parts::before {
  content: "";
  height: 70px;
  width: 70px;
  background-image: url(../image/box.svg);
  position: absolute;
  left: 295px;
  bottom: -5px;
  z-index: -1;
}

.visa_assisatance_main .visa_service_parts .visa_service {
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 40px 20px;
  border-radius: 20px;
  font-family: var(--sub-font);
  display: flex;
  justify-content: center;
  align-items: center;

  flex-direction: column;
  z-index: 100;
  height: 100%;
}

.visa_assisatance_main .visa_service_parts .visa_service .icon {
  height: 90px;
  width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color);
  border-radius: 10px;
  margin-bottom: 25px;
}

.visa_assisatance_main .visa_service_parts .visa_service .icon img {
  width: 50px;
}

.visa_service .desc {
  margin-top: 20px;
  text-align: center;
  font-family: var(--main-font);
  font-size: 16px;
}

/* ------------------------------------------------
                 visa assistance
-------------------------------------------------*/

/* ------------------------------------------------
                SOP_SERVICE 
-------------------------------------------------*/

.SOP_SERVICE {
  margin-top: 50px;
}

.sop_services .services_warp::before {
  left: 300px;
}

/* ------------------------------------------------
                SOP_SERVICE 
-------------------------------------------------*/

/* ------------------------------------------------
                Accommodation 
-------------------------------------------------*/

.house_row {
  margin-top: 50px !important;
}

/* ------------------------------------------------
                Accommodation 
-------------------------------------------------*/

/* ------------------------------------------------
                 know your score 
-------------------------------------------------*/
.know_your_text {
  padding: 25px;
}

.know_your_text h2 {
  font-size: 30px;
  font-family: var(--sub-font);
  font-weight: 600;
  color: var(--main-color);
}

.know_your_text p {
  margin-top: 15px !important;
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 600;
}

.score_features .score_features_box {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: relative;
  height: 100%;
  margin-bottom: 50px !important;
}

.score_features .scrore_margin {
  margin-bottom: 80px;
}

.score_features_box .score_icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ddf7f8;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -50px;
}

.score_yellow {
  background-color: #fff5e1 !important;
}

.score_red {
  background-color: #ffe0e0 !important;
}

.score_blue {
  background-color: #e1efff !important;
}

.score_purple {
  background-color: #f0e0ff !important;
}

.score_features_box .score_texts h4 {
  font-size: 24px;
  font-family: var(--sub-font);
  font-family: 700;
  color: var(--main-color);
  padding-bottom: 10px !important;
  margin-top: 50px !important;
}

.score_features_box .score_texts p {
  font-family: var(--main-font);
  font-weight: 600;
  color: #343434;
  font-size: 14px;
}

.score_title {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.score_title h2 {
  max-width: 600px;
}

/* ------------------------------------------------
                 know your score 
-------------------------------------------------*/

/* ------------------------------------------------
                 careers
-------------------------------------------------*/
.careers_first_part {
  background-color: var(--main-color);
  padding: 50px 0;
}

.careers_text {
  text-align: center;
}

.careers_text h2 {
  font-family: var(--main-font);
  font-size: 60px;
  color: #fff;
  font-weight: bold;
}

.careers_text h5 {
  font-family: var(--main-font);
  font-size: 40px;
  color: #fff;
  font-weight: bold;
  padding: 30px 0 !important;
}

.careers_text p {
  font-family: var(--main-font);
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.careers_table_title p {
  color: var(--main-color);
  font-family: var(--sub-font);
  font-size: 20px;
  font-weight: bold;
}

.careers_table_title h2 {
  font-weight: bold;
  font-family: var(--main-font);
}

.careers_table_part .table {
  vertical-align: middle;
}

.careers_table_part .table td {
  font-weight: 400;
  font-family: var(--main-font);
  padding: 20px 15px;
}

.careers_table_part .table th {
  font-weight: bold;
  font-family: var(--main-font);
  padding: 20px 15px;
  font-size: 18px;
}

.careers_table_div {
  margin-top: 50px;
}

.table_filter_div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.table_filter_div p {
  font-family: var(--sub-font);
  font-size: 16px;
  font-weight: bold;
}

.table_filter_div select {
  width: 200px;
}

/* ------------------------------------------------
                 careers
-------------------------------------------------*/

/* ------------------------------------------------
                 MOCK TEST
-------------------------------------------------*/

.time_limit_div {
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.time_limit_div .time_left p {
  font-family: var(--main-font);
  font-weight: bold;
}

.time_limit_div .time_left span {
  color: var(--main-color);
  font-weight: bold;
  background-color: #ddf7f8;
  padding: 5px 15px;
  text-align: center;
  border-radius: 5px;
}

.time_limit_div .time_left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.time_limit_div .time_right a {
  color: #fff;
}

.time_limit_div .time_right:hover a {
  color: var(--main-color) !important;
}

.test_parts {
  margin-top: 50px;
}

.accordian {
  width: 100%;
  display: block;
}

.accordian .card {
  box-shadow: 0px 0px 20px #d4d4d4;
  margin-bottom: 20px;
  width: 100%;
  border: none;
  border-radius: 10px !important;
}

.accordian .card-header {
  cursor: pointer;
  padding: 10px 1rem !important;
  margin-bottom: 0;
  background-color: var(--main-color) !important;
  border-bottom: none !important;
  color: #fff !important;
  border-radius: 10px 10px 0 0 !important;
}

.accordian .card-header h3 {
  font-weight: bold;
  font-family: var(--main-font);
  font-size: 20px;
  text-align: center;
}

.accordian .card .card-header {
  position: relative;
}

.accordian .card .card-body {
  padding: 20px;
}

.accordian .card .card-body {
  display: none;
}

.accordian .card:nth-child(1) .card-body {
  display: block;
}

.accordian .card .card-body p {
  font-size: 15px;
  line-height: 24px;
  color: #444444;
  margin: 0px;
}

.accordian .no_div {
  background-color: #fff;
  border: 1px solid #c3c3c3;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accordian .no_div p {
  font-size: 15px !important;
  font-weight: bold;
  font-family: var(--sub-font);
}

.accordian .test_col_margin {
  margin-bottom: 20px;
}

.test_parts .selection_div {
  margin-top: 25px;
}

.test_parts .selection_div h3 {
  font-family: var(--main-font);
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px !important;
}

.selection_div .select_type_text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.selection_div .select_text_main {
  display: flex;
  align-items: center;
  gap: 40px;
}

.selection_div .select_type_text .select_color {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background-color: var(--main-color);
}

.selection_div .select_type_text p {
  font-size: 18px;
  font-weight: 500;
  color: grey;
}

.selection_div .select_type_text .select_box {
  border: 1px solid grey;
  background-color: #fff;
}

.question_box_div .question_card_header {
  padding: 10px 1rem !important;
  margin-bottom: 0;
  background-color: var(--main-color) !important;
  border-bottom: none !important;
  color: #fff !important;
  border-radius: 10px 10px 0 0 !important;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--main-font);
}

.question_box_div .question_card {
  border-radius: 10px !important;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.question_box_div .qustion_box_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.question_box_div .qustion_box_title .question_left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.question_box_div .qustion_box_title .question_right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mcq_box .active {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.mcq_box .active p {
  color: #fff !important;
}

.questions_text_parts {
  padding: 20px;
}

.questions_text_parts h4 {
  font-family: var(--main-font);
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  margin: 25px 0 !important;
}

.answer_box {
  border-radius: 20px;
  padding: 15px;
  background-color: #f5fdff;
  color: black;
  font-size: 18px;
  font-family: var(--main-font);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px !important;
}

.answer_box .ans_left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.answer_box.active {
  background-color: var(--main-color);
  color: #fff;
}

.answer_box input[type="radio"] {
  width: 25px;
  height: 25px;
  background-color: grey;
}

.answer_box input[type="radio"]:checked {
  accent-color: var(--main-color);
}

.button_group {
  margin: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ------------------------------------------------
                 MOCK TEST
-------------------------------------------------*/

/* ------------------------------------------------
                 sign in & sign up
-------------------------------------------------*/

.login_div {
  position: relative;
  height: 100vh;
  width: 100%;
}

.login_div .form_part {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login_div .form_part .card {
  box-shadow: none;
}

.login_div .form_part .form_inn {
  max-width: 400px;
  width: 100%;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 5px;
  border-radius: 10px;
  position: relative;
}

.login_div .form_part .form_inn::after {
  content: "";
  position: absolute;
  top: -40px;
  left: -37px;
  background-image: url(../image/box_png.png);
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  z-index: -1;
}

.login_div .form_part .form_inn::before {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -50px;
  background-image: url(../image/box_png.png);
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  z-index: -1;
}

.login_div .card {
  border: none;
  outline: none;
}

.login_div .form_part .form_inn h4 {
  font-weight: 600;
  font-size: 20px;
  color: var(--main-color);
  text-transform: capitalize;
  font-family: var(--sub-font);
}

.login_div p {
  color: #777777;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--sub-font);
}

.login_div label {
  font-size: 12px;
  color: #777777;
  font-weight: 600;
  font-family: var(--sub-font);
}

.login_div .form_inn .check {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #777777;
}

.login_div .form_inn a {
  color: var(--main-color);
  font-family: var(--sub-font);
  font-weight: 600;
}

.login_div .form_inn .check input {
  margin-right: 5px;
}

.login_div .form-control::placeholder {
  font-size: 14px;
  font-family: var(--sub-font);
}

.login_div .form_inn .but {
  background-color: var(--main-color);
  color: #fff;
  font-weight: 700;
  font-family: var(--sub-font);
}

.login_div .form-control:focus {
  box-shadow: none;
  border-color: var(--main-color);
}

/* ------------------------------------------------
                 sign in & sign up
-------------------------------------------------*/

.form-group label {
  font-size: 14px;
  font-family: var(--sub-font);
  font-weight: 600;
  color: #777;
}

.form-control {
  height: 45px;
  border-radius: 3px !important;
}

.form-group input::placeholder,
.form-group select::placeholder {
  font-size: 14px;
  font-family: var(--main-font);
  font-weight: 400;
}

.form-group .form-select {
  font-size: 14px !important;
  font-family: var(--main-font);
  font-weight: 400;
}

.form-check label {
  font-size: 12px;
  font-family: var(--sub-font);
  font-weight: 600;
  color: #777;
}

.form-group input:focus {
  border-color: var(--main-color);
  box-shadow: none;
  outline: none;
}

.form-check-input:checked {
  box-shadow: none !important;
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

.popup_body .form-select {
  font-family: var(--main-font);
  font-size: 14px;
}

.time_right {
  background-color: var(--main-color);
  font-family: var(--main-font);
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 25px;
  text-align: center;
  transition: 0.4s all;
}

.time_right:hover {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  background-color: #fff;
}

.popup_body h3 {
  text-align: center;
  font-size: 30px;
  font-family: var(--main-font);
  color: var(--main-color);
  font-weight: 600;
  margin-bottom: 15px !important;
}

.popup_outer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 90000000;
  background-color: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease;
}

.popup_outer .popup-card {
  width: 500px;
  gap: 1rem;
  background-color: #ffffff;
  border-radius: 0.2rem;
  padding: 15px 20px;
  position: relative;
}

.popup_outer .popup-card img {
  height: 100%;
  width: 100%;
}

.popup_outer #close-btn {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: var(--main-color);
  cursor: pointer;
  border: none;
  border-radius: 50%;
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 20px;
}

.popup_outer button {
  border: none;
}

/* ------------------------------------------------
                study abroad
-------------------------------------------------*/
/* scoll menu */

.menu_scrollbar {
  z-index: 999;
  padding: 20px;
  background-color: #f5fdff;
}

.menu_scroll_inner {
  border-radius: 5px;
  width: 100%;
  overflow-x: scroll;
  cursor: pointer;
  padding-bottom: 20px;
  white-space: nowrap;
  text-wrap: nowrap !important;
}

.menu_scroll_inner .active {
  color: #117e9b !important;
  font-weight: bold;
}

.menu_scroll_inner a {
  font-weight: 600;
  margin: 0 30px;
  font-family: var(--main-font);
}

.menu_scroll_inner a:hover {
  color: #000;
}

.menu_scroll_inner::-webkit-scrollbar {
  width: 2px;
  height: 3px;
}

.menu_scroll_inner::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  height: 5px;
  width: 5px;
  border-radius: 20px;
}

.sticky1 {
  top: 92px;
  position: fixed !important;
  width: 100%;
}

/* study abroad */

.study_box_title h2 {
  font-family: var(--main-font);
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px !important;
  color: var(--main-color);
}

.study_desc p {
  font-weight: 500;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px !important;
}

.why_study_main .table {
  vertical-align: middle;
}

.why_study_main .table span {
  font-family: var(--sub-font);
  font-weight: bold;
  font-size: 14px;
}

.why_study_main .table p {
  font-family: var(--main-font);
  margin-bottom: 0 !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
}

.why_study_main .table td {
  padding: 15px 10px;
}

.study_desc span {
  font-weight: bold;
  color: #000;
}

.benefits p {
  color: #ada5a5;
}

.why_study_main .popular_course ul li .blue_box {
  max-width: 40px;
}

.why_study_main .popular_course ul li .blue_box span {
  width: 10px;
  height: 10px;
  display: block;
  background-color: var(--main-color);
}

.why_study_main .popular_course ul li p {
  font-weight: bold;
  font-family: var(--main-font);
  margin-bottom: 0 !important;
}

.why_study_main .popular_course ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
}

.why_study_main .popular_course ul {
  column-count: 2;
}

.video_div {
  position: relative;
}

.overlays1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.video_div .youtube_icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.youtube_icon i {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  color: red;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.same_margin_study {
  margin-bottom: 50px;
}

.intake_para {
  color: #000 !important;
}

.study_desc label {
  color: #117e9b;
  font-size: 20px;
  font-family: var(--main-font);
  font-weight: bold;
  margin-bottom: 20px;
}

.visa_doc ul {
  column-count: 1 !important;
}

.visa_doc ul li p {
  font-weight: 500 !important;
}

.faq_warp .faq_box {
  border: 1px solid #f0f0f0;
}

.faq_warp .faq_box .up {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  background-color: #f9f9f9;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

.faq_warp .faq_box .up,
.faq_warp .faq_box .down {
  padding: 15px;
}

.faq_warp .faq_box {
  margin-bottom: 30px;
}

.faq_warp .down {
  display: none;
}

.faq_warp .down p {
  font-weight: 500;
  font-size: 16px;
  font-weight: 500;
}

.right_study_form {
  position: sticky;
  top: 230px;
  background-color: #f5fdff;
  padding: 20px;
  border-radius: 10px;
}

.right_study_form h2 {
  font-size: 22px;
  font-weight: bold;
  font-family: var(--main-font);
  margin-bottom: 20px !important;
}

/* study abroad hero */

.study_abroad_hero_main {
  background-image: url(../image/c13.avif);
  width: 100%;
  background-position: center;
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.study_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.study_hero_left h2 {
  font-size: 40px;
  font-family: var(--main-font);
  color: #fff;
  font-weight: bold;
}

.study_hero_left h2 img {
  width: 50px;
  height: 50px;
  border-radius: 40px;
}

.study_hero_left label {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--sub-font);
  color: #fff;
  margin: 15px 0;
}

.study_hero_left p {
  color: #fff;
  font-size: 16px;
  font-family: var(--main-font);
  font-weight: 500;
}

.study_hero_text {
  padding-top: 100px;
  position: relative;
  z-index: 999;
}

.study_hero_outer {
  display: flex;
  align-items: center;
  height: 100%;
}

.study_hero_right .image_part img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ...................................................
                    University detail
......................................................*/
.left_uni_img {
  position: relative;
}

.left_uni_img::after {
  content: "";
  position: absolute;
  left: -33px;
  top: -32px;
  background-image: url(../image/box_png.png);
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  z-index: -1;
}

.left_uni_img::before {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -46px;
  background-image: url(../image/box_png.png);
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  z-index: -1;
}

.left_uni_img .image_part img {
  border-radius: 10px;
}

.uni_logo img {
  width: 80px;
  height: unset;
  display: flex;
  justify-content: center;
  align-items: center;
}

.uni__slider img {
  width: 1903px;
  height: 700px;
  object-fit: cover;
}

.uni_about_us_main .uni_about_text {
  padding-left: 40px;
}

.uni_about_us_main .uni_about_text label {
  font-size: 25px;
  font-family: var(--main-font);
  font-weight: 700;
  margin-bottom: 20px !important;
}

.uni_about_us_main .uni_about_text p {
  font-family: var(--main-font);
  font-weight: 500;
  margin-bottom: 20px !important;
}

.uni_third_section {
  background-color: #f6f6f6;
  padding: 25px;
  height: 100%;
}

.uni_third_section h6 {
  font-size: 25px;
  font-family: var(--main-font);
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 30px !important;
}

.download_box_image {
  border: 3px solid var(--main-color);
  background-color: #fff;
  padding: 30px 30px 40px 30px;
  border-radius: 20px;
  text-align: center;
}

.download_box_image h2 {
  font-weight: 700;
  font-family: var(--main-font);
}

.download_box_image h5 {
  font-family: var(--sub-font);
  margin: 20px 0 !important;
}

.download_box .download_btn {
  margin-top: 40px;
}

.download_btn {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.uni_third .image_part img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ...................................................
                    University detail
......................................................*/

/* University Gallery */

.gallery_main .item_list {
  display: flex;
  justify-content: center;
}

.gallery_main .gallery .item_list ul {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
}

.gallery_main .gallery .item_list ul li {
  padding: 8px 20px;
  color: #777;
  font-family: var(--main-font);
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
}

.gallery_main .item_list ul li.active {
  color: #fff !important;
  background-color: var(--main-color);
}

.gallery_main .gallery_img img {
  width: 418px;
  height: 100%;
  object-fit: cover;
}

.gallery_main .gallery_img {
  justify-content: center;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery_main .box {
  position: relative;
}

.gallery_main .gallery_icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.5s all;
}

.gallery_main .gallery_icons i {
  width: 45px;
  height: 45px;
  font-size: 30px;
  color: var(--main-color);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.gallery_main .box:hover .gallery_icons {
  opacity: 1;
}

/* uni hero */
.uni_hero_slider {
  /* margin-top: 100px; */
  position: relative;
}

.hero_uni_text {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
}

.hero_uni_text {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  text-align: center;
}

.hero_logo_outer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero_text_logo {
  background: #fff;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
}

.hero_uni_text img {
  width: 100px !important;
  height: unset;
}

.hero_uni_text h2 {
  font-weight: bold;
  color: #fff;
  font-family: var(--main-font);
  margin-bottom: 10px !important;
}

.hero_uni_text p {
  font-family: var(--main-font);
  font-weight: 600;
  color: #fff;
}

.uni__slider .owl-next {
  position: absolute;
  right: 5%;
  top: 43%;
}

.uni__slider .owl-prev {
  position: absolute;
  top: 43%;
  left: 5%;
}

.owl-nav span {
  font-size: 30px;
  background-color: #fff !important;
  color: var(--main-color);
  padding: 5px 20px;
  transition: 0.5s;
  border-radius: 5px;
}

.owl-nav span:hover {
  background: #fff !important;
}

/* uni video galley */

.video_gallery .video_gallery_box {
  position: relative;
  margin-bottom: 20px;
}

.video_overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
}

.video_icon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.video_icon i {
  color: #fff;
  font-size: 40px;
}

.video_gallery .video_gallery_box img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

/* application form */
.application_form_main {
  margin: 20px 0;
}

.application_form,
.sec_part_form {
  padding: 20px;
  background-color: #fff;
  border: 2px solid black;
}

.application_form .application_header .app_left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.application_form .application_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.application_header {
  padding-bottom: 20px;
}

.application_header .logo img {
  width: 150px;
  height: unset;
}

.application_header .uni_name h2 {
  font-size: 35px;
  font-weight: bold;
  font-family: var(--main-font);
}

.application_header .uni_name p {
  font-family: var(--sub-font);
  font-weight: 400;
  margin: 5px 0 !important;
}

.application_header .uni_name h5 {
  font-weight: bold;
  font-family: var(--main-font);
}

.uni_address p {
  text-align: center;
  padding-top: 10px !important;
  border-top: 2px solid black;
  font-family: var(--main-font);
  font-weight: 600;
  color: var(--main-color);
}

.uni_address p a {
  font-weight: 700;
  color: blue !important;
  text-transform: none;
}

.application_header .app_right .input_group {
  display: flex;
  align-items: center;
}

.input_group input {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  outline: none;
  border-bottom: 1px solid black !important;
}

.input_group .first_input input {
  max-width: 500px;
  text-align: center;
}

.input_group .sec_input input {
  max-width: 100px;
  text-align: center;
}

.app_right p {
  font-weight: bold;
  font-family: var(--main-font);
}

/* applicatio body */

.application_body {
  margin-top: 50px;
}

.application_body .app_body_right {
  display: flex;
  justify-content: end;
}

.application_body .app_body_right .app_body_right_text p {
  font-weight: 700;
  font-family: var(--main-font);
  font-style: italic;
}

.application_body .table label {
  font-weight: bold;
  font-family: var(--main-font);
}

.application_body .table td {
  padding-left: 0;
  padding-right: 0;
}

.app_body_right_text .text_with_input input {
  padding-left: 10px;
  width: 100%;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  outline: none;
  border-bottom: 1px solid black !important;
  border-radius: 0 !important;
  font-family: var(--main-font);
  font-weight: 500;
}

.app_body_right_text .text_with_input {
  display: flex;
  align-items: center;
  gap: 15px;
}

.app_body_right_text .body_first {
  max-width: 300px;
}

/* MAIN BODY CSS */
.main_app_body {
  margin-top: 30px;
}

.main_app_body h2 {
  font-size: 20px;
  font-weight: bold;
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 20px !important;
}

.main_app_body p {
  text-wrap: nowrap;
  font-weight: 600;
  font-family: var(--main-font);
}

.main_text_input input {
  padding-left: 10px;
  width: 100%;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  outline: none;
  font-family: var(--main-font);
  font-weight: 400;
  border-bottom: 1px solid black !important;
  border-radius: 0 !important;
}

.main_text_input .same_text_input_class {
  display: flex;
  gap: 10px;
}

.main_text_input h6 {
  font-size: 13px;
  font-weight: 600;
  color: grey;
  font-family: var(--main-font);
}

.text_with_label_div h6 {
  margin: 7px 0 !important;
  text-align: center;
}

.main_text_input .table input {
  max-width: 300px !important;
}

.same_text_input_class .sex_input {
  max-width: 200px;
}

/* admission form  */

.application_form_div {
  padding: 20px;
  border: 2px solid black;
}

.application_form_div .title h2 {
  font-size: 25px;
  text-align: center;
  font-family: var(--main-font);
  font-weight: bold;
  padding-bottom: 20px !important;
  border-bottom: 2px solid rgb(224, 224, 224);
}

.application_header_part .app_header_left h2 {
  font-weight: 600;
  font-family: var(--main-font);
  text-align: center;
  font-size: 25px;
  color: var(--main-color);
}

.app_header_left p {
  margin-top: 10px !important;
  font-weight: 500;
  color: #777777;
  font-size: 16px;
}

.application_header_part {
  margin-top: 30px !important;
}

.app_title_outer {
  display: flex;
  align-items: center;
  height: 100%;
}

.application_header_part .pic_div {
  border: 1px solid black;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 50%;
}

.application_header_part .pic_div p {
  font-weight: 600;
  font-family: var(--main-font);
}

/* form body */
.app_form_dody_div {
  margin-top: 30px;
}

.app_text_input_div {
  display: flex;
  gap: 10px;
  /* margin-bottom: 20px; */
  align-items: end;
}

.app_text_input_div p,
.app_text_input_div1 p {
  font-family: var(--main-font);
  font-weight: 700;
  text-wrap: nowrap;
}

.app_text_input_div1 span,
.app_text_input_div span {
  font-weight: 500;
  font-family: var(--main-font);
}

.app_text_input_div input {
  padding-left: 15px;
  font-family: var(--main-font);
  font-weight: 500;
  width: 100%;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  outline: none;
  border-bottom: 1px solid black !important;
  border-radius: 0 !important;
}

.app_text_input_div1 {
  display: flex;
  gap: 10px;
}

.app_text_input_div1 label {
  color: black;
  font-size: 16px;
  font-weight: 400;
}

.app_text_with_label_div h6 {
  font-size: 12px;
  color: grey;
  text-align: center;
}

.application_form_main h6 {
  padding-left: 12px !important;
  font-weight: bold;
  font-family: var(--main-font);
  margin: 8px 0 !important;
  font-size: 13px;
}

.ul_count {
  column-count: 4;
}

.ul_count1 {
  column-count: 2;
}

.application_header_part .col-8,
.application_header_part .col-4 {
  padding: 5px !important;
}

/* admission form  */

.form_open {
  position: fixed;
  top: 20%;
  right: 0px;
  z-index: 999;
}

.form_open a {
  color: #fff;
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 600;
  right: -60px;
  top: 50.5%;
  transform: rotate(-270deg);

  border-radius: 0 0 5px 5px;
  cursor: pointer;
  padding: 8px 14px;
  position: fixed;
  text-align: center;
  text-decoration: none;
  z-index: 1001;
  background-color: var(--main-color);
  display: none;
  transition: 0.4s all;
}

.form_open a:hover {
  background-color: #fff;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.form_show a {
  display: block;
}

.user_image {
  margin-left: 50%;
  position: relative;
}

.photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 1px solid black;
}

#form_file {
  display: none;
}

.form_uploadbtn {
  position: absolute;
  left: 82px;
  bottom: -20px;
}

.form_uploadbtn i {
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* mbbs abroad form */

.apply_forms {
  border-radius: 10px;
  background-color: #fff;
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.apply_forms .title h2 {
  font-size: 25px;
  text-align: center;
  font-family: var(--main-font);
  font-weight: bold;
  padding-bottom: 20px !important;
  border-bottom: 2px solid rgb(224, 224, 224);
}

.student_upload_image {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}

.student_upload_image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 1px solid grey;
}

.student_upload_image .upload_btn {
  background: var(--main-color);
  color: white;
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  border-radius: 10px;
}

.student_upload_image p {
  font-family: var(--sub-font);
  font-size: 14px;
  font-weight: 500;
  color: #777;
  margin-top: 5px !important;
}

.apply_forms .form-group {
  margin-bottom: 20px;
}

.apply_forms .subtitles {
  margin-top: 20px;
}

.apply_forms .subtitles h6 {
  font-family: var(--main-font);
  color: var(--main-color);
  font-weight: bold;
}

.subtitles label {
  font-family: var(--sub-font);
  color: red;
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px !important;
  margin-bottom: 20px;
}

.form-control[type="file"] {
  font-size: 14px;
  overflow: hidden;
  padding: 11px 20px;
}

button {
  border: none;
}

.email_p {
  text-transform: lowercase;
}

.highlight span {
  color: red;
}

/* mbbs detail */

.mbbs_abroad_hero_main {
  margin-top: 100px;
  background-image: url(../image/c13.avif);
  width: 100%;
  background-position: center;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.mbbs_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.mbbs_title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.mbbs_title h2 {
  font-size: 40px;
  font-family: var(--main-font);
  font-weight: bold;
  padding-top: 300px !important;
  z-index: 999;
  position: absolute;
  color: white;
}

.mbbs_counselling .image_part img {
  width: 120px !important;
  height: unset;
  max-width: 50px;
}

.img_border {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  padding: 5px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
}

.counselling_box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.counselling_box p {
  padding-top: 10px !important;
  font-size: 14px;
  font-weight: bold;
  font-family: var(--sub-font);
}

/* uni section add home page */

.uni_logo_name {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.uni_logo_part img {
  width: 600px;
  height: unset;
}

/* .ygu_main_div .uni_logo_part img {
  width: 100px;
  height: 100px;
 
} */

.uni_logo_name h2 {
  font-size: 40px;
  font-family: var(--main-font);
  font-weight: 600;
  margin-top: 10px !important;
}

.uni_logo_name h4 {
  font-family: var(--sub-font);
  font-weight: 500;
  font-size: 20px;
  margin-top: 5px !important;
  color: #777;
}

.home_uni_slider_main {
  margin-top: 50px;
}

.home_uni_slider .home_uni_img_box {
  display: flex;
  justify-content: center;
}

.home_uni_slider .home_uni_img_box img {
  width: 100px !important;
  height: unset;
}

/* home all country section */

.home_country_section {
  border: 1px solid #dadada;
  padding: 20px;
}

.country_flag_img_div {
  text-align: center;
}

.country_flag_img_div img {
  padding: 2px;
  border: 1px solid #dadada;
  width: 100px;
  height: 50px;
  object-fit: cover;
}

.country_flag_img_div p {
  margin-top: 5px !important;
  font-size: 14px;
  font-family: var(--main-font);
  font-weight: bold;
}

/* course detail page */

.course_detail_image_div {
  margin-top: 150px;
}

.course_detail_img_text {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.course_detail_image_div .image_part img {
  border-radius: 10px 10px 0 0;
}

.course_detail_img_text .course_name_img_div .course_clg_img img {
  width: unset;
  height: 80px;
  border-radius: 10px;
  border: 1px solid #dadada;
}

.course_name_img_div {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
}

.course_name_img_div .course_clg_name h4 {
  font-family: var(--main-font);
  color: var(--main-color);
  font-weight: bold;
}

.course_name_img_div .course_clg_name p {
  margin-top: 5px !important;
  color: var(--text-color);
  font-weight: 500;
}

/* .who_wirrten_div{
  padding: 20px;
  border-radius: 10px;
  background-color: #f7f7f7;
}
.who_wirrten_div .written_person{
  display: flex;
  align-items: center;
  gap: 15px;
}
.who_wirrten_div .written_person .written_img img{
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}
.who_wirrten_div .written_person .written_name p{
  font-family: var(--sub-font);
  font-weight: bold;
}
.who_wirrten_div .study_box_title h2{
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}

.who_wirrten_div .study_box_title p{
  margin-top: 5px !important;
  font-family: var(--main-font);
  font-weight: 500;
} */

.sub_title_p {
  font-size: 20px !important;
  font-family: var(--sub-font);
  color: var(--main-color);
}

.first_study h6 {
  font-family: var(--main-font);
  font-weight: bold;
}

.course_detail_tab .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--main-color) !important;
  background: none !important;
  font-family: var(--main-font);
  font-weight: bold;
}

.course_detail_tab .nav-pills .nav-link {
  color: black !important;
  font-family: var(--main-font);
  font-weight: bold;
  font-size: 18px;
}

.course_detail_scroll {
  padding: 15px !important;
}

/* top course */
.top_margin_course {
  margin-bottom: 50px !important;
}

.top_course_div button {
  text-transform: capitalize;
  margin-right: 10px;
  font-family: var(--main-font);
  font-weight: 600;
  padding: 15px 20px;
  text-align: center;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: 0.5s all;
  margin-bottom: 15px !important;
}

.top_course_div button:hover {
  color: #fff !important;
  background-color: var(--main-color);
}

.top_course_div button:hover a {
  color: #fff !important;
}

.course_search {
  font-family: var(--main-font);
  font-weight: 600;
  border-color: var(--main-color) !important;
  background-color: var(--main-color) !important;
  color: #fff;
}

.course_serah_bar {
  border-radius: 10px;
  padding: 10px;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.course_serah_bar input {
  border: none;
}

.course_program_box {
  height: 100%;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #dadada;
}

.course_program_box .course_top_title {
  padding-bottom: 20px;
  border-bottom: 1px solid #dadada;
}

.course_program_box .course_top_title p {
  font-size: 13px;
  font-family: var(--main-font);
  color: #777;
  font-weight: 500;
}

.course_program_box .course_top_title h4 {
  margin-top: 5px !important;
  color: var(--main-color);
  font-family: var(--sub-font);
  font-weight: 600;
}

.course_prog_detail .prog_left p {
  font-family: var(--main-font);
  font-weight: 500;
  margin-bottom: 15px !important;
}

.course_prog_detail .fees_div p {
  font-size: 14px;
  color: #777;
  font-family: var(--main-font);
  font-weight: 500;
  margin-bottom: 10px !important;
}

.course_prog_detail .note_div p {
  font-size: 14px;
  font-family: var(--main-font);
  font-weight: 600;
  max-width: 300px;
}

.course_prog_detail a {
  font-size: 14px;
  font-weight: bold;
  font-family: var(--sub-font);
  color: var(--main-color);
  border-bottom: 2px solid var(--main-color);
}

.course_prog_detail .prog_top {
  display: flex;
  gap: 100px;
}

.course_prog_detail .note_div {
  display: flex;
  justify-content: space-between;
}

/* course faq */

.course_faq label {
  font-size: 16px;
  color: black;
  margin-bottom: 5px !important;
}

.course_doc ul {
  column-count: 2 !important;
}

.course_uni_address {
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #dadada;
}

.course_uni_address h5 {
  color: var(--main-color);
  font-family: var(--main-font);
  font-weight: bold;
  margin-bottom: 25px !important;
}

.course_uni_address .course_uni_div label {
  font-size: 18px;
  font-weight: var(--sub-font);
  font-weight: 600;
  color: #000;
}

.course_uni_address .course_uni_div p {
  text-wrap: wrap;
  font-family: var(--main-font);
  font-weight: 500;
  color: #777;
}

.course_uni_div a {
  word-wrap: break-word;
  color: var(--main-color);
}

.course_email {
  word-wrap: break-word;
}

.course_uni_img_galry img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
}

.uni_img_row {
  display: flex;
  flex-direction: row !important;
}

.tawk-branding {
  display: -ms-flexbox;
  display: none !important;
  -ms-flex-align: center;
  align-items: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 11;
  animation: action 1s infinite alternate;
  background-color: var(--main-color) !important;
  color: #fff !important;
}

@keyframes action {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-15px);
  }
}

.view_button {
  background: none;
  border-bottom: 2px solid var(--main-color);
  color: var(--main-color);
  font-weight: 600;
}

/* no found image */

.no_found_img {
  margin-top: 30px !important;
  display: flex;
  justify-content: center;
}

.no_found_img img {
  width: 250px;
}

.brouchure_download {
  text-align: center;
  background: var(--main-color);
  color: #fff;
  padding: 10px 15px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
}

.brouchure_download i {
  padding: 0 10px 0 0;
}

.doted li {
  list-style-type: disc;
  padding: 0 0 10px 0;
}

.doted {
  padding-left: 25px;
}