@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800&display=swap');

:root{
	--light-clr: #f4faff;
	--black-clr: #000000;
	--white-clr: #ffffff;
	--theme-clr: #a42727;
	--dark-clr: #BED4E6;
	--content-clr: #5c5c5c;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: 'Outfit', sans-serif!important;
	color: var(--black-clr);
}
p {
    line-height: 27px;
}
::selection{
	background: var(--);
}

.fw-normal{
	font-weight: 200!important;
}

.fw-300{
	font-weight: 300!important;
}

.fw-400{
	font-weight: 400!important;
}

.fw-500{
	font-weight: 500!important;
}

.fw-600{
	font-weight: 600!important;
}

.fw-700{
	font-weight: 700!important;
}

.fw-800{
	font-weight: 800!important;
}

.paddingTop{
	padding-top: 70px;
}

.paddingBottom{
	padding-bottom: 70px;
}

.bg_light{
	background-color: var(--light-clr);
}

h2.section-heading{
	font-size: 40px;
}
ul.style_list li{
	list-style-type: none;
}

ul.style_list{
	margin-top: 15px;
}
ul.style_list li{
  font-size: 15px;
	position: relative;
	margin-bottom: 10px;
	text-transform: capitalize;
	color: var(--content-clr);
}
ul.style_list li:last-child{
	margin-bottom: 0px;
}

ul.style_list li::before {
    position: absolute;
    content: '';
    top: 2px;
    left: -29px;
    background-image: url('../images/nurse.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    width: 18px;
    height: 18px;
    opacity: .9;
}

.theme_btn {
    outline: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 500;
    text-decoration: none;
    color: var(--white-clr);
    display: inline-block;
    padding: 16px 50px;
    border-radius: 100px;
    transition: .3s all;
    border: 2px solid var(--white-clr);
    background: var(--theme-clr);
}
.theme_btn:hover{
	background-color: var(--white-clr);
	color: var(--theme-clr);
	border-color: var(--theme-clr);
}


.theme_btn_add {
  outline: none;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 500;
  text-decoration: none;
  color: var(--white-clr);
  display: inline-block;
  padding: 12px 35px;
  border-radius: 100px;
  transition: .3s all;
  border: 2px solid var(--white-clr);
  background: var(--theme-clr);
}
.theme_btn_add:hover{
background-color: var(--white-clr);
color: var(--theme-clr);
border-color: var(--theme-clr);
}



#mainNav{
	background: var(--white-clr);
}
#mainNav.navbar-shrink {
    background-color: var(--light-clr);
    box-shadow: 0 5px 19px 0 rgb(0 0 0 / 8%);
}
#mainNav .navbar-nav .nav-item .nav-link.active {
    color: var(--theme-clr);
    font-weight: 600;
}
 #mainNav .navbar-nav .nav-item .nav-link:hover{
  color: var(--theme-clr);
 }
#mainNav .navbar-nav .nav-item .nav-link {
    font-size: .95rem;
    color: var(--black-clr);
    letter-spacing: .0625em;
}

#mainNav .navbar-brand img {
    height: 85px;
    transition: height .3s ease-in-out;
}

#mainNav {
    padding-top: 15px;
    padding-bottom: 15px;
}

#mainNav.navbar-shrink .navbar-brand svg, #mainNav.navbar-shrink .navbar-brand img {
    height: 60px;
}
.navbar-toggler{
	color: var(--content-clr);
}
.link-dark:hover{
  color: var(--theme-clr)!important;
}

/*============== Hero Slider =============*/
.hero-slider {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
    margin-top: 80px;
}
.slide-content{
	position: relative;
	z-index: 1;
}
.slide-bg-image:after{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: var(--black-clr);
    opacity: .4;
    z-index: 0;
    height: 100%;
    width: 100%;
}
@media (max-width: 991px) {
  .hero-slider {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 500px;
  }
  li.content-clr.mobile{
    display: block;
  }
  ul.p-0.m-0.what_earn.mobile-li > li{
    padding-left:20px;
  }
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
  height: 100vh;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border: 2px solid #d4d3d3;
  border-radius: 55px;
  opacity:0;
  visibility:hidden;
  transition:all .3s ease;
}
.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  transform:translateX(0);
  opacity:1;
  visibility:visible;
}

