/*==============================================
 Website Name: admission setu
    Description: Abroad education portal 
    Version: 1.0.0
    Author: Fusion Informatis
================================================*/

/*=============================================
Montserrat Font Family
===============================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*=============================================
Global Declaration
===============================================*/

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  padding: 0;
  padding-top: 143px;
  font-style: normal;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  color: #303030;
  /* background-color: #E2E2E2; */
  font-weight: 400;
}

a {
  text-decoration: none;
  transition: all 500ms ease;
  color: #0B50B5;
}

a:hover {
  color: #0B50B5;
  text-decoration: none;
  outline: none;
}

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

.text-muted {
  color: #9a9a9a !important;
}

section {
  padding-top: 40px;
  padding-bottom: 40px;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.unorder {
  padding-left: 16px;
  margin-bottom: 15px;
}

ul.unorder li {
  list-style-type: disc;
  margin-bottom: 5px;
}

.w-50 {
  width: 48% !important;
}

.width50 {
  width: 50%;
}

.w-75 {
  width: 75%;
}

.w-130 {
  width: 130px;
}

.body-gray {
  background-color: #F5F5F5;
}
.light-gray{
  background-color: #eff1f5;
}
.pl-16 {
  padding-left: 16px;
}

.desktop-hide {
  display: none !important;
}

.dtext-end {
  text-align: right;
}

.block {
  display: block !important;
  width: 100% !important;
}

figcaption {
  margin-top: 5px;
}

.table thead>tr>th {
  vertical-align: bottom;
  border-bottom: 2px solid hsl(0, 0%, 87%);
}
.avtar{
  width: 32px;
  height: 32px;
  border-radius: 100%;
}
.avtar img{
  width: 32px;
  height: 32px;
  border-radius: 100%;
  object-fit: cover;
}
/*==============================
Margin / padding / listign class Css
================================*/
ul.ListInline li {
  display: inline-block;
}

ul.socialmediaList li {
  display: inline-block;
}

ul.socialmediaList li a {
  display: block;
  padding: 0 10px;
  color: #FFF;
}

.overlay-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, .4);
}

.z-index1 {
  z-index: 1;
}

.dms-3 {
  margin-left: 30px;
}

