* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a{
  text-decoration: none;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

:root {
  --fontPoppins: "Poppins", sans-serif;
  --fontOpenSans: "Open Sans", sans-serif;
  --white__color: #fff;
  --black__color: #000;
  --mainTitle__color: #282828;
  --subtitle__color: #999;
  --mainText__color: #666;
  --secondMain__color: #FF8A00;
  --thirdMain__color:#59acde;
  --footer__color: #b0b0b0;
  --footer__bgColor: #1c1c1c;
  --section__bgColor: #f8f9fa;
  --setting__bgcolor: #444;

  /* --subtitle__color: #e65f78; */
  --button__color: #FF8A00;
  --formBorder__color: #e0e0e0;
  --placeholder__color: #b1b4b8;
}

body {
  font-family: var(--fontPoppins), var(--fontOpenSans);
  background-color: #1c1c1c; 
}

/*************************************fixed buttons Section*****************************************/
.settings__button {
  position: fixed;
  top: 18%;
  left: 0;
  z-index: 11;
  border-radius: 0;
  background-image: linear-gradient(to right, #64cdf2, #4875b9, #e35687);
}

.logo{
  text-align: center;
}

.logo img{
  width: 200px;
  height: auto;
}

/*************************************Navbar Section*****************************************/
nav {
  background-color: var(--white__color);
  box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.2);
  font-family: var(--fontPoppins);
  font-weight: 600;
  font-size: 0.8125rem;
  height: 70px;
}
.navbar-brand img{
  width: 120px;
}
.navbar-light .navbar-nav .nav-link {
  color: var(--mainTitle__color);
  font-size: 1.2rem;
  transition: color 0.2s ease-in;
}

.navbar-light .navbar-nav,
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--secondMain__color);
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  border: unset;
  box-shadow: none;
}

.navbar-toggler{
  background-image: linear-gradient(to right, #64cdf2, #4875b9, #e35687);
  border: none;
}
.navbar-toggler-icon  {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(255, 255, 255)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/********************************************************************************************/
/*************************************Home Section*****************************************/
#home .container-fluid {
  padding-inline: 0;
  padding-top:10px;
}
.slide__img {
  height: 100vh;
  object-fit: cover;
}

.carousel-control-next,
.carousel-control-prev {
  all: unset;
  position: absolute;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-image: linear-gradient(to right, #64cdf2, #4875b9, #e35687);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius:0 0.25rem 0.25rem 0 ;
  transition: all 400ms ease-in;
}
.carousel-control-next {
  top: calc(45vh - 5px);
  border-left: 0;
}
.carousel-control-prev {
  top: calc(35vh - 5px);
  border-left: 0;
}
.carousel-control-next:hover ,
.carousel-control-prev:hover{
color: #FF8A00;
border: none;
background-size: 0 100%;
transition: all 400ms ease-in;
opacity: 1;
}
.carousel-caption{
  top:40%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  all:unset;
}
.home__title{
  font-family: var(--fontPoppins);
  font-weight: 700;
  font-size: calc(37px + 1vw );
  max-width: 600px;
  font-size: 80px;
}


.animate__animated.animate__bounceInRight {
  --animate-duration: 1.4s;
}
.home__arrow--click {
  bottom: 10%;
  margin: 0;
  left: calc(50% - 0px);
  transform: translate(-50%, 0);
  border: 3px solid #FF8A00;
  width: 35px;
  height: 60px;
  border-radius: 50rem;
}
.animate__animated.animate__bounce {
  --animate-duration: 3s;
}


/********************************************************************************************/
/*************************************About Section*****************************************/
#about .subtitle__container h2,
#team .subtitle__container h2,
#services .subtitle__container h2,
#testimonials .subtitle__container h2,
#projects .subtitle__container h2,
#contact .subtitle__container h2 {
  font-family: var(--fontPoppins);
  font-weight: 700;
  font-size: 3rem;
  position: relative;
  z-index: 1;
}

#about .subtitle__container h2::before,
#team .subtitle__container h2::before,
#services .subtitle__container h2::before,
#testimonials .subtitle__container h2::before,
#projects .subtitle__container h2::before,
#contact .subtitle__container h2::before {
  z-index: -1;
  position: absolute;
  bottom: -66%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  opacity: 0.15;
  font-family: var(--fontPoppins);
  font-weight: 800;
  margin-block: 3rem;
  color: var(--subtitle__color);
}
#about {
  background-color: #1c1c1c;
  padding-top: 0%;
  min-height: 100vh;
}
#about .subtitle__container h2::before {
  content: "A";
  color: #FF8A00;
}
.shadow{
  background-color: #00000050;
  height: auto;
  width: 100%;
}
#team{
  background-image: url("../images/bg/paper.jpg");
  background-size: cover;
  padding-top: 0%;
  min-height: 100vh;
}
.subtitle__line {
  width: 30px;
  height: 1px;
  background-color: #fff;
  transition: width 400ms linear;
}

