/**
 * /*---Hi, this is Joan---
 *
 * @format
 */

/*---joan@smodern.co.ke---*/
/*---Start Fonts---*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@300&display=swap");

@font-face {
  font-family: "Romantica Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Romantica Regular"), url("Romantica-RpXpW.woff") format("woff");
}
  @font-face {
    font-family: 'Bright Young Things Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Bright Young Things Regular'), url('Bright Young Things.woff') format('woff');
    }
@font-face {
  font-family: "Netflix Sans Light";
  font-style: normal;
  font-weight: normal;
  src: local("Netflix Sans Light"), url("NetflixSansLight.woff") format("woff");
}

/*---End Fonts---*/

/*---Start Variables---*/
:root {
  /* --main-color: #e02f6b; */
  --main-color:  #ff4500;
  --blue: #0000ff;
  --blue-dark: #18293c;
  --orange: #ffa500;
  --green-yellow: #cddc39;
  --pink-light: #efa2b4;
  --cyan-light: #aef1ee;
  --orange-green: #dcd739;
  --white: #fff;
  --white-alpha-40: rgba(255, 255, 255, 0.4);
  --white-alpha-25: rgba(255, 255, 255, 0.25);
  --backdrop-filter-blur: blur(4px);
}

/*---End Variables---*/
/*Loader Start*/
/* Absolute Center Spinner */
.new_loader {
  display: none;
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.new_loader:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));

  background: -webkit-radial-gradient(
    rgba(20, 20, 20, 0.8),
    rgba(0, 0, 0, 0.8)
  );
}

/* :not(:required) hides these rules from IE9 and below */
.new_loader:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.new_loader:not(:required):after {
  content: "";
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  -moz-animation: spinner 150ms infinite linear;
  -ms-animation: spinner 150ms infinite linear;
  -o-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0,
    rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0,
    rgba(255, 255, 255, 0.75) 0 1.5em 0 0,
    rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0,
    rgba(255, 255, 255, 0.75) -1.5em 0 0 0,
    rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0,
    rgba(255, 255, 255, 0.75) 0 -1.5em 0 0,
    rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0,
    rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0,
    rgba(255, 255, 255, 0.75) 0 1.5em 0 0,
    rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0,
    rgba(255, 255, 255, 0.75) -1.5em 0 0 0,
    rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0,
    rgba(255, 255, 255, 0.75) 0 -1.5em 0 0,
    rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*Loader End*/
/*Start Swal*/

.swal-overlay--show-modal .swal-modal {
  background-color: rgba(14, 14, 14, 0.8);
  border: 1px solid rgba(14, 14, 14, 0.64);
}
.swal-icon--success::before,
.swal-icon--success::after {
  background: transparent !important;
}
.swal-icon--success__hide-corners {
  background-color: transparent !important;
}
.swal-title {
  color: #fff;
}
/*End Swal*/

/*---Start Global Settings---*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
}

::before,
::after {
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  /* background-color: #fff; */
  background-color: #fafafa;
  background-attachment: fixed;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #333;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-top-highlight-color: transparent;
  padding: 35px 15px;
  letter-spacing: 0.5px;
  transition: background-color 3s !important;
}
body.hide-scrolling {
  overflow-y: hidden;
}
body::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  /* background-color: var(--green-yellow); */
  z-index: -1;
  opacity: 0.12;
}
a {
  text-decoration: none;
  color: #e02f6b;
}
h1,
h2 {
  font-weight: 300;
}
h3,
h4,
h5,
h6 {
  font-weight: 500;
}
img {
  max-width: 100%;
  vertical-align: middle;
}
ul {
  list-style: none;
}
section {
  /* background-color: var(--white-alpha-25); */
  background-color: transparent;
  border: 1px solid (--white-alpha-40);
  min-height: calc(100vh - 70px);
  border-radius: 30px;
  backdrop-filter: var(--backdrop-filter-blur);
  display: none;
}
section.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out forwards;
}
section.fade-out {
  animation: fadeOut 0.5s ease-in-out forwards;
}

