/* ================ */
/* Basic */
/* ================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
body {
  line-height: 1.8;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
button:focus,
input:focus,
a:focus,
i:focus,
video:focus {
  outline: none;
}
a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
.g-5 {
  --bs-gutter: 5rem;
}
/* ================ */
/* Fonts */
/* ================ */
@font-face {
  font-family: sofia-bold;
  src: url("../fonts/Sofia\ Pro\ Bold\ Az.otf");
}
@font-face {
  font-family: sofia-regular;
  src: url("../fonts/Sofia Pro Regular Az.otf");
}
@font-face {
  font-family: sofia-italic;
  src: url("../fonts/Sofia Pro Regular Italic Az.otf");
}
/* ================ */
/* Animation */
/* ================ */
.animation {
  animation: scale 5s infinite;
  -webkit-animation: scale 5s infinite;
}
.animation-delay-1 {
  animation-delay: 1s;
}
@keyframes scale {
  0% {
    transform: scale(0.98);
  }

  25% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.98);
  }

  75% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.98);
  }
}
/* ================ */
/* Reuseable */
/* ================ */
.section {
  padding: 8rem 0;
}
.space {
  padding: 5rem 0;
}
.heading {
  font-size: 4rem;
  color: #2f3550;
  font-family: sofia-bold;
}
.sub-heading {
  font-size: 2.8rem;
  color: #b83cb2;
  font-family: sofia-bold;
}
.para-size {
  font-size: 1.8rem;
  font-family: sofia-regular;
}
.para-size i {
  font-family: sofia-italic;
}
.para-color-2F3550 {
  color: #2f3550;
}
.para-color-697091 {
  color: #697091;
}
.para-color-000000 {
  color: #000000;
}
.button {
  position: relative;
  font-size: 1.8rem;
  padding: 1rem 4rem;
  background: transparent linear-gradient(103deg, #b83cb2 0%, #f368ed 100%) 0%
    0% no-repeat padding-box;
  border-radius: 36px;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s linear;
  box-shadow: 0px 11px 20px -5px#B83CB2;
  font-family: sofia-regular;
}
.button:hover {
  color: #ffffff;
  box-shadow: none;
  transition: all 0.5s linear;
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -25%;
  width: 0%;
  height: 100%;
  z-index: -1;
  background: transparent linear-gradient(99deg, #b83cb2 0%, #f368ed 100%) 0% 0%
    no-repeat padding-box;
  -webkit-transform: skew(50deg);
  -ms-transform: skew(50deg);
  transform: skew(50deg);
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.button:hover::before {
  width: 180%;
}
.fa-circle {
  color: #b83cb2;
}
.download {
  z-index: 111111;
}

/* ================ */
/* Hero Section */
/* ================ */
.hero-layer-img-box {
  top: 75% !important;
}

/* ================ */
/* We Can Offer Section */
/* ================ */
.offer-box {
  box-shadow: 0px 17px 39px #00000014;
  border-radius: 27px;
  transition: all 0.5s linear;
  padding: 3rem;
}
.offer-box:hover {
  background: transparent linear-gradient(137deg, #b83cb2 0%, #f368ed 100%);
  box-shadow: 0px 3px 6px #00000029;
  transform: translateY(-1rem);
  transition: all 0.5s linear;
  cursor: pointer;
}
.offer-box:hover p {
  color: #ffffff !important;
}
.offer-img-box {
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
}
/* ================ */
/* Download Section */
/* ================ */
video.rounded {
  border-radius: 3rem 3rem 2.5rem 2.5rem !important;
  overflow: hidden;
  cursor: pointer;
}
/* ================ */
/* Info Section */
/* ================ */
.info-main-box {
  background-color: #f2f2f2;
  border-radius: 70px;
  padding: 4rem 5rem 0 5rem;
}
.media-body h3 {
  font-size: 3.5rem;
  color: #2f3550;
}
.media-body span {
  color: #a424a6;
}

/* ================ */
/* Contact Section */
/* ================ */
#contact-section {
  background-color: #2f3550;
  background-image: url("../img/contact-bg.png");
  background-repeat: no-repeat;
  background-position: right;
}
form input,
form textarea {
  background: #4b5271;
  border: 1px solid #848baa;
  border-radius: 1.2rem;
  padding: 1rem;
  font-size: 1.6rem;
  color: #8188a7;
  font-family: sofia-regular;
}
form input:focus,
form textarea:focus {
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.705);
}
form textarea:focus {
  outline: none !important;
}
textarea {
  height: 10rem;
}
::placeholder {
  color: #8188a7;
}
.newsletter {
  background-color: #b83cb2;
  padding: 3rem;
  border-radius: 1.2rem;
  background-image: url("../img/newsletter-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  animation: move 5s infinite;
  -webkit-animation: move 5s infinite;
}
@keyframes move {
  0% {
    background-position: center;
  }

  50% {
    background-position: left;
  }

  100% {
    background-position: center;
  }
}
.subscribe-input {
  background: #ffffff73 !important;
  padding: 0.5rem 1rem !important;
  border: none;
}
.subscribe-input::placeholder {
  color: #ffffff;
}
.subscribe-button {
  background: #560fe8;
  border-radius: 12px;
  padding: 0.5rem 2rem !important;
}
.subscribe-button::before {
  background: #310092;
}
.location i {
  font-size: 1.6rem;
}

/* ================ */
/* Back to top */
/* ================ */
#myBtn {
  opacity: 0;
  position: fixed;
  bottom: 2rem;
  right: 3rem;
  z-index: 99;
  font-size: 1.5rem;
  border: none;
  outline: none;
  background: transparent linear-gradient(99deg, #b83cb2 0%, #f368ed 100%) 0% 0%
    no-repeat padding-box;
  color: white;
  cursor: pointer;
  padding: 1rem 1.5rem;
  border-radius: 0.4rem;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -ms-border-radius: 0.4rem;
  -o-border-radius: 0.4rem;
  animation: updown 5s infinite;
  -webkit-animation: updown 5s infinite;
}

@keyframes updown {
  0% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }

  25% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }

  75% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }
}