.subtitle__container:hover .subtitle__line {
  width: 3.75rem;
}

.subtitle__text {
  font-family: var(--fontOpenSans);
  line-height: 1.7rem;
  color: var(--subtitle__color);
  font-size: 1.125rem;
  font-weight: 700;
}

.about__parrafo {
  font-family: var(--fontOpenSans);
  font-weight: 500;
  font-size: 1rem;
  color: var(--mainText__color);
}
.progress__data {
  font-family: var(--fontOpenSans);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--setting__bgcolor);
  line-height: 1.5625rem;
}

.progress {
  height: 0.3125rem;
}

.progress-bar {
  background-color: var(--secondMain__color);
}

/********************************************************************************************/
/*************************************Team Section*****************************************/

#team .subtitle__container h2::before {
  content: "O";
  color: #fff;
}

.profile__img{
  border-radius: .25rem;
  transition: all 300ms ease-in;
  /* transform:translate(5%, 5%); 
  width:100%;  */
}

.img__container{
  border-radius: .25rem;
}
.h_banner{
  width: 100%;
  height: auto;
  padding: 10px;
}

.y_banner{
  width: 100%;
  height: 400px;
  padding: 10px;
}
.profileImage__layer{
  /*must be written here (^_^)*/
  position: absolute;
  left: 0%;
  top:100%;
  width: 100%;
  height: 100%; 
  border-radius: inherit;
  transition: top 300ms linear;
  background-color: #3c95cca2;
}
.team__conatiner {
  max-width: 900px;
}
.team__conatiner .card{
  border: unset;
  background-color: #000000;
}
 .team__conatiner .card:hover .profileImage__layer{
  top: 0%;
}

.team__conatiner .card:hover .profile__img{
  transform: scale(1.3);
}

.team__conatiner .card:hover .card-title{
  cursor:default;
}

a.social__icon{
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  transition: all 500ms ease;
}

a.social__icon:hover{
  color:  #000;
}

.services__container .card{
  cursor: pointer;
}
.team__conatiner .card .card-title , .testimonial__container .card-title{
font-family: var(--fontPoppins);
font-weight: 600;
font-size: 1rem;
color: #3c95cc;
transition: color 400ms linear;
} 

.team__conatiner .card .card-text, .testimonial__container .card-text{
color: #FF8A00;
font: var(--fontOpenSans);
font-size: .875rem;
font-weight: 400;
} 

.card_border{
  position: absolute;
  inset: 0;
  clip-path: url(#squircleClip);
  scale: 1;
  opacity: 0;
  background: #fd5;
  box-shadow:
    inset 10px 10px 20px #ffcb,
    inset -10px -10px 20px #ea18;
  border-radius: calc(var(--size) / 6);
  transition: 0.3s cubic-bezier(.51,.61,0,2.3);
}

/********************************************************************************************/
/*************************************Projects Section*****************************************/
#projects {
  min-height: 130vh;
  background-color: #1c1c1c;
  padding-top: 0%;
  min-height: 100vh;
}
#projects .subtitle__container h2::before {
  content: "G";
  color: #FF8A00;
}

.projects__container .card .contact__title {
  margin-bottom: 10px;
  color: var(--secondMain__color);
  font-size: 1.125rem;
  font-family: var(--fontPoppins);
  font-weight: 600;
  transition: color 300ms ease-in;
}

