/*!
Theme Name: RoysStudio
Theme URI: https://roysstudiokolkata.com/
Author: RoysStudio
Author URI: https://roysstudiokolkata.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: roysstudio
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
}

/* =========================
   GLOBAL ELEMENTS
========================= */

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* =========================
   TYPOGRAPHY
========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: 85px;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  font-size: 70px;
  font-weight: 500;
  letter-spacing: -.01em;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

p {
  margin-bottom: 1rem;
}

/* =========================
   CSS VARIABLES
========================= */

:root {
  --black: #000;
  --white: #fff;
}

/* =========================
   UTILITIES
========================= */

.container {
  max-width: 1200px;
  padding: 0 1rem;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

section {
  overflow: hidden;
  max-width: 100%;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* =========================
   FORMS
========================= */

input,
textarea,
select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 4px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
}



.animate-heading span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
}

.animate-paragraph {
  color: #999;
  /* initial light color */
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 100px;
}


/* =========================
   HEADER BASE
========================= */
.site-header {
  position: relative;
  width: 100%;
  z-index: 1000;
}

.navbar {
  padding: 10px 32px;
}

/* Logo */
.logo {
  height: 80px;
}

/* Menu */
.nav-list li a {
  font-weight: 500;
  padding: 0 12px;
  color: #111;
}

.nav-list li a:hover {
  color: #000;
}

/* CTA */
.header-cta .btn {
  padding: 10px 22px;
  border-radius: 50px;
}

/* =========================
   CUSTOM HAMBURGER
========================= */
.custom-toggler {
  border: none;
  padding: 0;
  width: 32px;
  height: 22px;
  position: relative;
}

.custom-toggler span {
  display: block;
  height: 2px;
  width: 100%;
  background: #111;
  position: absolute;
  left: 0;
  transition: 0.3s ease;
}

.custom-toggler span:nth-child(1) {
  top: 0;
}

.custom-toggler span:nth-child(2) {
  top: 10px;
}

.custom-toggler span:nth-child(3) {
  bottom: 0;
}

/* Active animation */
.custom-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.custom-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}


.home_banner {
  height: 100vh;
}

.home_banner .swiper {
  width: 100%;
  height: 100%;
}

.home_banner .swiper .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home_banner .swiper .swiper-slide .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
  color: #fff;
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.home_banner .swiper .swiper-slide .content .title,
.home_banner .swiper .swiper-slide .content .description {
  text-shadow: rgb(0, 0, 0) 2px 2px 3px;
}

.professional-team-section {
  padding: 0px 32px 50px;
}

.heading {
  margin-bottom: 70px;
}

.tslide_wrap {
  position: relative;
  width: calc(16.19% + 1px);
  transition: width .4s ease;
  margin: 0 10px;
  overflow: hidden;
}

.ts_img {
  height: 550px;
}

.ts_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 50%;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.ts_text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 20px 20px;
  color: #fff;
  background: linear-gradient(to top, black, transparent);
  transform: translateY(25px);
  opacity: 0;
  transition: 600ms ease-in;
}

.qodef-team-member-role {
  text-decoration: underline;
  margin-bottom: 10px;
  display: block;
}

.qodef-e-title.entry-title {
  font-size: 28px;
  margin-bottom: 18px;
}

.qodef-social-icons {
  font-weight: 600;
  font-size: 14px;
  display: flex;
  gap: 15px;
}

.team_slides {
  display: flex;
}

.tslide_wrap.active {
  width: 33%;
}

.tslide_wrap.active img {
  filter: grayscale(40%);
  -webkit-filter: grayscale(40%);
}

.tslide_wrap.active .ts_text {
  opacity: 1;
  transform: translateY(0);
}


@media (width > 700px) {
  .home_banner .swiper .swiper-slide .content {
    gap: 2rem;
  }
}