.swal2-title{
    color: #b83cb2 !important;
}
button.swal2-confirm:focus{
    box-shadow: none;
}
button.swal2-confirm{
    background: transparent linear-gradient(
103deg
, #b83cb2 0%, #f368ed 100%) 0% 0% no-repeat padding-box;
    border-radius: 36px;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s linear;
    box-shadow: 0px 11px 20px -5px#B83CB2;
    font-family: sofia-regular;
    background-color: #b83cb2 !important;
}
.customsocialicons{
    margin-top: 15px !important;
}
.customsocialicons i{
    color: #fff;
    font-size: 25px;
    margin-right: 20px;
}
/* News Section Start */
.teacher-box {
    margin-bottom: 30px;
    background: #fff;
    text-align: center;
    -ms-transition: .4s;
    -o-transition: .4s;
    -moz-transition: .4s;
    -webkit-transition: .4s;
    transition: .4s;
        box-shadow: 0px 17px 39px #00000014;
    border-radius: 27px;
    transition: all 0.5s linear;
    padding: 3rem;
}
.teacher-box a{
    text-decoration: none;
}
.teacher-box .pic {
    position: relative;
    overflow: hidden;
}
.teacher-box .pic img{
    height: auto;
    max-width: 100%;
}
.teacher-box .view-profile {
    width: 100px;
    padding: 0 8px 15px 0;
    color: #fff;
    text-align: right;
    text-transform: uppercase;
    position: absolute;
    bottom: 6px;
    right: 0;
    opacity: 0;
    z-index: 1;
    transform: translate3d(20px, 20px, 0px);
    transition: all 0.35s ease 0s;
}
.teacher-box .teacher-content {
    padding: 25px 0;
        padding-bottom: 0;
}
.teacher-box .title {
    font-size: 22px;
    font-weight: 700;
    color: #424242;
}
.teacher-box .post {
    font-size: 16px;
    color: #5e5e5e;
    display: block;
    margin-top: 10px;
    margin-bottom: 15px;
}
.teacher-box:hover .view-profile {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
}
.blogshead{
    text-align: center;
    margin-bottom: 20px;
}
.viewallBlogs{
    text-align: center;
    margin-bottom: 50px;
}
.innernews{
    margin-bottom: 50px;
}
.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.blog-details {
    background: #fff;
}
.blog-details .article-img img{
    height: auto;
    max-width: 100%;
}
.blog-details .article-img{
    position: relative;
}
.blog-details .article-img .date {
    position: absolute;
    bottom: 15px;
    width: 130px;
    left: 15px;
    height: 100px;
    text-align: center;
    font-size: 25px;
    background: #b83cb2;
    color: #fff;
    border-radius: 5px;
    padding-top: 18px;
    line-height: 33px;
    font-style: italic;
}
.blog-details .article-text {
    padding: 30px;
    padding-left: 0;
    padding-right: 0;
}
.blog-details .article-text .post-meta li {
    margin-right: 10px;
    color: #777777;
}
.blog-details .article-text .post-meta li i {
    color: #b83cb2;
    margin-right: 2px;
}
.blog-details-area .title {
    margin-bottom: 30px;
    font-size: 27px;
}
.blog-details .article-text p {
    margin-bottom: 20px;
        color: #777777;
    font-size: 15px;
    line-height: 1.8;
}
.side-bar .single-widget {
    margin-bottom: 35px;
}
.side-bar .single-widget .title {
    margin-bottom: 25px;
    font-size: 24px;
    text-transform: uppercase;
    margin-top: 0;
}
.side-bar .recent-post .single-recent-post {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.side-bar .recent-post .single-recent-post .img {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.side-bar .recent-post .single-recent-post .img img {
    max-width: 100%;
    border-radius: 8px;
}
.side-bar .recent-post .single-recent-post .content {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding-left: 15px;
}
.side-bar .recent-post .single-recent-post .content h4 a{
    color: #000;
    text-decoration: none;
}
.side-bar .recent-post .single-recent-post .content p{
    color: #777777;
    font-size: 15px;
    line-height: 1.6;
}
.side-bar .recent-post .single-recent-post .content h4 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}
.side-bar .recent-post .single-recent-post .content span {
    display: block;
    margin-top: 12px;
    color: #b83cb2;
    font-size: 15px;
    font-weight: bold;
}
/* News Section End */
.copylinkCustom{}
.copylinkCustom input{
    padding: 8px 10px;
    background-color: #e4e4e4;
    color: #000;
    border: 1px solid;
    border-color: #ddd;
    border-radius: 3px;
    font-size: 15px;
    min-width: 325px;
    text-align: center;
}
.copylinkCustom button{
    padding: 8px 15px;
    font-size: 18px;
    margin-top: 1px;
    vertical-align: bottom;
    background-color: #e4e4e4;
    color: #000;
    border: 1px solid;
    border-color: #ddd;
    border-radius: 3px;
}
.tooltip {
  position: relative;
  display: inline-block;
    opacity: inherit !important;
    
    vertical-align: bottom;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
    font-size: 14px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.customheaderdropdown{
        display: inline-block;
    float: left;
    margin-left: 15px;
    margin-top: -25px;
    vertical-align: top;
}
.customheaderdropdown .dropdown-menu{
        width: 100%;
    font-size: 14px;
}
.customheaderdropdown .dropdown-toggle:focus{
    background-color: #a424a6;
    border-color: #a424a6;
}
.customheaderdropdown .dropdown-toggle{
        padding: 11px 20px;
    font-size: 15px;
    background-color: #a424a6;
    border-color: #a424a6;
}
header{
    margin-top: 25px;
}