/* -------------------------------------------------------------------------- */
/*                                   Default                                  */
/* -------------------------------------------------------------------------- */

:root {
  --color-primary: #ffa000;
  --color-primary-light-1: rgba(255, 160, 0, 0.15);
  --color-primary-light-2: rgba(255, 160, 0, 0.25);
  --color-dark: #303030;
  --color-grey: #f4f4f4;
  --color-light: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1 {
  font-weight: 900;
  font-size: 65px;
}

h2 {
  font-weight: 600;
  font-size: 25px;
}

h3 {
  font-weight: 400;
  font-size: 20px;
}

h4 {
  font-weight: 600;
  font-size: 20px;
}

p {
  font-weight: 400;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
p {
  margin-bottom: 0;
}

.title-container {
  position: relative;
  z-index: 1;
}

.section-title-wrapper {
  margin-bottom: 50px;
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-primary);
  margin-bottom: 35px;
}

.title-line {
  width: 100px;
  height: 2px;
  background: var(--color-primary);
  margin-right: 10px;
}

.body-text-1 {
  margin-bottom: 35px;
}

.body-text-1,
.body-text-2 {
  color: var(--color-dark);
}

.modal-backdrop.show {
  opacity: 0.85;
}

.modal-backdrop {
  background-color: #000;
}

/* -------------------------------------------------------------------------- */
/*                               Navigation Bar                               */
/* -------------------------------------------------------------------------- */

.navbar {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.navbar.navbar-color {
  background: var(--color-light);
  -webkit-box-shadow: 0 5px 25px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 25px 5px rgba(0, 0, 0, 0.1);
  opacity: 0.975;
}

.navbar-nav {
  margin-left: auto;
  padding-top: 5px;
}

.nav-link {
  padding: 0 !important;
  margin-left: 50px;
  font-weight: 600;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  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;
  color: #F60;
  opacity: 0.5;
}

.nav-link:hover {
  color: var(--color-primary);
  opacity: 1;
}

.nav-item .bar {
  width: 5px;
  height: 5px;
  border-radius: 2.5px;
  background: var(--color-primary);
  -webkit-transform: scale(0) translateY(-200%);
  -ms-transform: scale(0) translateY(-200%);
  transform: scale(0) translateY(-200%);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.navbar-toggler {
  padding: 0;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.navbar-toggler span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 4px 0;
  border-radius: 1.5px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: var(--color-dark);
  opacity: 0.75;
}

.navbar-toggler:hover span {
  opacity: 1;
}

.navber-toggler:focus {
  outline: none;
}

.navbar-toggler.is-active .navbar-toggler-top {
  -webkit-transform: translateY(7px) rotate(135deg);
  -ms-transform: translateY(7px) rotate(135deg);
  transform: translateY(7px) rotate(135deg);
  -webkit-transition-delay: 0.12s;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
}

.navbar-toggler.is-active .navbar-toggler-middle {
  width: 0;
  opacity: 0;
  -webkit-transform: translateX(-7.5px);
  -ms-transform: translateX(-7.5px);
  transform: translateX(-7.5px);
}

.navbar-toggler.is-active .navbar-toggler-bottom {
  -webkit-transform: translateY(-7px) rotate(-135deg);
  -ms-transform: translateY(-7px) rotate(-135deg);
  transform: translateY(-7px) rotate(-135deg);
  -webkit-transition-delay: 0.12s;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
}

.nav-item.active .nav-link {
  color: var(--color-primary);
  opacity: 1;
}

.nav-item.active .bar {
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

/* -------------------------------------------------------------------------- */
/*                                Hero Section                                */
/* -------------------------------------------------------------------------- */

#hero {
  height: 100vh;
  cursor: default;
  background: var(--color-light);
}

.hero-text-container {
	
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
}

.hero-text {
  position: relative;
  background: var(--color-primary);
  width: 514px;
  padding: 90px 125px 90px 0;
  color: var(--color-light);
  border-radius: 0 10px 10px 0;
}

.hero-text::before {
  content: "";
  background: var(--color-primary);
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
}

.hero-text h1 {
  line-height: 0.9;
}

.hero-text .my-name {
  margin: 15px 0;
}

.hero-text p {
  margin-bottom: 25px;
}

.hero-btn {
  position: relative;
  padding: 10px 0;
}

.hero-btn a {
  text-decoration: none;
  color: var(--color-light);
  padding: 10px 20px;
  border: 2px solid var(--color-light);
  border-radius: 5px;
  letter-spacing: 2.5px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.hero-btn a:hover {
  background: var(--color-light);
  color: var(--color-primary);
}

.hero-img-container {
  position: relative;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-img {
  position: absolute;
  width: 105%;
  height: 70%;
  border-radius: 10px;
  overflow: hidden;
}

.hero-img img {
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.h-img {
  position: absolute;
  width: 100%;
  height: auto;
}

.h-img img {
  position: relative;
  width: 100%;
  height: auto;
}

.rear-shape-1 {
  background: var(--color-grey);
  position: absolute;
  width: 60%;
  height: 50%;
  bottom: 50%;
  right: 0;
}

.social-media {
  position: absolute;
  right: -1%;
  bottom: 12.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--color-primary);
  border-radius: 10px;
  padding: 20px 25px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.social-media a {
  text-decoration: none;
  font-size: 20px;
  margin: 0 20px;
  color: var(--color-light);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.social-media a:hover {
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
}

/* -------------------------------------------------------------------------- */
/*                                About Section                               */
/* -------------------------------------------------------------------------- */

#about {
  position: relative;
  overflow: hidden;
  background: var(--color-light);
}

.rear-shape-2 {
  background: var(--color-grey);
  height: calc(100% - 150px);
  width: 100%;
  position: absolute;
  top: 150px;
}

.number-info {
  position: relative;
  background: var(--color-primary);
  color: var(--color-light);
  padding: 30px 0 30px 60px;
  border-radius: 10px 0 0 10px;
}

.number-info::before {
  content: "";
  background: var(--color-primary);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 100%;
}

.number-info .number {
  font-size: 100px;
}

.number-info .info {
  font-size: 30px;
  line-height: 1;
}

.work-skill-wrapper {
  margin-top: 100px;
  position: relative;
  z-index: 1;
}

.skill-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bar-container {
  width: 100%;
  height: 7px;
  background: var(--color-primary-light-1);
  border-radius: 3.5px;
  margin-bottom: 40px;
}

.bar-content {
  height: 100%;
  background: var(--color-primary);
  border-radius: 3.5px;
}

.experience {
  position: relative;
  margin: 225px 0 180px 75px;
}

.vertical-line {
  background: var(--color-primary);
  position: absolute;
  top: 5px;
  left: 8.5px;
  width: 2px;
  height: calc(100% - 90px);
}

.experience-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 65px;
  color: var(--color-dark);
}

.experience-item:nth-last-child(1) {
  margin-bottom: 0;
}

.experience-item .circle {
  background: var(--color-primary);
  height: 19px;
  width: 19px;
  border-radius: 50%;
  margin-right: 30px;
}

.experience-content .period {
  color: var(--color-primary);
  margin-bottom: 15px;
}

.experience-content .position {
  margin-bottom: 5px;
}

.experience-content h3 {
  font-size: 25px;
}

/* -------------------------------------------------------------------------- */
/*                              Services Section                              */
/* -------------------------------------------------------------------------- */

#services {
  padding: 180px 0;
  background: var(--color-light);
}

.service-item {
  padding: 40px;
  border: 2px solid var(--color-primary-light-2);
  border-radius: 10px;
  cursor: default;
}

.service-item,
.service-item i,
.service-item h4,
.service-item p {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.read-more,
.read-more .arrow {
  -webkit-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.service-item h4 {
  margin-bottom: 15px;
}

.service-item p {
  margin-bottom: 25px;
}

.service-item h4,
.service-item p {
  color: var(--color-dark);
}

.service-icon i {
  font-size: 50px;
  margin-bottom: 25px;
  color: var(--color-primary);
}

.read-more {
  text-decoration: none;
  color: var(--color-primary);
}

.read-more:focus {
  outline: none;
}

.read-more .arrow {
  font-size: 18px;
  padding-left: 10px;
}

.service-item:hover {
  background: var(--color-primary);
  -webkit-transform: translateY(-2.5%);
  -ms-transform: translateY(-2.5%);
  transform: translateY(-2.5%);
}

.service-item:hover i,
.service-item:hover h4,
.service-item:hover p,
.service-item:hover .read-more {
  color: var(--color-light);
}

.read-more:hover .arrow {
  padding-left: 20px;
}

#service-modal.modal-dialog-scrollable {
  height: 100%;
}

#service-modal .modal-content {
  border-style: none;
  border-radius: 15px;
  overflow: hidden;
  background: var(--color-light);
  padding: 40px;
  color: var(--color-dark);
}

#service-modal .modal-header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

#service-modal .modal-header {
  padding: 0 0 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

#service-modal .close-btn {
  color: var(--color-dark);
  position: absolute;
  right: 30px;
  top: 30px;
  border: none;
  background: transparent;
  opacity: 0.5;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#service-modal .close-btn:hover {
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
  opacity: 1;
}

#service-modal .modal-body {
  padding: 20px 0 0;
}

#service-modal .modal-icon-top i {
  font-size: 50px;
  color: var(--color-primary);
}

#service-modal .modal-title {
  margin-left: 15px;
}

