@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
  --first-color: rgb(0,128,128);
  --second-color:  #2196F3;
  --third-color:  #347a32;
  --fourth-color:  #cccccc;
  --border-color: #cccccc;
  --background-color: #f1f1f1;
  --color-1: #0f1016;
  --text-color: #f0f0f0;
  --accent-color: #006aff;
}

* {
    box-sizing: border-box;
    font-family: 'Gabarito', "DM Sans", sans-serif;
    letter-spacing: -0.04em;
  }
  
/* Font size variables */
h1 {
  --min: 2em; /* minimum value */
  --val: 5vw; /* preferred value = 5% viewport width */
  --max: 2em; /* maximum value */
}
h2 {
  --min: 1.5em;   /* minimum value */
  --val: 4vw;     /* preferred value = 4% viewport width */
  --max: 2.25em;  /* maximum value */
}
h3 {
  /* --min: 2rem;
  --val: 2rem; 
  --max: 2rem; 
  line-height: 1.083;
  letter-spacing: -0.0375rem; */
  font-size: calc(1.0rem + 1vw);
}
h4 {
  /* font-size: 3.5vw; */
  /* font-size: calc(1vw + 1vh + 1vmin); */
  font-size: calc(1.125rem + 1vw);
  /* --min: 2.5vw;   
  --val: 1.5vw;    
  --max: 1.5vw;  
  line-height: 1.1;
  letter-spacing: -0.015rem; */
}
p {
  --min: 16px;   /* minimum value */
  --val: 18px; /* preferred value = 2.5% viewport width */
  --max: 18px; /* maximum value */
}

body {
    margin: 0;
    font-family: 'Gabarito';
    /* font-size: 16px; */
    line-height: 1.5;
    display: block;
    color: rgb(34, 34, 34);
    overflow-wrap: break-word;
    font-weight: 400;
    overflow-x: hidden;
    background: var(--background-color);
}

/* h1, h2, h3, h4, h5 { */
  /* font-size: clamp(var(--min), var(--val), var(--max)); */
  /* font-weight: 600; */
/* } */

p {
  font-size: clamp(var(--min), var(--val), var(--max));
}

body::-webkit-scrollbar{
  width: 0.5em;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

#navbar{
  z-index: 5;
  /* position: fixed;  */
  overflow: hidden;  
}


.content {
  padding: 16px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
}

.sticky + .content {
  padding-top: 60px;
}


.logo-img{
  object-fit: cover;
  height: 50px;
  padding-left: 5vw;
}

.logo-footer {
  object-fit: cover;
  height: 50px;
  margin: 10px;
}

main {
    /* padding-top: 50px; */
    width: 90%;
    margin: auto;
    justify-content: center;
}

section {
  /* width: 100%; */
  margin: 80px 0;
  justify-content: center;
}

.tour {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.product-tour {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-inline: 10%;
}

.product-main h2 {
 text-align: center;
 font-size: 3rem;
}

.heading-padding{
  margin-top: 5vw;
}

.contact-tour{
  padding-inline: 5%;
}

.tour-div {
    width: 49%;
    padding-inline: 10px;
    margin: auto auto;
  }

  .tour-div iframe {
    width: 100%;
    height: 315px;
    /* padding-inline: 10px; */
  }

  .tour-div video {
    width: 100%;
    height: 315px;
    /* padding-inline: 10px; */
  }

.popular-safari {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  /* gap: 15px; */
}

.div-book {
  width: 50%;
  padding: 1.5rem;
  text-align: center;
}

.product-sec {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  width: 80%;
  margin: auto auto;
  /* gap: 15px; */
}

.div-product {
  /* width: 35%; */
  /* padding: 1.5rem; */
  text-align: center;
}

.pro {
  text-align: center;
    transition: grid-row-start 300ms linear;
    transition: transform 300ms ease;
    transition: all 0.5s ease;
    /* cursor: pointer; */
  width: 45%;
  margin: 0 auto;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2);
}
  .pro:hover {
    transform: scale(1.035);
  }

.pro img {
  width: 100%;
  height: auto;
}

button {
  background-color: var(--first-color);
  border: 2px solid var(--first-color);
  padding: 10px 30px;
  width: 100%;
  font-size: 18px;
  /* font-weight: 800; */
  transition-duration: 0.4s;
  margin-bottom: 10px;
}

button:hover {
  background-color: var(--third-color);
  color: #ffffff;
  font-size: 1.1rem;
}




footer {
  background-color: var(--second-color);
  display: block;
  position: relative;
  text-align: center;
  color: #f1f1f1;
  margin-bottom: 0;
  /* padding-bottom: 5px; */
}

footer>ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  padding-inline-start: 0;
  margin-block: 0;
  height: 100%;
}