.projects__container .card {
  border: unset;
  background-color: transparent;
}

.projects__container .card:hover .contact__title {
  color: var(--thirdMain__color);
}


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

#services .subtitle__container h2::before {
  content: "S";
  color: #FF8A00;
}

.services__container .card .contact__title {
  color: var(--secondMain__color);
  margin-bottom: 10px;
  font-size: 22px;
  font-family: var(--fontPoppins);
  font-weight: 600;
  transition: color 300ms ease-in;
}

.services__container .card {
  border: unset;
  background-color: transparent;
}

.services__container .card:hover .contact__title {
  color: var(--thirdMain__color);
  cursor: pointer;
}
.cover_image{
  background-color: #3c95cc;
  border-radius: 20px ;
  transition: all 0.4s ease-in-out;
}
.cover_image img{
 opacity: 1;
 border-radius: 20px ;
 transition: all 0.4s ease-in-out;
 
}
.services__container .card:hover .cover_image img {
  transition: all 0.4s ease-in-out;
  opacity: 0.5;
}

.slick-slide img{
  border-radius: 25px;
}


/********************************************************************************************/
/*************************************Testimonials Section*****************************************/
#testimonials{
  min-height: 1200px;
  background-color: #1c1c1c;
  background-image: url("../images/bg/spotlight.jpg");
  background-size: cover;
}
#testimonials .subtitle__container h2::before {
  content: "R";
  color: #FF8A00;
}

/**** Start Slick Slider Customized CSS ****/
.test__wrapper{
  padding: 70px 0;
}

.slide__JSImage img {
  border-radius: 50%;
  border:none;
}

/* Default slide */
.center-slider .slick-slide{
  color: #FFF;
  margin: 0 0px 0 0;
  transform: scale(0.8);
  opacity : 0.5 ;
  pointer-events: none;
  transition: all 0.4s ease-in-out;
}

.center-slider .slick-slide,
.center-slider .slick-slide[aria-hidden="true"]:not(.slick-cloned) ~ .slick-cloned[aria-hidden="true"] {
  transform: scale(0.8, 0.8);
  transition: all 0.4s ease-in-out;
}

/* Active center slide (You can change anything here for cenetr slide)*/
.center-slider .slick-center,
.center-slider .slick-slide[aria-hidden="true"]:not([tabindex="-1"]) + .slick-cloned[aria-hidden="true"] {
  transform: scale(1);
  /* background-color: #000000; */
  cursor: pointer;
  pointer-events:auto;
}

.center-slider .slick-current.slick-active{
  transform: scale(1);
  /* background-color: #000000; */
  opacity : 1 ;
  cursor: pointer;
  pointer-events:auto;
}

.slick-next, .slick-prev{
  z-index: 5;
}
.slick-next{
  right: 35px;

}
.slick-prev{
  left: 15px;
} 
.slick-next:before, .slick-prev:before{
  color: var(--secondMain__color);
  font-size: 39px;
}
.test__wrapper .card-body{
  display: none;
}

.test__wrapper .slick-current.slick-active .card-body{
  display: block;
}

/**************************/

.review__desc{
  font-size: 20px;
  line-height: 1.5em;
  font-family: var(--fontOpenSans);
  font-weight: 400;
  margin-bottom: 10px;
  color:var(--mainText__color);
  max-width: 650px;
}



/********************************************************************************************/
/*************************************Contact Section*****************************************/
#contact {
  background-color: #fafafa;
}
#contact .subtitle__container h2::before {
  content: "G";
}

.contact__text {
  font-family: var(--fontPoppins);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--mainTitle__color);
}

.contact__icon {
  color: var(--secondMain__color);
  width: 15%;
  text-align: center;
}

.contact__data {
  font-family: var(--fontPoppins);

}
.contact__data img{
  max-width: 100%;
}
.contact__data h4 {
  font-weight: 600;
  font-size: 1.125rem;
  transition: color 300ms ease-in;
}

