* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 12px;
  width: 100%;
  /* background-color: black; */
}


/* Importing Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  /* background-color: #0000005c; */
  background-color: white;
  height: 12vh;
}

header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar .logo {
  color: black;
  font-weight: 600;
  font-size: 2.1rem;
  text-decoration: none;
  margin-left: -7%;
}


.navbar .logo img{
  width: 100px;
}




.navbar .logo span {
  color: #C06B3E;
}

.navbar .menu-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.navbar a {
  color: black;
  text-decoration: none;
  transition: 0.2s ease;
}

.navbar a:hover {
  color: #C06B3E;
  text-decoration: none;
}

.hero-section {
  height: 100vh;
  background-image: url("gif.gif");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 0 20px;
  width: 100%;
}

.hero-section .content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  color: #fff;
  margin-left: 30%;
  margin-top: 5%;
}

.hero-section .content h2 {
  font-size: 3rem;
  max-width: 600px;
  line-height: 70px;
}

.hero-section .content p {
  font-weight: 300;
  max-width: 600px;
  margin-top: 15px;
}

.hero-section .content button {
  background: #fff;
  padding: 12px 30px;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  margin-top: 38px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
  margin-left: 19%;
}

.hero-section .content button:hover {
  color: #fff;
  background: #C06B3E;
}

#close-menu-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  display: none;
}

#hamburger-btn {
  color: black;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  header {
    padding: 10px;
  }

  header.show-mobile-menu::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
  }

  .navbar .logo {
    font-size: 1.7rem;
  }


  #hamburger-btn,
  #close-menu-btn {
    display: block;
  }

  .navbar .menu-links {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 70px 40px 0;
    transition: left 0.2s ease;
  }

  header.show-mobile-menu .navbar .menu-links {
    left: 0;
  }

  .navbar a {
    color: #000;
  }

  .hero-section .content {
    text-align: center;
  }

  .hero-section .content :is(h2, p) {
    max-width: 100%;
  }

  .hero-section .content h2 {
    font-size: 2.3rem;
    line-height: 60px;
  }

  .hero-section .content button {
    padding: 9px 18px;
  }
}










/* screenshort */
.col5 {
  background-image: url(./ss.png);
  height: 20vh;
  background-size: 90%;
  background-repeat: no-repeat;
  margin-left: 8%;
  margin-top: 3%;

}


.col2 h2 {
  font-family: 'Courier New', Courier, monospace;
  font-size: 20px;
  font-weight: bold;
  margin-left: 39%;
  margin-top: 2%;
}



.col2 h1 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 55px;
  margin-left: 34%;
}
















/* photos */

.profile-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: 0px 2px 3px #222;
  top: 60px;
}

.profile-card:hover .profile-img img {
  transform: scale(1.2);
}

.profile-card .profile-img img {
  width: 100%;
  height: auto;
  transition: transform 1s;
}

.profile-card .profile-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 40%;
  border: 3px solid #333;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transform: scale(1, 1);
  transition: all 0.50s linear;
}

.profile-card .profile-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 40%;
  border: 3px solid #222;
  border-left: 3px solid transparent;
  border-top: 3px solid transparent;
  transition: all 0.50s linear;

}

.profile-card:hover .profile-content:before {
  top: 20px;
  left: 20px;
}

.profile-card:hover .profile-content:after {
  bottom: 20px;
  right: 20px;
}

.profile-card .profile-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50% 4%;
  text-align: center;

}

.profile-card .profile-content:hover {
  background-color: rgba(255, 255, 255, 0.853);
}

.profile-card .profile-content .title {
  font-size: 24px;
  color: #333;
  opacity: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: translateY(-100px);
  transition: all 900ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.20s;
}

.profile-card:hover .title {
  opacity: 1;
  transform: translateY(0);
}

.profile-card:hover .title::after {
  content: "";
  display: block;
  width: 50%;
  margin: 10px auto;
  border-bottom: 2px solid #222;
}

.profile-card .profile-content .title>span {
  display: block;
  margin: 5px 0;
  font-size: 14px;
  text-transform: capitalize;
}

.profile-card .profile-content .social-link {
  margin: 20px 0;
  padding: 0;
  opacity: 0;
  transform: translateY(100px);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.20s;
}

.profile-card:hover .social-link {
  opacity: 1;
  transform: translateY(0);
}

.profile-card .profile-content .social-link li {
  display: inline-block;
  list-style: none;
  margin: 0 4px;
}

.profile-card .profile-content .social-link li a {
  color: #333;
  width: 30px;
  height: 25px;
  line-height: 24px;
  text-align: center;
  border-radius: 5px;
  background-color: #fff;
}


