/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #535da1;
  --secondary-color: #000a12;
  --section-bg-color: #f9f9f9;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #e9eaeb;
  --featured-border-color: #4d0303;

  --body-font-family: 'DM Sans', sans-serif;

  --h1-font-size: 62px;
  --h2-font-size: 48px;
  --h3-font-size: 36px;
  --h4-font-size: 32px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --menu-font-size: 12px;
  --copyright-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

body {

  font-family: var(--body-font-family);
}



/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -3px;
}

h2 {
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
  letter-spacing: -3px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

::selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 90px;
  padding-bottom: 120px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.section-title-wrap {
  background: var(--secondary-color);
  border-radius: var(--border-radius-small);
  padding: 10px 30px;
}


/*---------------------------------------
  AVATAR IMAGE               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 160px;
  height: 160px;
  object-fit: cover;
}

.avatar-image-large {
  width: 90.4px;
  height: 90.4px;
}


/*---------------------------------------
  PRE LOADER               
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 rgb(0, 0, 0);
}

.spinner {
  border: 1px solid transparent;
  border-radius: var(--border-radius-small);
  position: relative;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 5px solid #ca0f79;
  border-top-color: var(--white-color);
  animation: spinner .9s linear infinite;
}

@-webkit-@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  color: var(--dark-color);
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
}

.is-sticky .navbar-icon {
  background: var(--secondary-color);
  color: var(--white-color);
}

.form-check-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn,
.navbar .custom-btn {
  font-size: var(--p-font-size);
  font-weight: 700 !important;
  text-shadow: 1px 1px 2px black !important;
}

.navbar .custom-btn {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: var(--white-color);
  color: black;
  padding: 8px 22px;
}

.navbar .custom-btn:hover {
  background: var(--white-color);
  border-color: transparent;
  color: var(--secondary-color);
}

.custom-btn {
  border-radius: 5px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
}

.custom-btn:hover {
  background: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(60, 60, 60, 0.175);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--p-color);
}

.custom-border-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.custom-link {
  background-color: var(--primary-color);
}

.custom-link:hover {
  background-color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: relative;
  z-index: 222;
  height: auto !important;
}

.is-sticky,
.is-sticky .navbar .container {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
}

.is-sticky .navbar-brand,
.is-sticky .navbar-brand:hover {
  color: var(--dark-color);
}

.is-sticky .navbar-nav .nav-link {
  color: var(--p-color);
}

.is-sticky .navbar .custom-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.is-sticky .navbar .custom-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.navbar {
  background: transparent;
  position: absolute;
  z-index: 9;
  right: 0;
  left: 0;
  transition: all 0.3s;
  padding-top: 15px;
  padding-bottom: 0;
}

.navbar .container {
  border-radius: var(--border-radius-small);
  padding: 10px 25px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
  margin-right: 20px;
  margin-left: 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--section-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;

  font-size: 1rem;
}

.navbar-nav .nav-link::after {
  content: "";
  background: transparent;
  position: absolute;
  bottom: 6px;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.navbar-nav,
.nav-link.active,
.nav-link {
  transition: all ease 0.5s;
  background: linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




.navbar-nav .nav-link.active::after,
.navbar-nav {
  background-image: linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);

}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  background: linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 6px #a530a7 !important;
  /* font-weight: 700; */
}




.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  background: url(https://wallpaper.forfun.com/fetch/44/44fdf7eb1f16aefd748724fd665c32a6.jpeg);

  position: relative;
  overflow: hidden;
  padding-top: 25rem;
  padding-bottom: 28rem;
  /* max-height: 100% !important; */
  height: 90vh !important;
  margin: 0;
  width: 100%;
  background-size: cover;
  background-attachment: fixed;
  opacity: 1;
  overflow: hidden;
}

.titleHero {
  padding: 4rem;
}

@media screen and (min-width: 991px) {
  .hero {
    height: 90vh !important;

  }


}

.hero-title,
.hero h2 {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  border-radius: var(--border-radius-large);
  display: inline-block;
  padding: 8px 24px;
}

.hero-title {
  font-size: 2rem;
}

.hero h2 {
  font-size: 38px;
}

.hero-text {
  position: relative;
  z-index: 22;
  top: 40px;
  padding-left: 2rem;
}