.main {
  max-width: 1200px;
  margin: auto;
  transition: all 0.5s ease-in-out;
  position: relative;
}
.main.fade-out {
  opacity: 0;
}
.container {
  padding: 0 40px;
  width: 100%;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.align-items-center {
  align-items: center;
}
/*---End Global Settings---*/
.hidden {
  display: none !important;
}
.sec-padding {
  padding: 80px 0;
}
.flex-end {
  justify-content: flex-end;
}
/*---Start Section Title---*/

.mytitles {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 1em;
  padding-bottom: 1em;
  width: 100%;
  /* padding-top: 1em; */
  margin-top: 1em;
}
.mytitles::after {
  background-color: var(--main-color);
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 50%;
  position: absolute;
  margin-bottom: -0.5em;
  transform: translate(-50%, 0);
  width: 100px;
}
.section-title {
  padding: 0 15px;
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 40px;
  font-family: "Netflix Sans Light";

  text-transform: capitalize;
}
.section-title p {
  color: var(--main-color);
  letter-spacing: 0.6px;
}
/*---End Section Title---*/

/*---Start Custom Scrollbar---*/
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background-color: var(--white);
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  -moz-background-color: #e02f6b !important;
  -webkit-background-color: var(--main-color);
  -moz-background-color: var(--main-color);
  -ms-background-color: var(--main-color);
  -o-background-color: var(--main-color);
}
/*---End Custom Scrollbar---*/

/*---Start Buttons---*/
button {
  font-family: inherit;
  user-select: none;
}
.btn {
  line-height: 1.5;
  background-color: transparent;
  border: 1px solid var(--main-color);
  padding: 10px 28px;
  display: inline-block;
  border-radius: 30px;
  color: var(--main-color);
  font-weight: 500;
  text-transform: capitalize;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
}
.btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: transparent;
  z-index: -1;
  transition: width 0.3s ease;
}
.btn:hover::before {
  width: 100%;
}
.btn:hover {
  background-color:var(--main-color);
  color: var(--white) !important;
  transition: all 0.5s ease;
}
.btn a:hover {
  color: var(--white);
}
.btn_2 {
  line-height: 1.5;
  background-color: transparent;
  border: 1px solid var(--main-color);
  padding: 10px 28px;
  display: inline-block;
  border-radius: 30px;
  color: var(--main-color);
  font-weight: 500;
  text-transform: capitalize;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
}
.btn_2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: transparent;
  z-index: -1;
  transition: width 0.3s ease;
}
.btn_2:hover::before {
  width: 100%;
}
.btn_2:hover {
  color: var(--white) !important;
  background-color: var(--main-color);
  transition: 0.5s all;
  
}
.btn_2 a:hover {
  color: var(--white);
}
.bookbtn {
  line-height: 1.5;
  background-color: var(--main-color);
  border: 2px solid transparent;
  padding: 10px 28px;
  display: inline-block;
  border-radius: 30px;
  color: var(--white);
  font-weight: 500;
  text-transform: capitalize;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  width: 100%;
  text-align: center;
}
.bookbtn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: var(--white);
  /* color: var(--main-color); */
  z-index: -1;
  transition: width 0.5s ease-in-out;
}
.bookbtn:hover::before {
  width: 100%;
}
.bookbtn:hover {
  /* color: var(--white) !important; */
  color: var(--main-color);
  background-color: transparent;
  border: 2px solid var(--main-color);
  transition: 0.3s ease-in-out;
}
.bookbtn a:hover {
  color: var(--white);
}
/*---End Buttons---*/