.animals-box {
  display: grid;
  /* font-size: 3rem; */
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

footer>ul>li {
  display: block;
}

footer>ul>li:hover {
  background-color: none;
  text-decoration: underline;
  color: var(--first-color);
}

footer p, a, i  {
color: #ffffff;
font-size: 18px;
}

.social-icons {
  font-size: 2rem;
}

label {
  display: block;
}

input,
textarea,
select {
  margin: 5px 0 10px 0;
  width: 100%;
  min-height: 2em;
  background-color: rgba(252, 252, 252, 0);
  outline: 0; 
            border-width: 0 0 2px;
}

.formContact {
  width: 60vw;
  max-width: 500px;
  min-width: 300px;
  margin: 0 auto;
  margin-bottom: 50px;
  padding: 2em;
  /* background-color: #0fda19; */
}

.team {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-count: 3;
  justify-content: center;
  align-items: center;
  gap: 16px;
  /* width: 80%; */
  margin: 0 auto;
  padding: 20px 10px;
}

.team img {
  width: 100%;
  max-width: 350px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.team-container {
  position: relative;
  max-width: 300px;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

/* The overlay effect - lays on top of the container and over the image */
.overlay {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1;
  width: 100%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 20px;
  padding: 20px;
  text-align: center;
}

/* When you mouse over the container, fade in the overlay title */
.team-container:hover .overlay {
  opacity: 1;
}




/*======= caouresel */

.full-screen {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-control.right,
.carousel-control.left {
  background-image: none;
}
.carousel .item {
  min-height: 350px; 
  height: 100%;
  width:100%;
}

.carousel img {
  min-height: 350px; 
  height: 100%;
  width:100%;
  object-fit: fill;
}

.carousel-caption {
  position: relative;
  left: 5%;
  right: 5%;
  top: 5%;
  width: 90%;
}
/* .carousel-caption h3,
.carousel .icon-container,
.carousel-caption .btn {
  /* background-color: #d1d0cf88; */
  /* margin-top: 2em;  *
} */
.carousel-caption h3 {
  display: block;
  /* align-items: center;
  justify-content: center; */
  /* height: 100vh; */
  width: 100vw;
  padding: .5em;
  font-weight: 700;
  text-shadow: 0 0 5px #000000;
  /* margin-top: 1em;  */
  font-size: 46px;
  color: white;
  /* background-color: #333; */
  text-align: left;
}
.carousel .icon-container {
  display: inline-block;
  font-size: 25px;
  line-height: 25px;
  padding: 1em;
  text-align: center;
  border-radius: 50%;
}

.carousel-caption .btn {
  border-color: transparent;
}

/* Animation delays */
.carousel-caption h3:first-child {
  animation-delay: 1s;
}
.carousel-caption h3:nth-child(2) {
  animation-delay: 2s;
}
.carousel-caption .btn {
  animation-delay: 3s;
}

/* -------------------------------- 

xclip 


-------------------------------- */


.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}
.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}
.cd-words-wrapper b.is-visible {
  position: relative;
}
.no-js .cd-words-wrapper b {
  opacity: 0;
}
.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.clip span {
  display: inline-block;
  padding: .2em 0;
  color: #ffffff;
  font-size: 30px;
}
.cd-headline.clip span b{
	text-transform: uppercase;
}
.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}
.cd-headline.clip .cd-words-wrapper::after {
  /* line */
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #aebcb9;
}
.cd-headline.clip b {
  opacity: 0;
}
.cd-headline.clip b.is-visible {
  opacity: 1;
}

/* ===========corasel */



.topnav {
  overflow: hidden;
  background-color: #333;
  background-color: var(--second-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.navbar-nav a:hover {
  margin-top: 1px;
  font-size: 19px;
  border-top: 3px solid #04AA6D;
  color: #04AA6D;
}


.navbar-nav .active {
  margin-top: 1px;
  border-top: 3px solid #04AA6D;
  color: #04AA6D;
  font-size: 2rem ;
  /* color: white; */
}


.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* navbar about us */


.bg-light{
background-color: #f0f0f0 !important;
}

.btn {
font-weight: 500;
transition: .5s;
}

.btn.btn-primary {
color: #FFFFFF;
}

.btn-sm-square {
padding: 0;
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
font-weight: normal;
}



.navbar .dropdown-toggle::after {
border: none;
content: "\f107";
font-family: "Font Awesome 5 Free";
font-weight: 900;
vertical-align: middle;
margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
margin-right: 30px;
padding: 25px 0;
color: #FFFFFF;
font-size: 15px;
font-weight: 500;
text-transform: uppercase;
outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
color: blue;
}

@media (max-width: 991.98px) {
.navbar-light .navbar-nav .nav-link  {
  margin-right: 0;
  padding: 10px 0;
}

.navbar-light .navbar-nav {
  border-top: 1px solid #EEEEEE;
}
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
height: 75px;
}

.navbar-light .navbar-nav .nav-link {
color: black;
font-weight: 500;
}

.navbar-light.sticky-top {
top: -100px;
transition: .5s;
}

@media (min-width: 992px) {
.navbar .nav-item .dropdown-menu {
  display: block;
  border: none;
  margin-top: 0;
  top: 150%;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}

.navbar .nav-item:hover .dropdown-menu {
  top: 100%;
  visibility: visible;
  transition: .5s;
  opacity: 1;
}
}

.image-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* grid-template-rows: repeat(3, min-content); */
  gap: 2rem;
  place-items: center;
}


.text {
  grid-column: 2 / 3;
  font-size: 1.8rem;
  letter-spacing: 0.6px;
  column-width: 25rem;
  text-align: justify;
}

.text-with-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 720px) {
  .image-wrapper {
    grid-template-columns: 1fr;
  }
}


@media only screen and (max-width: 600px) {
  .text-with-images {
    grid-template-columns: 1fr;
  }
}

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


  .text {
    font-size: 1.6rem;
  } 
}

.left-headline {
  position: relative;
  padding-bottom: 10px;
}

.left-headline h3 {
	font-size: 34px;
	line-height: 44px;
}

.right-headline h3 {
	font-size: 34px;
	line-height: 44px;
}

@media only screen and  (max-width: 767px){
  .left-headline h3 {
    font-size: 22px;
    line-height: 28px;
  }
}

.color {
	color: var(--second-color);
  font-family: "Nunito", sans-serif;
	font-weight: 800;
}

div.image-quote{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: center;
  margin: 3px;
  padding: 2px;
}

div.image-quote:hover{
  background-color: var(--first-color);
  color: #FFFFFF;
}

.image-quote h4{
  font-size: 22px;
}

.div-image{
  width: 90%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 8px #333;
}

.product-image {
  width: 70%;
  height: auto;
  object-fit: cover;
  /* margin: 15px; */
}


.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);;
  /* background-color: #2196F3; */
  /* padding: 10px; */
}
.grid-item {
  background-color: rgba(255, 255, 255, 0.8);
  /* border: 1px solid rgba(0, 0, 0, 0.8); */
  padding: 10px;
  font-size: 25px;
  text-align: center;
}

small {
  font-size: 15px;
  padding-inline-end: 10px;
}

.navbar {
  margin-bottom: 0 !important;
}

.hr-line {
  background-color: var(--first-color);
  height: 3px;
  width: 100%;
  margin: 40px 0;
  justify-self: start;
}

.hr-linev {
  background-color: var(--first-color);
  height: 10em;
  width: 3px;
  margin: 0;
  justify-self: start;
}

.end-home {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
}

.end-home-item {
  width: 50%;
  padding: 5px;
}

