@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;1,100&display=swap");
* {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fff;
}

p {
  color: #3d3d50;
  font-weight: 300;
}
p span {
  color: #852b88;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-z-5 {
  margin-top: 0.5rem;
}

.container {
  display: flex;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
@media all and (max-width: 768px) {
  .container {
    flex-direction: column-reverse;
  }
}
.container .content {
  flex: 50%;
}
.container .image {
  flex: 50%;
  background-image: url("../img/profile.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10%;
  text-align: center;
}
@media all and (max-width: 768px) {
  .container .image {
    flex: 100%;
    padding: 3rem 1rem;
    height: 100vh;
    flex: 100%;
  }
}
.container .image .heading {
  font-size: 2.5rem;
  color: #fff;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 70%;
  overflow: hidden;
}
.container .image .heading span {
  color: #fff;
}
@media all and (max-width: 768px) {
  .container .image .heading {
    font-size: 1.5rem;
    margin-top: auto;
  }
}
.container .image .sub-heading {
  font-size: 1.5rem;
  color: #fff;
  overflow: hidden;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 1rem;
}
.container .image .sub-heading span {
  color: #fff;
}
@media all and (max-width: 768px) {
  .container .image .sub-heading {
    font-size: 1.2rem;
  }
}
.container .image .buttons {
  display: flex;
  margin-top: 0.5rem;
  overflow: hidden;
  width: 100%;
  justify-content: center;
}
.container .image .buttons a {
  padding: 0.7rem 1rem;
  color: #fff;
  min-width: 130px;
  background-image: url("../img/btn-bg.png");
  background-size: cover;
  text-decoration: none;
  margin-right: 1rem;
  transition: all 0.3s ease-in-out;
}
.container .image .buttons a:hover {
  background-color: #780000;
  color: #fff;
}
@media all and (max-width: 768px) {
  .container .image .buttons a {
    padding: 0.7rem;
    font-size: 0.8rem;
    min-width: 110px;
  }
}

.main-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  padding: 2rem 1rem;
}
@media all and (max-width: 768px) {
  .main-content {
    position: unset;
    width: 100%;
  }
}

.icons {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  margin-bottom: 1rem;
}
.icons a {
  background-image: url("../img/btn-bg.png");
  background-size: cover;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0.5rem;
  overflow: hidden;
}
.icons a img {
  width: 30px;
  transition: all 0.3s ease-in-out;
}
.icons a:hover {
  width: 3.1rem;
}
.icons a:hover img {
  transform: rotate(360deg);
}
@media all and (max-width: 768px) {
  .icons {
    margin-top: 3rem;
  }
}

.inner {
  margin-bottom: 1rem;
  padding-bottom: 2rem;
  display: flex;
}
@media all and (max-width: 768px) {
  .inner {
    flex-direction: column;
  }
}
.inner .inner-heading {
  flex: 20%;
}
.inner .inner-heading h4 {
  background-image: url("../img/btn-bg.png");
  background-size: cover;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 0.5rem;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.3rem;
}
@media all and (max-width: 768px) {
  .inner .inner-heading h4 {
    font-size: 1.2rem;
  }
}
.inner .inner-content {
  flex: 80%;
  padding: 0 2rem;
}
.inner .inner-content p b {
  color: #080841;
}
@media all and (max-width: 768px) {
  .inner .inner-content {
    padding: 0;
  }
}
.inner .inner-content .exp-section h4 a {
  text-decoration: none;
  color: #080841;
}

.date {
  font-size: small;
  color: #080841;
}

::-webkit-scrollbar {
  width: 0.4rem;
  background-color: #f0f8ff;
}

::-webkit-scrollbar-thumb {
  background-image: url("../img/btn-bg.png");
  background-size: cover;
  border-radius: 1rem;
}/*# sourceMappingURL=style.css.map */