/*====================================
Header and responsive mobile menu
======================================*/
.top-bar {
  background: hsla(216, 89%, 38%, 1);
  background: linear-gradient(0deg, hsla(216, 89%, 38%, 1) 0%, hsla(216, 89%, 38%, 1) 12%, hsla(240, 35%, 93%, 1) 12%, hsla(240, 35%, 93%, 1) 100%);
  background: -moz-linear-gradient(0deg, hsla(216, 89%, 38%, 1) 0%, hsla(216, 89%, 38%, 1) 12%, hsla(240, 35%, 93%, 1) 12%, hsla(240, 35%, 93%, 1) 100%);
  background: -webkit-linear-gradient(0deg, hsla(216, 89%, 38%, 1) 0%, hsla(216, 89%, 38%, 1) 12%, hsla(240, 35%, 93%, 1) 12%, hsla(240, 35%, 93%, 1) 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#0B50B5", endColorstr="#0B50B5", GradientType=1);
  padding: 10px 0;
}

.top-bar a {
  color: #303030;
}


header {
  background: #FFFFFF;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
}

@media (min-width : 992px) {
  /* .offcanvas {
    visibility      : visible;
    position        : relative;
    background      : none;
    border          : none;
    justify-content : end;
    color           : red;
  } */
}

@media (max-width : 992px) {
  .offcanvas {
    width: 250px !important;
    background-color: #FFF;
  }

  .offcanvas-start-lg {
    top: 0;
    left: 0;
    border-right: 1px solid rgba(0, 0, 0, .2);
    transform: translateX(-100%);
  }

}

.navbar-light {
  background-color: #142733;
}

.navbar-light .navbar-nav li a {
  color: #303030;
  font-weight: 500;
}

.hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.hamburger div {
  -ms-flex-item-align: end;
  align-self: flex-end;
  height: 2px;
  width: 100%;
  background: #303030;
  border-radius: 2px;
}

.hamburger .meat {
  width: 75%;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.hamburger .bottom-bun {
  width: 100%;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.hamburger:hover div,
.hamburger.active div {
  width: 100%;
}

.hamburger:hover .top-bun,
.hamburger.active .top-bun {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate;
  animation: burger-hover 1s infinite ease-in-out alternate;
}

.hamburger:hover .meat,
.hamburger.active .meat {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
  animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
}

.hamburger:hover .bottom-bun,
.hamburger.active .bottom-bun {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
  animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
}

@-webkit-keyframes burger-hover {
  0% {
    width: 100%;
  }

  50% {
    width: 50%;
  }

  100% {
    width: 100%;
  }
}

@keyframes burger-hover {
  0% {
    width: 100%;
  }

  50% {
    width: 50%;
  }

  100% {
    width: 100%;
  }
}

.navbar {
  border-top: 1px solid #DFDFDF;
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 1);
  border-color: transparent;
  margin-right: 15px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  /* .navbar .nav-item:hover .nav-link {
    color: #fff;
  } */

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}


.top-header {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #FFF;
}

ul.top-nav li {
  display: inline-block;
}

ul.top-nav li a {
  display: block;
  color: #161616;
  padding-left: 10px;
  padding-right: 10px;
}

ul.topLinknav li {
  display: inline-block;
}

ul.topLinknav li a {
  display: block;
  padding: 0 1rem;
}


.search-textbox {
  position: relative !important;
  width: 40% !important;
}

/* 
.search-textbox::before{
content: "\F52A";
font-family: "bootstrap-icons";
color: #ccc;
position: absolute;
top: 0;
left: 0;
} */

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

.navbar-light {
  background-color: #FFF;
}

.navbar-light .navbar-nav .nav-link {
  color: #303030;
  display: flex;
  align-items: center;
  text-align: center;
  padding-right: 2rem;
  padding-left: 2rem;
  font-weight: 600;
  font-size: 1rem;
}

.navbar-light .navbar-nav .nav-link.dropdown-toggle::after {
  content: "\F282";
  font-family: "bootstrap-icons";
  border: none;
  top: 0px;
  position: relative;
  right: -5px;
}

.navbar-light .navbar-nav .nav-link i {
  display: block;
  font-size: 1.2rem;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #0b50b7;
}

.navbar-light .navbar-nav .nav-link.active.dropdown-toggle::after {
  transform: rotate(270deg);
}

.pipe {
  color: #D9D9D9;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  border: none;
  padding: 15px 15px;
  min-width: 200px;
  top: 150%;
}

.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item {
  color: #1D1D1D !important;
  position: relative;
}


.navbar-nav.dropdown:hover ul.dropdown-menu {
  display: block;
}

ul.top-menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
  float: left;
}

ul.top-menu li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-block;
  position: relative;
}

ul.top-menu li a {
  display: block;
  padding: 0.2rem 0.4rem;
  top: -4px;
  color: #000;
  text-align: center;
  font-weight: 600;
}

ul.top-menu li a i {
  font-size: 1.2rem;
}

ul.top-menu li .dropdown>.btn {
  color: #FFF;
}

.notification-dropdown .indicator,
ul.top-menu li a .indicator {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  top: -4px;
  background-color: #131325;
  right: -4px;
  text-align: center;
  font-size: 0.6rem;
  line-height: 18px;
  color: #FFF;
}

.dropdown-mega-menu { 
  width: 1024px;
  left: -330px;
}

/*==================================
Slider CSS
====================================*/
.hero-section {
  padding: 0px;
}

.carousel-caption {
  text-align: left;
}

.slider-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.carousel-caption {
  top: 40%;
}

/*====================================
Typography
=====================================*/
.section-title {
  display: block;
  margin-bottom: 30px;
}

.section-title-medium {
  display: block;
  margin-bottom: 15px;
}

.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6 {
  font-size: 3rem;
  font-weight: bold;
}

.section-title-medium h1,
.section-title-medium h2,
.section-title-medium h3,
.section-title-medium h4,
.section-title-medium h5,
.section-title-medium h6 {
  font-size: 2.5rem;
  font-weight: bold;
}

.title-regular {
  font-size: 1.5rem;
  font-weight: 600;
}

.title-small {
  font-size: 1.125rem;
  font-weight: 600;
}