.end-home-item h4{
 font-size: 20px;
 /* font-weight: bold; */
 /* letter-spacing: 0.00125rem; */
}

.icon-end {
  color: var(--first-color);
  font-size: larger;
}

/* .head-main {
  font-size: larger;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
} */

.hr-main {
  background-color: lightgrey;
  height: 1px;
  width: 100%;
  margin: 20px 0;
  margin-right: 10%;
}

/* Container styles */
.scrolling-text-container {
  background-color: #eff5ff;
  border-radius: 4px;
  overflow: hidden;
}

/* Inner container styles */
.scrolling-text-inner {
  display: flex;
  white-space: nowrap;
  font-size: 16px;
  /* font-weight: 600; */
  padding: 8px 0;
}

/* Text styles */
.scrolling-text {
  display: flex;
}

.scrolling-text-item {
  padding: 0 30px;
  font-size: 17px;
  letter-spacing: 0.02rem;
}

/* Apply the animation to the text items */
.scrolling-text-inner>div {
  animation: var(--direction) var(--marquee-speed) linear infinite;
}

/* Pause the animation when a user hovers over it */
.scrolling-text-container:hover .scrolling-text-inner>div {
  animation-play-state: paused;
}

/* Setting the Animation using Keyframes */
@keyframes scroll-left {
  0% {
      transform: translateX(0%);
  }

  100% {
      transform: translateX(-100%);
  }
}

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

  100% {
      transform: translateX(0%);
  }
}

/* ========================== */
.content h2 {
  color: #fff;
  font-size: 1.5em;
  position: absolute;
  /* transform: translate(-50%, -50%); */
}

.content h2:nth-child(1) {
  color: transparent;
  -webkit-text-stroke: 1px #03a9f4;
}

.content h2:nth-child(2) {
  color: #03a9f4;
  animation: animate 3s ease-in-out infinite;
}

@keyframes animate {
  0%,
  100% {
    clip-path: polygon(
      0% 45%,
      16% 44%,
      33% 50%,
      54% 60%,
      70% 61%,
      84% 59%,
      100% 52%,
      100% 100%,
      0% 100%
    );
  }

  50% {
    clip-path: polygon(
      0% 60%,
      15% 65%,
      34% 66%,
      51% 62%,
      67% 50%,
      84% 45%,
      100% 46%,
      100% 100%,
      0% 100%
    );
  }
}

/* =========== */


h1 {
  color: #333;
  font-family: arial;
  font-size: 3rem;
  font-weight: 100;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* h1 span {
} */

.message {
  background-color: var(--first-color);
  color: #333;
  display: block;
  font-weight: 900;
  overflow: hidden;
  position: absolute;
  padding-left: 0.5rem;
  top: 0.2rem;
  left: 170px;
  animation: openclose 15s ease-in-out infinite;
}

.word1, .word2, .word3, .word4, .word5, .word6 {
  font-family: Arial, Helvetica, sans-serif;
} 

@keyframes openclose {
  0% {
    top: 0.2rem;
    width: 0;
  }
  5% {
    width: 0;
  }
  15% {
    width: 485px;
  }
  30% {
    top: 0.2rem;
    width: 485px;
  }
  33% {
    top: 0.2rem;
    width: 0;
  }
  35% {
    top: 0.2rem;
    width: 0;
  }
  38% {
    top: -4.5rem;
    
  }
  48% {
    top: -4.5rem;
    width: 485px;
  }
  62% {
    top: -4.5rem;
    width: 485px;
  }
  66% {
    top: -4.5rem;
    width: 0;
    text-indent: 0;
  }
  71% {
    top: -9rem;
    width: 0;
    text-indent: 5px;
  }
  86% {
    top: -9rem;
    width: 485px;
  }
  95% {
    top: -9rem;
    width: 285px;
  }
  98% {
    top: -9rem;
    width: 0;
    text-indent: 5px;
  }
  100% {
    top: 0;
    width: 0;
    text-indent: 0;
  }
}

.geeks { 
  width: 80%; 
  top: 15%; 
  position: absolute; 
  left: 10%; 
  border-bottom: 5px solid white; 
  overflow: hidden; 
  animation: animate 2s linear forwards; 
  /* background-color: #555; */
  padding-top: 50px;
} 

.geeks h1 { 
  color: white; 
  font-size: 50px;
} 

.geeks li {
  color: white; 
  font-size: 30px;
}

@keyframes animate { 
  0% { 
      width: 0px; 
      height: 0px; 
  } 

  30% { 
      width: 50px; 
      height: 0px; 
  } 

  60% { 
      width: 50px; 
      height: 80px; 
  } 
} 

.bg-img{
  position:absolute;
  background-color: rgba(0, 0, 0, 0.377);
  width:100%; height:100%;
}

/* ==================Faq===== */

.text-secondary {
    color: #3d5d6f;
  }
  
  /* .h4,
  h4 {
    font-size: 1.2rem;
  } */

  h2 {
    color: #333;
  }
  
  .fa,
  .fas {
    font-family: 'FontAwesome';
    font-weight: 400;
    font-size: 1.2rem;
    font-style: normal;
  }
  
  .right-0 {
    right: 0;
  }
  
  .top-0 {
    top: 0;
  }
  
  .h-100 {
    height: 100%;
  }
  
  a.text-secondary:focus,
  a.text-secondary:hover {
    text-decoration: none;
    color: #22343e;
  }
  
  #accordion .fa-plus {
    transition: -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  }
  
  #accordion a[aria-expanded=true] .fa-plus {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  /* Container for flexboxes */
.row {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  position: relative;
  left: 10%;
}

/* Create four equal columns */
.column {
  flex: 33%;
  padding: 20px;
  text-align: start;
  color: #000000;
}

.column p {
  display: block;
  width: 100%;
}

.row-about {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  position: relative;
  left: 5%;
}

.column-about {
  flex: 24%;
  /* padding: 20px; */
  display: block;
  text-align: center;
  color: #000000;
  /* background-color: #8cd0f06b; */
  margin: 1px;
  border-radius: 10px;
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
  .column {
    flex: 50%;
  }
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .row {
    flex-direction: column;
  }

  .product-sec {
    display: block;
    width: 100%;
  }
  
  .pro {
    width: 80%;
  }

}

