:root {
  --primary-color: rgb(123 52 241);
  --color-one: #00ACED;
   --font-size: 0.8em;
  --bg1: #f5f8f7;
  --blue: #3498db;
  --green: #2ecc71;
  --purple: #9b59b6;
  --gold: #f1c40f;
  --red: #e74c3c;
  --orange: #e67e22;
  --shadow1: 0 2px 4px #00000026, 0 3px 6px #0000001f;
  --shadow2: 0 2px 6px #00000044, 0 4px 7px #00000022;
}

body{
 background: #f5f8f7;
}

.bg-one{
  background-color: var(--color-one) !important;
}

.text-one{
  color: var(--color-one) !important;
}

.fs-40{
  font-size: 40px;
}

.fs-35{
  font-size: 35px;
}

*,
*::before,
*::after {
  box-sizing: border-box
}
@media (min-width: 1300px){
 .landing__banner-label {
    margin-top: auto;
}}

@media (min-width: 1300px) {
  .landing__banner {
    width: 600px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 0 128px;
    background: none;
  }
}

.landing__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 25px 78px;
}

@media (min-width: 1300px) {
  .landing__banner-label {
    margin-top: auto;
  }
}

@media (min-width: 1300px){
.landing__heading {
    text-align: left;
}}

.but:hover {
  color: rgb(255 255 255) !important;
  background: #1f1fb5 !important;
}
.landing__heading {
  margin-top: 7px;
  color: rgb(0, 0, 0);
  font-weight: 600;
  text-align: center;
  text-shadow: 4px 3px 6px rgb(0 0 0 / 20%);
}
@media (min-width: 1300px) {
  .heading {
    font-size: 33px;
    line-height: 64px;
    font-weight: 800;

  }
}
.landing__banner-label {
  margin-top: 112px;
  padding: 2px 8px;
  font-size: 13px;
  line-height: 20px;
  color: #fff;
  background-color: #3add7f;
  border-radius: 4px;
}

label {
  display: block;
  margin-bottom: 0.5rem
}

input {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #7b34f1;
  border-radius: 0.25rem;
  background: #f5f8f7;
  height: 50px;
}

select{
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #7b34f1;
  border-radius: 0.25rem;
  height: 50px;
  background-color:#f5f8f7;
}

.width-50 {
  width: 50%
}
.iti{
  display: block;
}
.ml-auto {
  margin: 0 auto;
  width: 100%;
}

.text-center {
  text-align: center
}

.img-fluid-force {
  width:100%;
}


.img-fluid-force {
    width: 100%;
    margin-bottom: -356px;
}

/* Media Query for screens smaller than 768px (Mobile) */
@media (max-width: 768px) {
    .img-fluid-force {
        margin-bottom: -52px; /* Adjust the margin for mobile screens */
    }
}

/* Media Query for screens between 769px and 1024px (Tablet) */
@media (min-width: 769px) and (max-width: 1024px) {
    .img-fluid-force {
        margin-bottom: -84px; /* Adjust the margin for tablet screens */
    }
}

/* Media Query for screens larger than 1024px (Desktop) */
@media (min-width: 1025px) {
    .img-fluid-force {
        margin-bottom: -138px; /* Default margin for desktop screens */
    }
}




.progressbar {
  position: relative;
  display: none;
  justify-content: space-between;
  counter-reset: step;
  margin: 2rem 0 4rem
}

.progressbar::before,
.progress {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
  background-color: #dcdcdc;
  z-index: 1
}

.progress {
  background-color: rgb(0 128 0);
  width: 0%;
  transition: 0.3s
}

.progress-step {
  width: 2.1875rem;
  height: 2.1875rem;
  background-color: #dcdcdc;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1
}

.progress-step::before {
  counter-increment: step;
  content: counter(step)
}

.progress-step::after {
  content: attr(data-title);
  position: absolute;
  top: calc(100% + 0.5rem);
  font-size: 0.85rem;
  color: #666
}

.progress-step-active {
  background-color: var(--primary-color);
  color: #f3f3f3
}

.form {
  width: 100%;
  margin: 0 auto;
  border: none;
  border-radius: 10px !important;
  background-color: #f5f8f7;
  padding: 1.5rem;
  padding: 20px 30px;
}

.step-forms {
  display: none;
  transform-origin: top;
  animation: animate 1s
}

.step-forms-active {
  display: block
}

.group-inputs {
  margin: 1rem 0
}

@keyframes animate {
  from {
      transform: scale(1, 0);
      opacity: 0
  }

  to {
      transform: scale(1, 1);
      opacity: 1
  }
}

.btns-group {
  
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem
}

.btn {
  padding: 0.75rem;
  display: block;
  text-decoration: none;
  background-color: var(--primary-color);
  color: #f3f3f3;
  text-align: center;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}

.btn:hover {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color)
}

.progress-step-check {
  position: relative;
  background-color: green !important;
  transition: all 0.8s
}

.progress-step-check::before {
  position: absolute;
  content: '\2713';
  width: 100%;
  height: 100%;
  top: 8px;
  left: 13px;
  font-size: 12px
}

.group-inputs {
  position: relative
}

.form-control {
  border: 1px solid #7b34f1;
  background: #f5f8f7;

}
.group-inputs label {
  font-size: 13px;
  position: absolute;
  height: 19px;
  padding: 4px 7px;
  top: -14px;
  left: 10px;
  color: #a2a2a2;
  background-color: #f5f8f7;
  z-index: 2;
}

.welcome {
  height: 450px;
  width: 350px;
  background-color: #fff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center
}

.welcome .content {
  display: flex;
  align-items: center;
  flex-direction: column
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards
}

.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards
}

@keyframes stroke {
  100% {
      stroke-dashoffset: 0
  }
}

.image{
  width: 50%;
  box-shadow: 0px 0px 11px black
}
@media (max-width: 1000px){
    .image{
      width: 100%;
      padding: 0px 10px 0px 10px ;
    }
  }