.text-title-mute {
  color: #6d96d3;
}

.text-light {
  color: #575757 !important;
}

.text-orange {
  color: #FC6440;
}

.text-mute {
  color: #A6A6A6;
}

.text-yellow {
  color: #FBBC04;
}

.p-12 {
  font-size: 12px;
}

.p-14 {
  font-size: 14px;
}

.p-17 {
  font-size: 17px;
}

.p-26 {
  font-size: 26px;
}

.p-300 {
  font-weight: 300;
}

.p-600 {
  font-weight: 600;
}

b,
strong {
  font-weight: 600;
}

.Twoline-ellipsis {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  width: 100%;
  height: 45px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
ul.list{
  padding-left: 1rem;
}
ul.list li{
  list-style-type: disc;
}
.desktop-end{
  text-align: right;
}
.rounded{
  border-radius: 100px !important;
}
.active-badge{
  background-color: #003075 !important;
  color: #FFF;
}
.cursor-pointer{
  cursor: pointer;
}
/*=====================================
Button and Form control css
======================================*/
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  border-radius: 6px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-sm,
.btn-group-sm>.btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.btn-orange {
  background-color: #FC6440;
  border-color: #FC6440;
  color: #FFFF;
}

.btn-orange:hover,
.btn-secondary.active {
  background-color: #EA370C;
  border-color: #EA370C;
  color: #FFF;
}

.btn-primary {
  background-color: #0B50B5;
  border-color: #0B50B5;
  color: #FFF;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
  background-color: #003075;
  border-color: #003075;
  color: #FFF;
}
.btn-outline-primary{
  background-color: transparent;
  border-color: #003075;
  color: #003075;
}
.btn-outline-primary:hover{
  background-color: #003075;
  border-color: #003075;
  color: #FFF;
}
.btn-loan {
  background-color: #E3FFEA;
  border-color: #E3FFEA;
  color: #34A853;
  border-radius: 100px;

}

.btn-lg {
  padding: 1rem 3rem;
}

.btn-white-outline {
  background-color: transparent;
  border-color: #FFF;
  color: #FFF;
}

.btn-white-outline:hover,
.btn-white-outline.active {
  background-color: #0b50b7;
  border-color: #0b50b7;
  color: #FFF;
}

.btn-white {
  background-color: #FFF;
  border-color: #FFFF;
  color: #303030;
}

/*Form control css*/
.form-group {
  display: block;
  margin-bottom: 20px;
  position: relative;
}
.form-group label{
  margin-bottom: 5px;
  font-size: 14px;
}
.form-control {
  display: block;
  width: 100%;
  padding: 1rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #303030;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #D9D9D9;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 6px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-group .icon-right {
  position: absolute;
  top: 16px;
  right: 15px;
  color: #A6A6A6;
  font-size: 1.3rem;
}

.form-group .icon-right:hover {
  color: #303030;
}

.was-validated .form-control:valid,
.form-control.is-valid,
.was-validated .form-control:invalid,
.form-control.is-invalid {
  background-image: none;
}

.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #34A853;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #FF6C6C;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  padding: 1rem 1rem;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #FF6C6C;
  font-weight: 300;
}

.form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ACACBC;
  opacity: 1;
  /* Firefox */
}

.form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ACACBC;
}

.form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #ACACBC;
}

.form-check-input:checked {
  background-color: #0B50B5;
  border-color: #0B50B5;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #0B50B5;
  background-color: #F9F9F9;
}
.btn-light {
  color: #000 !important;
  background-color: #e9ecef !important;
  border-color: #e9ecef !important;
}

/*==================================
Accodian panel CSS
===================================*/
.accordion-item {
  border: 1px solid #E8E8F4 !important;
  margin-bottom: 15px;
  border-radius: 6px !important;
}

.accordion-button {
  border-radius: 6px !important;
  font-weight: 500;
  color: #303030;
}

.accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: #FFFF;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

/*===================================
Footer CSS
====================================*/
.Footer {
  background-color: #F5F5F5;
  border-top: 1px solid #D9D9D9;
  padding: 40px 0;
}

ul.socialmediaList2 li {
  display: inline-block;
  margin-right: 5px;
}