@media (max-width: 767px) {
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform:translateX(50px);
}

.hero-slider .swiper-button-prev:before {
  font-family: "Font Awesome 5 Free";
  content: "\f060";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform:translateX(-50px);
}

.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: left;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 0.3;
  background:#fff;
  transition:all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity:1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 30px;
  opacity: 0;
}
.hero-style {
  height: 100vh;
  transition:all .4s ease;
}


.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
/*  max-width: 690px;*/
}

.hero-style .slide-title h2 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    color: var(--white-clr);
    margin: 0 0 40px;
    text-transform: capitalize;
    transition: all .4s ease;
}


.hero-style .slide-text p {
  opacity: 0.8;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: normal;
  color: var(--white-clr);
  margin: 0 0 40px;
  transition:all .4s ease;
}


.hero-style .slide-btns > a:first-child {
  margin-right: 10px;
}

.theme-text{
	color: var(--theme-clr)!important;
}
.content-clr{
	color: var(--content-clr);
}

.plus_pointItem{
	text-align: center;
}

.plus_pointItem p{
	line-height: 23px;
}

.pointIcon{
	width: 50px;
}

.timeline>li .timeline-panel {
    padding: 0 20px 0px 100px;
}
.timeline .timeline-heading h4.subheading, .timeline .timeline-heading .subheading.h4 {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--theme-clr);
}

.timeline:before {
    background-color: var(--dark-clr);
}
.timeline>li .timeline-image {
    border: 5px solid var(--dark-clr);
}

selection{
	padding: 0!important;
}

.small-heading {
  font-size: 32px;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.rounded-img{
  border-radius: 10px;
}

.shadow-img {
    box-shadow: 10px 13px 0px 0px rgb(222 185 188);
}

/*===== Question CSs ===*/
.question_item {
    background-color: var(--white-clr);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #bed9ff69;
    box-shadow: 0 5px 10px 0 rgb(177 219 255 / 11%);
}
.question_item:last-child{
  margin-bottom: 0;
}
.question {
    font-size: 17px;
    font-weight: 500;
    padding: 15px 80px 15px 25px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.question.active{
  font-weight: 600;
  color: var(--theme-clr);
  background: var(--light-clr);
}
.question::after {
    content: "\002B";
    font-size: 28px;
    position: absolute;
    right: 23px;
    transition: 0.2s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 15px 20px;
  line-height: 1.5rem;
  color: var(--content-clr);
}

.link_style{
  color: var(--theme-clr);
  text-decoration: none;
  transition: .2s all;
}
.link_style:hover{
  color: var(--dark-clr);
}

.quoteIcon {
    color: var(--theme-clr);
    font-size: 50px;
    opacity: .8;
    line-height: 44px;
}
.quote_content {
    line-height: 40px;
}

form.form input , form.form select{
  border: 1px solid var(--dark-clr);
  outline: none;
  padding: 12px 15px;
  border-radius: 5px;
}

form.form textarea{
  border: 1px solid var(--dark-clr);
  outline: none;
  padding: 12px 15px;
  border-radius: 5px;
}

form.form select{
  cursor: pointer;
}
form.form input:focus , form.form select:focus{
  border-color: var(--content-clr);
}

.btn-close{
  opacity: 1!important;
  width: auto;
  height: auto;
}

.centered_circle {
  position: relative;
    transition: 1s all;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    max-width: 270px;
    height: 270px;
    border-radius: 100%;
    font-size: 20px;
    text-align: center;
    margin: auto;
    color: var(--theme-clr);
    font-weight: 600;
    border: 2px dashed var(--theme-clr);
    margin-bottom: 30px;
    background: var(--light-clr);
    box-shadow: 0px 0px 44px 8px rgb(255 255 255 / 21%);
}
.centered_circle::before, .centered_circle::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color:var(--dark-clr);
    opacity: .1;
    transform: scale(1.4);
    z-index: -2;
    top: 0;
    left: 0;
    border-radius: 50%;
    animation: anim-btn 2s linear infinite;
}
.centered_circle::after{
    animation-delay: 1s;
}
@keyframes anim-btn{
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.3);
    }
}
.centered_circle:hover{
  box-shadow: none;
  background: #f7eae2;
}

