/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(18, 95%, 55%);
  --second-color: hsl(42, 98%, 52%);
  --first-gradient: linear-gradient(90deg,
      hsl(18, 95%, 55%),
      hsl(18, 98%, 64%));
  --title-color: hsl(255, 12%, 12%);
  --text-color: hsl(225, 12%, 24%);
  --text-color-light: hsl(255, 4%, 70%);
  --body-color: hsl(0, 0%, 100%);
  --container-color: hsl(0, 0%, 100%);
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(255, 20%, 10%);
  --gray-border: hsl(255, 6%, 90%);
  --black-border: hsl(255, 10%, 20%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --big-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}

.section__title,
.section__subtitle {
  text-align: center;
}

.section__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1.5rem;
}

.section__subtitle {
  display: block;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--second-color);
  margin-bottom: .5rem;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: var(--z-fixed);
  transition: background-color .4s;
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  column-gap: .25rem;
}

.nav__menu a {
  text-decoration: none;
  text-transform: uppercase;

}

/* Nav Logo Img */

.nav__logo img {
  width: 13rem;
}

.nav__toggle,
.nav__close {
  font-size: 1.5rem;
  color: var(--white-color);
  cursor: pointer;
  transform: color .4s;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: var(--black-color);
    width: 80%;
    height: 100%;
    padding: 7.5rem 3.5rem 0rem;
    border-left: 2px solid var(--black-border);
    transition: right .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.nav__link {
  color: black;
  font-weight: 700;
  transition: color .4s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* Show menu */
.show-menu {
  right: 0;
}


/* Change background header */
.bg-header {
  background-color: var(--body-color);
  box-shadow: 0 4px 16px hsla(255, 90%, 8%, .1);
}

.bg-header .nav__logo span,
.bg-header .nav__toggle {
  color: var(--title-color);
}

/*=============== HOME ===============*/

.con {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
  margin-top: -20px;
}

.con span {
  color: black;
  font-size: 20px;
  font-weight: 800;
}

.home {
  position: relative;
  background-color: #FFFBDE;
  
}

.home__container {
  position: relative;
  row-gap: 3rem;
  padding-block: 2.5rem 6rem;
}

.home__content {
  row-gap: 3rem;
}

.home__data {
  text-align: center;
}

.home__title {
  color: black;
  font-size: 60px;
  margin-bottom: 2rem;
  margin-top: 4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.home__description {
  margin-bottom: rem;
  color: rgb(29, 28, 28);
  text-align: center;
  padding-left: 15%;
  padding-right: 15%;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 17px;
  font-style: normal;
}

.co h4 {
  color: black;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.co i {
  color: var(--first-color);
}

.section {
  position: relative;
  height: 100vh;
}

.section .section-center {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#booking {
  font-family: "Poppins", sans-serif;
  background-size: cover;
  background-position: center;
}

#booking::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #91C8E4;
  
}

booking-form {
  background-color: #fff;
  padding: 20px 20px;
  -webkit-box-shadow: 0px 5px 20px -5px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 20px -5px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.booking-form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.booking-form .form-control {
  background-color: #ffffff;
  border-radius: 4px;
  border: none;
  height: 40px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #141414;
  font-size: 14px;
}

.booking-form .form-control::-webkit-input-placeholder {
  color: rgba(62, 72, 92, 0.3);
}

.booking-form .form-control:-ms-input-placeholder {
  color: rgba(62, 72, 92, 0.3);
}

.booking-form .form-control::placeholder {
  color: rgba(62, 72, 92, 0.3);
}

.booking-form input[type="date"].form-control:invalid {
  color: rgba(62, 72, 92, 0.3);
}

.booking-form select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.booking-form select.form-control+.select-arrow {
  position: absolute;
  right: 0px;
  bottom: 4px;
  width: 32px;
  line-height: 32px;
  height: 32px;
  text-align: center;
  pointer-events: none;
  color: rgba(62, 72, 92, 0.3);
  font-size: 14px;
}

.booking-form select.form-control+.select-arrow:after {
  content: '\279C';
  display: block;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.booking-form .form-label {
  display: inline-block;
  color: #1f1f20;
  font-weight: 600;
  margin-bottom: 4px;

}

.booking-form .submit-btn {
  display: inline-block;
  color: #fff;
  background-color: var(--first-color);
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 4px;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  margin-left: 33%;
}

.booking-form .submit-btn:hover,
.booking-form .submit-btn:focus {
  opacity: 0.9;
}

.booking-cta {
  margin-top: 80px;
  margin-bottom: 30px;
}

.booking-cta h1 {
  font-size: 60px;
  text-transform: uppercase;
  color: black;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.booking-cta p {
  color: rgb(29, 27, 27);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.section2 {
  background-color: #77CDFF;
  padding-bottom: 2%;
}

.section2 li {
  color: rgb(29, 27, 27);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.offer {
  padding-top: 6%;
  padding-bottom: 1%;

}

.offerr p {
  color: #687FE5;
}

.sect2 h3 {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
  padding-top: 40px;

}

.sect2 p {
  text-align: center;
  color: rgb(29, 27, 27);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;

}

.sect3 h3 {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
  padding-top: 40px;

}

.sect3 p {
  text-align: center;
  color: rgb(29, 27, 27);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding-bottom: 20px;

}


.sect22 h3 {

  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
  padding-top: 40px;
  padding-bottom: 20px;
  font-size: 20px;

}

.sect22 p {

  color: rgb(29, 27, 27);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;

}

.sect22 {
  padding-left: 5%;
  padding-right: 5%;
}


.bord {
  border-radius: 10px;
  box-shadow: 0px 5px 20px -5px rgba(0, 0, 0, 0.3);
  height: auto;
  width: 300px;

}

.bord p {
  text-align: center;
  color: rgb(29, 27, 27);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.bord h3 {
  font-size: 22px;
  text-align: center;
  color: rgb(29, 27, 27);
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.bord img {
  width: 4rem;
  margin-left: 38%;
}


.bord1 {
  border-radius: 10px;
  box-shadow: 0px 5px 20px -5px rgba(0, 0, 0, 0.3);
  height: auto;
  width: 300px;

}

.bord1 p {
  text-align: center;
  color: rgb(29, 27, 27);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.bord1 h3 {
  font-size: 22px;
  text-align: center;
  color: rgb(29, 27, 27);
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.bord1 li {
  font-size: 15px;
  color: rgb(29, 27, 27);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.borde {
  border-radius: 10px;
  box-shadow: 0px 5px 20px -5px rgba(0, 0, 0, 0.3);
  height: auto;
  width: 300px;

}

.borde li {
  color: rgb(29, 27, 27);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.borde h3 {
  font-size: 20px;
  text-align: center;
  color: rgb(29, 27, 27);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}


/*=============== Slide ===============*/

/*=============== Business ===============*/
.business {
  background-color: #687FE5;
  color: #000;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 50px;
  padding-top: 15%;
}


h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

p {
  font-size: 1.2em;
}

.icon {
  font-size: 7em;
  color: #FFA500;
  margin-bottom: 20px;
}

/*=============== End Business ===============*/

/*=============== BUTTON ===============*/
.button {
  display: inline-flex;
  background: var(--first-color);
  color: var(--white-color);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
  padding: 7.5px 15px;
  transition: box-shadow .4s;
  border-radius: 50px;
}

.button:hover {
  box-shadow: 0 8px 32px hsla(18, 95%, 55%, .3);
  color: var(--white-color);
}

.button__link {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  color: var(--first-color);
}

.button__link span {
  font-weight: var(--font-semi-bold);
}

.button__link i {
  font-size: 1.5rem;
  transition: transform .4s;
}

.button__link:hover i {
  transform: translateX(.25rem);
}

/*=============== ABOUT ===============*/
.abou {
  background-color: #FCD8CD;
  padding-bottom: 30px;
}

.section4 {
  background-color: #EBD6FB;
}

.footerabout {
  background-color: #687FE5;
  color: black;
  padding-block: 3.5rem 2rem;
  margin-top: -16px;
}

.section3 {
  background-color: #FEEBF6;
  padding-bottom: 50px;
}

.abou h4 {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.abou p {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.abou li {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: var(--first-color);
}

.abou h5 {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--first-color);
}

.abou img {
  border-radius: 7px;
}

/*=============== SERVICES ===============*/

/*=============== LEGAL ===============*/
.sec1terms h3 {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.sec1terms h2 {
  font-size: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
}

.sec1terms h4 {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  padding-bottom: 30px;
}

.sec1terms {
  padding-left: 17%;
  padding-right: 17%;
}


/*=============== END LEGAL ===============*/


/*=============== CONTACT ===============*/

.sec1 {
  background-color: #4ED7F1;
}

/*==== SECT2 ====*/


.row.heading h2 {
  color: #fff;
  font-size: 52.52px;
  line-height: 95px;
  font-weight: 400;
  text-align: center;
  margin: 0 0 40px;
  padding-bottom: 20px;
  text-transform: uppercase;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.heading.heading-icon {
  display: block;
}

.padding-lg {
  display: block;
  padding-top: 60px;
  padding-bottom: 60px;
}

.practice-area.padding-lg {
  padding-bottom: 55px;
  padding-top: 55px;
}

.practice-area .inner {
  border: 1px solid #999999;
  text-align: center;
  margin-bottom: 28px;
  padding: 40px 25px;
}

.our-webcoderskull .cnt-block:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  border: 0;
}

.practice-area .inner h3 {
  color: #3c3c3c;
  font-size: 24px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  padding: 10px 0;
}

.practice-area .inner p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

.practice-area .inner img {
  display: inline-block;
}




.our-webcoderskull .cnt-block {
  float: left;
  width: 100%;
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border: 2px solid #d5d5d5;
  margin: 0 0 28px;
}

.our-webcoderskull .cnt-block figure {
  width: 148px;
  height: 148px;
  border-radius: 100%;
  display: inline-block;
  margin-bottom: 15px;
}

.our-webcoderskull .cnt-block img {
  width: 148px;
  height: 148px;
  border-radius: 100%;
}

.our-webcoderskull .cnt-block h3 {
  color: #2a2a2a;
  font-size: 20px;
  font-weight: 500;
  padding: 6px 0;
  text-transform: uppercase;
}

.our-webcoderskull .cnt-block h3 a {
  text-decoration: none;
  color: #2a2a2a;
}

.our-webcoderskull .cnt-block h3 a:hover {
  color: #337ab7;
}

.our-webcoderskull .cnt-block p {
  color: #2a2a2a;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
}

.our-webcoderskull .cnt-block .follow-us {
  margin: 20px 0 0;
}

.our-webcoderskull .cnt-block .follow-us li {
  display: inline-block;
  width: auto;
  margin: 0 5px;
}

.our-webcoderskull .cnt-block .follow-us li .fa {
  font-size: 24px;
  color: #767676;
}

.our-webcoderskull .cnt-block .follow-us li .fa:hover {
  color: #025a8e;
}


/*====== End SECT2 ======*/



.footercontact {
  background-color: #FFFA8D;
  color: black;
  padding-block: 3.5rem 2rem;
  margin-top: -16px;
}

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

a,
a:hover {
  text-decoration: none !important;
}

.text-black {
  color: #000;
}

.content {
  padding: 7rem 0;
}

.fo {
  padding-bottom: 15px;
}

.of {
  font-weight: 700;
}

.heading {
  font-size: 2.5rem;
  font-weight: 900;
}

.form-control {
  border: none;
  background: #f3f3f3;
}

.form-control:active,
.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #000;
  background: #f3f3f3;
}

.col-form-label {
  color: #000;
}

.btn,
.form-control,
.custom-select {
  height: 50px;
}

.custom-select:active,
.custom-select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #000;
}

.btn {
  border: none;
  border-radius: 4px !important;
}

.btn.btn-primary {
  background: #000;
  color: #fff;
  padding: 15px 20px;
}

.btn:hover {
  color: #fff;
}

.btn:active,
.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.box {
  padding: 40px;
  background: #fff;
  -webkit-box-shadow: -30px 30px 0px 0 rgba(0, 0, 0, 0.08);
  box-shadow: -30px 30px 0px 0 rgba(0, 0, 0, 0.08);
}

.box h3 {
  font-size: 14px;
  margin-bottom: 30px;
  text-align: center;
}

label.error {
  font-size: 12px;
  color: red;
}

#message {
  resize: vertical;
}

#form-message-warning,
#form-message-success {
  display: none;
}

#form-message-warning {
  color: #B90B0B;
}

#form-message-success {
  color: #55A44E;
  font-size: 18px;
  font-weight: bold;
}

.submitting {
  float: left;
  width: 100%;
  padding: 10px 0;
  display: none;
  font-weight: bold;
  font-size: 12px;
  color: #000;
}

/*=============== LOGO SLIDER ===============*/
.slider {
  background-color: #ffffff;
  height: 75pt;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  cursor: default;
  user-select: none;
  touch-action: none;
  border-radius: 4px;
}

.logo-slider {
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 2%;
  margin-bottom: 2%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

.logo-slidercontact {
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 5%;
  margin-bottom: -4%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.slider:before {
  left: 0;
  top: 0;
}

.slider:after,
.slider:before {
  background: linear-gradient(to right,
      #efeef2 0%,
      hsla(0, 0%, 100%, 0) 100%);
  content: "";
  height: 75pt;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider:after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider:after,
.slider:before {
  background: linear-gradient(to right,
      #efeef2 0%,
      hsla(0, 0%, 100%, 0) 100%);
  content: "";
  height: 75pt;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider .slide-track-1 {
  animation: scroll-l 20s linear infinite;
  display: flex;
  width: 3500px;
}

.slider .slide-track-2 {
  animation: scroll-r 20s linear infinite;
  display: flex;
  width: 3500px;
}

.slider .slide {
  height: 75pt;
  width: 250px;
  display: flex;
  align-items: center;
  text-align: center;
}

.slider .slide img {
  width: 180px;
  padding: 1pc;
  vertical-align: middle;
  margin: 0 auto;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

@keyframes scroll-l {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll-r {
  100% {
    transform: translateX(0);
  }

  0% {
    transform: translateX(calc(-250px * 7));
  }
}

/*=============== END LOGO SLIDER ===============*/

/*=============== FOOTER ===============*/

.footer {
  background-color: #4682A9;
  color: black;
  padding-block: 3.5rem 2rem;
  margin-top: -16px;
}

.logo {
  width: 18rem;
  align-items: center;
  position: relative;
  margin-left: 37%;
  padding-top: 2%;
}

.footer__copy {
  display: block;
  text-align: center;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-top: 1rem;
  margin-bottom: 3rem;

}

.foot a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  padding: 5px;
}

.foot2 a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 8px;
}

.menu {
  padding-top: 2%;
}


/*=============== SCROLL BAR ===============*/

::-webkit-scrollbar {
  width: .6rem;
  background-color: var(hsl(255, 5%, 75%));
}

::-webkit-scrollbar-thumb {
  background-color: var(hsl(255, 5%, 65%));
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(hsl(255, 5%, 55%));
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  z-index: var(--z-tooltip);
  background-color: var(--first-color);
  color: var(--white-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px hsla(18, 95%, 55%, .3);
  transition: background-color .4s;
}

.scrollup:hover {
  transform: translateY(-.5rem);
}

/* Show Scroll Up */
.show-scroll {
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .section__title {
    font-size: 1.25rem;
  }

  .home__title {
    font-size: 1.75rem;
    padding-left: 0%;
    padding-right: 0%;
    font-size: 20px;
    text-align: center;
  }

  .home {
    padding-top: 3%;
  }

  .nav__logo img {
    width: 5rem;
    margin-left: 7rem;
    position: relative;
  }

  .home__description {
    text-align: left;
    padding-left: 0%;
    padding-right: 0%;
  }

  .con {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 30px;
  }

  .con span {
    color: black;
    font-size: 10px;
    font-weight: 800;
  }

  .co h4 {
    color: black;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 12px;
  }

  .co i {
    color: var(--first-color);

  }

  .coo {
    padding: 0;
    margin: 0;
  }

  .ready {
    margin-top: -30%;
  }

  .form-control {
    width: 13rem;
  }

  .booking-cta h1 {
    font-size: 17px;
    text-align: center;
    padding-bottom: 10px;
    margin-top: -50px;
  }

  .booking-cta p {
    font-size: 13px;
    text-align: center;

  }

  .booking-form .form-control {
    height: 25px;
  }

  .booking-form .form-group {
    margin-bottom: 10px;
  }

  /*=========== About ===========*/
  .abou {
    position: relative;
  }

  /*========= End About ========*/

  .about__list {
    grid-template-columns: repeat(1, 200px);
  }



  .footer__content {
    grid-template-columns: (1, max-content);
    justify-content: center;
  }

  .footer__social {
    justify-content: center;
    margin-left: 5rem;
  }

  .footer__title {
    justify-content: center;
    margin-left: 5rem;
  }
}

/* For medium devices */
@media screen and (min-width: 540px) {

  .home__container,
  .about__container,
  .services__container,
  .projects__container,
  .contact__container {
    grid-template-columns: 360px;
    justify-content: center;
  }

  .footer__content {
    grid-template-columns: repeat(3, max-content);
  }
}


@media screen and (min-width: 768px) {
  .nav__menu {
    width: 50%;
  }

  .projects__container {
    grid-template-columns: repeat(2, 330px);
  }

  .contact__data {
    grid-template-columns: repeat(2, 230px);
  }

  .footer__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;

  }

}

/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .section {
    padding-block: 7rem 2rem;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__menu {
    width: initial;
  }

  .nav__list {
    flex-direction: row;
    align-items: center;
    column-gap: 2rem;
  }

  .bg-header .nav__link {
    color: var(--text-color);
  }

  .bg-header .active-link,
  .bg-header .nav__link:hover {
    color: var(--first-color);
  }

  .bg-header .button,
  .bg-header .button:hover {
    color: var(--white-color);
  }


  .home__container {
    grid-template-columns: 475px 550px;
    column-gap: 6rem;
    align-items: flex start;
    padding-top: 5.5rem;
  }

  .home__content {
    row-gap: 4.5rem;
  }

  .home__data {
    text-align: initial;
  }

  .home__description {
    margin-bottom: 3rem;
  }

  .home__info {
    justify-content: initial;
    column-gap: 5.5rem;
  }

  .home__info-description {
    font-size: var(--normal-font-size);
  }

  .home__title {
    text-align: center;
  }

  .about__container {
    grid-template-columns: repeat(2, 480px);
    column-gap: 9rem;
    padding-block: 9rem 2rem;
  }



  .about__data,
  .about__data :is(.section__title, .section__subtitle) {
    text-align: initial;
  }

  .about__list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3.5rem;
  }

  .services__container {
    grid-template-columns: initial;
    column-gap: 5rem;
    padding-bottom: 4.5rem;
  }

  .services__data {
    display: grid;
    grid-template-columns: 415px 370px max-content;
    justify-content: space-between;
    align-items: center;
  }

  .services__data :is(.section__title, .section__subtitle),
  .services__description {
    text-align: initial;
  }

  .services__data .section__title {
    margin-bottom: 0;
  }

  .services__swiper {
    max-width: 1100px;
  }

  .services__card {
    width: 348px;
    border-width: 3px;
    padding: 3.5rem 2rem 6rem;
  }

  .services__shape {
    height: 330px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    bottom: 3rem;
  }

  .projects__container {
    grid-template-columns: repeat(3, 350px);
    column-gap: 2rem;
    padding-block: 5rem 4rem;
  }

  .projects__card {
    border-width: 3px;
  }

  .projects__data {
    padding: 2rem 1.5rem 4rem;
  }

  .contact :is(.section__title, .section__subtitle) {
    text-align: initial;
  }

  .contact__container {
    grid-template-columns: 530px 515px;
    justify-content: initial;
    align-items: flex-start;
    column-gap: 3.5rem;
    padding-block: 3.5rem 4rem;
  }

  .contact__img {
    width: 530px;
  }

  .contact__data {
    gap: 2rem;
  }

  .contact__card {
    border-width: 3px;
  }

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

  .footer {
    padding-block: 4.5rem 4rem;
  }

  .footer__container {
    padding-bottom: 6rem;
  }

  .footer__content {
    column-gap: 7rem;
  }

  .footer__description {
    margin-block: 1.5rem;
  }

  .footer__title {
    margin-bottom: 1.5rem;
  }

  .footer__links,
  .footer__list {
    row-gap: 1rem;
  }

  .scrollup {
    right: 3rem;
  }
}