.social-icons {
  margin: 20px;
  font-size: 5rem;
}

.social-icons i{
  color: #aebcb9;
  border-radius: 3px solid black;
  padding: 5px;
}
/* 
.welcome {
  width: 100%;
  /* height: 100px; *
  margin: 0;
  position: relative;
  text-align: center;
  color: #000000;
}

.welcome img {
  width: 100%;
  /* height: 50vh; */
  /* height: 100px; *
  object-fit: cover;
  /* filter: brightness(50%) *
}

.welcome div {
    padding: 10px;
}

.welcome h2 {
  font-size: 3em;
  font-family: "Montserrat", Sans-serif;
  font-weight: 700;
  color: #000000;
}
.welcome p {
  font-family: "Montserrat", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
} */



.myGallery {
  display: grid;
  grid-gap: 10px;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 50px;
}

.myGallery img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--first-color);
}

.myGallery iframe{
  height: 350px;
  width: 100%;
  object-fit: cover;
}
/*
  And here are some declarations for the image caption.
  Just hover over one of the last 5 images to see it.
*/

.myGallery .item {
  position: relative;
  overflow: hidden;
}

.myGallery .item img {
  vertical-align: middle;
}

.myGallery .caption {
  margin: 0;
  padding: 1em;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  box-sizing: border-box;
  transition: transform 0.5s;
  transform: translateY(100%);
  background: rgba(0, 0, 0, 0.7);
  color: rgb(255, 255, 255);
}

.myGallery .item:hover .caption {
  transform: translateY(0%);
}

/*
  The rest is only styling for this example page
*/

@import url("https://fonts.googleapis.com/css2?family=Vollkorn:wght@400;900&display=swap");

/* body {
  font: 400 1.5em/1.58 Vollkorn, serif;
}

h1,
p {
  text-align: center;
} */

.myGallery {
  font-size: 1rem;
}



.black-color h4{
  color: #1f1e1e;
  /* font-size: 2em; */
}

.black-color p{
  color: #1f1e1e;
  /* font-size: 1em; */
}

#myDIV {
  /* height:300px; */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr ;
  gap: 10px;
  /* background-color: #2196F3; */
  padding: 10px;
}
#myDIV div {
  text-align: center;
  padding: 20px 0;
  font-size: 30px;
}

.item1 {
  grid-row: 1;
  grid-column: 1 / span 3;
}

.item2 {
  grid-row: 2;
  grid-column: 2 / span 3;
}

.item3 {
  grid-row: 3;
  grid-column: 3 / span 3;
}

.item4 {
  grid-row: 5;
  grid-column: 1 / span 5;
}

.about-values {
display: flex;
flex-wrap: nowrap;
background-color: rgba(189, 189, 189, 0.212);
border-radius: 10px;
}

.about-values i{
  font-size: 3em;
  padding: 25px;
  color: #3392ff;
  border-radius: 50%;
}

.about-values h1{
font-size: 1em;
text-align: start;
}

.about-values p {
font-size: 0.6em;
text-align: start;
padding: 5px;
  }

.about-values li {
  font-size: 0.6em;
  text-align: start;
}

/* .about-line { */
  /* background:linear-gradient(black,black) bottom /* left or right or elseno-repeat;
  /* background-size:20% 3px;  */
  /* border-bottom: 3px solid red; */
  /* background-color: #03a9f4; */
/* } */

h2.about-line {
 font-size: 3rem;
 text-align: center;
  /* align-self: flex-start; */
}


.column-about::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  margin-top: 40px;
  background: var(--first-color);
  transition: width .4s ease-in;
}

.column-about:hover::after {
  width: 100%;
}

.navbar-social {
width: 100%;
height: 40px;
padding-inline: 5%;
/* display: flex;
float: left; */
/* float: right; */
/* flex-wrap: nowrap; */
/* justify-content: space-between; */
background-color: var(--first-color);
color: white;
padding-block: 3px;
display: flex;
flex-wrap: nowrap;
overflow: hidden;
justify-content: flex-end;
align-items: center;
}

nav {
  padding-inline: 10%;
}

nav{
  height: 60px;
  background-color: white;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #000000;
  box-shadow: 1px 1px 5px rgba(102, 102, 102, 0.432);
  }
  
  .links-container{
      height: 100%;
      width: 100%;
      margin-left: 5%;
      display: flex;
      flex-direction: row;
      align-items: center;
      /* justify-content: end; */
  }
  
  /* .home-container{
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: row;
      align-items: center;
  } */
  
  nav a{
      height: 100%;
      padding: 0 15px;
      display: flex;
      align-items: center;
      text-decoration: none;
      color: #000000;
      font-size: 15px;
      margin-inline: 5px;
      font-weight: 500;
      text-transform: uppercase;
      outline: none;
  }
  
  nav a:hover{
      background-color: var(--first-color);
      height: 70%;
      border-radius: 20px;
      color: #FFFFFF;
      text-decoration: none;
  }
  nav a.active{
    background-color: var(--first-color);
    height: 70%;
    border-radius: 20px;
    color: #FFFFFF;
    text-decoration: none;
}
  nav .home-link{
      margin-right: auto;
      height: 100%;
  }
  nav svg{
      fill: #000000;
  }
  #sidebar-active{
      display: none;
  }
  
  .close-sidebar-button, .open-sidebar-button{
      display: none;
  }
  
  @media(max-width: 800px){
      .links-container{
          /* display: none; */
          flex-direction: column;
          align-items: flex-start;
          justify-content: start;
          position: fixed;
          top: 0;
          right: -100%;
          z-index: 10;
          width: 300px;
          background-color: #FFFFFF;
          box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
          transition: 0.75s ease-out;
      }
      nav a{
          box-sizing: border-box;
          height: auto;
          width: 100%;
          padding: 20px 30px;
          justify-content: flex-start;
      }
      nav a.active{
        background-color: var(--first-color);
        height: fit-content;
        /*border-radius: 20px; */
        /* color: #FFFFFF; */
        text-decoration: none;
    }
      .close-sidebar-button, .open-sidebar-button{
          padding: 20px;
          display: block;
      }
      #sidebar-active:checked ~ .links-container{
          right: 0;
      }
      #sidebar-active:checked ~ #overlay{
          /* background: red; */
      background-color: rgba(255, 255, 255, 0.24);
      backdrop-filter: blur(5px);
          height: 100%;
          width: 100%;
          position: fixed;
          top: 0;
          left: 0;
          z-index: 9;
      }
  }
  