ul.socialmediaList2 li a {
  display: block;
  padding: 5px 10px;
  color: #FFF;
  background-color: #303030;
  border-radius: 6px;
}

.seprator {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #E9E9F3;
  margin-top: 30px;
  margin-bottom: 30px;
}

ul.quicklinks li {
  display: block;
}

ul.quicklinks li a {
  display: block;
  padding: 3px 0;
  color: #303030;
}

/*==================================
Modal dialog css
===================================*/
.modal-backdrop.show {
  opacity: 0.7;
}
.modal-content {
  border-radius: 6px;
  border: none;
}

.modal-header {
  background-color: #0B50B5;
  color: #FFF;
  border-radius: 6px 6px 0 0;
}

.btn-close {
  box-sizing: content-box;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.25em 0.25em;
  color: #FFF;
  background-image: url("../img/x-circle.svg");
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.7;
  display: block;
  font-size: 1.5rem;
}

 .btn-close2 {
  box-sizing: content-box;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.25em 0.25em;
  color: #FFF;
  background-image: url("../img/x-circle-black.svg");
  background-repeat: no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.7;
  display: block;
  font-size: 1.5rem;
    background-color: transparent;
    position: absolute;
    top: 15px;
    right:0px;
    cursor: pointer;
}
/*==================================
Search area
===================================*/
ul.FlagListing li {
  display: inline-block;
}

ul.FlagListing li a {
  display: block;
  padding: 15px 40px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  text-align: center;
  color: #303030;
  margin-right: 30px;
}

ul.FlagListing li a img {
  width: 64px;
  height: auto;
  margin-bottom: 15px;
}

ul.FlagListing li a P {
  margin-bottom: 0;
}

ul.bdgeList li {
  display: inline-block;
  margin-right: 5px;
  background-color: #E9E9F3;
  width: fit-content;
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 14px;
  margin-bottom: 5px;
}

.remove {
  font-size: 1rem;
  cursor: pointer;
}

.sidebar-widget {
  background-color: #FFF;
  box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  height: 100%;
}

.sidebar-widget .sidebar-header {
  padding: 15px;
  border-bottom: 1px solid #E9E9F3;
}

.sidebar-widget .sidebar-body {
  padding: 15px;
  position: relative;
}

#Filter_accordian .accordion-item {
  border-radius: 0px !important;
  margin-bottom: 0px;
}

#Filter_accordian .accordion-button:not(.collapsed) {
  color: #303030 !important;
}
/*==================================
Login required
===================================*/
.loginrequiredModal{
  position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.0);
    -webkit-transition: all ease-out .5s;
  -moz-transition: all ease-out .5s;
  -o-transition: all ease-out .5s;
  transition: all ease-out .5s;
    display: none;
}
.loginrequiredModal .modal-dialoge{   
    align-items: center;   
    text-align: center;
    position: relative;
    width: 300px;
    margin: 0.5rem;
    pointer-events: none;
    color: #FFF;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}
.activemodal{
  display: block;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: all ease-out .5s;
  -moz-transition: all ease-out .5s;
  -o-transition: all ease-out .5s;
  transition: all ease-out .5s;
}
/*==================================
Registration section
====================================*/
.registrationSection_bg{
  background-image: url("../img/registration-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  max-height: 668px;
  min-height: 668px;
}
/*===================================
Card design
====================================*/
.FlatCard {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  border: 1px solid transparent;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 6px;
  cursor: pointer;
  transition: all 500ms ease;
}

.box-shadow1 {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.university-icon {
  width: 84px;
  height: 84px;
  padding: 5px;
  border: 1px solid #E9E9F3;
  text-align: center;
  border-radius: 6px;
}

.university-icon img {
  width: 70px;
  height: 70px;
  border-radius: 3px;
}

.bg-white {
  background-color: #FFF;
}

.FlatCard .card-header {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom: none;
}

.card-hover {
  border: 1px solid transparent;
}

.card-hover:hover {
  border-color: #0B50B5;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.FlatCard .top-image {
  width: 100%;
  height: 180px;
  border-radius: 6px 6px 0 0;
  object-fit: cover;
}

.university-logo {
  position: relative;
  background-color: #FFF;
  border-radius: 6px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 15px;
  width: 120px;
  height: 120px;
  margin: auto;
  margin-top: -50px;
}

.university-logo img {
  width: 90px;
  height: 90px;
}

.price-details-table {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 10px 0;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.price-details-table .price-title {
  max-width: 68%;
  font-size: 0.9rem;
}

ul.costDuratilList li {
  display: block;
  margin-bottom: 15px;
}

/*==================================
Pie Chart
===================================*/
#chart-wrap {
  display: flex;
  flex-direction: row;
  height: auto;
  justify-content: center;
  margin: auto;
  max-width: 500px;
  position: relative;
  width: 100%;
}

#chart-wrap .chart-tooltip {
  margin-left: 15px;
  position: absolute;
  z-index: 10;
}

#chart-wrap .chart-tooltip .chart-tooltip-wrap {
  background-color: #181818;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  display: block;
  padding: 0.875rem;
}

#chart-wrap .chart-tooltip .chart-tooltip-wrap p {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 479px) {
  #chart-wrap {
    flex-direction: column;
  }
}