#service-modal .modal-body .sub-title {
  margin-bottom: 5px;
  font-weight: 600;
}

#service-modal .list-text {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

#service-modal .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  background: var(--color-grey);
  border-radius: 7.5px;
  padding: 15px;
}

#service-modal .list-item .icon-wrapper {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  background: var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 20px;
}

#service-modal .list-item .icon i {
  font-size: 20px;
  color: var(--color-light);
}







#service-modal3.modal-dialog-scrollable {
  height: 100%;
}

#service-modal3 .modal-content {
  border-style: none;
  border-radius: 15px;
  overflow: hidden;
  background: var(--color-light);
  padding: 40px;
  color: var(--color-dark);
}

#service-modal3 .modal-header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

#service-modal3 .modal-header {
  padding: 0 0 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

#service-modal3 .close-btn {
  color: var(--color-dark);
  position: absolute;
  right: 30px;
  top: 30px;
  border: none;
  background: transparent;
  opacity: 0.5;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#service-modal3 .close-btn:hover {
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
  opacity: 1;
}

#service-modal3 .modal-body {
  padding: 20px 0 0;
}

#service-modal3 .modal-icon-top i {
  font-size: 50px;
  color: var(--color-primary);
}

#service-modal3 .modal-title {
  margin-left: 15px;
}