/*---Start Animation keyframes---*/

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes heyThere {
  0% {
    transform: scale(0);
  }
  5% {
    transform: scale(1);
  }
  10% {
    opacity: 1;
    /* transform: translateX(0px); */
  }
  25% {
    opacity: 1;
    /* transform: translateX(0px); */
  }
  30% {
    opacity: 0;
    /* transform: translateX(100px); */
  }

  100% {
    transform: scale(1);
  }
}
@keyframes topTobottom {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  5% {
    opacity: 0;
    /* transform: translateY(-50px); */
    transform: scale(1);
  }
  10% {
    opacity: 1;
    /* transform: translateY(0px); */
  }
  25% {
    opacity: 1;
    /* transform: translateY(0px); */
    transform: scale(1);
  }
  30% {
    opacity: 0;
    /* transform: translateY(50px); */
    transform: scale(0);
  }
  /* 80% {
    opacity: 0;
  } */
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes spinText {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomInOut {
  0%,
  100% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
}
@keyframes bounceTop {
  0%,
  100% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(0px);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*---End Animation keyframes---*/
/*---Start Background Circles---*/

#particles-js{
  height: 100%;
  opacity:0.8;
  background-color: transparent;
  position: absolute;
  color:var(--main-color);
}

.effect-wrap .effect {
  position: absolute;
  z-index: -1;
}

.effect-1 {
  width: 80px;
  height: 80px;
  border: 4px dotted #00B0FF;
  left: 4%;
  top: 86px;
  opacity: 0.7;
  animation: spin 25s linear infinite;
  border-radius: 50%;
}

.effect-4 {
  height: 50px;
  width: 50px;
  left: -30px;
  top: 90%;
  left:40%;
  display: flex;
  justify-content: space-between;
  border-radius: 50%;
  overflow: hidden;
  animation: bounceTop 5s ease-in-out infinite;
  z-index: 999;
}
.effect-4 div {
  width: 1px;
  background-color:  #c70039;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes leftBounce {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(25px);
  }
}

.bg-circles {
  position: fixed;
  top: 0;
  height: 100%;
  max-width: 1200px;
  width: calc(100% - 30px);
  left: 50%;
  transform: translateX(-50%);
}
.bg-circles div {
  position: absolute;
}
.bg-circles .circle-1 {
  height: 60px;
  width: 60px;
  background-color: #4dd01e;
  /* left: 5%;
  top: 10%; */
  left: 6%;
  top: 70%;
  opacity: 0.5;
  border-radius: 50%;

  animation: zoomInOut 8s linear infinite;
}
.bg-circles .circle-2 {
  height: 100px;
  width: 100px !important;
  left: 50%;
  top: -8%;
  border-radius: 50%;
  border: 10px solid #F9A826;
  right: 10%;
  bottom: 10%;
  animation: leftBounce 3s ease-in-out infinite;
}

.bg-circles .circle-3 {
  height: 120px;
  width: 120px;
  background-color: var(--white);
  top: 40%;
  right: -60px;
  opacity: 0.6;
}

/*---End Background Circles---*/

/*---Start Overlay Section---*/
.overlay {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  z-index: 200;
  opacity: 0.5;
  visibility: hidden;
}
.overlay.active {
  visibility: visible;
}
/*---End Overlay Section---*/
/*---Start Page Loader---*/
.page-loader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  background-color: var(--white-alpha-25);
  backdrop-filter: var(--backdrop-filter-blur);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
.page-loader.fade-out {
  opacity: 0;
}
.page-loader div {
  border: 2px solid transparent;
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  animation: spin 1s linear infinite;
}
.page-loader div:nth-child(1) {
  height: 60px;
  width: 60px;
  border-color: var(--main-color);
}
.page-loader div:nth-child(2) {
  height: 45px;
  width: 45px;
  border-color: var(--blue);
  animation-duration: 1.2s;
}
.page-loader div:nth-child(3) {
  height: 30px;
  width: 30px;
  border-color: var(--orange);
}

/*---End Page Loader---*/
/*---Start Header Section---*/
.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  padding: 20px 0 0;
}
.header.active {
  position: fixed;
  top: 35px;
  padding: 20px 15px;
}
.header.active .container {
  max-width: 1200px;
  margin: auto;
}
.header .nav-toggler {
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
}
.header .nav-toggler.hide {
  opacity: 0;
  transition: none;
}