#chart-wrap svg {
  margin: auto;
}

#chart-wrap svg .text {
  fill: #fff;
  font-size: 0.875rem;
  text-anchor: middle;
}

#chart-wrap .legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  margin: 2rem auto;
}

@media (max-width: 479px) {
  #chart-wrap .legend {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

#chart-wrap .legend .legend-group {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: row;
  gap: 8px;
  justify-content: flex-start;
}

@media (max-width: 479px) {
  #chart-wrap .legend .legend-group {
    flex-basis: 100px;
  }
}

#chart-wrap .legend .legend-group .legend-box {
  height: 20px;
  margin: 0;
  width: 20px;
}

#chart-wrap .legend .legend-group .legend-label {
  margin: 0;
}

/*==================================
Nav Tabs 
===================================*/
.nav-tabs .nav-link {
  border-bottom: 1px solid transparent;
  color: #303030;
  padding: 0.75rem 1.5rem;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  border: transparent;
  color: #0B50B5;
  border-bottom: 1px solid #0B50B5;
  font-weight: 600;
}

.tab-content {
  padding: 1rem 1rem;
}

/*==================================
Statistic box
===================================*/
.statistic-box {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 6px;
  overflow: hidden;
  z-index: -1;
  min-height: 150px;
  margin-bottom: 30px;
}

.box-light-blue {
  background-color: #DCDCF3;
}

.box-light-green {
  background-color: #C2F2D6;
}

.box-light-orange {
  background-color: #FFB5A4;
}

.box-light-yellow {
  background-color: #FFF5C2;
}

.box-light-blue::before {
  content: "";
  width: 100%;
  height: 180px;
  background: rgb(11, 80, 181);
  background: linear-gradient(180deg, rgba(11, 80, 181, 1) 0%, rgba(220, 220, 243, 1) 35%);
  border-radius: 100%;
  position: absolute;
  left: 0;
  bottom: -100px;
  z-index: -1;
  opacity: 0.4;
}

.box-light-green::before {
  content: "";
  width: 100%;
  height: 180px;
  background: rgb(127,224,166);
background: linear-gradient(180deg, rgba(127,224,166,1) 0%, rgba(225,255,238,1) 35%);
  border-radius: 100%;
  position: absolute;
  left: 0;
  bottom: -100px;
  z-index: -1;
  opacity: 0.4;
}

.box-light-orange::before {
  content: "";
  width: 100%;
  height: 180px;
  background: rgb(252, 100, 64);
  background: linear-gradient(180deg, rgba(252, 100, 64, 1) 0%, rgba(255, 181, 164, 1) 35%);
  border-radius: 100%;
  position: absolute;
  left: 0;
  bottom: -100px;
  z-index: -1;
  opacity: 0.4;
}

.box-light-yellow::before {
  content: "";
  width: 100%;
  height: 180px;
  background: rgb(235, 209, 81);
  background: linear-gradient(180deg, rgba(235, 209, 81, 1) 0%, rgba(255, 245, 194, 1) 35%);
  border-radius: 100%;
  position: absolute;
  left: 0;
  bottom: -100px;
  z-index: -1;
  opacity: 0.4;
}