#service-modal3 .modal-body .sub-title {
  margin-bottom: 5px;
  font-weight: 600;
}

#service-modal3 .list-text {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

#service-modal3.list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  background: var(--color-grey);
  border-radius: 7.5px;
  padding: 15px;
}

#service-modal3 .list-item .icon-wrapper {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  background: var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 20px;
}

#service-modal3 .list-item .icon i {
  font-size: 20px;
  color: var(--color-light);
}








#service-modal2.modal-dialog-scrollable {
  height: 100%;
}

#service-modal2 .modal-content {
  border-style: none;
  border-radius: 15px;
  overflow: hidden;
  background: var(--color-light);
  padding: 40px;
  color: var(--color-dark);
}

#service-modal2.modal-header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

#service-modal2 .modal-header {
  padding: 0 0 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

#service-modal2 .close-btn {
  color: var(--color-dark);
  position: absolute;
  right: 30px;
  top: 30px;
  border: none;
  background: transparent;
  opacity: 0.5;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#service-modal2 .close-btn:hover {
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
  opacity: 1;
}

#service-modal2 .modal-body {
  padding: 20px 0 0;
}

#service-modal2 .modal-icon-top i {
  font-size: 50px;
  color: var(--color-primary);
}

#service-modal2 .modal-title {
  margin-left: 15px;
}

#service-modal2 .modal-body .sub-title {
  margin-bottom: 5px;
  font-weight: 600;
}

#service-modal2.list-text {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

#service-modal2 .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  background: var(--color-grey);
  border-radius: 7.5px;
  padding: 15px;
}

#service-modal2 .list-item .icon-wrapper {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  background: var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 20px;
}

#service-modal2 .list-item .icon i {
  font-size: 20px;
  color: var(--color-light);
}

















#service-modal2.modal-dialog-scrollable {
  height: 100%;
}