.header .nav-toggler span {
  height: 3px;
  width: 30px;
  background-color: var(--main-color);
  position: relative;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}
.header.active .nav-toggler span {
  background-color: transparent !important;
}
.header .nav-toggler span::before,
.header .nav-toggler span::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  transition: all 0.3s ease;
}
.header .nav-toggler span::before {
  left: 0;
  transform: translateY(-8px);
}
.header.active .nav-toggler span::before {
  transform: rotate(45deg);
}
.header .nav-toggler span::after {
  right: 0;
  transform: translateY(8px);
}
.header.active .nav-toggler span::after {
  transform: rotate(-45deg);
}
.header:not(.active) .nav-toggler:hover span::before,
.header:not(.active) .nav-toggler:hover span::after {
  width: 50%;
}
.header .nav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 35px 15px;
  overflow-y: auto;
  visibility: hidden;
}
.header.active .nav {
  visibility: visible !important;
}
.header .nav-inner {
  min-height: calc(100vh - 70px);
  max-width: 1200px;
  margin: auto;
  /*background-color: rgba(0, 0, 0, 0.31);*/
  border: 4px solid var(--white-alpha-40);
  backdrop-filter: var(--backdrop-filter-blur);
  padding: 50px 0;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}
.header.active .nav-inner {
  opacity: 1;
}
.header .nav-inner ul li {
  text-align: center;
}
.header .nav-inner ul li a {
  font-size: 40px;
  text-transform: capitalize;
  color: #333;
  display: block;
  font-weight: 500;
  padding: 8px 15px;
  transition: color 0.3s ease;
  position: relative;
}
.header .nav-inner ul li a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 50%;
  width: 0%;
  background-color: var(--white-alpha-25);
  z-index: -1;
  transition: width 0.5s ease;
}
.header .nav-inner ul li a:hover::before {
  width: 100%;
}
.header .nav-inner ul li a:hover {
  color: var(--main-color);
}
/*---End Header Section---*/

/*---Start Home Section---*/

.hat{
  position: absolute;
bottom: 458px;
width: 150px;
height: auto;
right: 282px;
}

.home-section {
  padding: 120px 0;
}
.home-section.active {
  display: flex;
}
.home-text,
.home-img {
  width: 50%;
  padding: 15px;
}
.home-text p {
  font-size: 18px;
  /* padding-bottom: 1em; */
}
.home-text h1 {
  font-size: 50px;
  text-transform: capitalize;
}

.home-text h4{
  text-transform: uppercase;
  padding: 1em 0em 2em 0em;
  letter-spacing: 3px;
}
.home-text .ronald{
  /* font-family: "Romantica Regular"; */
  font-weight: 900;
  /* font-size: 2em; */
  color:#333;
  letter-spacing: 3px;
  border-bottom: 3px solid var(--main-color);
}
.home-text h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 2em;
  text-transform: capitalize;
  color:#333;
}
.intro {
  font-size: 40px;
  font-weight: 700;
  display: flex;
  text-align: center;
}
.wrapping {
  white-space: nowrap;
}
.typing {
  position: relative;
  margin-left: 10px;
}
.typing::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 50%;
  top: 30%;
  right: -5px;
  border-right: 2px solid var(--blue-dark);
  animation: blink 0.8s infinite ease;
}
.slidingVertical {
  display: inline;
  text-indent: 9px;
}
.slidingVertical span {
  opacity: 0;
  overflow: hidden;
  position: absolute;
  animation: topTobottom 15s linear infinite;
}
.slidingVertical span:nth-child(2) {
  animation-delay: 3s;
}
.slidingVertical span:nth-child(3) {
  animation-delay: 6s;
}
.slidingVertical span:nth-child(4) {
  animation-delay: 9s;
}
.slidingVertical span:nth-child(5) {
  animation-delay: 12s;
}