.home_banner .swiper .swiper-slide .content .title {
  font-size: 38px;
  font-family: "Montserrat", sans-serif;
  text-shadow: rgb(0, 0, 0) 0 0 3px;
  max-width: 800px;
  line-height: 1;
  font-size: 70px;
  font-weight: 500;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.home_banner .swiper .swiper-button-next svg,
.home_banner .swiper .swiper-button-prev svg {
  color: #fff;
}

@media (width > 700px) {
  .home_banner .swiper .swiper-slide .content .title {
    font-size: 58px;
  }
}

.home_banner .swiper .swiper-slide .content .description {
  font-size: 18px;
  line-height: 1.4;
  text-shadow: rgb(0, 0, 0) 0 0 3px;
}

.home_banner .swiper .swiper-slide .content a {
  background-color: var(--swiper-theme-color);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 12px;
  background: #fff;
  color: #05141f;
  min-width: 80px;
  font-weight: 600;
  text-decoration: none;
}

@media (width > 700px) {
  .home_banner .swiper .swiper-slide .content a {
    padding: 21px 40px;
    font-size: 14px;
  }
}


.home_banner .swiper .swiper-slide .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home_banner .swiper .swiper-slide .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.home_banner .swiper .swiper-slide .img .pixel-transition {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div {
  background-color: rgb(255, 255, 255);
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(1) {
  animation: fade 350ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(6) {
  animation: fade 350ms 100ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(11) {
  animation: fade 350ms 150ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(16) {
  animation: fade 350ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(2) {
  animation: fade 350ms 250ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(7) {
  animation: fade 350ms 200ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(12) {
  animation: fade 350ms 280ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(17) {
  animation: fade 350ms 200ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(3) {
  animation: fade 350ms 300ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(8) {
  animation: fade 350ms 400ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(13) {
  animation: fade 350ms 450ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(18) {
  animation: fade 350ms 300ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(4) {
  animation: fade 350ms 550ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(9) {
  animation: fade 350ms 530ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(14) {
  animation: fade 350ms 600ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(19) {
  animation: fade 350ms 560ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(5) {
  animation: fade 350ms 700ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(10) {
  animation: fade 350ms 800ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(15) {
  animation: fade 350ms 850ms forwards;
}

.home_banner .swiper .swiper-slide .img .pixel-transition div:nth-child(20) {
  animation: fade 350ms 700ms forwards;
}

.home_banner .swiper .swiper-slide .img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.home_banner .swiper .swiper-button-next,
.home_banner .swiper .swiper-button-prev {
  overflow: hidden;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

@media (width > 700px) {

  .home_banner .swiper .swiper-button-next,
  .home_banner .swiper .swiper-button-prev {
    border-radius: 84px;
    width: 84px;
    height: 84px;
  }
}

.home_banner .swiper .swiper-button-next::before,
.home_banner .swiper .swiper-button-prev::before {
  content: "";
  background: #05141f;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home_banner .swiper .swiper-button-next svg,
.home_banner .swiper .swiper-button-prev svg {
  position: relative;
  display: block;
  width: 20px;
}

@media (width > 700px) {

  .home_banner .swiper .swiper-button-next svg,
  .home_banner .swiper .swiper-button-prev svg {
    width: 30px;
  }
}

.home_banner .swiper .swiper-button-next:hover,
.home_banner .swiper .swiper-button-prev:hover {
  opacity: 1;
}

.home_banner .swiper .swiper-button-next::after,
.home_banner .swiper .swiper-button-prev::after {
  display: none;
}

.home_banner .swiper .swiper-button-next {
  right: 2rem;
}

.home_banner .swiper .swiper-button-prev {
  left: 2rem;
}

.home_banner .swiper .swiper-pagination {
  bottom: 1.5rem;
}

.home_banner .swiper .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 35px;
  height: 4px;
  margin: 0 5px;
  background-color: #fff;
}

@media (width > 700px) {
  .home_banner .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 45px;
  }
}

.home_banner .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

@keyframes fade {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.services-section {
  padding: 80px 32px 50px;
  border-top: 1px solid #000;
}

.services-section h2 {
  font-size: 50px;
}

.service-number {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-section {
  padding: 80px 32px;
}

.pricing-row {
  padding: 60px 0;
  border-top: 1px solid #000;
}

.pricing-section .btn {
  border: 1px solid #000;
}

.pricing-row:last-child {
  border-bottom: 1px solid #000;
}

.pricing-section h2 {
  font-size: 30px;
}

.h_video_section {
  position: relative;
  cursor: none;
  overflow: hidden;
}

.video-cursor {
  position: absolute;
  pointer-events: none;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: all 800ms;
  mix-blend-mode: difference;
  color: #fff;
  white-space: nowrap;
}

.cursor-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 30px;
  background-color: #fff;
}

.video-cursor {
  font-size: 50px;
  font-weight: 700;
}

.h_contact_section,
.map_section {
  padding: 0px 32px 50px;
}

/* spacing */
.form-group-line {
  margin-bottom: 20px;
}

/* labels */
.form-group-line label {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

/* input underline style */
.form-control-line {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  background: transparent;
  padding: 8px 0;
  outline: none;
  border-radius: 0;
}

/* textarea */
textarea.form-control-line {
  resize: none;
}

/* focus effect */
.form-control-line:focus {
  border-bottom: 2px solid #000;
}

/* button style */
.btn-line {
  border: 1px solid #000;
  background: transparent;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all .3s ease;
}

/* hover */
.btn-line:hover {
  background: #000;
  color: #fff;
}

.h_contact_section input.wpcf7-form-control.wpcf7-submit.has-spinner {
  padding: 6px 30px;
  width: fit-content;
  font-weight: 600;
  border-radius: 20px;
  background: transparent;
  border: 1px solid #000;
  transition: 300ms ease-in-out;
}

.h_contact_section input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  color: #fff;
  background-color: #000;
}

.h_contact_section ul li {
  margin-bottom: 10px;
}

.h_contact_section ul li a,
.f_social_contact a {
  position: relative;
  text-decoration: underline;
}

/* .h_contact_section ul li a::after, .f_social_contact a::after {
  content: "";
  height: 1px;
  width: 0%;
  width: 100%;
  background-color: #000;
  position: absolute;
  bottom: -1px;
  left: 0;
  transition: 300ms ease-in-out;
} */

/* .h_contact_section ul li a:hover:after {
  width: 100%;
} */

.map_wrap iframe {
  width: 100%;
  height: 450px;
  filter: grayscale(100%);
}

.site-footer .heading span {
  font-family: "Inter", sans-serif;
  font-weight: 100;
}

.f_page_list li {
  margin-bottom: 10px;
}

.f_page_list li a {
  font-size: 18px;
  font-weight: 600;
}

.f_social_contact ul {
  padding: 0;
}

.f_social_contact ul li {
  margin-bottom: 10px;
}

.f_form_wrap {
  position: relative;
}

.f_form_wrap .wpcf7-email::placeholder {
  font-weight: 600;
  font-size: 18px;
}

.f_form_wrap span.submit_btn_wrap {
  position: absolute;
  top: 0;
  right: 0;
}

.f_form_wrap .wpcf7-spinner {
  position: absolute;
  bottom: -10px;
  right: 0;
}

.f_form_wrap input.wpcf7-form-control.wpcf7-submit.has-spinner {
  background: transparent;
  font-size: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  line-height: 23px;
}

.f_form_wrap .wpcf7-form-control-wrap input {
  padding: 7px 0;
  color: #000;
  border-bottom: 1px solid #000;
  background: transparent;
  border-radius: 0;
}

.site-footer {
  padding: 50px 32px;
  border-top: 1px solid #000;
  margin-top: 30px;
}

.page-banner-section {
  height: 100vh;
  position: relative;
}

.page-banner-section .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.page-banner-section .banner-content h1 {
  color: #fff;
  font-size: 80px;
  font-weight: 600;
  letter-spacing: 3px;
}

.banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}


.services-section {
  padding: 120px 40px;
}

/* title */
.services-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
}

/* accordion item */
.service-item {
  border-bottom: 1px solid #000;
  padding: 0 0 35px 0;
  margin-bottom: 30px;
}

.service-item:last-child {
  border-bottom: 0;
}

/* header */
.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* left side */
.service-left {
  display: flex;
  gap: 30px;
  align-items: center;
}

.service-number {
  font-weight: 600;
}

.service-title {
  font-size: 22px;
  font-weight: 600;
}

/* icon */
.service-icon {
  font-size: 26px;
}

/* content */
.service-content {
  max-height: 0;
  overflow: hidden;
  transition: all .4s ease;
  margin-top: 15px;
  padding-left: 52px;
  /* max-width: 520px; */
}

/* active */
.service-item.active .service-content {
  max-height: 200px;
}

.service-item.active .service-icon {
  content: "−";
}

img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: left;
}

.reveal {
  visibility: hidden;
  position: relative;
  width: 90%;
  /* height: 80%; */
  /* max-width: 500px; */
  overflow: hidden;
}

.h_contact_section.contact-us-section {
  padding: 120px 40px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 991px) {
  ul {
    padding-left: 0;
  }

  .navbar {
    padding: 16px 20px;
  }

  .nav-list {
    text-align: center;
    padding-top: 20px;
  }

  .nav-list .nav-link {
    padding: 14px 0;
    font-size: 18px;
  }

  .header-cta {
    margin-top: 20px;
    text-align: center;
  }

  .f_form_wrap {
    padding-top: 20px;
  }

  br {
    display: none;
  }

  .reveal {
    width: 100%;
  }

  .services-accordion {
    padding-top: 30px;
  }
}

@media (max-width: 767px) {
  .navbar {
    padding: 0px;
  }

  .page-banner-section .banner-content h1 {
    font-size: 30px;
  }

  .page-banner-section {
    height: calc(100vh - 90px);
  }

  .home_banner .swiper .swiper-slide .content .title {
    font-size: 25px;
  }

  .home_banner .swiper .swiper-button-next,
  .home_banner .swiper .swiper-button-prev {
    display: none;
  }

  .home_banner .swiper .swiper-slide .content .description,
  .coming-soon p {
    font-size: 16px !important;
    padding: 0 10px;
  }

  .header-cta .btn {
    padding: 5px 22px;
  }

  .navbar-collapse {
    padding-bottom: 30px;
  }

  .services-section,
  .pricing-section,
  .professional-team-section,
  .h_contact_section,
  .map_section,
  .h_contact_section.contact-us-section {
    padding: 30px 0;
  }

  .professional-team-section {
    padding-top: 0;
  }

  hr {
    margin-bottom: 20px !important;
  }

  .services-section h2,
  h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  h3,
  .pricing-section h2 {
    font-size: 20px;
  }

  .pricing-row {
    padding: 20px 0;
  }

  .btn {
    font-size: 16px;
    padding: 4px 12px;
  }

  .small,
  small {
    display: block;
    margin-bottom: 15px;
  }

  .heading {
    margin-bottom: 0;
  }

  .tslide_wrap {
    width: calc(9.19% + 1px);
    margin: 0 5px;
  }

  .tslide_wrap.active {
    width: 70%;
  }

  .ts_img img {
    object-position: 50% 50%;
  }

  .qodef-e-title.entry-title {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .qodef-social-icons {
    font-size: 12px;
  }

  .site-footer {
    padding: 30px 0;
    border-top: 1px solid #000;
    margin-top: 0;
  }

  .service-title {
    font-size: 17px;
  }

  .service-item {
    padding: 0 0 15px 0;
    margin-bottom: 15px;
  }

  .coming-soon h1 {
    font-size: 30px !important;
  }
}