@import url("https://fonts.googleapis.com/css2?family=Marck+Script&display=swap");

:root {
  --button-width: 30px;
  --button-height: calc(var(--button-width) * 0.8);
  --rectangle-height: calc(var(--button-width) * 0.1);
  --rectangle-radius: calc(var(--button-width) * 0.04);
  --translate: calc(var(--button-width) * 0.17);
  --transition: 0.3s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}
a {
  color: #cdcccc;
}
a:hover {
  color: inherit;
  display: inline-block;
}
body {
  transition: all 1s ease-in-out;
  /* cursor: url(../images/cursor.png), auto !important; */
}

.hero {
  background-image: url("../images/home2.jpg");
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  background-attachment: fixed;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  padding-bottom: 15rem !important;
}
.fancy-burger {
  position: relative;
  width: var(--button-width);
  height: var(--button-height);
  border: none;
  background: transparent;
  outline: none !important;
  cursor: pointer;
  display: none;
}
.rectangle {
  position: absolute;
  height: var(--rectangle-height);
  background: #fd5c55;
  border-radius: var(--rectangle-radius);
  transition: transform var(--transition);
}
.rectangle--small {
  width: calc(var(--button-width) / 2);
}
.rectangle--top {
  top: 0;
  left: 0;
  transform-origin: top left;
}
.rectangle--top.open {
  transform: translateX(var(--translate)) rotate(45deg);
}
.rectangle--middle {
  top: 50%;
  left: 0;
  width: var(--button-width);
  transform: translatey(-50%);
}
.rectangle--middle.open {
  transform: translatey(-50%) rotate(-45deg);
}
.rectangle--bottom {
  bottom: 0;
  right: 0;
  transform-origin: bottom right;
}
.rectangle--bottom.open {
  transform: translateX(calc(-1 * var(--translate))) rotate(45deg);
}

.navbar {
  background: transparent !important;
  transition: all 0.6s ease-in-out;
}

.fixed-top.scrolled {
  z-index: 22;
  background-color: #1f2233 !important;
  transition: background-color 200ms linear;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#progress-bar {
  width: 0%;
  height: 5px;
  background-color: #fd5c55;
  position: fixed;
  z-index: 44 !important;
}

.navbar a {
  color: white !important;
}

.navbar .nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1rem 0.5rem;
  text-transform: capitalize;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.navbar-brand:hover {
  text-shadow: 0px 0px 5px #fd5c55;
}

.nav-link:hover,
.nav-link:active {
  color: #fd5c55 !important;
}
/* a.nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4%;
  width: 100%;
  height: 1px;
  background-color:rgba(255, 255, 255, 0.5);
  transform: scale(0, 0.5);
  transform-origin: center;
  transition: transform 0.15s ease-in;
}
a.nav-link:hover::before,
a.nav-link:focus::before {
  transform: scale(1, 1);
} */

.nav-link.clicked {
  color: #fd5c55 !important;
}

.contact-btn-link.btn-clicked {
  color: white !important;
  background-color: #fd5c55 !important;
}

.navbar-brand,
footer span {
  font-size: 2rem;
  letter-spacing: 4px;
}

.navbar-brand span,
footer span {
  color: #fd5c55;
}

.contact-btn {
  background-color: transparent;
  color: #fd5c55 !important;
  position: relative;
  text-transform: capitalize;
  margin: 1rem 0 0 1.5rem;
  font-weight: 600;
  padding: 0px !important;
}

.contact-btn a {
  text-decoration: none;
  color: #fd5c55 !important;
  display: inline-block;
  z-index: 99;
  height: 100%;
  margin: 0 !important;
  padding: 0.4rem 0.8rem;
  width: 100%;
  border: 1px solid #fd5c55;
  border-radius: 4px;
  transition: all 0.6s ease;
}

.contact-btn a:hover,
.contact-btn a:focus,
.contact-btn a:active {
  color: white !important;
  background-color: #fd5c55;
}