.home-text .btn {
  margin: 0 15px 15px 0;
}
.home-img .img-box {
  max-width: 360px;
  background-color: var(--white-alpha-25);
  border-radius: 50%;
  /* border: 8px dotted #f9a826d4; */
  margin: auto;
}
.home-img .img-box img {
  width: 100%;
  border-radius: 50%;
}
/*---End Home Section---*/
/*---Start About Section---*/
.about-img {
  width: 40%;
  padding: 15px;
}

.about-text {
  width: 60%;
  padding: 0 15px;
}
.about-img .img-box {
  max-width: 360px;
  background-color: var(--white-alpha-25);
  border-radius: 50%;
  border: 8px solid var(--white-alpha-40);
  margin: auto;
}
.about-img .img-box img {
  width: 100%;
  border-radius: 50%;
}
.about-text p {
  line-height: 32px;
}
.about-text h3 {
  text-transform: capitalize;
  font-size: 17px;
  margin: 20px 0;
}
.about-text .skills {
  display: flex;
  flex-wrap: wrap;
}
.about-text .skill-item {
  background-color: #F6F0EA;
  border: 1px solid var(--white-alpha-40);
  padding: 5px 15px;
  text-transform: capitalize;
  margin: 0 10px 10px 0;
  border-radius: 20px;
  font-size: 13px;
}
.about-tabs {
  margin-top: 20px;
}
.about-tabs .tab-item {
  padding: 2px 0;
  background-color: transparent;
  border: none;
  text-transform: capitalize;
  display: inline-block;
  color: var(--blue-dark);
  font-size: 20px;
  cursor: pointer;
  font-weight: 500;
  margin: 0 30px 0 0;
  position: relative;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.about-tabs .tab-item:last-child {
  margin: 0;
}
.about-tabs .tab-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--blue-dark);
  transition: width 0.3s ease;
}
.about-tabs .tab-item:hover::before {
  width: 100%;
}
.about-tabs .tab-item.active::before {
  width: 100%;
  background-color: var(--main-color);
}
.about-tabs .tab-item.active {
  color: var(--main-color);
  opacity: 1;
  cursor: auto;
}
.about-text .timeline {
  position: relative;
}
.about-text .timeline::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  top: 0;
  left: 5px;
  background-color: var(--main-color);
}
.about-text .tab-content {
  padding: 40px 0;
  display: none;
}
.about-text .tab-content.active {
  display: block;
}
.about-text .timeline-item {
  margin-bottom: 30px;
  position: relative;
  padding: 10px 0 0 40px;
}
.about-text .timeline-item::before {
  content: "";
  position: absolute;
  height: 11px;
  width: 11px;
  background-color: var(--main-color);
  left: 0;
  top: 12%;
  border-radius: 50%;
}
.about-text .timeline-item:last-child {
  margin-bottom: 0;
}
.about-text .timeline-item .date {
  display: block;
  color: var(--main-color);
  font-weight: 400;
  margin: 0 0 10px;
}
.about-text .timeline-item h4 {
  font-size: 18px;
  text-transform: capitalize;
  margin: 0 0 10px;
  font-family: "Assistant", sans-serif;
}
.about-text .timeline-item h4 span {
  font-weight: 800;
}
.about-text.btn {
  margin: 0 15px 15px 0;
}

/*---End About Section---*/
/*---Start Services Section---*/
.myservices {
  margin-top: 3em;
}
.about-service {
  margin-top: 5em;
}
.ready {
  padding-top: 5em;
}
.hori {
  margin-left: auto;
  margin-right: auto;
  color: white;
  margin-top: 1em;
  margin-bottom: 1em;
}
.services-img {
  width: 40%;
  padding: 15px;
}
.services-text {
  width: 60%;
  padding: 0 15px;
}
.services-img .img-box {
  max-width: 360px;
  background-color: var(--white-alpha-25);
  border-radius: 50%;
  border: 8px dotted #f9a826d4;
  margin: auto;
  /* animation: servSpin 8s linear infinite; */
}