.rank-agency-icon{
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  border: 1px solid transparent;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 6px;
  cursor: pointer;
  transition: all 500ms ease;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 2rem 1rem;
  margin-bottom: 15px;
}
.rank-agency-icon img{
  width: 164.43px;
  height: 40px;
  margin: auto;
}
/*===================================
Owl carousel
===================================*/
.image-gallery-wrapper{
  border-radius: 6px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
  background-color: #0B50B5;
}
/*==================================
Progress bar
==================================*/
/*circle progress bar*/
.circleProgress {
  width: 100px;
  height: 100px;
  line-height: 150px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}
.circleProgress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid #DCDCF3;
  position: absolute;
  top: 0;
  left: 0;
}
.circleProgress > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}
.circleProgress .circleProgress-left {
  left: 0;
}
.circleProgress .circleProgress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 10px;
  border-style: solid;
  position: absolute;
  top: 0;
  border-color: #FC6440;
}
.circleProgress .circleProgress-left .circleProgress-bar {
  left: 100%;
  border-top-right-radius: 75px;
  border-bottom-right-radius: 75px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}
.circleProgress .circleProgress-right {
  right: 0;
}
.circleProgress .circleProgress-right .circleProgress-bar {
  left: -100%;
  border-top-left-radius: 75px;
  border-bottom-left-radius: 75px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}
.circleProgress .circleProgress-value {
  display: flex;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  line-height: 20px;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 600;
}
.circleProgress .circleProgress-value div {
  margin-top: 10px;
}
.circleProgress .circleProgress-value span {
  font-size: 12px;
  text-transform: uppercase;
}

/* This for loop creates the 	necessary css animation names 
Due to the split circle of circleProgress-left and circleProgress right, we must use the animations on each side. 
*/
.circleProgress[data-percentage="10"] .circleProgress-right .circleProgress-bar {
  animation: loading-1 1.5s linear forwards;
}
.circleProgress[data-percentage="10"] .circleProgress-left .circleProgress-bar {
  animation: 0;
}

.circleProgress[data-percentage="20"] .circleProgress-right .circleProgress-bar {
  animation: loading-2 1.5s linear forwards;
}
.circleProgress[data-percentage="20"] .circleProgress-left .circleProgress-bar {
  animation: 0;
}

.circleProgress[data-percentage="30"] .circleProgress-right .circleProgress-bar {
  animation: loading-3 1.5s linear forwards;
}
.circleProgress[data-percentage="30"] .circleProgress-left .circleProgress-bar {
  animation: 0;
}

.circleProgress[data-percentage="40"] .circleProgress-right .circleProgress-bar {
  animation: loading-4 1.5s linear forwards;
}
.circleProgress[data-percentage="40"] .circleProgress-left .circleProgress-bar {
  animation: 0;
}

.circleProgress[data-percentage="50"] .circleProgress-right .circleProgress-bar {
  animation: loading-5 1.5s linear forwards;
}
.circleProgress[data-percentage="50"] .circleProgress-left .circleProgress-bar {
  animation: 0;
}

.circleProgress[data-percentage="60"] .circleProgress-right .circleProgress-bar {
  animation: loading-5 1.5s linear forwards;
}
.circleProgress[data-percentage="60"] .circleProgress-left .circleProgress-bar {
  animation: loading-1 1.5s linear forwards 1.5s;
}

.circleProgress[data-percentage="70"] .circleProgress-right .circleProgress-bar {
  animation: loading-5 1.5s linear forwards;
}
.circleProgress[data-percentage="70"] .circleProgress-left .circleProgress-bar {
  animation: loading-2 1.5s linear forwards 1.5s;
}

.circleProgress[data-percentage="80"] .circleProgress-right .circleProgress-bar {
  animation: loading-5 1.5s linear forwards;
}
.circleProgress[data-percentage="80"] .circleProgress-left .circleProgress-bar {
  animation: loading-3 1.5s linear forwards 1.5s;
}

.circleProgress[data-percentage="90"] .circleProgress-right .circleProgress-bar {
  animation: loading-5 1.5s linear forwards;
}
.circleProgress[data-percentage="90"] .circleProgress-left .circleProgress-bar {
  animation: loading-4 1.5s linear forwards 1.5s;
}