@keyframes scale {

  0%,
  100% {
      transform: none
  }

  50% {
      transform: scale3d(1.1, 1.1, 1)
  }
}


.leadbut {
  --b: 3px;   /* border thickness */
  --s: .15em; /* size of the corner */
  --c: #f40000;
  
  padding: calc(.05em + var(--s)) calc(.3em + var(--s));
  color: var(--c);
  --_p: var(--s);
  background:
    conic-gradient(from 90deg at var(--b) var(--b),#0000 90deg,var(--c) 0)
    var(--_p) var(--_p)/calc(100% - var(--b) - 2*var(--_p)) calc(100% - var(--b) - 2*var(--_p));
  transition: .3s linear, color 0s, background-color 0s;
  outline: var(--b) solid #0000;
  outline-offset: .2em;
}
.leadbut:hover,
.leadbut:focus-visible{
  --_p: 0px;
  outline-color: var(--c);
  outline-offset: .05em;
}
.leadbut:active {
  background: var(--c);
  color: #fff;
}

.leadbut {
  font-family: system-ui, sans-serif;
  font-weight: bold;
  font-size: 40px;
  cursor: pointer;
  border: none;
  margin: .1em;
}



.custom01 input[type="radio"] {
	display: none;
}
.custom01 label {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 20px;
	cursor: pointer;
}
.custom01 label::before {
	position: absolute;
	content: '';
	top: 50%;
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 100%;
}
.custom01 input[type="radio"]:checked + label::after {
	position: absolute;
	content: '';
	top: 48%;
	left: 3px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: #3498db;
	border-radius: 100%;
}

.custom02 input[type="radio"] {
	display: none;
}
.custom02 label {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 20px;
	cursor: pointer;
}
.custom02 label::before,
.custom02 label::after {
	position: absolute;
	content: '';
	top: 50%;
	border-radius: 100%;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.custom02 label::before {
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	background: #f3f3f3;
	border: 1px solid #ccc;
}
.custom02 label:hover::before {
	background: #fff;
}
.custom02 label::after {
	opacity: 0;
	left: 3px;
	width: 8px;
	height: 8px;
	margin-top: -5px;
	background: #3498db;
	-webkit-transform: scale(2);
	transform: scale(2);
}
.custom02 input[type="radio"]:checked + label::before {
	background: #fff;
	border: 1px solid #3498db;
}
.custom02 input[type="radio"]:checked + label::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




#datepicker > span:hover{cursor: pointer;}


.form-control:disabled, .form-control[readonly] {
  background: white !important;
}

.select2-container .select2-selection--single{
  height: auto !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.select2-results{
  font-size: 12px!important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  height: 40px !important;
}

.iti__country-list{
  z-index: 3;
}

.quote {
  display: inline-block;
  margin: 1em;
  overflow: hidden;
}
.quote blockquote {
  background-color: #fff;
  border: solid 2px #757575;
  display: inline-block;
  margin: 0;
  padding: 1em;
  font-weight: 800;
  position: relative;
}
.quote blockquote:before {
  background-color: #fff;
  bottom: -10%;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: -10%;
  transform: rotate(-15deg) skew(5deg);
}
.quote blockquote cite {
  display: block;
  font-style: italic;
  text-align: right;
}
.quote blockquote cite:before {
  content: "- ";
}
.quote blockquote > * {
  position: relative;
  z-index: 1;
}
.animated-border-quote {
  display: inline-block;
  margin: 1em;
  max-width: 100%;
  overflow: hidden;
}
.animated-border-quote blockquote {
  background-color: #fee7d5;
  border: solid 5px #757575;
  display: inline-block;
  margin: 0;
  padding: 1em;
  position: relative;
}
.animated-border-quote blockquote:before {
  animation: clockwise 30s infinite linear;
  background-color: #fff;
  bottom: 10%;
  content: "";
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 10%;
}
.animated-border-quote blockquote:after {
  animation: counter 30s infinite linear;
  background-color: #fff;
  bottom: 10%;
  content: "";
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 10%;
}
.animated-border-quote blockquote cite {
  display: block;
  font-style: italic;
  text-align: right;
}
.animated-border-quote blockquote cite:before {
  content: "- ";
}
.animated-border-quote blockquote > * {
  position: relative;
  z-index: 1;
}
@keyframes clockwise {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes counter {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}


.wrappernot {
  margin: 20px;
  width: 904px;
}

.wrappernot span {
  position: absolute;
  padding: 0 .5em;
  margin-left: 1em;
  margin-top: -7px;
  font-family: operator mono ssm a,operator mono ssm b,operator mono,source code pro,Menlo,Consolas,Monaco,monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #2e2f3e;
  background-color: #fff;
}

.outside-block {
  padding: 10px;
  border: 1px solid #da1b60;
  border-radius: 8px;
  background-color: #fff;
}

.inside-block {
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-family: -system-ui,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,Helvetica,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol;
  font-size: 18px;
  color: #2e2f3e;
  background: linear-gradient(to right,#fce4ed,#ffe8cc);
  font-weight:700;
  line-height: 30px;
}


main {
  padding: 2vw;
  background: var(--bg1);
  
}
ul.infoGraphic {
  font-size: var(--font-size);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
ul.infoGraphic .universal {
  position: relative;
  width: 100%;
  max-width: 25em;
  background: var(--bg1);
  border-radius: 0.5em;
  padding: 0.5em;
  z-index: 1;
  transition: all 0.2s;
  cursor: pointer;
  list-style: none;
}
ul.infoGraphic .universal .numberWrap {
  position: absolute;
}
ul.infoGraphic .universal .number {
  font-family: "maven pro", sans-serif;
  font-size: 11em;
  font-weight: 900;
  width: 0.9em;
  text-align: center;
}
ul.infoGraphic .universal .number.fontColor1 {
  color: var(--blue);
}
ul.infoGraphic .universal .number.fontColor2 {
  color: var(--green);
}
ul.infoGraphic .universal .number.fontColor3 {
  color: var(--purple);
}
ul.infoGraphic .universal .number.fontColor4 {
  color: var(--gold);
}
ul.infoGraphic .universal .number.fontColor5 {
  color: var(--red);
}
ul.infoGraphic .universal .number.fontColor6 {
  color: var(--orange);
}
ul.infoGraphic .universal .coverWrap {
  transform: rotate(130deg);
  position: absolute;
  width: 18em;
  height: 15em;
  left: -3em;
  top: -1em;
}
ul.infoGraphic .universal .coverWrap .numberCover {
  position: absolute;
  background: var(--bg1);
  width: 18em;
  height: 6em;
  border-radius: 50% 50% 0 0;
  border-bottom: 3px solid #f5f8f7;
  transition: all 0.4s;
}
ul.infoGraphic .universal .coverWrap .numberCover::before {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 4em;
  right: 4em;
  top: 5em;
  box-shadow: 0 0 30px 17px #48668577;
  border-radius: 100px / 10px;
  z-index: -1;
}
ul.infoGraphic .universal .coverWrap .numberCover::after {
  position: absolute;
  bottom: 0;
  content: "";
  left: -10%;
  width: 120%;
  height: 150%;
  background: radial-gradient(at bottom, #48668533, transparent, transparent);
  z-index: 1;
}
ul.infoGraphic .universal .content {
  margin: 8em 3em 1em 7em;
  position: relative;
}
ul.infoGraphic .universal .content h2 {
  font-size: 1.7em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}
ul.infoGraphic .universal .content p {
  line-height: 1.5em;
  font-weight: 600;
}
ul.infoGraphic li:hover .coverWrap .numberCover {
  border-radius: 100%;
}
.icon {
  position: absolute;
  font-size: 2rem;
  text-align: center;
  top: -1.3em;
  left: 50%;
  transform: translatex(-50%);
}
.icon:before {
  color: #666;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}
.iconCodepen:before {
  content: "\f57c";
}
.iconSocial:before {
  content: "\f590";
}
.iconAirplane:before {
  content: "\f19d";
}
.iconMap:before {
  content: "\f571";
}
.iconBulb:before {
  content: "\f007";
}
.iconPeace:before {
  content: "\f0a3";
}

.iconlms:before {
  content: "\f108";
}

.iconteacher:before {
  content: "\f0c0";
}

.iconlanguage:before {
  content: "\f1ab";
}


footer {
  width:100%;
  bottom:0px;
  
}
footer div {
  background-color:#7b34f1;
  margin: -5px 0px 0px 0px;
  padding:0px;
  color: #fff;
  text-align:center;
}
svg {
  width:100%;
}
.arrow {
  stroke-width: .3px;
  stroke:yellow;
}
.topball {
  animation: ball 1.5s ease-in-out;
  animation-iteration-count:infinite;
  animation-direction: alternate;
  animation-delay: 0.3s;
  cursor:pointer;
}

.wave {
  animation: wave 3s linear;
  animation-iteration-count:infinite;
  fill: #7b34f1;
}
.drop {
  fill: transparent;
  animation: drop 5s ease infinite normal;
  stroke: #4478e3;
  stroke-width:0.5;
  opacity:.6; 
  transform: translateY(80%);
}
.drop1 {
  transform-origin: 20px 3px;
}
.drop2 {
  animation-delay: 3s;
  animation-duration:3s;
  transform-origin: 25px 3px;
}
.drop3 {
  animation-delay: -2s;
  animation-duration:3.4s;
  transform-origin: 16px 3px;
}
.gooeff {
  	filter: url(#goo);
}
#wave2 {
  animation-duration:5s;
  animation-direction: reverse;
  opacity: .6
}
#wave3 {
  animation-duration: 7s;
  opacity:.3;
}
@keyframes drop {
  0% {
    transform: translateY(80%); 
    opacity:.6; 
  }
  80% {
    transform: translateY(80%); 
    opacity:.6; 
  }
  90% { 
    transform: translateY(10%) ; 
    opacity:.6; 
  }
  100% { 
    transform: translateY(0%) scale(1.5);  
    stroke-width:0.2;
    opacity:0; 
  }
}
@keyframes wave {
  to {transform: translateX(-100%);}
}
@keyframes ball {
  to {transform: translateY(20%);}
}


.custom01 input[type="radio"] {
	display: none;
}
.custom01 label {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 20px;
	cursor: pointer;
}
.custom01 label::before {
	position: absolute;
	content: '';
	top: 50%;
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 100%;
}
.custom01 input[type="radio"]:checked + label::after {
	position: absolute;
	content: '';
	top: 48%;
	left: 3px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: #3498db;
	border-radius: 100%;
}

.custom02 input[type="radio"] {
	display: none;
}
.custom02 label {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 20px;
	cursor: pointer;
}
.custom02 label::before,
.custom02 label::after {
	position: absolute;
	content: '';
	top: 50%;
	border-radius: 100%;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.custom02 label::before {
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	background: #f3f3f3;
	border: 1px solid #ccc;
}
.custom02 label:hover::before {
	background: #fff;
}

.container_style{
  background-color: white;
  color: black;
  border-radius: 20px;
  box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25);
  margin: 20px 0;
}

.card_list {
  border: 2px solid #1F1FB5;
  border-radius: 12px;
  padding: 4%;
  font-weight:800;
  line-height:35px;
  -webkit-box-shadow: 0 1px 1px rgba(255,255,255,.75);
  box-shadow: 0 1px 1px rgba(255,255,255,.75);

}

.card_list li{
  margin-left: 10px;

}
.custom02 label::after {
	opacity: 0;
	left: 3px;
	width: 8px;
	height: 8px;
	margin-top: -5px;
	background: #3498db;
	-webkit-transform: scale(2);
	transform: scale(2);
}
.custom02 input[type="radio"]:checked + label::before {
	background: #fff;
	border: 1px solid #3498db;
}
.custom02 input[type="radio"]:checked + label::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}



#datepicker > span:hover{cursor: pointer;}


.form-control:disabled, .form-control[readonly] {
  background: #f5f8f7 !important;
}

.select2-container .select2-selection--single{
  height: auto !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
    background: #f5f8f7;
    border: 1px solid #7b34f1;
   
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.select2-results{
  font-size: 12px!important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  height: 40px !important;
}

.iti__country-list{
  z-index: 3;
}




.sponsor h2{
  text-align:center;
  padding: 20px;
}
/* Slider */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}




.video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  box-shadow: 0px 0px 8px #888888;
  padding-top: 56.25%;
  cursor: pointer !important;
}
.responsive-video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.other-videos {
  padding-left: 1%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 22%;
}
.other-videos div {
  background-position: center;
  background-position: no-repeat;
  background-size: cover;
  padding-top: 18%;
  margin: 0 5px;
  padding-top: 56.25%;
  width: 100%;
}

.containeryt {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  display: none;
}
.flex {
  display: flex;
  flex-direction: row;
}
.main-section {
  padding-right: 1%;
  width: 78%;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
  .flex {
    flex-direction: column;
  }
  .main-section {
    width: 100%;
    padding: 0;
  }
  .other-videos {
    flex-direction: row;
    width: 100%;
    padding: 0;
    margin-top: 10px;
  }
  .other-videos div{
    padding-top: 18%;
    margin: 0;
    width: 32%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}


.video-section .item{
  opacity:0.4;
  transition:.4s ease all;
  margin:0 20px;
  transform:scale(.8);
}

@media screen and (max-width: 400px) {
  .containeryt {
      display:block;
  }
}


@media screen and (max-width: 400px) {
  .video-section {
      display:none !important;
  }
}

@media(max-width:1000px){
  .video-section .item{margin:0; transform:scale(.9)}
}

.video-section .active .item{
  opacity:1;
  transform:scale(1);
} 



.video-section .owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}

.video-section video{
  max-width:100%;
  height:auto;
}

.ram-video-3 {
    position: relative;
    max-width: 800px;
    margin: auto;
}
.ram-video-3 .tv-wrap  {
    margin: 6% 14% 16%;
    position: relative;
}    
.ram-video-3 .tv-ram  {
    position: absolute;
    z-index: 1;
    top: -6%;
    left: -3.5%;
    width: 108%;
    height: 143%;
    pointer-events: none;
}
.ram-video-3 .tv-ram img  {
    width: 100%;
    height: 100%;
}
.ram-video-3 .tv-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
    cursor: pointer;
}
.ram-video-3 .tv-video:before {
    content: "";    
    border: 3px solid #6a6a6c;
    border-radius: 20px;
    background-color: rgb(255 0 46);
    background-image: url("https://elmulquran.org/play.png ");
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: 50% 50%;
    width: 20%;
    height: 25%;
    z-index: 2;
    box-shadow: 0 8px 26px rgba(0,0,0,0.4), 0 28px 30px rgba(0,0,0,0.3);
    position: absolute;
    top: 35%;
    left: 40%;    
    transition: 0.3s;
}
.ram-video-3 .tv-video:hover:before {
    background-color: #337AB7;
    border-color: #BFE2FF;
}
.ram-video-3 .tv-video.show:before {
    display: none;
}
.ram-video-3 .tv-video iframe,
.ram-video-3 .tv-video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}





/* FAQ */


.wrapper {
  width: 100%;
}



.container_style{
  background-color: white;
  color: black;
  border-radius: 20px;
  box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25);
  margin: 20px 0;
}

.question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px 80px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.question::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 0 20px 20px;
  line-height: 1.5rem;
}

.question.active + .answercont {
}

@media screen and (max-width: 790px){
  html {
    font-size: 14px;
  }
  .wrapper {
  width: 100%;
}
}


.card_list {
  border: 2px solid #1F1FB5;
  border-radius: 12px;
  padding: 4%;
  font-weight:800;
  line-height:35px;
  -webkit-box-shadow: 0 1px 1px rgba(255,255,255,.75);
  box-shadow: 0 1px 1px rgba(255,255,255,.75);
  margin-bottom: 50px;

}

.card_list li{
  margin-left: 10px;

}

.list--centre-justify {
  display: grid;
  place-items: center;
}





.notice {
  position: relative;
  margin: 1em;
  background: #fff;
  padding: 1em 1em 1em 2em;
  border-left: 4px solid #DDD;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125);
  font-weight:800;
}

.notice:before {
  position: absolute;
  top: 50%;
  margin-top: -17px;
  left: -17px;
  background-color: #DDD;
  color: #FFF;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  font-family: Georgia;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}

.info {
  border-color: #0074D9;
}

.info:before {
  content: "i";
  background-color: #0074D9;
}




@media screen and (max-width:1024px) {

	.home-membership-section-tab-img-wrapper {
		height: 600px;
		top: -250px
	}
}



@media screen and (max-width:1023px) {
	.home-membership-section-tabs-desktop {
		display: none
	}
	.home-membership-section-tabs-wrapper {
		width: 100%;
		padding-left: 0
	}
	.home-membership-section-tab-title ul {
		justify-content: center
	}
	.home-membership-section-tabs-img {
		width: 100%
	}
	.home-membership-section-tabs-img:before {
		top: 130px;
		right: 0;
		left: 0;
		margin: auto
	}
	.home-membership-section-tab-img {
		padding: 120px 0 150px;
		text-align: center
	}
	.home-membership-section-tab-img-wrapper {
		right: 30px;
		top: -120px;
		z-index: -1
	}
	.home-membership-section-tab-img-wrapper img {
		left: 0;
		right: 40px;
		margin: auto
	}
	.home-membership-section-tab-content {
		max-width: 70%;
		margin: auto;
		margin-top: 30px
	}
}

@media screen and (max-width:667px) {
	
	.home-membership-section-tab-img {
		text-align: center
	}
}






.home-membership-section-tabs {
	width: 100%;
	display: flex;
	margin-top: 90px
}

.home-membership-section-tabs-img {
	width: 50%;
	position: relative
}

.home-membership-section-tabs-wrapper {
	width: 50%;
	padding-left: 20px;
	padding-top: 10px
}

.home-membership-section-tab-img-wrapper {
	position: absolute;
	top: -300px;
	z-index: 99;
	right: 10px;
	overflow: hidden;
	width: 100%;
	height: 730px;
	right: 30px
}

.home-membership-section-tab-img {
	width: 100%;
	text-align: right;
	position: relative;
	z-index: 999
}

.home-membership-section-tab-title {
	width: 100%;
	margin-bottom: 50px
}

.home-membership-section-tab-title ul {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: flex-start
}

.home-membership-section-tab-title ul li {
	font-size: 32px;
	font-family: Bubblegum-Sans;
	margin: 0 20px 0 0;
	padding: 5px 25px;
	background: #fff;
	border-radius: 40px;
	box-shadow: 2px 10px 20px 0 rgba(0, 0, 0, .15);
	color: #1a466d
}

.home-membership-section-tab-title ul li:last-child {
	margin: 0
}

.home-membership-section-tab-title .home-activeTab {
	background: #3d84d6;
	color: #fff
}

.home-membership-section-tab-content {
	width: 100%;
	max-width: 70%;
	line-height: 1.7
}

.home-membership-section-tab-text {
	width: 100%;
	text-align: left;
	color: #4a6884;
	display: none
}

.home-membership-section-tab-text p {
	font-family: Open-Sans!important
}

.home-activeTabContent {
	display: block
}

.home-membership-section-tabs-img:before {
	content: '';
	width: 270px;
	height: 270px;
	background: #fff;
	position: absolute;
	z-index: 999;
	border-radius: 100%;
	top: 20px;
	right: 30px
}

.home-membership-section-tab-img-wrapper img {
	transform: rotate(180deg);
	transform-origin: 80% 50%;
	position: absolute;
	max-width: 530px;
	max-height: 756px;
	bottom: 0;
	right: 0;
	opacity: 0
}

.home-membership-section-tabs-mobile {
	display: none
}

.home-membership-section-tab-img img {
	max-width: 45%
}




@media screen and (max-width:1400px) {
	.home-membership-section-tab-title ul li {
		margin: 0 15px 0 0;
		font-size: 30px
	}
	.home-membership-section-tab-title ul li:last-child {
		margin: 0
	}
	.home-membership-section-tab-title ul {
		justify-content: flex-start
	}
	.home-hero-img {
		left: 0;
		height: auto
	}
	.home-membership-section-tabs-img:before {
		width: 200px;
		height: 200px
	}
	.home-membership-section-tab-img img {
		max-width: 35%
	}
	.home-membership-section-tab-img-wrapper {
		top: -190px;
		height: 530px
	}
	.home-membership-section-tab-img-wrapper img {
		max-width: 400px
	}
}


	

@media screen and (max-width:1025px) and (min-width:980px) {

	.home-membership-section-tab-img-wrapper img {
		right: -180px
	}
}

@media screen and (max-width:1200px) {
	.home-membership-section-tabs-img:before {
		width: 200px;
		height: 200px;
		top: 10px
	}
	.home-membership-section-tab-img img {
		max-width: 250px
	}
	.home-membership-section-tab-img-wrapper {
		height: 465px;
		right: 30px;
		top: -100px
	}
	.home-membership-section-tab-img-wrapper img {
		max-width: 400px
	}
	.home-membership-section-tab-title ul li {
		font-size: 22px;
		padding: 8px 30px
	}
	.home-membership-section-tab-content {
		max-width: 90%
	}
	.home-membership-section-tab-title {
		margin-bottom: 30px
	}
	
}

@media screen and (max-width:1024px) {
	
	.home-membership-section-tab-img-wrapper {
		height: 600px;
		top: -250px
	}
}

@media screen and (max-width:1023px) {
	.home-membership-section-tabs-mobile {
		display: flex;
		margin-top: 0
	}
	.home-membership-section-tabs-wrapper {
		width: 100%;
		padding-left: 0
	}
	.home-membership-section-tab-title ul {
		justify-content: center
	}
	.home-membership-section-tabs-img {
		width: 100%
	}
	.home-membership-section-tabs-img:before {
		top: 130px;
		right: 0;
		left: 0;
		margin: auto
	}
	.home-membership-section-tab-img {
		padding: 120px 0 150px;
		text-align: center
	}
	.home-membership-section-tab-img-wrapper {
		right: 30px;
		top: -120px;
		z-index: -1
	}
	.home-membership-section-tab-img-wrapper img {
		left: 0;
		right: 40px;
		margin: auto
	}
	.home-membership-section-tab-content {
		max-width: 70%;
		margin: auto;
		margin-top: 30px
	}
}


@media screen and (max-width:800px) {

	.home-membership-section-tab-img-wrapper {
		right: 60px
	}
	
}

@media screen and (max-width:768px) {
	.home-membership-section-tab-content {
		max-width: 100%
	}
	.home-membership-section-tab-img-wrapper {
		right: 50px;
		top: -50px
	}
	.home-membership-section-tab-img-wrapper img {
		bottom: 100px
	}
}



@media screen and (max-width:667px) {
	
	.home-membership-section-tab-img {
		text-align: center
	}
}

@media screen and (max-width:480px) {

	.home-membership-section-tab-img {
		padding: 70px 0 90px;
		text-align: right
	}
	.home-membership-section-tabs-img:before {
		top: 100px;
		right: 20px;
		left: 140px
	}
	.home-membership-section-tab-img-wrapper {
		height: 425px;
		right: 0;
		top: 0
	}
	
	.home-membership-section-tab-title ul li {
		font-size: 18px;
		padding: 8px 25px
	}
	.home-membership-section-tabs-img:before {
		width: 180px;
		height: 180px
	}
	.home-membership-section-tab-img img {
		max-width: 220px
	}
	
}

@media screen and (max-width:360px) {
	.home-membership-section-tab-title ul li {
		font-size: 18px;
		padding: 3.5px 18px
	}
	.home-membership-section-tabs-img:before {
		top: 130px;
		right: 20px;
		width: 140px;
		height: 140px;
		left: 150px
	}
	.home-membership-section-tab-img {
		padding: 110px 0
	}
	.home-membership-section-tab-img img {
		max-width: 170px
	}
	.home-membership-section-tab-img-wrapper img {
		max-width: 280px
	}
	.home-membership-section-tab-img-wrapper {
		top: 20px;
		z-index: 0
	}
	
	.home-membership-section-tab-text p {
		font-size: 14px;
		padding-top: 0
	}
	
	.home-membership-section-tab-content {
		margin-top: 40px
	}
}

@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap);





.home-membership-section {
  width: 100%;
  padding: 20px 20px 150px;
  margin-top: 350px; }

.home-membership-section-content {
  width: 100%;
  color: #405971; }

.home-membership-section-content h2 {
  font-size: 48px;
  font-family: Bubblegum-Sans !important; }

.home-membership-section-content p {
  font-family: Open-Sans !important;
  max-width: 35%;
  margin: auto; }

.home-membership-section-tabs {
  width: 100%;
  display: flex;
  margin-top: 90px; }

.home-membership-section-tabs-img {
  width: 50%;
  position: relative; }

.home-membership-section-tabs-wrapper {
  width: 50%;
  padding-left: 20px;
  padding-top: 10px; }

.home-membership-section-tab-img-wrapper {
  position: absolute;
  top: -300px;
  z-index: 99;
  right: 10px;
  overflow: hidden;
  width: 100%;
  height: 730px;
  right: 30px; }

.home-membership-section-tab-img {
  width: 100%;
  text-align: right;
  position: relative;
  z-index: 999; }

.home-membership-section-tab-title {
  width: 100%;
  margin-bottom: 50px; }

.home-membership-section-tab-title ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start; }

.home-membership-section-tab-title ul li {
  font-size: 32px;
  font-family: Bubblegum-Sans;
  margin: 0 20px 0 0;
  padding: 5px 25px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 2px 10px 20px 0 rgba(0, 0, 0, 0.15);
  color: #1a466d;
  cursor: pointer;
  transition: .5s ease all; }

.home-membership-section-tab-title ul li:last-child {
  margin: 0; }

.home-membership-section-tab-title .home-activeTab, .home-membership-section-tab-title ul li:hover {
  background: #3d84d6;
  color: #fff; }

.home-membership-section-tab-content {
  width: 100%;
  max-width: 70%;
  line-height: 1.7; }

.home-membership-section-tab-text {
  width: 100%;
  text-align: left;
  color: #4a6884;
  display: none; }

.home-membership-section-tab-text p {
  font-family: Open-Sans !important; }

.home-activeTabContent {
  display: block; }

.home-membership-section-tabs-img:before {
  content: '';
  width: 270px;
  height: 270px;
  background: #fff;
  position: absolute;
  z-index: 999;
  border-radius: 100%;
  top: 20px;
  right: 30px; }

.home-membership-section-tab-img-wrapper img {
  transform: rotate(180deg);
  transition: 2s ease all;
  transform-origin: 80% 50%;
  position: absolute;
  max-width: 530px;
  max-height: 756px;
  bottom: 0;
  right: 0;
  opacity: 0; }

.home-membership-section-tab-img-wrapper .home-activeImg {
  transform: rotate(0);
  right: 40px;
  opacity: 1; }

.home-membership-section-tabs-mobile {
  display: none; }

.home-membership-section-tab-img img {
  max-width: 45%; }



  .home-membership-section-tabs-img:before {
    width: 200px;
    height: 200px; }

  .home-membership-section-tab-img img {
    max-width: 35%; }

  .home-membership-section-tab-img-wrapper {
    top: -190px;
    height: 530px; }

  .home-membership-section-tab-img-wrapper img {
    max-width: 400px; }

  .home-membership-section-tab-img-wrapper .home-activeImg {
    right: 0; } }

@media screen and (max-width: 1025px) and (min-width: 980px) {
  

  body .home-membership-section {
    padding-bottom: 35px; }

  body .home-subsrcibe-section {
    padding: 0 20px; }

  .home-membership-section-tab-img-wrapper .home-activeImg {
    right: 20px;
    bottom: 0; }

  .home-membership-section-tab-img-wrapper img {
    right: -180px; } }
@media screen and (max-width: 1200px) {
  .home-membership-section-tabs-img:before {
    width: 200px;
    height: 200px;
    top: 10px; }

  .home-membership-section-tab-img img {
    max-width: 250px; }

  .home-membership-section-tab-img-wrapper {
    height: 465px;
    right: 30px;
    top: -100px; }

  .home-membership-section-tab-img-wrapper img {
    max-width: 400px; }

  .home-membership-section-tab-title ul li {
    font-size: 22px;
    padding: 8px 30px; }

  .home-membership-section-tab-content {
    max-width: 90%; }

  .home-membership-section-tab-title {
    margin-bottom: 30px; }

  .home-membership-section {
    padding-bottom: 150px; }

  }
@media screen and (max-width: 1024px) {
  

  .home-membership-section {
    padding-bottom: 70px; }

  

  .home-membership-section-tab-img-wrapper {
    height: 600px;
    top: -250px; }

  

  .home-membership-section-tabs-mobile {
    display: flex;
    margin-top: 0; }

  .home-membership-section-tabs-wrapper {
    width: 100%;
    padding-left: 0; }

  .home-membership-section-tab-title ul {
    justify-content: center; }

  .home-membership-section-tabs-img {
    width: 100%; }

  .home-membership-section-tabs-img:before {
    top: 130px;
    right: 0;
    left: 0;
    margin: auto; }

  .home-membership-section-tab-img {
    padding: 120px 0 150px;
    text-align: center; }

  .home-membership-section-tab-img-wrapper {
    right: 30px;
    top: -120px;
    z-index: -1; }

  .home-membership-section-tab-img-wrapper img {
    left: 0;
    right: 40px;
    margin: auto; }

  .home-membership-section-tab-img-wrapper .home-activeImg {
    right: 150px; }

  .home-membership-section-tab-content {
    max-width: 70%;
    margin: auto;
    margin-top: 30px; }

  .home-membership-section {
    padding-bottom: 0;
    z-index: 999999;
    position: relative; }

   }

@media screen and (max-width: 800px) {
  

  .home-membership-section-content p, .home-our-story-content p, .home-partner-content p, .home-scholarly-section-content p, .home-sirat-section-content p {
    max-width: 75%; }

  

  .home-membership-section-tab-img-wrapper {
    right: 60px; }


  .home-membership-section-content p {
    max-width: 80%; }

  .home-membership-section-tab-content {
    max-width: 100%; }


  .home-membership-section-tab-img-wrapper  {
    top: 60px; }

  .home-membership-section-tab-img-wrapper img {
    bottom: 100px; } }

  

 
@media screen and (max-width: 667px) {
  

  .home-membership-section-tab-img {
    padding: 70px 0 90px;
    text-align: right; }

  .home-membership-section-tabs-img:before {
    top: 100px;
    right: 20px;
    left: 140px; }

  .home-membership-section-tab-img-wrapper {
    height: 425px;
    right: 0;
    top: 0; }

  .home-membership-section-tab-img-wrapper .home-activeImg {
    right: 60px;
    top: 0;
    max-width: 320px; }

  

  .home-membership-section-tab-title ul li {
    font-size: 18px;
    padding: 8px 25px; }

  .home-membership-section-tabs-img:before {
    width: 180px;
    height: 180px; }

  .home-membership-section-tab-img img {
    max-width: 220px; }

  .home-membership-section-tab-img-wrapper .home-activeImg {
    max-width: 280px; }

  }
@media screen and (max-width: 360px) {
  .home-membership-section-tab-title ul li {
    font-size: 18px;
    padding: 3.5px 18px; }

  .home-membership-section-tabs-img:before {
    top: 130px;
    right: 20px;
    width: 140px;
    height: 140px;
    left: 150px; }

  .home-membership-section-tab-img {
    padding: 110px 0; }

  .home-membership-section-tab-img img {
    max-width: 170px; }

  .home-membership-section-tab-img-wrapper .home-activeImg, .home-membership-section-tab-img-wrapper img {
    max-width: 280px; }

  .home-membership-section-tab-img-wrapper .home-activeImg {
    right: 20px; }

  .home-membership-section-tab-img-wrapper {
    top: 20px;
    z-index: 0; }


  .home-membership-section {
    margin-top: -400px; }

  .home-membership-section-content h2 {
    font-size: 32px;
    line-height: 1; }

  .home-membership-section-content p {
    font-size: 14px;
    max-width: 100%;
    padding: 15px 10px 0; }

  .home-membership-section-tab-text p {
    font-size: 14px;
    padding-top: 0; }


  .home-membership-section-tab-content {
    margin-top: 40px; }

  }



  


.home-membership-section {
  width: 100%;
  padding: 20px 20px 150px;
  margin-top: 50px; }

.home-membership-section-content {
  width: 100%;
  color: #405971; }

.home-membership-section-content h2 {
  font-size: 35px;
  font-family: Bubblegum-Sans !important;
  text-align: center;
  font-weight:800;
}

.home-membership-section-content p {
  font-family: Open-Sans !important;
  max-width: 60%;
  margin: auto; 
  font-size: 17px;
  font-weight: 800;
  text-align:center;
  line-height: 30px;
}
  }

.home-membership-section-tabs {
  width: 100%;
  display: flex;
  margin-top: 90px; }

.home-membership-section-tabs-img {
  width: 50%;
  position: relative; }

.home-membership-section-tabs-wrapper {
  width: 50%;
  padding-left: 20px;
  padding-top: 10px; }

.home-membership-section-tab-img-wrapper {
  position: absolute;
  top: -300px;
  z-index: 99;
  right: 10px;
  overflow: hidden;
  width: 100%;
  height: 730px;
  right: 30px; }

.home-membership-section-tab-img {
  width: 100%;
  text-align: right;
  position: relative;
  z-index: 999; }

.home-membership-section-tab-title {
  width: 100%;
  margin-bottom: 50px; }

.home-membership-section-tab-title ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start; }