@keyframes servSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.services-img .img-box img {
  width: 100%;
  border-radius: 50%;
}
.mys{
  font-weight: 400;
padding-bottom: 1em;
}
/*---End Services Section---*/
/*---Start Testimonial Section---*/
.t-name{
  margin-top: 1em;
}
.testimonial-section {
  padding: 80px 0 80px;
  min-height: 100vh;
}
.testimonial-img {
  width: 100%;
  padding: 15px;
}

.testimonial-img p{
  line-height: 2em;
font-weight: 499;
font-size: 16px;
letter-spacing: 1px;
/* color: var(--main-color); */
}
.testimonial-text {
  width: 100%;
  padding: 0 15px;
}
.testimonial-img .img-box {
max-width: 360px;
/* background-color: var(--white-alpha-25); */
/* border-radius: 50%; */
/* border: 8px dotted #f9a826d4; */
margin: auto;
margin-top: 2em;

}
.testimonial-img .img-box img {
  width: 8em;
  margin-left:auto;
  margin-right:auto;
  border-radius: 50%;
}
.testimonial-text p {
  line-height: 48px;
}
.swiper {
  width: 100%;
  height: 100%;
  border-radius:2em;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  border-radius: 2em;
  width: calc((100% / 2) - 30px);


  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 34em;
}

.swiper-slide h3 {
  text-align: center;
  padding: 2em;
  line-height: 2.5em;
  width:100%;
  font-size: 18px;
  /* position: absolute;
  left:50px; */
}
.swiper-pagination-bullet{
  width: 15px !important;
  height: 15px !important;
  background-color: transparent !important;
  opacity: 1 !important;
  border:2px solid var(--main-color);
}
.swiper-pagination-bullet-active {
  background-color: var(--main-color) !important;
  width: 15px !important;
  height: 15px !important;
}


.swiper-slide img {
  display: block;
  width: 50%;
  height: 50%;
  object-fit: cover;
  border-radius: 50%;
}
.swiper-slide .row{
    display:block !important;
}
/*---End Testimonial Section---*/

/*---Start Portfolio Section---*/
.tab-content {
  padding: 30px 0;
  display: none;
}
.tab-content.active {
  display: flex;
  width: 100%;
}
.work-tabs {
  margin: 0 0 20px 0;
  text-align: center;
}
.work-tabs .tab-item {
  padding: 2px 0;
  background-color: transparent;
  border: none;
  text-transform: capitalize;
  display: inline-block;
  color: var(--blue-dark);
  font-size: 20px;
  cursor: pointer;
  font-weight: 500;
  margin: 0 30px 0 0;
  position: relative;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.work-tabs .tab-item:last-child {
  margin: 0;
}
.work-tabs .tab-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--blue-dark);
  transition: width 0.3s ease;
}
.work-tabs .tab-item:hover::before {
  width: 100%;
}
.work-tabs .tab-item.active::before {
  width: 100%;
  background-color: var(--main-color);
}
.work-tabs .tab-item.active {
  color: var(--main-color) !important;
  opacity: 1;
  cursor: auto;
}

.portfolio-section {
  padding-bottom: 50px;
}
.portfolio-item {
  width: calc((100% / 3) - 30px);
  margin: 0 15px 30px;
}
.portfolio-item_2 {
  width: calc((100% / 4) - 30px);
  margin: 0 15px 30px;
}
.portfolio-item_3 {
  width: calc((100% / 3) - 30px);
  margin: 0 15px 30px;
}
.books {
  width: 100%;
  text-transform: capitalize;
  font-weight: bold;
  margin-bottom: 1em;
}
.portfolio-item-thumbnail {
  padding: 10px;
  background-color: var(--white-alpha-25);
  /* filter: blur (2px); */
  border: 1px solid var(--white-alpha-40);
  border-radius: 10px;
}
.portfolio-item-thumbnail img {
  width: 100%;
  border-radius: 10px;
}
.portfolio-item h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin: 20px 0;
}
.portfolio-item_2 h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin: 20px 0;
}
.portfolio-item-details {
  display: none;
  font-family: "Assistant", sans-serif;
}