.circleProgress[data-percentage="100"] .circleProgress-right .circleProgress-bar {
  animation: loading-5 1.5s linear forwards;
}
.circleProgress[data-percentage="100"] .circleProgress-left .circleProgress-bar {
  animation: loading-5 1.5s linear forwards 1.5s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(36);
    transform: rotate(36deg);
  }
}
@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(72);
    transform: rotate(72deg);
  }
}
@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(108);
    transform: rotate(108deg);
  }
}
@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(144);
    transform: rotate(144deg);
  }
}
@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180);
    transform: rotate(180deg);
  }
}
.progress {
  margin-bottom: 1em;
}
/*==================================
Call to action
===================================*/
.callto-action{
  background-color: #0B50B5;
  border-radius: 6px;
  color: #FFF;
  padding: 1rem;
  margin: 2rem 0;
}
/*==================================
Table 
====================================*/
.table-light{
background-color: #D9D9D9;
}
.table-striped > tbody > tr:nth-of-type(odd) > *{
  background-color: #F7F7FF;
}
/*===================================
Page header
=====================================*/
.PageHeader{
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 380px;
}
.aboutus-page-header-bg{
  background-image: url(../img/aboutus-page-header.png);
  background-position: 5% center;
}
/*=========================================
Step wizard 
===========================================*/
ul.wizard,
ul.wizard li {
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
}

ul.wizard {
  counter-reset: num;
}

ul.wizard li {
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Cerchio*/

ul.wizard li::before {
  counter-increment: num;
  content: counter(num);
  width: 1.5em;
  height: 1.5em;
  text-align: center;
  line-height: 1.5em;
  border-radius: 50%;
  background: #c1c1c1;
  cursor: pointer;
}

/* Linea */

ul.wizard li ~ li::after {
  content: "";
  position: absolute;
  width: 100%;
  right: 50%;
  height: 4px;
  background-color: #c1c1c1;
  top: calc(0.75em - 2px);
  z-index: -1;
}

/* Tutte le righe che vengono dopo l'ultimo completed */

ul.wizard li.completed ~ li::after {
  content: "";
  position: absolute;
  width: 100%;
  right: 50%;
  height: 4px;
  background-color: #c1c1c1;
  top: calc(0.75em - 2px);
  z-index: -1;
}

ul.wizard li.active::before {
  background: #000;
  color: white;
}

ul.wizard li.active::after {
  background: #000;
  color: white;
}

ul.wizard span {
  color: #333;
  font-size: 12px;
  word-break: break-all;
  margin-top: 6px;
}
ul.wizard li.active span {
 font-weight: 600;
  color: #000;
}
/*  updated sample  */

/*  number and circle  */

ul.wizard li.completed::before {
  background: #68e870;
  color: #FFF;
}

ul.wizard li.completed span {
  /*  text  */
  color: #000;
}

ul.wizard li.completed + li::after {
  /*  line after circle  */
  background: #68e870;
}

ul.wizard li.completed::after {
  /*  line before circle  */
  background: #68e870;
}

/*==========================================
File upload with preview
===========================================*/

.upload__box {
  position: relative;
}
.upload__inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.upload__btn {
  display: inline-block;
  font-weight: 400;
  color: #FFF;
  text-align: center;
  min-width: 116px;
  padding: 10px 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid;
  background-color: #000;
  border-color: #000;
  border-radius: 6px;
  line-height: 26px;
  font-size: 14px;
}
.upload__btn:hover {
  background-color: #000;
  color: #FFF;
  transition: all 0.3s ease;
}
.upload__btn-box {
  margin-bottom: 10px;
}
.upload__img-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.upload__img-box {
  width: 200px;
  padding:5px;
  margin-bottom: 12px;
  border: 1px solid #D9D9D9;
  border-radius: 6px;
  margin-left: 15px;

}
.upload__img-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  line-height: 24px;
  z-index: 1;
  cursor: pointer;
}
.upload__img-close:after {
  content: "✖";
  font-size: 14px;
  color: white;
}

.img-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-bottom: 100%
  ;border-radius: 3px;
}
.upload__img-box img{
  border-radius: 3px;
}

/*===================================
Media Query
=====================================*/
@media (min-width: 992px) {
  .modal-Medium {
      max-width: 600px;
  }
}