.contact__data p {
  font-size: 15px;
  font-weight: 600;
  text-align: justify;
  color: #ffffff;
  font-family: var(--fontOpenSans);
}

#contact .card {
  border: unset;
  background-color: transparent;
}

#contact .contact__address .row > .address__column:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.contact__data a {
  color: inherit;
  text-decoration: none;
  transition: all 300ms ease-in;
}

#contact .card:hover .contact__data h4,
.contact__data a:hover,
.footer__address a:hover {
  color: var(--secondMain__color);
}

.form__input {
  padding-inline: 0.75rem;
  padding-block: 0.375rem;
  width: calc(100%);
  border: 2px solid #eee;
  transition: border-color 0.15s linear, box-shadow 0.15s linear;
}

.form__input:focus {
  outline: 1px solid var(--secondMain__color); /*!important; */
  border: 1px solid var(--secondMain__color);
  box-shadow: 0 0 2px #FF8A00;
}

.banner_img{
  max-width: 100px;
  
}
::placeholder {
  color: #a6a6a6;
  font-weight: 400;
  font-size: 0.875rem;
  font-family: var(--fontOpenSans);
}

.form__button , .team__button {
  display: block;
  width: 150px;
  text-transform: capitalize;
  color: #ffffff;
  border: none;
  padding: 0.68rem 1rem;
  font-size: 0.875rem;
  background-color: var(--secondMain__color);
  text-decoration: none;
  transition: all 500ms ease;
  cursor: pointer;
  font-family: var(--fontOpenSans);
  font-weight: 700;
  border-radius: 0.25rem;
}

a.form__button:hover , .team__button:hover{
  background-color: #59acde;
}

/********************************************************************************************/
/*************************************Footer Section*****************************************/
#footer {
  background-color: var(--footer__bgColor);
  background-image: url("../images/bg/dotted-map.png");
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white__color);
  padding-top: 30px;
  padding-bottom: 30px;
  min-height: 10vh;
}

.footer__container {
  min-height: 10vh;
}
.footer__wrapper {
  height: 100%;
}

.lookUp__button {
  position: absolute;
  top: -50%;
  left: calc(50% - 0px);
  transform: translate(-50%, -50%);
  border: 1px solid var(--secondMain__color);
  background-color: var(--secondMain__color);
  border-radius: 50%;
  padding: 10px;
  opacity: 0.75;
  margin: 0;
  transition: opacity 400ms linear;
}

.lookUp__button:hover {
  opacity: 1;
}

.faq-section .accordion-item {
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(142, 142, 142, .16);
}

.faq-section .accordion-item button {
  position: relative;
  padding: 18px 25px;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  background-color: #fff;
  color: #1d2a5d;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../images/bg/);
}

.accordion-button:focus {
  box-shadow: none;
}


.footer__Ctitle,
.footer__address {
  font-family: var(--fontPoppins);
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: 10px;
  margin-bottom: 20px;
}

.footer__address a {
  all: inherit;
  margin: 0;
  cursor: pointer;
}

.contact__links li,
.footer__address {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--footer__color);
  transition: all 300ms ease-in;
  line-height: 1.5625rem;
}

.link__list {
  list-style-type: none;
  margin: 0;
}

.contact__links ul a {
  all: inherit;
  border: none;
  cursor: pointer;
}

.contact__links ul a:hover {
  color: var(--secondMain__color);
}

ul.link__list.list__tags {
  display: flex;
  flex-wrap: wrap;
  max-width: 90%;
}

ul.link__list.list__tags li {
  border-radius: 0.25rem;
}

.contact__links ul a.tag__border {
  border: 2px solid var(--footer__color);
}

.contact__links ul a.tag__border:hover {
  border: 2px solid var(--secondMain__color);
}

/***************************************************************/
#copy__rights {
  padding-block: 1.875rem;
  background-color: #1a1a1a;
  font-family: var(--fontPoppins);
  font-size: 0.875rem;
  color: var(--footer__color);
}
#copy__rights p a {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--footer__color);
  text-decoration: none;
  transition: color 400ms linear;
}

#copy__rights p a:hover {
  color: var(--secondMain__color);
}