.navbar-social i {
  font-size: 35px;
}

footer i.fa-brands{
	display: inline-block;
  font-size: 30px;
  border-radius: 40px;
  box-shadow: 0 0 4px rgb(255, 255, 255);
  padding: 0.5em 0.6em;
  margin: 5px 5px;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-whatsapp {
  background: #00b489;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}

.fa-tiktok {
  background: #000000;
  color: white;
}
.fa-x-twitter {
  background: #000000;
  color: white;
}

footer i.fa-brands:hover {
	background-color: var(--first-color);
  /* color: #ffffff; */
}

.social-icons-nav i.fa-brands {
	display: inline-block;
  font-size: 25px;
  border-radius: 5px;
  /* box-shadow: 0 0 4px rgb(224, 10, 10); */
  padding: 0.2em 0.4em;
  margin: 0 1px;
}

/* .social-icons-nav object {
	display: inline-block;
  font-size: 25px;
  border-radius: 5px;
  /* box-shadow: 0 0 4px rgb(224, 10, 10); 
  padding: 0.2em 0.4em;
  margin: 0 1px;
} */


.social-icons-nav i.fa-brands :hover {
	display: inline-block;
  font-size: 25px;
  border-radius: 5px;
  /* box-shadow: 0 0 4px rgb(224, 10, 10); */
  padding: 0.2em 0.6em;
  margin: 0 2px;
}


object{
  background: #3B5998;
  color: white;

}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-whatsapp {
  background: #00b489;
  color: white;
}

.fa-instagram {
  background: radial-gradient(circle at 30% 110%,
  #ffdb8b 0%,
  #ee653d 25%,
  #d42e81 50%,
  #a237b6 75%,
  #3e57bc 100%);
  color: white;
}

.fa-tiktok {
  background: #000000;
  color: white;
}
.fa-x-twitter {
  background: #000000;
  color: white;
}



footer.social-icons-footer {
	color: #ddd;
	display: block;
	font-size: 40px;
	line-height: 38px;
	text-align: center;
	margin-right: 5px;
	width: 40px;
	height: 40px;
	border: 1px solid #ddd;
	border-radius: 50%;
}


.our-team h4{
  color: #555;
}
footer h4 {
  color: #ffffff;
  /* font-weight: 600; */
  font-size: 19px;
}

.bounce {
  display: inline-block;
  position: relative;
  -moz-animation: bounce 0.8s infinite linear;
  -o-animation: bounce 0.8s infinite linear;
  -webkit-animation: bounce 0.8s infinite linear;
  animation: bounce 0.8s infinite linear;
}

@-webkit-keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
    70% { top: -0.3em; }
    100% { top: 0; }
}
@-moz-keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
    70% { top: -0.3em; }
    100% { top: 0; }
}
@-o-keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
    70% { top: -0.3em; }
    100% { top: 0; }
}
@-ms-keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
    70% { top: -0.3em; }
    100% { top: 0; }
}
@keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
    70% { top: -0.3em; }
    100% { top: 0; }
}

.navbar-details i{
  font-size: 15px;
  color: var(--fourth-color);
}

/* How to center something */
.navbar-details{
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  height: 40px;
}


.app-title:after {
  content: '';
  display: block;
  /* position: absolute; */
  /* left: 0; */
  bottom: -10px;
  width: 40px;
  height: 4px;
  background: var(--first-color);
}

.contact-form{
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  align-items: center;
  height: 600px;
  width: 90%;
  margin: auto auto;
  margin-block: 5%;
}

.contact-details {
  background-color: #03a9f4;
  display: inline-block;
  /* justify-content: center; 
  align-items: center; */
  width: 40%;
  height: 100%;
  position: relative;
}

.contact-centre {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
}