/*large device desktop*/
@media screen and (min-width: 1920px) {
  .container {
    max-width: 1620px;
    width: 100%;
    margin-left: 130px;
    margin-right: 130px;
  }

}

/*tablet device*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #carouseHeroslider .carousel-caption .title {
    font-weight: 600;
    font-size: 32px;
  }

  .tab-mb1 {
    margin-bottom: 1rem;
  }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .top-bar {
    background: hsla(216, 89%, 38%, 1);
    background: linear-gradient(0deg, hsla(216, 89%, 38%, 1) 0%, hsla(216, 89%, 38%, 1) 47%, hsla(240, 35%, 93%, 1) 47%, hsla(240, 35%, 93%, 1) 100%);
    background: -moz-linear-gradient(0deg, hsla(216, 89%, 38%, 1) 0%, hsla(216, 89%, 38%, 1) 47%, hsla(240, 35%, 93%, 1) 47%, hsla(240, 35%, 93%, 1) 100%);
    background: -webkit-linear-gradient(0deg, hsla(216, 89%, 38%, 1) 0%, hsla(216, 89%, 38%, 1) 47%, hsla(240, 35%, 93%, 1) 47%, hsla(240, 35%, 93%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#0B50B5", endColorstr="#0B50B5", GradientType=1);
    padding: 10px 0;
  }

  body {
    padding-top: 147px;
  }

  .navbar-light .navbar-nav .nav-link {
    text-align: left;
    padding-left: 0px;
    padding-right: 0px;
  }

  .navbar-light .navbar-nav .nav-link i {
    display: inline-block;
    margin-right: 10px;
  }

  .banner-caption {
    padding-right: 0px;
  }

  .section-title h1,
  .section-title h2,
  .section-title h3,
  .section-title h4,
  .section-title h5,
  .section-title h6 {
    font-size: 2.5rem;
    font-weight: bold;
  }

  .card-body.p-5 {
    padding: 1rem !important;
  }

  .mobile-hide {
    display: none;
  }

  .mobile-show {
    display: block !important;
  }

  .mobile-show-inline {
    display: inline-block !important;
  }

  .mob-mt1 {
    margin-top: 1rem;
  }

  .mob-mb1 {
    margin-bottom: 1rem;
  }

  .dtext-end {
    text-align: center;
  }

  .hero {
    position: relative;
    min-height: 220px;
  }

  .carousel-item {
    height: 300px;
  }

  .carousel-item img {
    width: fit-content !important;
    height: 300px !important;
    object-fit: cover;
  }

  #carouseHeroslider .carousel-caption {
    top: 10%;
  }

  #carouseHeroslider .carousel-caption .slider-title {
    font-size: 26px;
  }

  .w-75 {
    width: 100% !important;
  }

  .width50 {
    width: 100%;
  }

  .dms-3 {
    margin-left: 0px;
  }

  ul.topLinknav li a {
    padding: 0 0.60rem;
  }

  ul.socialmediaList li a {
    padding: 0 9px;
  }

  .mobile-modal {
    margin: 0px;
    height: 100%;
  }

  .mobile-modal .modal-content {
    height: 100%;
  }

  .mobile-modal .modal-content {
    height: 100%;
    border-radius: 0px;
  }

  .mobile-modal .modal-content .modal-header {
    background: #FFF;
    border-bottom: none;
  }

  .mobile-modal .modal-content .modal-header .modal-title {
    display: none;
  }

  .mobile-modal .modal-content .btn-close {
    background-image: url(../img/x-circle-black.svg);
  }

  .mob-mt-5 {
    margin-top: 5rem !important;
  }

  .form-control {
    padding: 1rem 1rem !important;
    font-size: 1rem;
  }

  .mobile-valign-center {
    transform: translate(-50%, -50%);
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
  }

  ul.FlagListing li a {
    padding: 10px 10px;
    margin-right: 14px;
    margin-bottom: 15px;
  }

  ul.FlagListing li a img {
    margin-bottom: 5px;
  }

  ul.bdgeList li {
    margin-bottom: 5px;
  }

  .universityFilter {
    display: none;
  }
  .desktop-end{
    text-align: left;
  }
  ul.wizard span {
   display: none;
  }
}