.hero-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  justify-content: center;
}
@keyframes hero-content-animate {
  0% {
    transform: scale(0);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(0.8);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.hero-content img {
  width: 200px;
    height: 200px;
    border-radius: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    object-position: bottom;
    filter: brightness(0.3);
}

.hero-content h1 {
  color: #fd5c55;
  font-size: calc(1.3rem + 5vw) !important;
  font-weight: 700;
  margin-top: 1.1rem;
  letter-spacing: 4px;
  font-family: "Marck Script", cursive;
}

.hero-content h5 {
  color: whitesmoke;
  font-size: 1.6rem;
  letter-spacing: 4px;
}

.typewriter::after {
  content: "";
  width: 3px;
  height: 5%;
  border-right: 2px solid #fd5c55;
  animation: blinker 0.4s infinite ease;
}

@keyframes blinker {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.discover,
.contact {
  min-height: 100vh;
  width: 100%;
  background-color: #1f2233;
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.svg {
  position: absolute;
  left: 2rem;
  bottom: 0.7rem;
  transform: scale(1.2) rotate(-10deg);
}
.contact {
  background-color: #24283d;
  padding-top: 0;
}

.discover div > .col-md-4 {
  flex: 1;
  background-image: url(../images/hero.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  box-shadow: 2px 1px 25px 5px rgba(0, 0, 0, 0.5);
  border: 10px solid #1f2233;
  width: 100%;
  min-height: 50vh;
}
.column-2 {
  flex: 1;
}
.discover h3,
.contact h3,
.services h3 {
  color: #fd5c55;
}

.discover h1,
.contact h1,
.services h1 {
  color: white;
  font-size: 2.6rem;
  position: relative;
  padding-bottom: 1rem;
  font-family: "Marck Script", cursive;
}

.discover h1::after,
.contact h1::after,
.services h1::after {
  content: "";
  width: 69px;
  height: 3px;
  background-color: #fd5c55;
  position: absolute;
  left: 0;
  bottom: 0;
}

.discover p {
  color: #d3d2d2;
}

.info .row {
  border: 1px solid #fd5c55;
  border-radius: 5px;
  padding: 1rem;
}

.info p {
  line-height: 2.4rem;
  font-size: 1rem;
}

.info span {
  font-weight: 600;
}

.info p > a {
  color: #fd5c55;
}

.discover button,
.contact button {
  background-color: #fd5c55;
  color: white;
  padding: 0.8rem 1.7rem;
  font-weight: 600;
  transition: all 0.6s ease-in-out;
}

.meta {
  margin: 2rem 0;
  font-size: 1.03rem;
  line-height: 1.8;
}

.discover button:hover,
.contact button:hover {
  background-color: transparent;
  color: #fd5c55;
  border: 1px solid #fd5c55;
}

.discover-btns {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
}
.discover-btns button {
  flex: 1;
  white-space: nowrap;
}
.services {
  min-height: 100vh;
  padding: 3rem 0;
  border-bottom: 1px solid #333333;

  background-color: #1d2031;
  background-image: url("https://www.transparenttextures.com/patterns/arabesque.png");
  /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}

.services h4 {
  color: white;
  text-align: center;
}

.services p {
  color: #cdcccc;
  text-align: center;
}

.services h1 {
  color: white;
}

.services .container {
  position: relative;
}

.services .container .row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.services .row div {
  background-color: #1d2031;
  border: 1px solid #fd5c55;
  border-radius: 5px;
  margin: 1.6rem 0;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.4s ease-out;
  cursor: pointer;
  transform: translateX(-500%) scale(0);
  width: 30rem;
  min-height: 19rem;
}
@keyframes services-div {
  from {
    transform: translateX(-500%) scale(0);
  }
  to {
    transform: translateX(0) scale(1);
  }
}

.services .row div:hover {
  box-shadow: -1px -2px 10px 1px #fd5c55 inset;
}

.services .row div:nth-child(2) {
  margin-left: 2rem;
  margin-right: 2rem;
}

.services .row div p {
  width: 100%;
}

.services .row div img {
  margin: 1rem auto;
  display: block;
}

.services .row div h4 {
  margin-bottom: 1rem;
}

.contact {
  position: relative;
  padding-top: 3rem;
}

.contact input,
.contact textarea {
  background-color: transparent;
  border: 3px solid #282c3e;
  outline: none;
  box-shadow: none;
  color: #fff !important;
  caret-color: #fd5c55;
}
/* .contact input:hover,
.contact textarea:hover {
  border:1px solid #FD5C55;
}  */
.contact textarea {
  min-height: 120px;
}
.contact textarea:focus {
  background: transparent;
}

.contact .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #333333;
  margin: 2rem 0;
  padding: 1.5rem 0.5rem 1.5rem 1.5rem;
  background-color: #1f2233;
  word-wrap: break-word;
}

.box-content {
  color: #cdcccc;
}
.box-content p {
  font-size: 0.95rem;
}

.contact .box:hover,
.contact .box:nth-child(2) {
  border: 1px solid #fd5c55;
  transition: all 0.5s ease-in-out;
}

.box-content h6,
.box-content p {
  margin: 0;
}

footer {
  background-color: #1f2233;
  padding: 3rem 0;
}
.footer-links {
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-links a {
  margin: 0 1rem;
  box-shadow: 0px 1px 10px 2px rgba(0, 0, 0, 0.2);
  display: inline-block;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.4s ease-out;
}
.footer-links a:hover {
  box-shadow: 0px 1px 10px 2px #fd5c55;
}
footer h1 span {
  margin-left: 5px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(253, 92, 85)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}

.contact input,
.contact textarea {
  outline: none;
}

.contact input:focus,
.contact input:active,
.contact textarea:focus,
.contact textarea:active {
  border: 1px solid #fd5c55;
  background-color: transparent;
  outline: none !important;
  box-shadow: none;
}

.pageUp {
  background-color: #282c3e;
  color: #fd5c55;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 0 0.5rem;
  font-size: 1.9rem;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.4s ease-in;
}

.pageUp {
  display: none;
}

.pageUp:hover,
.pageUp:focus {
  border-color: #fd5c55;
}

.pageUp a {
  color: #fd5c55;
  text-decoration: none;
}

hr {
  height: 1px;
  margin: 0;
  color: black;
}

.navbar-toggler {
  border-color: transparent !important;
  outline: none !important;
}

/*::-webkit-scrollbar {
  display: none;
}*/

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #282c3e;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  background-color: #fd5c55;
}