.home-membership-section-tab-title ul li {
  font-size: 32px;
  font-family: Bubblegum-Sans;
  margin: 0 20px 0 0;
  padding: 5px 25px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 2px 10px 20px 0 rgba(0, 0, 0, 0.15);
  color: #1a466d;
  cursor: pointer;
  transition: .5s ease all; }

.home-membership-section-tab-title ul li:last-child {
  margin: 0; }

.home-membership-section-tab-title .home-activeTab, .home-membership-section-tab-title ul li:hover {
  background: #3d84d6;
  color: #fff; }

.home-membership-section-tab-content {
  width: 100%;
  max-width: 70%;
  line-height: 1.7; }

.home-membership-section-tab-text {
  width: 100%;
  text-align: left;
  color: #4a6884;
  display: none; }

.home-membership-section-tab-text p {
  font-family: Open-Sans !important;
  font-weight: 800;
}

.home-activeTabContent {
  display: block; }

.home-membership-section-tabs-img:before {
  content: '';
  width: 270px;
  height: 270px;
  background: #fff;
  position: absolute;
  z-index: 999;
  border-radius: 100%;
  top: 20px;
  right: 30px; }

.home-membership-section-tab-img-wrapper img {
  transform: rotate(180deg);
  transition: 2s ease all;
  transform-origin: 80% 50%;
  position: absolute;
  max-width: 530px;
  max-height: 756px;
  bottom: 0;
  right: 0;
  opacity: 0; }

.home-membership-section-tab-img-wrapper .home-activeImg {
  transform: rotate(0);
  right: 40px;
  opacity: 1; }

.home-membership-section-tabs-mobile {
  display: none; }

.home-membership-section-tab-img img {
  max-width: 45%; }



@media screen and (max-width: 1400px) {
  .home-membership-section {
    padding: 20px 20px 100px; }

  .home-membership-section-tab-title ul li {
    margin: 0 15px 0 0;
    font-size: 30px; }

  .home-membership-section-tab-title ul li:last-child {
    margin: 0; }

  .home-membership-section-tab-title ul {
    justify-content: flex-start; }


  .home-membership-section-tabs-img:before {
    width: 200px;
    height: 200px; }

  .home-membership-section-tab-img img {
    max-width: 35%; }

  .home-membership-section-tab-img-wrapper {
    top: -190px;
    height: 530px; }

  .home-membership-section-tab-img-wrapper img {
    max-width: 400px; }

  .home-membership-section-tab-img-wrapper .home-activeImg {
    right: 0; } }

 
@media screen and (max-width: 1025px) and (min-width: 980px) {
 
  body .home-membership-section {
    padding-bottom: 35px; }


  .home-membership-section-tab-img-wrapper .home-activeImg {
    right: 20px;
    bottom: 0; }

  .home-membership-section-tab-img-wrapper img {
    right: -180px; } }
@media screen and (max-width: 1200px) {
  .home-membership-section-tabs-img:before {
    width: 200px;
    height: 200px;
    top: 10px; }

  .home-membership-section-tab-img img {
    max-width: 250px; }

  .home-membership-section-tab-img-wrapper {
    height: 465px;
    right: 30px;
    top: -100px; }

  .home-membership-section-tab-img-wrapper img {
    max-width: 400px; }

  .home-membership-section-tab-title ul li {
    font-size: 22px;
    padding: 8px 30px; }

  .home-membership-section-tab-content {
    max-width: 90%; }

  .home-membership-section-tab-title {
    margin-bottom: 30px; }
 }
@media screen and (max-width: 1024px) {
 

  .home-membership-section {
    padding-bottom: 70px; }


  .home-sirat-section-slider-nav-text {
    margin-top: 25px !important; }

  .home-membership-section-tab-img-wrapper {
    height: 600px;
    top: -250px; }

  }
@media screen and (max-width: 1023px) {
  .home-membership-section-tabs-desktop {
    display: none; }

  .home-membership-section-tabs-mobile {
    display: flex;
    margin-top: 0; }

  .home-membership-section-tabs-wrapper {
    width: 100%;
    padding-left: 0; }

  .home-membership-section-tab-title ul {
    justify-content: center; }

  .home-membership-section-tabs-img {
    width: 100%; }

  .home-membership-section-tabs-img:before {
    top: 130px;
    right: 0;
    left: 0;
    margin: auto; }

  .home-membership-section-tab-img {
    padding: 120px 0 150px;
    text-align: center; }

  .home-membership-section-tab-img-wrapper {
    right: 30px;
    top: -120px;
    z-index: -1; }

  .home-membership-section-tab-img-wrapper img {
    left: 0;
    right: 40px;
    margin: auto; }

  .home-membership-section-tab-img-wrapper .home-activeImg {
    right: 150px; }

  .home-membership-section-tab-content {
    max-width: 70%;
    margin: auto;
    margin-top: 30px; }

  .home-membership-section {
    padding-bottom: 0;
    z-index: 999999;
    position: relative; }

 }
 
@media screen and (max-width: 800px) {


  .home-membership-section-content p{
    max-width: 75%; }


  .home-membership-section-tab-img-wrapper {
    right: 60px; }
 }
@media screen and (max-width: 768px) {

  .home-membership-section-content p, .home-partner-content p, .home-scholarly-section-content p, .home-sirat-section-content p {
    max-width: 100%; }



  .home-membership-section-tab-content, .home-our-story-content p {
    max-width: 100%; }


  .home-membership-section-tab-img-wrapper {
    right: 50px;
    top: -50px; }

  .home-membership-section-tab-img-wrapper .home-activeImg {
    top: 60px; }

  .home-membership-section-tab-img-wrapper img {
    bottom: 100px; } }

@media screen and (max-width: 667px) {
 
  .home-membership-section-tab-img {
    text-align: center; }
 }
@media screen and (max-width: 480px) {

  .home-membership-section-tab-img {
    padding: 70px 0 90px;
    text-align: right; }

  .home-membership-section-tabs-img:before {
    top: 100px;
    right: 20px;
    left: 140px; }

  .home-membership-section-tab-img-wrapper {
    height: 425px;
    right: 0;
    top: 0; }

  .home-membership-section-tab-img-wrapper .home-activeImg {
    right: 60px;
    top: 0;
    max-width: 320px; }


  .home-membership-section-tab-title ul li {
    font-size: 18px;
    padding: 8px 25px; }

  .home-membership-section-tabs-img:before {
    width: 180px;
    height: 180px; }

  .home-membership-section-tab-img img {
    max-width: 220px; }

  .home-membership-section-tab-img-wrapper .home-activeImg {
    max-width: 280px; }