.profile-card h2 {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.profile-card h2 a{
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  color: #000;
  text-decoration: none;
}












/* separator */
.col55 {
  background-image: url(./seperator.png);
  height: 10vh;
  background-size: 90%;
  background-repeat: no-repeat;
  margin-left: 8%;
  margin-top: 7%;

}



/* work */
.col6 h2 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 20px;
  margin-left: 10%;

}


.col7 h2 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin-left: 10%;
  font-size: 20px;
  width: 25%;
  padding-top: 2%;
}


.col8 h2 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin-left: 10%;
  font-size: 20px;
  width: 35%;
  padding-top: 2%;
}







/* slideshow */

.slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  /* background-image: url(img/bg.jpg); */
  background-size: cover;
  background-position: center center;
  margin-left: 48%;
  margin-top: -22%;
}

.slideshow {
  position: absolute;
  width: 800px;
  margin: auto;
  overflow: hidden;
  /* box-shadow: 0 20px 20px 5px rgba(0, 0, 0, 0.3); */
  /* border-radius: 50%; */
}

.slideshow ul {
  position: relative;
  left: 0;
  width: 3500px;
  transition: left .5s linear;
  animation: slide 15s infinite;
}

.slideshow ul li {
  display: inline-block;
  /* height: auto; */
  /* float: left; */
  /* width: 60%; */
}

.single-img {
  margin: 0 auto;
  padding: 0;
  width: 800px;
}

.single-img img {
  width: 70%;
  /* margin-right: 30%; */
}

@keyframes slide {
  20% {
    left: 0;
  }

  25% {
    left: -800px;
  }

  45% {
    left: -800px;
  }

  50% {
    left: -1600px;
  }

  70% {
    left: -1600px;
  }

  75% {
    left: -2400px;
  }

  98% {
    left: -2400px;
  }

  100% {
    left: 0;
  }
}




/* seen */

.col9 h2 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin-left: 47%;
  font-size: 20px;
  width: 35%;
  margin-top: -2.2%;
}









/* card */




.card-carousel {
  position: relative;
}

.card-carousel-inner {
  scroll-padding: 0 1rem;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  display: flex;
  padding: 1rem 0;
  width: 100%;
}

.card-carousel-item {
  scroll-snap-align: start;
  margin: 0 0.5rem !important;

  flex: 0 0 160px;
  height: 220px;
  font-size: 60px;
}

.card-carousel-item img {
  border-radius: 10%;
  margin-left: 30%;
}

.card-carousel-item:first-child {
  margin-left: 1rem !important;
}

.card-carousel-item:last-child {
  margin-right: 1rem !important;
}

.card-carousel-inner,
.card-carousel-item {
  margin: 0 auto;
}

.card-carousel-control {
  position: absolute;
  top: calc(50% - 24px);
  border-radius: 50%;
  background: gray;
  /* color: gray; */
  width: 45px;
  height: 48px;
}

.card-carousel-control-prev {
  left: -1rem;
  font-size: 5%;
  /* color: gray; */
}

.card-carousel-control-next {
  right: -1.2rem;
  font-size: 5%;
}




/* Temp Data Styles */
.card-carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}



.card-carousel-control i {
  color: white;
  margin-top: 15%;
  margin-left: 19%;
  font-size: 30px;
}



/* torontopara */

.col10 h2 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin-left: 31%;
  margin-top: 2%;
  font-size: 42px;
}


.col10 h6 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  width: 45%;
  text-align: center;
  margin-top: 2%;
  margin-left: 27%;
}




/* separator */

.col56 {
  background-image: url(seperator.png);
  height: 10vh;
  background-size: 90%;
  background-repeat: no-repeat;
  margin-left: 8%;
  margin-top: 3%;

}



/* testimonial */

.col11 h2 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 47px;
  margin-left: 42%;
}


.col11 h6 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  width: 50%;
  text-align: center;
  margin-left: 25%;
}





/* cards */


.cardimg video {
  width: 100%;
  height: auto;
}


video {
  max-width: 100%;
}

.card {
  transition: transform 0.2s ease;
  box-shadow: 0 4px 6px 0 rgba(22, 22, 26, 0.18);
  border-radius: 0;
  border: 0;
  margin-bottom: 1.5em;
}

.card:hover {
  transform: scale(1.1);
}


.card-body h5 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


.card-body h6 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}





/* separator */

.col57 {
  background-image: url(seperator.png);
  height: 10vh;
  background-size: 90%;
  background-repeat: no-repeat;
  margin-left: 8%;
  margin-top: 4%;

}




/* blogs */


.box {
  width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 15px;
  margin: 0 auto;
  padding-top: 2.7%;
}

.card1 {
  position: relative;
  width: 300px;
  height: 350px;
  background: #fff;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}

.card1:before,
.card1:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: #fff;
  transition: 0.5s;
  z-index: -1;
}