#service-modal 2.modal-content {
  border-style: none;
  border-radius: 15px;
  overflow: hidden;
  background: var(--color-light);
  padding: 40px;
  color: var(--color-dark);
}

#service-modal 2.modal-header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

#service-modal2 .modal-header {
  padding: 0 0 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

#service-modal2 .close-btn {
  color: var(--color-dark);
  position: absolute;
  right: 30px;
  top: 30px;
  border: none;
  background: transparent;
  opacity: 0.5;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#service-modal2 .close-btn:hover {
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
  opacity: 1;
}

#service-modal2 .modal-body {
  padding: 20px 0 0;
}

#service-modal2 .modal-icon-top i {
  font-size: 50px;
  color: var(--color-primary);
}

#service-modal2 .modal-title {
  margin-left: 15px;
}

#service-modal2 .modal-body .sub-title {
  margin-bottom: 5px;
  font-weight: 600;
}

#service-modal2 .list-text {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

#service-modal2 .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  background: var(--color-grey);
  border-radius: 7.5px;
  padding: 15px;
}

#service-modal2 .list-item .icon-wrapper {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  background: var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 20px;
}

#service-modal2 .list-item .icon i {
  font-size: 20px;
  color: var(--color-light);
}





#service-modal3.modal-dialog-scrollable {
  height: 100%;
}

#service-modal3 .modal-content {
  border-style: none;
  border-radius: 15px;
  overflow: hidden;
  background: var(--color-light);
  padding: 40px;
  color: var(--color-dark);
}

#service-modal3 .modal-header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

#service-modal3 .modal-header {
  padding: 0 0 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

#service-modal3 .close-btn {
  color: var(--color-dark);
  position: absolute;
  right: 30px;
  top: 30px;
  border: none;
  background: transparent;
  opacity: 0.5;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#service-modal3 .close-btn:hover {
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
  opacity: 1;
}

#service-modal3 .modal-body {
  padding: 20px 0 0;
}

#service-modal3 .modal-icon-top i {
  font-size: 50px;
  color: var(--color-primary);
}

#service-modal3 .modal-title {
  margin-left: 15px;
}

#service-modal3 .modal-body .sub-title {
  margin-bottom: 5px;
  font-weight: 600;
}

#service-modal3 .list-text {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

#service-modal3.list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  background: var(--color-grey);
  border-radius: 7.5px;
  padding: 15px;
}

#service-modal3 .list-item .icon-wrapper {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  background: var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 20px;
}

#service-modal3 .list-item .icon i {
  font-size: 20px;
  color: var(--color-light);
}

/* -------------------------------------------------------------------------- */
/*                              Portfolio Section                             */
/* -------------------------------------------------------------------------- */

#portfolio {
  padding-top: 180px;
  background: var(--color-light);
  position: relative;
  overflow: hidden;
}

.rear-shape-3 {
	background: var(--color-grey);
	height: 690px;
	width: 80%;
	position: absolute;
	left: 1px;
	top: -1px;
	border-radius: 0 10px 10px 0;
}

.filter-btn {
  position: relative;
  background: transparent;
  border: none;
  color: var(--color-dark);
  opacity: 0.5;
  font-size: 18px;
  margin-right: 50px;
  padding: 0;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  margin-bottom: 50px;
}

.filter-btn.active {
  opacity: 1;
}

.filter-btn:nth-last-child(1) {
  margin-right: 0;
}

.filter-btn:hover {
  opacity: 1;
}

.portfolio-container {
  margin-bottom: 180px;
}

.portfolio-item-wrapper {
  margin-bottom: 25px;
}

.portfolio-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
  overflow: hidden;
}

.portfolio-item:focus {
  outline: none;
}

.portfolio-item .bg-hover {
	position: absolute;
	height: 100%;
	width: 100%;
	border-radius: 15px;
	background: var(--color-light);
	opacity: 0;
	-webkit-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	transition: all 0.35s ease;
	left: 1px;
}

.portfolio-item-text {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 5;
  color: var(--color-dark);
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.portfolio-item-text span {
  font-size: 14px;
  margin-bottom: 75px;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  color: var(--color-primary);
}

.portfolio-item:hover .bg-hover {
  height: 87.5%;
  width: 90%;
  border-radius: 7.5px;
  opacity: 0.9;
}

.portfolio-item:hover .portfolio-item-text {
  opacity: 1;
}

.portfolio-item:hover .portfolio-item-text span {
  margin-bottom: 10px;
}

#portfolio .filter.show {
  -webkit-animation: show 0.15s ease;
  animation: show 0.15s ease;
}