.contact-info {
  /* background-color: #0fda19; */
  display: inline-block;
  width: 60%;
  height: 100%;
  position: relative;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 500px) {
 
.contact-form{
  display: block;
  /* flex-wrap: wrap; */
  justify-content: center; 
  align-items: center;
  height: 160vh;
  width: 90%;
  margin: auto auto;
  margin-block: 5%;
}

.contact-details {
  background-color: #03a9f4;
  display: block;
  /* justify-content: center; 
  align-items: center; */
  width: 100%;
  height: 80vh;
  position: relative;
}

.contact-info {
  /* background-color: #0fda19; */
  display: block;
  width: 100%;
  height: 80vh;
  position: relative;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

}

.contact-details i{
  width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 25px;
    text-align: center;
    padding: 10px;
    color: #ffffff;
}

.contact-details small {
    font-size: 16px;
    text-align: center;
    padding: 10px;
}

.contact-info button {
  background-color: var(--first-color);
  border-radius: 10px;
}

.contact-info button:hover {
  background-color: var(--first-color);
  border-radius: 10px;
  color: white;
}

.muline {
  display: inline-block;
  width: 48%;
}

.Mname {
  margin-right: 2%;
 }

@media only screen and (max-width: 480px) {
    .hidden-mobile {
      display: none;
    }

    main {
      /* padding-top: 50px; */
      width: 95%;
      margin: auto;
      justify-content: center;
  }

  .tour-div {
    width: 100%;
    padding-inline: 10px;
  }

    .contact-form{
      display: flex;
      /* flex-wrap: wrap; */
      justify-content: center; 
      align-items: center;
      /* height: 1000px; */
      width: 100%;
      margin: auto auto;
      margin-block: 5%;
    }

    .contact-details {
      background-color: #03a9f4;
      width: 100%;
      position: relative;
    }

    .contact-info {
      /* background-color: #0fda19; */
      /* display: inline-block; */
      width: 100%;
      /* height: 100%; */
      /* position: relative; */
      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
      margin-bottom: 5px;
    }

    #myDIV div {
      text-align: center;
      padding: 10px 0;
      font-size: 16px;
    }
    
    .item1 {
      grid-row: 1;
      grid-column: 1 / span 5;
    }
    
    .item2 {
      grid-row: 2;
      grid-column: 1 / span 5;
    }
    
    .item3 {
      grid-row: 3;
      grid-column: 1 / span 5;
    }
    
    .item4 {
      grid-row: 5;
      grid-column: 1 / span 5;
    }
    
    .our-team h2{
      font-size: 24px;
    }

    .our-team h3{
      font-size: 18px;
    }
    .our-team h4{
      font-size: 16px;
      color: #555;
    }

    .about-values i{
      font-size: 2rem;
      padding: 15px;
      color: #3392ff;
      border-radius: 50%;
    }

    .div-book {
      width: 100%;
      /* padding: 1.5rem; */
      text-align: center;
    }

    .pro {
      text-align: start;
      /* padding-left: 10px;  */
    }

    .product-image {
      width: 100%;
    border-radius: 10px;
      /* width: 90%;
      height: auto;
      object-fit: cover;
      margin: 10px; */
    }

    .geeks { 
      width: 90%; 
      top: 40%; 
      position: absolute; 
      left: 5%; 
      border-bottom: 5px solid white; 
      /* overflow: hidden;  */
      animation: animate 2s linear forwards; 
      /* background-color: #555; */
      padding-top: 100px;
    } 
    
    .geeks h1 { 
      display: flex;
      color: white; 
      flex-wrap: wrap;
      font-size: 24px;
    } 
    
    .geeks p {
      font-size: 22px;
    }
    
    .hr-linev {
      background-color: var(--first-color);
      height: 1px;
      width: 90%;
      margin: 5px;
      justify-self: start;
  }

  .end-home {
    width: 100%;
    display: block;
    flex-wrap: wrap;
}

  .end-home-item {
    width: 100%;
    padding: 5px;
  }

  .div-image {
    width: 100%;
    /* height: auto;
    object-fit: cover; */
    border-radius: 10px;
}
.carousel .item {
  min-height: 350px; 
  height: 50%;
  width:100%;
}

button {
  background-color: var(--first-color);
  border-radius: 10px;
  /* background-color: transparent;
  border: 2px solid var(--first-color); */
  padding: 10px 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}


}

@media only screen and (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }

  main {
    /* padding-top: 50px; */
    width: 95%;
    margin: auto;
    justify-content: center;
}

.tour-div {
  width: 100%;
  padding-inline: 10px;
}

  .contact-form{
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center; 
    align-items: center;
    /* height: 1000px; */
    width: 100%;
    margin: auto auto;
    margin-block: 5%;
  }

  .contact-details {
    background-color: #03a9f4;
    /* display: inline-block; */
    /* justify-content: center; 
    align-items: center; */
    width: 100%;
    /* height: 100%; */
    position: relative;
  }

  /* .contact-centre {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
  } */

  .contact-info {
    /* background-color: #0fda19; */
    /* display: inline-block; */
    width: 100%;
    /* height: 100%; */
    /* position: relative; */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 5px;
  }

  #myDIV div {
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
  }
  
  .item1 {
    grid-row: 1;
    grid-column: 1 / span 5;
  }
  
  .item2 {
    grid-row: 2;
    grid-column: 1 / span 5;
  }
  
  .item3 {
    grid-row: 3;
    grid-column: 1 / span 5;
  }
  
  .item4 {
    grid-row: 5;
    grid-column: 1 / span 5;
  }
  
  .our-team h2{
    font-size: 24px;
  }

  .our-team h3{
    font-size: 18px;
  }
  .our-team h4{
    font-size: 16px;
    color: #555;
  }

  .about-values i{
    font-size: 2rem;
    padding: 15px;
    color: #3392ff;
    border-radius: 50%;
  }

  .div-book {
    width: 100%;
    /* padding: 1.5rem; */
    text-align: center;
  }


 
  .pro {
    text-align: start;
    /* padding-left: 10px;  */
  }

  .product-image {
    width: 100%;
  border-radius: 10px;
    /* width: 90%;
    height: auto;
    object-fit: cover;
    margin: 10px; */
  }

  .geeks { 
    width: 90%; 
    top: 40%; 
    position: absolute; 
    left: 5%; 
    border-bottom: 5px solid white; 
    /* overflow: hidden;  */
    animation: animate 2s linear forwards; 
    /* background-color: #555; */
    padding-top: 100px;
  } 
  
  .geeks h1 { 
    display: flex;
    color: white; 
    flex-wrap: wrap;
    font-size: 24px;
  } 
  
  .geeks p {
    font-size: 22px;
  }
  
  .hr-linev {
    background-color: var(--first-color);
    height: 1px;
    width: 90%;
    margin: 5px;
    justify-self: start;
}

.end-home {
  width: 100%;
  display: block;
  flex-wrap: wrap;
}

.end-home-item {
  width: 100%;
  padding: 5px;
}

.div-image {
  width: 100%;
  /* height: auto;
  object-fit: cover; */
  border-radius: 10px;
}
.carousel .item {
min-height: 350px; 
height: 50%;
width:100%;
}

button {
background-color: var(--first-color);
border-radius: 10px;
/* background-color: transparent;
border: 2px solid var(--first-color); */
padding: 10px 30px;
font-weight: 700;
margin-bottom: 10px;
color: #ffffff;
}



}