/*---End Portfolio Section---*/
/*---Start Portfolio Popup---*/
.portfolio-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 200;
  visibility: hidden;
}
.portfolio-popup.open {
  visibility: visible;
  overflow-y: auto;
}

.pp-inner {
  min-height: 100vh;
  padding: 40px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pp-content {
  background-color: var(--white-alpha-25);
  padding: 30px;
  border-radius: 30px;
  max-width: 900px;
  width: 100%;
  border: 1px solid var(--white-alpha-40);
  backdrop-filter: var(--backdrop-filter-blur) !important;
  opacity: 0;
  transform: scale(0.9);
}
.portfolio-popup.open .pp-content {
  opacity: 1;
  transform: scale(1);
  transition: all 0.5s;
}
.pp-header {
  position: relative;
}
.pp-header .btn {
  height: 40px;
  width: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -40px;
  top: -40px;
}
.pp-thumbnail img {
  border-radius: 10px;
  /* height: 50% !important;
  width: 50%; */
}
.pp-header h3 {
  font-size: 25px;
  text-transform: capitalize;
  margin: 20px 0 15px;
}
.pp-body .description {
  margin-bottom: 20px;
}
.pp-body .general-info li {
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: capitalize;
}
.pp-body .general-info li span {
  font-weight: 300;
}
.pp-body .general-info li a {
  text-transform: lowercase;
  color: var(--main-color);
}
.description p {
  line-height: 30px;
}
.phone{
  width:100%;
}
.about-app{
  width:100%;
}
/*---End Portfolio Popup---*/

/*---Start contact section---*/

.contact-form {
  width: 70%;
  padding: 0 15px;
}
.contact-info {
  width: 30%;
  padding: 0 15px;
}
.contact-form .input-group {
  width: 100%;
  margin-bottom: 30px;
}
.contact-form .input-control::placeholder {
  color: #fff;
  opacity: 0.8;
  font-weight: 300;
}
.contact-form .input-control {
  display: block;
  width: 100%;
  height: 50px;
  /* border-radius: 25px; */
  border: none;
  font-family: inherit;
  font-weight: 400;
  font-size: 16px;
  background-color: transparent;
  padding: 0 20px;
  color:var(--blue-dark);
  border-bottom: 2px solid var(--main-color);
  transition: border-color 0.3 ease;
  text-align:center;
}
.contact-form .input-control:focus {
  border-color: #000;
}
.contact-form textarea.input-control {
  height: 120px;
  resize: none;
  padding-top: 15px;
}
.contact-info-item {
  margin: 0 0 30px;
  padding: 0 0 0 20px;
}
.contact-info-item h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin: 0 0 5px;
}
.contact-info-item .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  /* background-color: var(--white-alpha-25); */
  border: 1px solid var(--main-color);
  color: var(--main-color);
  border-radius: 50%;
  margin: 6px 4px 0 0;
  transition: all 0.3 ease;
}
.contact-info-item .social-links a:hover {
  color: var(--white);
  background-color: var(--main-color);
}
.contactGreet {
  display: inline;
  font-size: 40px;
  text-indent: 8px;
}
.contactGreet span {
  opacity: 0;
  overflow: hidden;
  position: relative;
  /* top: 25%; */
  color: var(--main-color);
  animation: heyThere 9s linear infinite;
}
.contactGreet span:nth-child(2) {
  animation-delay: 3s;
}
.contactGreet span:nth-child(3) {
  animation-delay: 6s;
}
.contactGreet span:nth-child(4) {
  animation-delay: 9s;
}
#myForm input::placeholder, #myForm textarea::placeholder {
  color: #a4a4a4 !important;
}