.card1:hover:before {
  transform: rotate(20deg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .2);
}

.card1:hover:after {
  transform: rotate(10deg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .2);
}

.card1 .imgBx {
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  background: #222;
  transition: 0.5s;
  z-index: 1;
}

.card1:hover .imgBx {
  bottom: 80px;
}

.card1 .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card1 .details {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 60px;
  text-align: center;
}

.card1 .details h2 {
  margin: 0;
  padding: 0;
  /* font-weight: 600; */
  font-size: 15px;
  color: black;
  /* text-transform: uppercase; */
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.card1 .details h2 span {
  font-weight: 500;
  font-size: 16px;
  color: #f38695;
  display: block;
  margin-top: 5px;
}




.col12 h2 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 47px;
  margin-left: 45%;
}





/* separator */

.col58 {
  background-image: url(seperator.png);
  height: 10vh;
  background-size: 90%;
  background-repeat: no-repeat;
  margin-left: 8%;
  margin-top: 4%;

}





/* insta */

.col13 h2 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 47px;
  margin-left: 43%;
}


.col13 h6 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin-left: 46%;
  font-size: 27px;
}










.material-fill-1 {
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
}

p {
  color: white;
  font-size: 0.8rem;
  text-align: center;
  margin-top: 1rem;
}

a {
  color: orange;
}

a:hover {
  text-decoration: underline;
}

.gallery {
  --_height: 220px;
  --_gap: .5rem;

  --_grid-rows: var(--_height) var(--_height) var(--_height);
  --_height-hover: calc(var(--_height) * 2);
  --_height-not-hover: calc(var(--_height) / 2);

  width: 100%;
  max-width: 800px;
  display: grid;
  gap: var(--_gap);
}

@media (min-width:720px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

}

.gallery>div {
  height: 50vh;
  display: grid;
  grid-template-rows: var(--_grid-rows);
  gap: var(--_gap);
  transition: grid-template-rows 300ms ease-in-out;
}

.gallery>div>article {
  position: relative;
}

.gallery>div>article>div {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #00000070;
  font-size: 0.65rem;
  color: white;
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .15rem 0.5rem;

}

.gallery>div>article>div>span {
  font-size: 0.7rem;
  color: red;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery>div:has(>article:nth-child(1):hover) {
  --_grid-rows: var(--_height-hover) var(--_height-not-hover) var(--_height-not-hover);
}

.gallery>div:has(>article:nth-child(2):hover) {
  --_grid-rows: var(--_height-not-hover) var(--_height-hover) var(--_height-not-hover);
}

.gallery>div:has(>article:nth-child(3):hover) {
  --_grid-rows: var(--_height-not-hover) var(--_height-not-hover) var(--_height-hover);
}

.gallery>div>article:hover {
  background-color: rgb(151, 152, 201);
  color: #FFF;
}


.gallery {
  float: right;
  margin: 23.5%;
  margin-top: 2%;
}








/* separator */

.col59 {
  background-image: url(seperator.png);
  height: 10vh;
  background-size: 90%;
  background-repeat: no-repeat;
  margin-left: 8%;
  margin-top: 53%;

}















.site-footer {
  /* background-color: #26272b; */
  padding: 45px 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: black;
  margin-top: -3%;
  margin-left: 13%;
}

.site-footer hr {
  border-top-color: black;
  opacity: 0.5;
  margin-right: 10%;
}

.site-footer hr.small {
  margin: 20px 0;
}

.site-footer h6 {
  color: black;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px;
  text-decoration: underline;
}

.site-footer a {
  color: black;
}

.site-footer a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links {
  padding-left: 0;
  list-style: none
}

.footer-links li {
  display: block
}

.footer-links a {
  color: black;
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links.inline li {
  display: inline-block
}

.site-footer .social-icons {
  text-align: right
}

.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: white;
}

.copyright-text {
  margin: 0
}

@media (max-width:991px) {
  .site-footer [class^=col-] {
    margin-bottom: 30px
  }
}

@media (max-width:767px) {
  .site-footer {
    padding-bottom: 0
  }

  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: center
  }
}

.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-right: 30%;
}

.social-icons li {
  display: inline-block;
  margin-bottom: 4px
}

.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: black;
  font-weight: 700;
  font-size: 13px
}

.social-icons a {
  background-color: black;
  color: black;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: black;
  background-color: #29aafe
}

.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px
}

.social-icons a.facebook:hover {
  background-color: #3b5998
}

.social-icons a.twitter:hover {
  background-color: #00aced
}

.social-icons a.linkedin:hover {
  background-color: #007bb6
}

.social-icons a.dribbble:hover {
  background-color: #ea4c89
}

@media (max-width:767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600
  }
}