.social__footerIcons ul a {
  color: var(--white__color);
  transition: color 400ms linear;
}

.social__footerIcons ul a:hover {
  color: var(--secondMain__color);
}

/********************************************************************************************/
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/*******************************************Scroll*****************************************/
.hidden {
  opacity: 0;
  filter: blur(5px);
  transition: all 1s;
  transform: translateX(-100%);
}

.show{
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}


:root {
  --color-background: transparent;
  --color-border-active: #FF8A00;
  --color-border-default: #d1d1d1;
  --color-highlight: #fdcf4c;
  --color-primary: #FF8A00;
  --color-primary-active: rgb(114, 42, 6);
  --color-text-default: #000000;
  --color-text-muted: #5f5f5f;

  --font-family-body: "Figtree", system-ui, sans-serif;
  --font-family-display: "Poppins", system-ui, sans-serif;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

[type="checkbox"],
[type="radio"],
[type="range"] {
  appearance: none;
  flex-shrink: 0;
  padding: 0;
  user-select: none;
}

[type="checkbox"]:focus,
[type="radio"]:focus,
[type="range"]:focus {
  outline: none;
}

/** Components **/

.fs-form {
  display: grid;
  row-gap: 1.5rem;
  padding: 20px;
}

.fs-form:where(.fs-layout__2-column) {
  column-gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}

fieldset {
  display: grid;
  row-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) fieldset {
  column-gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  grid-column: 1 / -1;
}

.fs-field {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.fs-label {
  color: rgb(29, 42, 93);
  display: block;
  font-family: var(--font-family-display);
  font-size: 18px;
  line-height: 1.25rem;
  font-weight: 700;
}

.fs-description {
  color: var(--color-text-muted);
  display: block;
  font-size: 14px;
  line-height: 1.25rem;
  font-style: italic;
  margin-bottom: 0px;
  font-weight: 700;
}

.fs-button-group {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) .fs-button-group {
  grid-column: 1 / -1;
}

.fs-input,
.fs-select {
  appearance: none;
  border-radius: 10px;
  border-width: 0;
  box-shadow: var(--color-border-default) 0 0 0 1px inset;
  color: var(--color-text-default);
  font-size: 1rem;
  height: 3rem;
  line-height: 1.5rem;
  outline: none;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #ff88001a;
}

.fs-input:focus-visible,
.fs-select:focus-visible {
  box-shadow: var(--color-border-active) 0 0 0 1px inset;
}

.fs-input::placeholder {
  color: var(--color-text-muted);
}

.fs-checkbox-group,
.fs-radio-group {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.fs-checkbox-field,
.fs-radio-field {
  column-gap: 0.5rem;
  display: flex;
}

:is(.fs-checkbox-field, .fs-radio-field) .fs-label + .fs-description {
  margin-top: 0.25rem;
}

.fs-checkbox {
  border-radius: 0.25rem;
}

.fs-radio {
  border-radius: 100%;
}

.fs-checkbox:checked,
.fs-radio:checked {
  background-color: var(--color-primary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-color: transparent;
}

.fs-checkbox:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

.fs-radio:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

.fs-checkbox:focus-visible,
.fs-radio:focus-visible {
  border-color: var(--color-border-active);
  outline: 4px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-checkbox:checked:focus-visible,
.fs-radio:checked:focus-visible {
  border-color: transparent;
}

.fs-select {
  background-color: #ff88001a;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.625em 1.625em;
  padding-right: 2.875rem;
}

.fs-slider {
  background: transparent;
  cursor: pointer;
  height: 1.25rem;
  width: 100%;
}

.fs-slider::-moz-range-track {
  background-color: var(--color-background);
  border-radius: 0.5rem;
  height: 0.5rem;
}

.fs-slider::-webkit-slider-runnable-track {
  background-color: var(--color-background);
  border-radius: 0.5rem;
  height: 0.5rem;
}

.fs-slider::-moz-range-thumb {
  background-color: var(--color-primary);
  border: none; /* Removes extra border that FF applies */
  border-radius: 50%;
  height: 1.25rem;
  width: 1.25rem;
}

.fs-slider::-webkit-slider-thumb {
  appearance: none;
  background-color: var(--color-primary);
  border-radius: 50%;
  height: 1.25rem;
  margin-top: -0.375rem; /* Centers thumb on the track */
  width: 1.25rem;
}

.fs-slider:focus-visible::-moz-range-thumb {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.fs-slider:focus-visible::-webkit-slider-thumb {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.fs-switch-field {
  align-items: center;
  column-gap: 0.75rem;
  display: flex;
  justify-content: space-between;
}

.fs-switch {
  background-color: var(--color-background-alt);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2.75' fill='white'/%3e%3c/svg%3e");
  background-position: left center;
  background-repeat: no-repeat;
  border-radius: 1.25rem;
  cursor: pointer;
  height: 1.25rem;
  transition-duration: 200ms;
  transition-property: background-color, background-position;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  width: 2.5rem;
}

.fs-switch:checked {
  background-color: var(--color-primary);
  background-position: right center;
}

.fs-switch:focus-visible {
  outline: 4px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-textarea {
  appearance: none;
  border-radius: 10px;
  border-width: 0;
  box-shadow: var(--color-border-default) 0 0 0 1px inset;
  color: var(--color-text-default);
  font-size: 1rem;
  line-height: 1.5rem;
  outline: none;
  padding: 0.5rem 0.75rem;
  resize: vertical;
  background-color: #ff88001a;
  min-height: 150px;
}

.fs-textarea:focus-visible {
  box-shadow: var(--color-border-active) 0 0 0 1px inset;
}

.fs-textarea::placeholder {
  color: var(--color-text-muted);
}

@media(prefers-reduced-motion){
  .hidden{
    transition: none;
  }
}


/*******************************************RWD Section*****************************************/
@media screen and (min-width: 991.9808px) {
  .subtitle__text {
    max-width: 800px;
    /* border:1px solid red; */
  }
}
@media screen and (min-width: 1199.9808px) {
  .carousel-control-next {
  top: calc(60vh - 5px);
}

.carousel-control-prev {
  top: calc(50vh - 5px);
}

}


@media screen and (max-width: 1399.9808px) {
}
.map{
  width: 95%;
  background-color: #FF8A00;
}

@media screen and (max-width: 1199.9808px) {
  .home__title{
    max-width: 400px;
    font-size: 50px;
  }
}

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

  .nav .container {
    max-width: 100%;
    background-color: #ffffff;
  }
  .nav-link{
    padding-left: 0%;
    height: 50px;
    padding-top: 12px;
  }
  .navbarSocial__icon {
    display: none;
  }
  .nav-item {
    line-height: 1.5rem;
  }
  .contact__container {
    max-width: 100%;
  }
  .review__img{
    height: 80vh;
    object-fit: cover;
  }
  #home .container-fluid{
    height: auto;
  }

}

@media screen and (max-width: 768.9808px) {
  .home__arrow--click{
    display: none;
  }

  .hireMe__container h2{
    margin-bottom: 1.875rem;
  }

  .footer__container {
    max-width: 100%;
  }

  ul.link__list.list__tags {
    max-width: 100%;
  }

  .contact__text {
    font-size: 1.5rem;
    margin: auto;
  }

  .social__footerIcons ul {
    width: 50%;
    justify-content: space-between;
    margin: 1rem auto;
  }
  .nav-link{
    border-bottom:1px solid #0000002c;
  }
}

@media screen and (max-width: 575.9808px) {
  .contact__text {
    max-width: 500px;
    text-align: center;
  }
  .carousel-control-next {
    top: calc(70vh - 5px);
  }
  .carousel-control-prev {
    top: calc(60vh - 5px);
  }
}

@media screen and (max-width: 425.9808px) {
  #testimonials{
    min-height: 1250px;
  }
  .home__title{
    max-width: 300px;
    font-size: 30px;
  }
}



@media (max-width: 480px) {
  .vert_video {
    width: 100%;
    height: 100%;
  }
}

.vert_video {
    width: 100%;
    height: 75%;
}




/**************************************************************************************************/