#portfolio .filter.hide {
  -webkit-animation: hide 0.15s ease forwards;
  animation: hide 0.15s ease forwards;
}

@-webkit-keyframes show {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes show {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes hide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }
}

@keyframes hide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }
}

#portfolio-modal.modal-dialog-scrollable {
  height: 100%;
}

#portfolio-modal .modal-content {
  border-style: none;
  border-radius: 15px;
  overflow: hidden;
  background: var(--color-light);
}

#portfolio-modal .modal-header {
  padding: 0;
  border: none;
}

#portfolio-modal .modal-img-header {
  width: 100%;
  height: 540px;
  overflow: hidden;
}

#portfolio-modal .modal-img-header img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

#portfolio-modal .close-btn {
  color: var(--color-dark);
  position: absolute;
  right: 30px;
  top: 30px;
  border: none;
  background: transparent;
  opacity: 0.5;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#portfolio-modal .close-btn:hover {
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
  opacity: 1;
}

#portfolio-modal .modal-body {
  padding: 0;
}

#portfolio-modal .modal-body h4 {
  margin-bottom: 10px;
}

#portfolio-modal .body-text-1 {
  margin: 50px 40px;
  padding-bottom: 50px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

#portfolio-modal .body-text-2,
#portfolio-modal .body-text-1 {
  color: var(--color-dark);
}

#portfolio-modal .detail {
  margin: 50px 40px;
  color: var(--color-dark);
}

#portfolio-modal .quote {
  background: var(--color-primary);
  padding: 0 40px 20px;
  height: 100%;
  color: var(--color-light);
}

#portfolio-modal .quote i {
  font-size: 100px;
  margin-bottom: 40px;
}

#portfolio-modal .quote h3 {
  line-height: 1.5;
}

#portfolio-modal .body-text-2 {
  margin: 50px 40px;
}

#portfolio-modal .body-text-2 p {
  margin-bottom: 10px;
}

/* -------------------------------------------------------------------------- */
/*                            Testimonials Section                            */
/* -------------------------------------------------------------------------- */

.testimonial-content {
  background: var(--color-primary);
  color: var(--color-light);
  padding: 0 0 85px 85px;
  border-radius: 10px 0 0 10px;
  position: relative;
}

.testimonial-content::before {
  content: "";
  background: var(--color-primary);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 100%;
}

.quote i {
  font-size: 150px;
  line-height: 0.7;
}

.client-words {
  padding: 45px 0;
}

.client-detail {
  margin-bottom: 45px;
}

/* -------------------------------------------------------------------------- */
/*                                Blog Section                                */
/* -------------------------------------------------------------------------- */

#blog {
  padding: 180px 0 90px;
  background: var(--color-light);
}

.blog-content-wrapper {
  margin-top: 65px;
}

.blog-content-wrapper .item-wrapper {
  margin-bottom: 35px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.075);
}

.blog-content-wrapper .item-wrapper:nth-last-child(1) {
  border-bottom: none;
}

.blog-date {
  margin-bottom: 5px;
}

.blog-content a {
  color: var(--color-dark);
  text-decoration: none;
}

.blog-content .title h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-dark);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.blog-content {
  margin-bottom: 30px;
}

.blog-content a:hover h2 {
  color: var(--color-primary);
}

#blog .owl-theme .owl-dots .owl-dot {
  margin-right: 30px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#blog .owl-theme .owl-dots .owl-dot span {
  margin-top: 10px;
  width: 25px;
  height: 5px;
  background: rgba(0, 0, 0, 0.1);
  display: block;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 2.5px;
  opacity: 0;
  -webkit-transform: translateX(150%);
  -ms-transform: translateX(150%);
  transform: translateX(150%);
}

#blog .owl-theme .owl-dots .owl-dot.active span {
  background: rgba(0, 0, 0, 0.5);
}

#blog .owl-theme .owl-dots .owl-dot:hover span {
  background: rgba(0, 0, 0, 0.25);
}