@media only screen and (max-width: 1024px) {
  .hidden-mobile {
    display: none;
  }

  main {
    /* padding-top: 50px; */
    width: 95%;
    margin: auto;
    justify-content: center;
}

.tour-div {
  width: 100%;
  padding-inline: 10px;
}

  .contact-form{
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center; 
    align-items: center;
    /* height: 1000px; */
    width: 100%;
    margin: auto auto;
    margin-block: 5%;
  }

  .contact-details {
    background-color: #03a9f4;
    /* display: inline-block; */
    /* justify-content: center; 
    align-items: center; */
    width: 100%;
    /* height: 100%; */
    position: relative;
  }

  /* .contact-centre {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
  } */

  .contact-info {
    /* background-color: #0fda19; */
    /* display: inline-block; */
    width: 100%;
    /* height: 100%; */
    /* position: relative; */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 5px;
  }

  #myDIV div {
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
  }
  
  .item1 {
    grid-row: 1;
    grid-column: 1 / span 5;
  }
  
  .item2 {
    grid-row: 2;
    grid-column: 1 / span 5;
  }
  
  .item3 {
    grid-row: 3;
    grid-column: 1 / span 5;
  }
  
  .item4 {
    grid-row: 5;
    grid-column: 1 / span 5;
  }
  
  .our-team h2{
    font-size: 24px;
  }

  .our-team h3{
    font-size: 18px;
  }
  .our-team h4{
    font-size: 16px;
    color: #555;
  }

  .about-values i{
    font-size: 2rem;
    padding: 15px;
    color: #3392ff;
    border-radius: 50%;
  }

  .div-book {
    width: 100%;
    /* padding: 1.5rem; */
    text-align: center;
  }

  .pro {
    text-align: start;
    /* padding-left: 10px;  */
  }

  .product-image {
    width: 100%;
  border-radius: 10px;
    /* width: 90%;
    height: auto;
    object-fit: cover;
    margin: 10px; */
  }

  .geeks { 
    width: 90%; 
    top: 40%; 
    position: absolute; 
    left: 5%; 
    border-bottom: 5px solid white; 
    /* overflow: hidden;  */
    animation: animate 2s linear forwards; 
    /* background-color: #555; */
    padding-top: 100px;
  } 
  
  .geeks h1 { 
    display: flex;
    color: white; 
    flex-wrap: wrap;
    font-size: 24px;
  } 
  
  .geeks p {
    font-size: 22px;
  }
  
  .hr-linev {
    background-color: var(--first-color);
    height: 1px;
    width: 90%;
    margin: 5px;
    justify-self: start;
}

.end-home {
  width: 100%;
  display: block;
  flex-wrap: wrap;
}

.end-home-item {
  width: 100%;
  padding: 5px;
}

.div-image {
  width: 100%;
  /* height: auto;
  object-fit: cover; */
  border-radius: 10px;
}
.carousel .item {
min-height: 350px; 
height: 50%;
width:100%;
}

button {
background-color: var(--first-color);
border-radius: 10px;
/* background-color: transparent;
border: 2px solid var(--first-color); */
padding: 10px 30px;
font-weight: 700;
margin-bottom: 10px;
color: #ffffff;
}



}

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

}

480px, 768px, 1024px, and 1280px. */

/* container */
.left-sidebar {
  display:flex;
  flex-wrap:wrap;
  margin: 50px 0;
}

/* columns */
.left-sidebar > * {
  width:100%;
  padding:1rem;
}

#con-info {
  padding: 3em;
  width: 40%;
  background-color: #03a9f4;
}

#con-det {
  padding: 3em;
  width: 60%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

#con-det input, textarea{
  font-size: 17px;
  font-weight: normal;
  letter-spacing: 0.0125rem;
}

#con-det label{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.0125rem;
}

#con-info i{
  width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 25px;
    text-align: center;
    padding: 10px;
    color: #ffffff;
}

#con-info small {
    font-size: 18px;
    /* text-align: center; */
    padding: 10px;
}

#con-info p {
  font-size: 18px;
  /* text-align: center; */
  /* padding: 10px; */
}

#con-det button {
  background-color: var(--first-color);
  border-radius: 10px;
  letter-spacing: 0.1em;
  width: min-content;
}


#con-det button:hover {
  background-color: var(--first-color);
  border-radius: 10px;
  color: white;
}

/* tablet breakpoint */
@media (max-width:1100px) {
  .left-sidebar {
    display:block;
    /* flex-wrap:wrap; */
  }
  
  .left-sidebar > *:nth-child(1) {
      width: 50%;
  }
  .left-sidebar > *:nth-child(2) {
      width: 50%;
      order:-1;
  }


#con-info {
  width: 100%;
}

#con-det {
  width: 100%;
}

}


/* ============== */

.footer-bottom {
  width: 100%;
  height: 40px;
  background-color: black;
  color: var(--third-color);
  text-align: start;
  padding-left: 10%;
  font-size: 18px;
  display: flex;
}

.footer-bottom p {
height: 40px;
line-height: 40px;
}

.footer-details {
margin-top: 10px;
width: 100%;
display: flex;
flex-wrap: nowrap;
overflow: hidden;
/* justify-content: center; */
align-items: center;
}

.footer-details i{
  height: 100%;
  margin-right: 5px;
  /* background-color: chocolate; */
  /* font-size: 16px; */
  text-align: center;
  /* vertical-align: baseline; */
}

.footer-details a{
  height: 100%;
  margin-right: 5px;
  /* background-color: chocolate; */
  /* font-size: 16px; */
  text-align: center;
  /* vertical-align: baseline; */
}


/* ----------------------------try */