/*=========== New Add Css=============*/
.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 30px;
  opacity: 0;
}
.points_wrapper{
  margin-top: -70px;
  position: relative;
  z-index: 9;
}

.pointItem {
  background: var(--white-clr);
  padding: 15px 35px;
  text-align: center;
  transition: .3s all;
  border-radius: 10px;
  border-bottom: 4px solid rgb(255 187 192);
  box-shadow: 0 0px 26px 0 rgb(164 39 39 / 10%);
  height: 100%;
}
.pointItem:hover{
  border-color: var(--theme-clr);
}
.pointItem .icon{
  width: 55px;
  margin-bottom: 20px;
}
.pointItem h5{
  font-size: 18px;
}

.why_germany{
  position: relative;
  background-image: url('../images/why-germany.webp');
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.why_germany:after {
  content: '';
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 80%;
  z-index: 0;
}

.why_germany .content{
  position: relative;
  z-index: 1;
}

.posimg{
  position: absolute;
}
.why_germany .count_item {
    background: #fff;
    border-radius: 10px;
    padding: 40px 13px;
    height: 100%;
    border-bottom: 4px solid var(--theme-clr);
}


.work_nurse_content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    align-items: center;
    padding: 40px 30px;
    background: linear-gradient(180deg, rgb(181 58 58 / 1%) 0%, rgb(255 114 114 / 18%) 100%);
}
.object-fit-cover{
  object-fit: cover;
}

.fs-20{
  font-size: 18px;
}
ul.eligibility{
  padding-left: 0;
}
ul.eligibility li{
  column-gap: 10px;
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 10px;
}
ul.eligibility li img{
  width: 22px;
}


.grd_bg{
  background: linear-gradient(180deg, rgb(181 58 58 / 1%) 0%, rgb(255 114 114 / 18%) 100%);
}
.page-wdth-pos{
  position: relative;
}
.dctr2-pos-img{
  position: absolute;
  right: 0;
  max-width: 650px;
  bottom: 0;
}

.big-pd-top {
    padding-top: 180px;
}

ul.what_earn li{
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: start;
  column-gap: 10px;
  margin-bottom: 10px;
}
ul.what_earn li:last-child{
  margin-bottom: 0px;
}
ul.what_earn li i {
  color: #f7c1b1;
}

.admission_process{
  max-width: 600px;
  margin: auto;
}



.grd_bg.opacity-slow {
  background: linear-gradient(180deg, rgb(181 58 58 / 1%) 0%, rgb(255 114 114 / 8%) 100%);
}

.dctr3-pos-img{
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 650px;
}

.guidance-bg{
  position: relative;
  background-image: url('../images/guidance-bg.webp');
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}
.guidance-bg:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--white-clr);
  opacity: 70%;
  left: 0;
  top: 0;
}
.guidance_content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: auto;
    padding: 0px 15px;
}

.pnk-clr{
  color: #894b4b;
}

.label{
  font-size: 24px;
  padding: 20px 0;
  font-weight: bolder;
}

.checkbox-value{
  padding-left: 10px;
}

ul.p-0.m-0.what_earn.why-germany > li > strong {
  display: contents;
}