#blog .blog-content-hover:hover .owl-theme .owl-dots .owl-dot {
  margin-right: 10px;
}

#blog .blog-content-hover:hover .owl-theme .owl-dots .owl-dot span {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

/* -------------------------------------------------------------------------- */
/*                               Contact Section                              */
/* -------------------------------------------------------------------------- */

#contact {
  background: var(--color-grey);
  padding: 180px 0;
}

.contact-detail .detail-wrapper {
  margin-top: 35px;
}

.contact-detail .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 22.5px;
  color: var(--color-primary);
}

.contact-detail .text {
  padding-left: 15px;
  color: var(--color-dark);
}

.form-input input,
.form-input textarea {
  margin-bottom: 30px;
  background: transparent;
  padding: 10px 0;
  border: none;
  width: 100%;
  font-size: 16px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.075);
}

.form-input input:focus,
.form-input textarea:focus {
  outline: none;
}

.contact-form .button {
  text-decoration: none;
  color: var(--color-primary);
  padding: 10px 20px;
  border: 2px solid var(--color-primary);
  border-radius: 5px;
  letter-spacing: 2.5px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background: transparent;
}

.contact-form .button:hover {
  background: var(--color-primary);
  color: var(--color-light);
}

.contact-form .button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-form .button-wrapper span {
  margin-left: 25px;
  font-size: 16px;
  color: var(--color-primary);
  display: none;
}

/* -------------------------------------------------------------------------- */
/*                               Footer Section                               */
/* -------------------------------------------------------------------------- */

footer {
  background: var(--color-primary);
  padding: 15px 0;
}

footer span {
  font-size: 14px;
  color: var(--color-light);
}

/* -------------------------------------------------------------------------- */
/*                                                                            */
/*                                 Responsive                                 */
/*                                                                            */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                             Max Width : 1399px                             */
/* -------------------------------------------------------------------------- */

@media only screen and (max-width: 1399px) {
  /* --------------------------------- Default -------------------------------- */

  h1 {
    font-size: 60px;
  }
  h2 {
    font-size: 12.5px;
  }

  /* ---------------------------- Portfolio Section --------------------------- */

  .rear-shape-3 {
    height: 680px;
  }
}

/* -------------------------------------------------------------------------- */
/*                             Max Width : 1199px                             */
/* -------------------------------------------------------------------------- */

@media only screen and (max-width: 1199px) {
  /* ----------------------------- Navigation Bar ----------------------------- */

  .nav-link {
    margin-left: 30px;
  }

  /* ------------------------------ About Section ----------------------------- */

  .rear-shape-2 {
    top: 126px;
  }
  .number-info {
    padding-left: 40px;
  }
  .number-info .number {
    font-size: 80px;
  }
  .number-info .info {
    font-size: 25px;
  }
  .experience-content h3 {
    font-size: 20px;
  }

  /* ---------------------------- Portfolio Section --------------------------- */

  .rear-shape-3 {
    height: 700px;
  }
  #portfolio-modal .quote {
    padding: 0 40px 75px;
  }
}

/* -------------------------------------------------------------------------- */
/*                  Min Width : 767px and Max Width : 1199px                  */
/* -------------------------------------------------------------------------- */

@media only screen and (min-width: 767px) and (max-width: 1199px) {
  /* ---------------------------- Portfolio Section --------------------------- */

  .portfolio-item-text span {
    font-size: 12px;
  }
  .portfolio-item-text h4 {
    font-size: 17px;
  }
}

/* -------------------------------------------------------------------------- */
/*                              Max Width : 991px                             */
/* -------------------------------------------------------------------------- */