.hello {
  opacity: 1 !important;
}
.full {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.full .content {
  background-color: rgba(0,0,0,0.75) !important;
  height: 100%;
  width: 100%;
  display: grid;
}
.full .content img {
  left: 50%;
  transform: translate3d(0, 0, 0);
  animation: zoomin 1s ease;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.byebye {
  opacity: 0;
}
.byebye:hover {
  transform: scale(0.2) !important;
}
.gallery1 {
  display: grid;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  grid-auto-rows: auto;
}
.gallery1 img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 16px #333;
  transition: all 1.5s ease;
}
.gallery1 iframe {
  height: 350px;
  width: 100%;
  object-fit: cover;
  /* max-width: 100%; */
  border-radius: 8px;
  box-shadow: 0 0 16px #333;
  transition: all 1.5s ease;
}

.gallery1 .caption {
  margin: 0;
  padding: 1em;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  box-sizing: border-box;
  transition: transform 0.5s;
  transform: translateY(100%);
  background: rgba(0, 0, 0, 0.7);
  color: rgb(255, 255, 255);
}

.test2 {
  grid-column: 1 / span 2;
  /* grid-row: 3 / span 1; */
}

.test3 {
  grid-column: 1 / span 2;
  /* grid-row: 3 / span 1; */
}

.test4 {
  grid-column: 3 / span 2;
  /* grid-row: 3 / span 1; */
}

/* .gallery1 .item:hover .caption {
  transform: translateY(0%);
} */

.gallery1 img:hover {
  box-shadow: 0 0 32px #333;
}
.gallery1 .content {
  padding: 4px;
}
.gallery1 .gallery-item {
  transition: grid-row-start 300ms linear;
  transition: transform 300ms ease;
  transition: all 0.5s ease;
  cursor: default;
}
.gallery1 .gallery-item:hover {
  transform: scale(1.035);
  /* box-shadow: 0 0 32px #333; */
}

.image-item {
  transition: grid-row-start 300ms linear;
  transition: transform 300ms ease;
  transition: all 0.5s ease;
  cursor: default;
}
.image-item:hover {
  transform: scale(1.035);
  box-shadow: 0 0 16px #333;
}


@media (max-width: 600px) {
  .gallery1 {
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  }
}
@media (max-width: 400px) {
  .gallery1 {
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  }
}
@-moz-keyframes zoomin {
  0% {
    max-width: 50%;
    transform: rotate(-30deg);
    filter: blur(4px);
  }
  30% {
    filter: blur(4px);
    transform: rotate(-80deg);
  }
  70% {
    max-width: 50%;
    transform: rotate(45deg);
  }
  100% {
    max-width: 100%;
    transform: rotate(0deg);
  }
}
@-webkit-keyframes zoomin {
  0% {
    max-width: 50%;
    transform: rotate(-30deg);
    filter: blur(4px);
  }
  30% {
    filter: blur(4px);
    transform: rotate(-80deg);
  }
  70% {
    max-width: 50%;
    transform: rotate(45deg);
  }
  100% {
    max-width: 100%;
    transform: rotate(0deg);
  }
}
@-o-keyframes zoomin {
  0% {
    max-width: 50%;
    transform: rotate(-30deg);
    filter: blur(4px);
  }
  30% {
    filter: blur(4px);
    transform: rotate(-80deg);
  }
  70% {
    max-width: 50%;
    transform: rotate(45deg);
  }
  100% {
    max-width: 100%;
    transform: rotate(0deg);
  }
}
@keyframes zoomin {
  0% {
    max-width: 50%;
    transform: rotate(-30deg);
    filter: blur(4px);
  }
  30% {
    filter: blur(4px);
    transform: rotate(-80deg);
  }
  70% {
    max-width: 50%;
    transform: rotate(45deg);
  }
  100% {
    max-width: 100%;
    transform: rotate(0deg);
  }
}

/* ------------------------- */



.parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.general {
  width: 100%;
  height: 100%;
}

.val1 {
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
}

.val2 {
  grid-column: 2 / span 1;
  grid-row: 1 / span 1;
}

.val3 {
  grid-column: 3 / span 1;
  grid-row: 1 / span 2;
}

.val4 {
  grid-column: 4 / span 1;
  grid-row: 1 / span 1;
}

.val5 {
  grid-column: 1 / span 2;
  grid-row: 2 / span 1;
}

.val6 {
  grid-column: 4 / span 1;
  grid-row: 2 / span 2;
}

.val7 {
  grid-column: 1 / span 2;
  grid-row: 3 / span 2;
}

.val8 {
  grid-column: 3 / span 1;
  grid-row: 3 / span 1;
}

.val9 {
  grid-column: 3 / span 2;
  grid-row: 4 / span 1;
}

@media (min-width: 320px) {
  .parent {
    margin: 20px;
  }
}

@media (min-width: 480px) {
  .parent {
    margin: 20px 50px;
  }
}

@media (min-width: 600px) {
  .parent {
    margin: 50px 150px;
  }
}

@media (min-width: 801px) {
  .parent {
    margin: 50px 200px;
  }
}

@media (min-width: 1025px) {
  .parent {
    margin: 50px 300px;
  }
}

/* -====================== */

/* body { */
  /* background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgAQMAAABJtOi3AAAABlBMVEX4+Pj09PQf/c7fAAAAGklEQVR4Xq3MIQEAAADDIPqX/kvMIMEWEm8O7b0/wewc/NcAAAAASUVORK5CYII=) repeat; */
/* } */

.block {
  height: 5em;
  line-height: 5em;
  width: 10em;
  background: #464646;
  color: #fdfdfd;
  text-align: center;
  margin: 1em auto;
  text-shadow: 0 0 1px #333; /* so one can see fadeBgColor properly */
}

.animatable {
  /* initially hide animatable objects */
  visibility: hidden;

  /* initially pause animatable objects their animations */
  animation-play-state: paused;
}

/* show objects being animated */
.animated {
  visibility: visible;

  animation-fill-mode: both;
  animation-duration: 1s;
  animation-play-state: running;
}


/* CSS Animations (extracted from http://glifo.uiparade.com/) */
@keyframes fadeIn {
  0%,
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    transform: translateX(20px);
  }
  80% {
    transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    transform: translateX(-20px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveUp {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes fadeBgColor {
  0%,
  70% {
    background: none;
  }
  100% {
    background: #464646;
  }
}

.animated.animationDelay {
  animation-delay: 0.4s;
}
.animated.animationDelayMed {
  animation-delay: 1.2s;
}
.animated.animationDelayLong {
  animation-delay: 1.6s;
}
.animated.fadeBgColor {
  animation-name: fadeBgColor;
}
.animated.bounceIn {
  animation-name: bounceIn;
}
.animated.bounceInRight {
  animation-name: bounceInRight;
}
.animated.bounceInLeft {
  animation-name: bounceInLeft;
}
.animated.fadeIn {
  animation-name: fadeIn;
}
.animated.fadeInDown {
  animation-name: fadeInDown;
}
.animated.fadeInUp {
  animation-name: fadeInUp;
}
.animated.moveUp {
  animation-name: moveUp;
}

/* -============================ */

.checkbg {
  background-color: gold;
}

.about-team h3 {
  font-size: calc(16px + 6 * ((100vw - 320px) / 680));
}

.about-team h4 {
  font-size: calc(16px + 3 * ((100vw - 320px) / 680));
}

.bold {
  font-weight: 600;
  letter-spacing: 0.0125rem;
}