#myForm input:-ms-input-placeholder, #myForm textarea:-ms-input-placeholder {
  color: #a4a4a4 !important;
}

#myForm input::-ms-input-placeholder, #myForm textarea::-ms-input-placeholder {
  color: #a4a4a4 !important;
}

#myForm input::-webkit-input-placeholder, #myForm textarea::-webkit-input-placeholder {
  color: #a4a4a4 !important;
}
/*---End contact section---*/

/*---Start Footer section---*/
.footer {
  text-align: center;
  /* position: fixed; */
  /* left: 0; */
  /* bottom: 0; */
  width: 100%;
  padding: 2em !important;
}
.footer p {
  font-size: 14px;
}
.myname {
  /* font-family: "Romantica Regular"; */
  display: inline-block;
  font-weight: bold;
  font-size: 1em;
  color: var(--main-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}
/*---End Footer section---*/

/*---Start Responsive---*/
@media (max-width: 991px) {
  .container {
    padding: 0;
  }
  .home-text,
  .home-img {
    width: 100%;
  }
  .home-text {
    text-align: center;
  }
  .intro {
    padding-right: 25%;
  }
  .home-img {
    order: -1;
  }
  .home-img .img-box {
    max-width: 300px;
  }

  .portfolio-item {
    width: calc(50% - 30px);
  }
  .portfolio-item_2 {
    width: calc(50% - 30px);
  }
  .hat{
    position: absolute;
bottom: 802px;
width: 150px;
height: auto;
right: 347px;
  }
}
@media (max-width: 767px) {
  .contact-form,
  .contact-info,
  .phone,
  .about-app,
  .about-img,
  .about-text,
  .testimonial-img,
  .testimonial-text,
  .services-img,
  .services-text {
    width: 100%;
  }
  .about-text {
    margin-top: 30px;
  }
  .portfolio-item {
    width: calc(100% - 30px);
  }
  .pp-inner {
    padding: 30px 15px;
  }
  .contact-info {
    order: -1;
    margin-bottom: 15px;
  }
  .contact-info-item {
    padding: 0;
  }
  .testimonial-img{
    width:100%;
  }
}
@media (max-width: 575px) {
  .section-title h2,
  .header .nav-inner ul li a {
    font-size: 35px;
  }
  .home-text p {
    font-size: 15px;
  }
  .home-text h1 {
    font-size: 30px;
  }
  .home-text h2 {
    font-size: 30px;
  }
  .pp-header h3 {
    font-size: 20px;
  }
}
@media (max-width: 440px) {
  .hat{
    position: absolute;
  bottom: 685px;
  width: 150px;
  height: auto;
  right: 140px;
  }
  .intro {
    padding-right: 40%;
    font-size: 15px;
  }
  .home-text h2 {
    font-size: 25px;
  }
  .typing {
    position: relative;
    margin-left: 2px;
  }

  .work-tabs .tab-item {
    line-height: 2em;
    font-size: 23px;
  }
  .contactGreet span {
    font-size: 30px;
  }
  .books {
    text-align: center;
  }
  .portfolio-item_2 {
    width: 100%;
  }
  .portfolio-item_3 {
    width: 100%;
  }
  .swiper-slide h3{
    font-size: 16px;
  }
  
}
@media (max-width: 360px) {
.hat{
  position: absolute;
bottom: 730px;
width: 150px;
height: auto;
right: 119px;
}

.swiper-slide h3{
   padding:1em; 
}
}
@media (max-width:384px){
  .hat{
    position: absolute;
  bottom: 731px;
  width: 150px;
  height: auto;
  right: 131px;
  }
}
/*---End Responsive---*/