@media only screen and (max-width: 991px) {
  /* --------------------------------- Default -------------------------------- */

  h1 {
    font-size: 55px;
  }
  h2 {
    font-size: 12.5px;
  }
  h4 {
    font-size: 17.5px;
  }
  p,
  a {
    font-size: 14px;
  }

  /* ----------------------------- Navigation Bar ----------------------------- */

  nav {
    padding: 0 20px;
  }
  .navbar-collapse ul {
    margin: 15px 0 5px;
    text-align: center;
  }
  .nav-link {
    margin: 5px 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  /* ------------------------------ Hero Section ------------------------------ */

  .hero-text {
    top: 40%;
    width: 450px;
    padding: 45px 70px 45px 15px;
  }
  .hero-text .my-name {
    margin: 10px 0;
  }
  .hero-text p {
    margin-bottom: 15px;
  }
  .hero-img-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 80vh;
  }
  .hero-img {
    width: 90%;
    height: 50%;
    top: 15%;
  }
  .rear-shape-1 {
    height: 75%;
    bottom: 25%;
  }
  .social-media {
    right: 50%;
    bottom: 30%;
    -webkit-transform: translateX(50%) !important;
    -ms-transform: translateX(50%) !important;
    transform: translateX(50%) !important;
  }

  /* ------------------------------ About Section ----------------------------- */

  #about .title-container {
    margin-top: 100px;
  }
  #about .title-container,
  .work-skill-wrapper {
    padding: 0 20px;
  }
  .experience {
    margin: 75px 0 180px 50px;
  }
  .vertical-line {
    height: calc(100% - 80px);
  }

  /* ----------------------------- Service Section ---------------------------- */

  #services {
    padding: 180px 20px;
  }
  .service-icon i {
    font-size: 40px;
  }
  #service-modal .modal-icon-top i {
    font-size: 40px;
  }
  #service-modal .list-item .icon i {
    font-size: 17.5px;
  }
  #service-modal .list-item .icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    margin-right: 15px;
  }
  
  
  
   #service-modal2 .modal-icon-top i {
    font-size: 40px;
  }
  #service-modal2 .list-item .icon i {
    font-size: 17.5px;
  }
  #service-modal2 .list-item .icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    margin-right: 15px;
  }
  
  
   #service-modal3 .modal-icon-top i {
    font-size: 40px;
  }
  #service-modal3 .list-item .icon i {
    font-size: 17.5px;
  }
  #service-modal3.list-item .icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    margin-right: 15px;
  }

  /* ---------------------------- Portfolio Section --------------------------- */

  #portfolio .title-container,
  .portfolio-filter,
  .portfolio-container {
    padding: 0 20px;
  }
  .rear-shape-3 {
    height: 625px;
    width: 95%;
  }
  .filter-btn {
    font-size: 14px;
    margin-right: 35px;
  }
  #portfolio-modal .modal-img-header {
    height: 480px;
  }

  /* --------------------------- Testimonial Section -------------------------- */

  .testimonial-content {
    padding: 0 10px 85px 50px;
  }

  /* ------------------------------ Blog Section ------------------------------ */

  #blog {
    padding: 180px 20px;
  }
  .blog-content-wrapper {
    margin-top: 25px;
  }

  /* ----------------------------- Contact Section ---------------------------- */

  #contact {
    padding: 180px 20px;
  }
  .contact-detail .icon {
    font-size: 20px;
  }
  .contact-detail .text {
    padding-left: 5px;
  }
  .contact-form {
    margin-top: 100px;
  }
  .form-input input,
  .form-input textarea {
    font-size: 14px;
  }
  .contact-form .button-wrapper span {
    margin-left: 15px;
    font-size: 14px;
  }
}

/* -------------------------------------------------------------------------- */
/*                              Max Width : 767px                             */
/* -------------------------------------------------------------------------- */

@media only screen and (max-width: 767px) {
  /* --------------------------------- Default -------------------------------- */

  h1 {
    font-size: 52.5px;
  }
  h2 {
    font-size: 25px;
  }

  /* ------------------------------ About Section ----------------------------- */

  .experience-item .circle {
    margin-right: 22.5px;
  }

  /* ---------------------------- Portfolio Section --------------------------- */

  .rear-shape-3 {
    height: 700px;
  }
}

/* -------------------------------------------------------------------------- */
/*                              Max Width : 575px                             */
/* -------------------------------------------------------------------------- */

@media only screen and (max-width: 575px) {
  /* --------------------------------- Default -------------------------------- */

  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 22.5px;
  }

  /* ------------------------------ About Section ----------------------------- */

  .experience-item .circle {
    margin-right: 15px;
  }

  /* ---------------------------- Portfolio Section --------------------------- */

  .rear-shape-3 {
    border-radius: 0;
    width: 100%;
  }
  #portfolio-modal .close-btn {
    position: fixed;
    z-index: 5;
  }
}