.hero-image-wrap {
  background: var(--white-color);
  border-radius: 100%;
  width: 350px;
  height: 350px;
  position: absolute;
  z-index: 22;
  top: -50px;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
}

.hero-image {
  position: absolute;
  z-index: 22;
  top: 0;
  width: 25rem;
  border: #000000 .5rem solid;
  border-radius: 100%;
  background-color: #444;
}

.hero svg {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  height: 100px;
  pointer-events: none;
  background-color: #50fc2e;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about {
  background: url(https://img.freepik.com/free-vector/white-abstract-background_23-2148809724.jpg?w=900&t=st=1716361524~exp=1716362124~hmac=65a5a03…) no-repeat;
  background-size: cover;
  background-attachment: fixed;

}

.services {
  background: url(/images/colorful-abstract-nebula-space-background.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;

}



.selected {
  display: flex;
    align-items: center;
}

.languages,
.services,
.projects {
  border-top: 1px solid rgb(230, 229, 229);
  border-bottom: 1px solid rgb(221, 221, 221);
}

.b-class-secondary-text {
  color: rgb(255, 23, 131);
  font-weight: 600;
}

.profile-thumb {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.profile-title {
  border-bottom: 1px solid var(--border-color);
  padding: 15px 30px;
  background: linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
}

.profile-small-title {
  border-right: 1px solid var(--border-color);
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  min-width: 140px;
  margin-right: 10px;
  padding: 13px 30px;
  display: inline-block;
}

.profile-body p {
  margin-bottom: 0;
  border-bottom: 1px solid var(--border-color);
  background: #fff;
}

.profile-body p:nth-of-type(even) {
  background: var(--white-color);
}

.about-image {
  border-radius: var(--border-radius-medium);
}

.about-thumb {
  padding-right: 20px;
  padding-left: 20px;
}


/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-numbers {
  font-size: var(--h1-font-size);
  line-height: normal;
  display: block;
  text-align: center;
}

.featured-text {
  color: var(--secondary-color);
  padding-left: .5rem;
  padding-right: .5rem;
}

.featured-border-bottom {
  border-bottom: 1px solid var(--border-color);
}

.featured-border-start {
  border-left: 1px solid var(--border-color);
}


/*---------------------------------------
  CLIENTS              
-----------------------------------------*/

.clients-item-height {
  height: 120px;
}

.clients-image {
  display: block;
  max-width: 120px;
  margin: auto;
  transition: all ease 0.2s;
  padding: 1.5rem;
}

.clients-image:hover {
  transform: scale(1.3);
}


/*---------------------------------------
  SERVICES              
-----------------------------------------*/
@media (min-width: 768px) {
  .row-cols-md-3>* {
    flex: 0 0 auto;
    width: 50%;
  }

  .container {
    max-width: 90% !important;
  }
}


@media (min-width: 992px) {
  .row-cols-md-3>* {
    flex: 0 0 auto;
    width: 33.333%;
  }
}


.services,
.featured {
  /* background: linear-gradient(#e9e9e9, rgb(248, 198, 192)); */
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.services-thumb {
  background: var(--white-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 40px 40px 240px 40px;
  transition: all 0.5s;
}

.services-thumb-up {
  position: relative;
  bottom: 50px;
  margin-bottom: -50px;
}

.services-thumb:hover {
  border: 2px solid var(--secondary-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.services-thumb:hover .services-icon-wrap {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.services-icon-wrap {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 55%;
  transform: rotate(-35deg) translateY(55px);
  transition: all ease 0.5s;
}

.services-icon {
  font-size: 90px;
  position: relative;
  bottom: 15px;
}

.services-thumb:hover .services-price-wrap {
  background: var(--secondary-color);
}

.services-thumb:hover .services-price-overlay {
  background: var(--primary-color);
}

.services-price-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 6px 20px 6px 15px;
  transition: all ease 0.5s;
}

.services-price-text {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-bold);
}

.services-price-overlay {
  background: var(--secondary-color);
  border-bottom-left-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
}


/*---------------------------------------
  PROJECTS              
-----------------------------------------*/
.projects-thumb {
  background: var(--section-bg-color);
  border: 2px solid #b8b8b8;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 40px;
  transition: all ease 0.5s;
  background: rgba(253, 242, 242, 0.32);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
border: 1px solid rgba(255, 248, 248, 0.3);
}

.projects-thumb:hover {
  text-shadow: 0px 0px rgb(69, 69, 69);
  border-color: rgb(159, 0, 103);
  background-color: #4158D0;
  background-image: linear-gradient(135deg, #81FFEF 10%, #F067B4 100%);
  box-shadow: 5px 5px 5px rgb(150, 150, 150);

}

.project-text p {
  color: #212121;
}

.projects-thumb:hover .projects-image,
.projects-thumb:focus .projects-image {
  transform: rotate(0) translateY(0);
}

.projects-thumb .popup-image {
  display: block;
  width: 100%;
  height: 100%;
}

.projects-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
  transform: rotate(4deg) translateY(80px);
  transition: all ease 0.5s;
}

.projects-title {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.projects-tag {
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.boasting {
  font-size: 2rem;
}


/*---------------------------------------
  CONTACT              
-----------------------------------------*/
/* .contact {
  background: var(--section-bg-color);
} */

/* .contact-info {
  background: var(--white-color);
  border-top-right-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
  padding: 60px 30px 30px 30px;
  height: 100%;
} */

.contact-info-border-start {
  border-right: 1px solid var(--border-color);
  border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
}

.contact-form {
  margin-left: 10px;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  background: var(--white-color);
  box-shadow: none;
  border: 2px solid var(--border-color);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.form-floating>label {
  color: var(--p-color);
}

.form-check-inline {
  vertical-align: middle;
  width: 100%;
  position: relative;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 24px;
  padding: 0;
}

.custom-form .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-label-text {
  color: var(--p-color);
  display: block;
  font-size: copyright-font-size;
  margin-top: 5px;
}

.form-check-input[type=checkbox] {
  background: var(--white-color);
  border: 2px solid var(--border-color);
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 40px 50px;
}

.form-check-input:checked[type=checkbox] {
  background-image: none;
}

.form-check-input:hover,
.form-check-input:checked {
  background-color: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-floating textarea {
  height: 150px;
}

.custom-form button[type="submit"] {
  background: var(--secondary-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--primary-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  border-top: 2px solid #f4008f;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  /* background-image: linear-gradient(#980087 10%, #000000 150%); */
  background: url(/images/wallpapersden.com_neon-gradient-minimalist_3840x2160.jpg) no-repeat;




}

.copyright-text-wrap p,
.copyright-text {
  font-size: var(--copyright-font-size);
  color: rgb(191, 191, 191);
}

.copyright-text a {
  color: #f4008f;
}

.nando {
  color: #004ab3;
}

.dev {
  color: #9e09e7;
}

.copyright-text a:hover {
  color: white;
}


.copyright-text-wrap a {
  font-weight: var(--font-weight-bold);
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.footer-menu-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 6px 14px;
  min-width: 70px;
}



/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-large);
  font-size: var(--copyright-font-size);
  color: var(--dark-color);
  display: inline-block;
  vertical-align: top;
  margin: 2px 2px 5px 2px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary-color);
}

.social-icon-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}



/*---------------------------------------
  CUSTOM A
-----------------------------------------*/

.title-background {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 10px 0 rgba(66, 0, 31, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1rem .5rem;
}

#section_3 .white-text {
  color: white;
  text-shadow: rgb(252, 77, 77) 1px 1px;
}

#section_3 .fa-rectangle-list {
  color: #fff;
}

.no-wrap {
  white-space: nowrap;
}

/* .contact {
  background: url(/images/12067354_4884451.jpg) no-repeat;
  background-size: cover;
} */

.contact-form {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3.7px);
  -webkit-backdrop-filter: blur(3.7px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.projects-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 470px) {
  .projects-links {
    flex-direction: column;
    font-size: .8rem;
  }
}

.projects-languages {
  display: flex;
  flex-direction: row;
  gap: .5rem;
  width: 100%;
  justify-content: center;
}

.projects-languages svg,
.projects-languages img {
  width: 30px;
  height: 30px;
}


.contact-container {
  width: 100%;
}

.projects-info {
  width: 45%;
  text-align: center;
}

.projects-description {
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  text-align: center;
}

.btn-web {
  background: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(60, 60, 60, 0.175);
  color: var(--white-color);
}

.btn-web:hover {
  background: rgb(93, 103, 250);
}

.btn-web-github:hover {
  background: #f67f16;
}

.projects-thumb h3 {
  /* text-decoration: underline; */
  background: white;
  border: 1px solid white;
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 2px 2px 2px grey;
  font-size: 1.8rem;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(66, 0, 31, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 930px) {
  .projects-info {
    display: none !important;
  }

  .projects-description {
    width: 100% !important;
  }

  .projects-image {
    transform: none !important;
  }

  .projectsMobile {
    display: block !important;
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media (min-width: 931px) {
  .projectsMobile {
    display: none !important;
  }

  .projectsPC {
    display: block !important;
  }
}

@media (max-width: 540px) {
  .projects-info {
    width: 100% !important;
  }

  .projects-description {
    width: 100% !important;
  }

  .projects-thumb {
    flex-direction: row;
  }
}


.projects-thumb {
  display: flex;
  gap: 3rem;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;


}

.btn-web {
  padding: 8px 10px;
}

.skills-item {
  width: 10.5rem;
  height: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  background: linear-gradient(to right, #dddddd, rgb(233, 233, 233));
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  font-weight: 500;
  font-size: 1.1rem;
  color: #260000;
  cursor: pointer;
  transition: box-shadow 0.5s, color 0.4s, text-shadow 0.2s, background 0.5s;

  /* box-shadow: rgba(255, 255, 255, 0.9) 0px 0px 15px, rgba(255, 255, 255, 0.15) 0px 0px 3px 1px; */

}

.skills-item:hover {
  box-shadow: 1px 1px 1px 1px rgb(85, 85, 85);
  background: linear-gradient(to right, #f8e6f3, #bcbcbc);
  text-shadow: 1px 1px 1px rgb(43, 43, 43);
  color: #ffffff;
}


.skills-item svg {
  height: auto;
}


.section-header {
  margin-bottom: 2rem;
}

.about-thumb p {
  text-align: center;
}



.nav-link {
  font-weight: 900 !important;
}

.navbar-nav {
  /* align-items: center; */
  width: 80%;
  justify-content: center;
}



.language-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 10px;
  background-color: #f7f7f7;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.language-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  min-width: 100%;
  border-radius: 5px;
}

.language-btn.active .language-menu {
  display: block;
}


:root {
  --button-background: rgb(0, 0, 0);
  --button-color: white;

  --dropdown-highlight: dodgerblue;
  --dropdown-width: 100%;
  --dropdown-background: rgb(0, 0, 0);
  --dropdown-color: black;
}

a.button {
  /* Frame */
  display: inline-block;
  padding: 12px 14px;
  border-radius: 5px;
  box-sizing: border-box;

  /* Style */
  border: none;
  background: var(--button-background);
  color: var(--button-color);
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

a.button:active {
  filter: brightness(75%);
  white-space: normal;
}

.dropdownLang {
  position: relative;
}

.dropdownLang * {
  box-sizing: border-box;
}

.selectLang {
  background: #2a2f3b;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px #2a2f3b solid;
  border-radius: 0.5em;
  padding: .5em;
  cursor: pointer;
  transition: background 0.5s;
}


.select-clicked {
  border: 2px #26489a solid;
  box-shadow: 0 0 0.8em #26489a;
}

.selectLang:hover {
  background: #323741;
}

.caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  transition: 0.5s;
}

.caret-rotate {
  transform: rotate(180deg);
}

.menuLang {
  list-style: none;
  padding: 0.2em 0.2em;
  background: #323741;
  border: 1px #363a43 solid;
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
  border-radius: 0.5em;
  color: #9fa5b5;
  position: absolute;
  top: 3.1em;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  opacity: 0;
  display: none;
  transition: all 0.3s;
  z-index: 1;
}

.menuLang li {
  padding: 0.4em 0.4em;
  /* margin: 0.3em 0; */
  border-radius: 0.5em;
  cursor: pointer;
}

.menuLang:hover {
  box-shadow: 0 0 0.8em #26489a;

}

.menuLang li:hover {
  background: #2a2d35;
}

.menu-open {
  display: block;
  opacity: 1;
}


/* Dropdown styles */
.dropdown {
  position: relative;
  padding: 0;
  color: #fff;

  border: none;
}

.dropdown summary {
  list-style: none;
  list-style-type: none;

}

.dropdown>summary::-webkit-details-marker {
  display: none;
}

.dropdown summary:focus {
  outline: none;
}



.dropdown ul {
  position: absolute;
  margin: 20px 0 0 0;
  padding: 0;
  width: var(--dropdown-width);
  left: 50%;
  margin-left: calc((var(--dropdown-width) / 2) * -1);
  box-sizing: border-box;
  z-index: 2;

  background: var(--dropdown-background);
  border-radius: 5px;
  list-style: none;



}

.dropdown ul li {
  padding: 0;
  margin: 0;
  text-align: center;
}

.dropdown ul li a {
  border-radius: 5px;
}

.dropdown ul li a:link,
.dropdown ul li a:visited {
  display: inline-block;
  padding: 10px 0.8rem;
  width: 100%;
  box-sizing: border-box;

  color: #fff;
  text-decoration: none;
  align-items: center;
}

.dropdown ul li a:hover {
  background-color: var(--dropdown-highlight);
  color: var(--dropdown-background);
  border-radius: 5px;

}

/* Dropdown triangle */
.dropdown ul::before {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
  top: -10px;
  left: 50%;
  margin-left: -10px;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent var(--dropdown-background) transparent;
}


/* Close the dropdown with outside clicks */
.dropdown>summary::before {
  display: none;
}

.dropdown[open]>summary::before {
  content: ' ';
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}

/* SERVICES  */
.sec-icon {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0 auto;
}

.sec-icon::before {
  content: "";
  position: absolute;
  height: 3px;
  left: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: rgb(255, 23, 131);
  width: 50px;
}

.sec-icon::after {
  content: "";
  position: absolute;
  height: 3px;
  right: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: rgb(255, 23, 131);
  width: 50px;
}

.sec-icon i {
  color: rgba(0, 0, 0, 0.792);

}

.advertisers-service-sec {
  /* background-color: #f5f5f5; */

}

.fw-bold span {
  color: rgb(255, 23, 131);
}

.fs-1 {
  font-size: 3.5rem !important;
}

.languages {
  background: url(https://img.freepik.com/free-vector/white-abstract-background_23-2148844576.jpg?w=900&t=st=1716366399~exp=1716366999~hmac=fcc0d97…) no-repeat;
  background-size: cover;
  backdrop-filter: contrast(40%);
  background-attachment: fixed;
}

.projects {
  background: url(/images/digital-picture-world-from-outer-space.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;

}

#section_5 {

  min-height: 100%;
  width: 100%;
  background: url(/images/pixelcut-export.jpeg) no-repeat;
  background-size: cover;
  background-attachment: fixed;

}



#section_5 h3,
#section_5 h2,
#section_5 .fa-envelope {
  color: white;
}

#section_5 h3,
#section_5 h2 {
  color: white;
  text-shadow: 1px 1px rgb(111, 111, 111);
}

#contact {
  width: 100%;
  height: 100%;
}



.send-button {
  max-width: 100%;
}

.section-header {
  text-align: center;
  margin: 0 auto;
  padding: 40px 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 6px;
}

.contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  max-width: 100%;
  gap: 5rem;
}

/* Left contact page */
.form-horizontal {
  /*float: left;*/
  max-width: 400px;
  font-weight: 400;
}

.form-control,
textarea {
  /* max-width: 400px; */
  background-color: #000;
  color: #fff;
  letter-spacing: 1px;
}

.send-button {
  margin-top: 15px;
  height: 34px;
  width: 400px;
  overflow: hidden;
  transition: all .2s ease-in-out;
}

.alt-send-button {
  /* width: 400px; */
  height: 34px;
  transition: all .2s ease-in-out;
}

.direct-contact-container {
  padding-right: 2rem;
}

.send-text {
  display: block;
  margin-top: 10px;
  font: 700 12px 'Lato', sans-serif;
  letter-spacing: 2px;
}

.alt-send-button:hover {
  transform: translate3d(0px, -29px, 0px);
}

.send-button {
  background: rgb(61, 90, 234);
}

.send-button:hover {
  background: #1d72f1;
}





/* Location, Phone, Email Section */
.contact-list {
  list-style-type: none;
  /* margin-left: -30px;
  padding-right: 20px; */
}

.list-item {
  line-height: 4;
    color: #aaa;
    display: flex;
    justify-content: center;
    padding: 1rem;
    padding-bottom: 1rem;
}

.contact-text {
  font: 300 18px 'Lato', sans-serif;
  letter-spacing: 1.9px;
  color: #bbb;
}

.place {
  margin-left: 62px;
}

.phone {
  margin-left: 56px;
}

.gmail {
  margin-left: 53px;
}

.contact-text a {
  color: #bbb;
  text-decoration: none;
  transition-duration: 0.2s;
}

.contact-text a:hover {
  color: #fff;
  text-decoration: none;
}




.copyright {
  font: 200 14px 'Oswald', sans-serif;
  color: #555;
  letter-spacing: 1px;
  text-align: center;
}

.contactIcon {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  background: linear-gradient(90deg, var(--c1, #8e0190), var(--c2, #5500aa) 51%, var(--c1, #f6d365)) var(--x, 0)/ 200%;

}

ul {
  padding-left: 0;
}

.contactIcon:hover {
  --x: 100% !important;
}

.contactIcon {
  --c1: #8d1b67;
  --c2: #5500aa;
}

.contactIcon i {
  margin-top: 15px;
}

@media (max-width: 500px) {

  .place,
  .phone,
  .gmail {
    margin-left: 10px;
  }
}


hr {
  height: 3px;
  color: rgba(255, 255, 255, .6);
}

.send-button {
  width: 100%;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
  width: 500px;
}

.social-media-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 0px;
}



@media screen and (max-width: 480px) {
  .social-media-list {
    grid-template-columns: repeat(3, 1fr) !important;
    grid-row-gap: 15px !important;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 432px) {
  .social-media-list {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-row-gap: 15px !important;
    justify-content: center;
    align-items: center;
  }

  /* .direct-contact-container {
    margin-left: 0 !important;
    margin-right: 0 !important; */
  /* } */
}

/* Begin Media Queries*/
@media screen and (max-width: 1150px) {
  .contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-list {
    margin-left: 0;
  }

  .direct-contact-container {
    margin: 0 auto !important;
    margin-left: 25%;
  }

  #contact-form {
    width: 100% !important;
    max-width: 100%;
  }



  .direct-contact-container {
    padding-right: 0 !important;
  }

  .direct-contact-container,
  .form-horizontal {
    margin: 0 auto;
  }

  .direct-contact-container {
    margin-top: 60px;
    max-width: 300px;
  }

  .social-media-list li {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }

  .social-media-list li:after {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}

@media screen and (max-width: 569px) {

  .direct-contact-container,
  .form-wrapper {
    float: none;
    margin: 0 auto;
  }

  .form-control,
  textarea {

    margin: 0 auto;
  }


  .name,
  .email,
  textarea {
    width: 280px;
  }

  .direct-contact-container {
    margin-top: 60px;
    max-width: 280px;
  }

  .social-media-list {
    left: 0;
  }

  .social-media-list li {
    height: 55px;
    width: 55px;
    line-height: 55px;
    font-size: 2rem;
  }

  .social-media-list li:after {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }

}

@media screen and (max-width: 410px) {
  .send-button {
    width: 99%;
  }
}

/* .containerContact {
  min-height: 100%;
  width: 100%;
  background: #000000;
} */

/* 
#section_5::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: linear-gradient(#ffdc2f, #f4008f);
  border-radius: 50%;
  /* transform: translate(-420px, -180px); */
/* } */

/* #section_5::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: linear-gradient(#2fafff, #9b0084);
  border-radius: 50%;
  transform: translate(480%, 10%);
} */



.contact-section {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 45px rgba(0, 0, 0, .1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(25px);
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  transform: skew(-15deg);
}

.contact-container,
.row100 {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.rowContact {
  display: flex;
  justify-content: center;
}

/* .contact-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} */

.place,
.phone,
.gmail {
  margin-left: 15px !important;
}



@media (max-width: 600px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 900px) {

  .place,
  .phone,
  .gmail {
    margin-left: 5px;
  }
}

@media (max-width: 640px) {
  .fa-2x {
    display: none !important;
  }

  .direct-contact-container {
    margin-top: 15px;
    max-width: 100%;
  }

  .contact-wrapper {
    gap: 2rem;
  }
}


@media (max-width: 430px) {
  .fa-2x {
    display: none !important;
  }

  .social-media-list {
    position: relative !important;
    padding-left: 1.5rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }



  .direct-contact-container {
    margin-top: 0;
    max-width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .contact-text {
    white-space: nowrap;
    font-size: 15px;
  }

  .profile-small-title {
    min-width: 20px !important;
    padding: 5px 15px;
    font-size: 8px !important;
  }

  .profile-body span {
    font-size: 15px;
  }

  .profile-title h4 {
    text-align: center;
  }



  .fs-1 {
    font-size: 2.2rem !important;
  }

  .featured-stats {
    width: 100% !important;
    padding: 0 !important;
  }

  .featured-border-start {
    border-left: none;
  }

  .featured-stats {
    border-bottom: 1px solid var(--border-color);

  }

  .featured-none {
    border-bottom: none !important;

  }
}

.featured-numbers {
  font-size: 3.2rem !important;
}

.row {
  --bs-gutter-x: 0 !important;
}

.advertisers-service-sec .col {
  padding: 0 2em 1.5em 2em;
  text-align: center;
}

.advertisers-service-sec .service-card {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: #f2f2f2;
background-image: linear-gradient(225deg, #ffeef7 0%, #fbf7ff 50%, #e7f5ff 100%);

}

.advertisers-service-sec .service-card::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(#0dcaf0, rgb(255, 23, 131));
  position: absolute;
  left: 0%;
  top: -98%;
  z-index: -2;
  transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
}

.advertisers-service-sec h3 {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
  color: #1f194c;
  margin: 1em 0;
  z-index: 3;
}

.advertisers-service-sec p {
  color: #313340;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  z-index: 3;
}

.advertisers-service-sec .icon-wrapper {
  background-color: #2c7bfe;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
  z-index: 3;
}

.advertisers-service-sec .service-card:hover:after {
  top: 0%;
}

.service-card .icon-wrapper {
  background-color: #ffffff;
  color: rgb(255, 23, 131);
  border: 1px solid;
}

.advertisers-service-sec .service-card:hover .icon-wrapper {
  color: #0dcaf0;
}

.advertisers-service-sec .service-card:hover h3 {
  color: #ffffff;
  text-shadow: 1px 1px gray;
}

.advertisers-service-sec .service-card:hover p {
  color: #f0f0f0;
  text-shadow: 1px 1px black;

}

.direct-contact-container span,
.direct-contact-container a {
  color: white !important;
}


.sectionTitle {
  font-size: 4.5rem;
}


.mainTitleSection {
  color: #ffffff;
  text-shadow: 1px 1px 6px black !important;

  font-weight: 900;
  font-size: 1.5rem;
  margin-top: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;

}

.boasting {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #1df1ef, #ef1df1);
  text-shadow: none !important;

}

.titleImg {
  width: 60%;
  text-align: center;
}

.lang-name-div {
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #444;
}

.lang-name {
  text-align: center;
}

.img-lang {
  width: 83.4px !important;
}

.img-lang-file {
  background-size: cover;
  background-repeat: no-repeat;

  height: 50px;
  /* adjust the height as needed */
  width: auto;
  display: inline-block;
  vertical-align: middle;

}

.img-lang-url {
  width: 83px;

  height: 83px;
  background-size: cover;


}

.img-lang-url img {
  width: 100%;
  height: 100%;
}

.imgBg {
  background-color: #a3007a;
  box-shadow: 0 0 10px 5px #850b6a;
  /* background-color: #FF3CAC; */
  background-image: linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);

  border-radius: 64% 36% 29% 71% / 59% 79% 21% 41%;
  box-shadow: 0 0 10px 5px #850b6a;
  display: flex;
  height: 25rem;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 25rem;
}

.img-fluid {
  filter: drop-shadow(3px -2px 3px #000) contrast(110%);
}

.imgPC {
  display: flex;
  justify-content: flex-end;
  padding-right: 4rem;
}

.imgMobile {
  display: flex;
  justify-content: center;
}

@media (min-width: 992px) {
  .imgMobile {
    display: none !important;
  }


}

@media (max-width: 991px) {
  .imgPC {
    display: none !important;
  }

  .projects-info {
    width: 50%;
  }

  .projects-description {
    width: 50%;
  }



  .hero-text {
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
    padding-top: 2rem !important;
  }

  .mainTitleSection {
    text-align: center !important;
  }

  .navbar-brand {
    justify-content: center;
  }

  .align-items-center {
    align-items: start !important;
  }

  .imgBg {
    height: 18rem;
    width: 18rem;
  }

  .hero {
    height: auto !important;
    padding-bottom: 0;
  }

  .hero-text {
    padding-left: 0;
  }

}

.hero-text p,
.hero-text ul {
  padding-top: 8px;
  padding-right: 24px;
  padding-bottom: 8px;
  padding-left: 24px;
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  /* .hero {
    padding-top: 380px;
    padding-bottom: 380px;
  } */

  .hero-image-wrap {
    top: -50px;
    width: 400px;
    height: 400px;
  }

  .hero-image {
    min-width: 650px;
  }

  .hero-title,
  .hero h2 {
    font-size: var(--h2-font-size);
  }
}

@media screen and (min-width: 991px) and (max-width: 1199px) {
  /* .hero{
    padding-top: 500px;
  } */

  .hero-image {
    width: 22rem;
  }

  .imgPC {
    padding-right: .5rem;
  }

  .hero-text {
    padding-left: .5rem;
  }



  /* .hero-title{
    font-size: 2rem;
  } */
}

@media screen and (max-width: 991px) {


  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-header {
    padding: 35px !important;
  }

  .mt-5 {
    margin-top: 2rem !important;
  }


  .section-padding {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar .container {
    background: var(--white-color);
  }

  .navbar-brand,
  .navbar-brand:hover {
    color: var(--dark-color);
  }

  .navbar-icon {
    background: var(--secondary-color);
    color: var(--white-color);
    width: 44px;
    height: 44px;
    line-height: 44px;
  }

  .navbar .custom-btn {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
  }

  .navbar-toggler .navbar-toggler-icon,
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    background: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 0;
  }

  .navbar-nav .nav-link {
    color: var(--p-color);
    padding-top: 10px;
    padding-bottom: 10px;

  }

  .hero {
    padding-top: 120px;
  }

  .hero-text {
    top: 0;
    margin-bottom: 120px;
  }

  .about-thumb {
    padding-right: 0;
    padding-left: 0;
  }

  .about-numbers {
    font-size: 42px;
  }

  .services-thumb-up {
    bottom: 0;
    margin-bottom: 32px;
  }

  .services-thumb {
    margin-bottom: 32px;
    padding-bottom: 270px;
  }

  .services-icon-wrap {
    width: 45%;
    height: 60%;
  }

  .services .col-lg-10 .row .col-lg-6:last-child,
  .projects .col-lg-4:last-child {
    margin-bottom: 0;
  }

  .projects-thumb {
    margin-top: 0;
    margin-bottom: 32px;
  }

  .contact-info {
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
    padding: 40px 30px;
  }

  .contact-info-border-start {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
  }
}

@media only screen and (max-width: 782px) and (min-width: 576px) {
  .sectionTitle {
    font-size: 3rem !important;
  }
}

@media screen and (max-width: 575px) {
  .navbar .container {
    margin-right: 12px;
    margin-left: 12px;
  }

  .imgBg {
    height: 14rem;
    width: 14rem;
  }

  .mainTitleSection {
    text-align: center !important;

  }

  .imgPC {
    display: none !important;
  }

  .sectionTitle {
    font-size: 2rem !important;
  }

  .section-title-wrap {
    width: 90%;
  }

  a.button {
    padding: .2rem .5rem;
  }

  .dropdown ul li a:link,
  .dropdown ul li a:visited {
    padding: .2rem .5rem;

  }

  .titleImg {
    width: 100%;
    height: 35px;
  }

  .hero-title {
    font-size: 1.55rem;
  }



}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.29rem;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: 20px;
    padding: 6px 12px;
  }

  .navbar-icon {
    font-size: var(--copyright-font-size);
    width: 35.5px;
    height: 35.5px;
    line-height: 35.5px;
  }

  .hero-image-wrap {
    width: 300px;
    height: 300px;
  }

  .hero-image {
    min-width: inherit;
  }

  .mainTitleSection {
    text-align: center;
  }


}

@media (max-width: 310px) {
  .fs-1 {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 350px) {
  .social-media-list {
    padding-left: 1rem !important;
  }
}