/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --safety-orange: hsl(25, 100%, 50%);
  --lavender-gray: hsl(230, 19%, 81%);
  --persian-rose: hsl(328, 100%, 59%);
  --red-crayola: hsl(341, 100%, 49%);
  --eerie-black: hsl(240, 6%, 10%);
  --light-gray: hsl(0, 0%, 80%);
  --cultured-2: hsl(210, 60%, 98%);
  --platinum: hsl(0, 0%, 90%);
  --gray-web: hsl(220, 5%, 49%);
  --cultured: hsl(0, 0%, 93%);
  --black_10: hsla(0, 0%, 0%, 0.1);
  --black_5: hsla(0, 0%, 0%, 0.05);
  --white-1: hsl(0, 0%, 100%);
  --white-2: hsl(0, 14%, 98%);
  --black: hsl(0, 0%, 0%);

  /**
   * gradient color
   */

  --gradient: linear-gradient(to left top, var(--persian-rose), var(--safety-orange));

  /**
   * typography
   */

  --ff-roboto: 'Roboto', sans-serif;
  --ff-league-spartan: 'League Spartan', sans-serif;

  --fs-1: 3.5rem;
  --fs-2: 3rem;
  --fs-3: 2.1rem;
  --fs-4: 1.7rem;
  --fs-5: 1.4rem;
  --fs-6: 1.3rem;

  --fw-700: 700;
  --fw-500: 500;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * shadow
   */

  --shadow-1: 0 6px 24px var(--black_5);
  --shadow-2: 0 2px 28px var(--black_10);

  /**
   * border radius
   */

  --radius-2: 2px;
  --radius-5: 5px;
  --radius-8: 8px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li { list-style: none; }

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

a,
img,
span,
time,
label,
input,
button,
textarea,
ion-icon { display: block; }

img { height: auto; }

input,
button,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
textarea { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-family: var(--ff-roboto);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white-1);
  color: var(--gray-web);
  font-size: 1.6rem;
  line-height: 1.8;
}

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

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 98%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }

:focus-visible { outline-offset: 4px; }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.btn {
  max-width: max-content;
  color: var(--white-1);
  font-size: var(--fs-6);
  font-weight: var(--fw-700);
  padding: 10px 30px;
  border-radius: var(--radius-5);
  transition: var(--transition-1);
}

.btn-primary {
  background-image: var(--gradient);
  background-size: 1000%;
}

.btn-primary:is(:hover, :focus) { background-position: bottom right; }

.btn-secondary {
  background-color: var(--white-1);
  color: var(--eerie-black);
}

.btn-secondary:is(:hover, :focus) {
  background-color: var(--eerie-black);
  color: var(--white-1);
}

.section { padding-block: var(--section-padding); }

.h1,
.h2,
.h3 {
  color: var(--eerie-black);
  font-family: var(--ff-league-spartan);
  line-height: 1.2;
}

.h1 { font-size: var(--fs-1); }

.h2 { font-size: var(--fs-2); }

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

.w-100 { width: 100%; }

.section-title,
.section-text { text-align: center; justify-content: space-between; }

.section-text { font-size: var(--fs-6); }

.grid-list {
  display: grid;
  gap: 30px;
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white-1);
  padding-block: 5px;
  border-block-end: 1px solid var(--cultured);
  z-index: 1000;
  transition: var(--transition-1);
}

.header.active { filter: drop-shadow(var(--shadow-2)); }

.header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img{
  width: 170px;
  height: 100%;
  margin-left: -10px;
}

.nav-toggle-btn { font-size: 40px; }

.nav-toggle-btn.active .open,
.nav-toggle-btn .close { display: none; }

.nav-toggle-btn .open,
.nav-toggle-btn.active .close { display: block; }

.navbar {
  background-color: var(--white-1);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 30px);
  width: 100%;
  padding-inline: 0;
  border: 1px solid var(--cultured);
  transition: 0.3s var(--cubic-out);
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
}

.navbar.active {
  max-width: 100%;
  max-height: 320px;
  visibility: visible;
  transition-duration: 0.5s;
}

.navbar-list {
  padding: 20px 15px;
  padding-block-start: 10px;
  opacity: 0;
  transition: var(--transition-1);
}

.navbar.active .navbar-list { opacity: 1; }

.navbar-link {
  color: var(--eerie-black);
  font-family: var(--ff-league-spartan);
  font-size: var(--fs-4);
  line-height: 1.2;
  padding-block: 8px;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) { color: var(--gradient); }

.header .btn { margin-block-start: 10px; }



.header .navbar ul li{
  position: relative;
}


.header .navbar ul li ul{
  position: absolute;
  top: 110%;
  left: 0;
  border: var(--border-1);
  width: 220px;
  text-align: left;
  background: #fff;
  color: #000000;
  display: none;
}

.header .navbar ul li .dropdown{
  font-size: 1.7rem;
  padding: 8px 10px;
  line-height: 1.8;
  text-transform: capitalize;
  border-bottom: 1px solid #E7E9EA;
  transition: var(--transition);
}
.header .navbar ul li .dropdown:hover{
  color: #fff;
  background: var(--gradient);
}


.header .navbar ul li:hover > ul{
  display: initial;
}


.header .navbar .dropdown_multi{
  position: absolute;
  left: 102%;
  top: 10px;
}

 .dropdown i{
  margin-left: 16rem;
  justify-content: flex-end;
}


/*-----------------------------------*\
  #HEO
\*-----------------------------------*/

/* .hero {
  padding-block-start: calc(var(--section-padding) + 50px);
  text-align: center;
}

.hero-content { margin-block-end: 30px; }

.hero-subtitle {
  color: var(--eerie-black);
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
}

.hero-title { margin-block: 12px 8px; }

.hero-text { font-size: var(--fs-5); }

.hero .btn {
  margin-inline: auto;
  margin-block-start: 20px;
} */



/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.home{
  padding: 100px 200px;
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: var(--gradient);
  margin-top: 7rem;
}

.home::before{
  z-index: 777;
  content: '';
  position: absolute;
  background: rgba(3, 94, 251, 0.247);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}



.home .content{
  z-index: 888;
  color: #fff;
  width: 70%;
  margin-top: 230px;
  display: none;
}

.home .content.active{
  display: block;
}

.home .content h1{
  font-size: 3.2em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 65px;
  margin-bottom: 10px;
}

.home .content h1 span{
  font-size: 1em;
  font-weight: 600;
}

.home .content p{
  margin-bottom: 25px;
}

.home .content .slide_btn_div{
  color: #fff;
  width: 25%;
}

.home .content .slide_btn{
  padding: 10px 15px;
  background: #fff;
  color: #101111;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
  transition: var(--transition-2);
}

.home .content .slide_btn:hover{
  background: hsl(25, 100%, 50%);
  color: #fff;
}

.home .media_icons{
  z-index: 888;
  position: absolute;
  right: 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
}

.home .media_icons a{
  color: #fff;
  font-size: 1.6em;
  transition: all 0.3s ease;
}

.home .media_icons a:not(:last-child){
  margin-bottom: 20px;
}

.home .media_icons a:hover{
  transform: scale(1.3);
}

.home img{
  z-index: 000;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.slider-navigation{
  z-index: 888;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(80px);
  margin-bottom: 260px;
}

.slider-navigation .nav-btn{
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255, 255, 255, alpha);
  transition: all 0.3s ease;
}

.slider-navigation .slider_btn.active{
  background: var(--gradient);
}


.slider-navigation .nav-btn.active{
  background: var(--gradient);
}

.slider-navigation .nav-btn:not(:last-child){
  margin-right: 20px;
}

.slider-navigation .nav-btn:hover{
  transform: scale(1.2);
}


.video-slide{
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: circle(0% at 0 50%);
}
.video-slide.active{
  clip-path: circle(150% at 0 50%);
  transition: 2s ease;
  transition-property: clip-path;
}


  /**
   * HERO
   */

   .home .slider_btn{
    display: grid;
    position: absolute;
    z-index: 1000;
    background-color: #fff;
    color: #000;
    font-size: 2.4rem;
    width: 45px;
    height: 45px;
    place-items: center;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: var(--transition-2);
  }

  .home .slider_btn:hover{
    background-color: var(--safety-orange);
    color: #fff;
  }


  .home .slider_btn ion-icon { transform: rotate(-45deg); }

  .home .slider_btn.prev { left: 30px; }

  .home .slider_btn.next { right: 30px; }

  .home .slider_btn:is(:hover, :focus-visible) {
    color: var(--black);
  }



/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.home_others{
  padding: 100px 200px;
  position: relative;
  width: 100%;
  height: 55vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: var(--gradient);
  margin-top: 7rem;
}

.home_others::before{
  z-index: 777;
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.521);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}


.home_others .content{
  z-index: 888;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  width: 100%;
  margin-top: -20px;
}

.home_others .content h2{
  font-size: 3.5rem;
}

.home_others .content .bread-list{
  display: flex;
  gap: 10px;
  z-index: 888;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home_others .content.active{
  display: block;
}

.home_others .content h1{
  font-size: 3.2em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 65px;
  margin-bottom: 10px;
}

.home_others .content h1 span{
  font-size: 1em;
  font-weight: 600;
}

.home_others .content p{
  margin-bottom: 25px;
}


.home_others img{
  z-index: 000;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}



/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service { background-color: var(--white-2); }

.service .section-text { margin-block: 5px 35px; }

.service-card {
  background-color: var(--white-1);
  padding: 20px 15px;
  border: 1px solid var(--platinum);
  border-radius: var(--radius-5);
  text-align: center;
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
}

.service-card:is(:hover, :focus-within) { transform: translateY(-10px); }

.service-card .card-icon {
  color: var(--white-1);
  font-size: 25px;
  max-width: max-content;
  margin-inline: auto;
  padding: 18px;
  border-radius: 50%;
}

.service-card .card-title { margin-block: 20px 8px; }

.service-card .card-text { font-size: var(--fs-6); }





/*-----------------------------------*\
  #PROJECT
\*-----------------------------------*/

.project .section-text { margin-block: 5px 35px; }

.project .grid-lists{
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  column-gap: 25px;
  row-gap: 20px;
}

.project .grid_list{
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  column-gap: 25px;
  row-gap: 20px;
  margin-top: 2rem;
}

.project-card {
  position: relative;
  border-radius: var(--radius-8);
  overflow: hidden;
}

.project-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  opacity: 0.5;
  transition: var(--transition-2);
}

.project-card:is(:hover, :focus-within)::after { opacity: 0.8; }

.project-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 1;
  transition: var(--transition-2);
}

.project-card:is(:hover, :focus-within) .card-content { transform: translateY(-20px); }

.project-card .card-subtitle {
  color: var(--lavender-gray);
  font-size: var(--fs-6);
  line-height: 1;
}

.project-card .card-title {
  color: var(--white-1);
  margin-block: 12px 15px;
}



#img_small{
  width: 100%;
  height: 325px;
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

#about_background{
  background-color: var(--white-1);
}
.about { background-color: var(--white-2); }

.about-banner {
  position: relative;
  border-radius: var(--radius-5);
  overflow: hidden;
  margin-block-end: 25px;
}

.about-banner-1 { filter: drop-shadow(2px 2px 5px hsla(0, 0%, 0%, 0.08)); }

#image_shadow { box-shadow: ( 0 0 500px 0 rgba(0,0,0, 0.8)); }

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white-1);
  color: var(--red-crayola);
  font-size: 32px;
  padding: 16px;
  border-radius: 50%;
  animation: pulse 1.5s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 1px var(--white-1); }
  100% { box-shadow: 0 0 0 25px transparent; }
}

.about :is(.section-title, .section-text) { text-align: left; }

.about .section-title { margin-block-end: 5px; }

.about .section-text:not(:last-child) { margin-block-end: 18px; }

.about .h3 { margin-block-end: 8px; }

.about-list { margin-block: 15px 18px; }

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.about-item ion-icon {
  color: var(--red-crayola);
  flex-shrink: 0;
  margin-block-start: 2px;
}

.about-item:not(:last-child) { margin-block-end: 12px; }


.btn-group{
  width: 160px;
}
.about_btn {
  border: none;
  display: block;
  position: relative;
  padding: 0.7em 2em;
  font-size: 18px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  color: #000000;
  z-index: 1;
  border-radius: 20px;
  font-family: inherit;
  font-weight: 500;
}

.about_btn span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  border-radius: 20px;
  border: 2px solid  hsl(25, 100%, 50%);
}

.about_btn span::before {
  content: "";
  display: block;
  position: absolute;
  width: 8%;
  height: 500%;
  background: #FBF9F9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-60deg);
  transition: all 0.3s;
}

.about_btn:hover span::before {
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
  background: var(--gradient);
}

.about_btn:hover {
  color: white;
}

.about_btn:active span::before {
  background: #EB1933;
}

/*===Accordion section===*/

.service_1{
  background: #F5F2EB;
  padding: 5rem 5%;
}

.section_text{
  font-size: 1.5rem;
}

.header_accordion .title_icon i{
  font-size: 1.5rem;
  color: #c22e2e
}
.accordion_main{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}
.accordion{
  max-width: 100%;
  width: 100%;
  background: #FFF;
  margin: 0 15px;
  padding: 15px;
  border-radius: 8px;
  box-shadow:  0 0 4px rgba(0,0,0,0.2);
}
.accordion .accordion-content{
  padding: 20px;
  margin: 10px 0;
  border-radius: 4px;
  background: #FFF7F0;
  border: 1px solid #FFD6B3;
  overflow: hidden;
}


.accordion-content:nth-child(2){
  background-color: #F0FAFF;
  border-color: #CCEEFF;
}
.accordion-content:nth-child(3){
  background-color: #FFF0F3;
  border-color: #FFCCD6;
}
.accordion-content:nth-child(4){
  background-color: #F0F0FF;
  border-color: #CCCCFF;
}
.accordion-content.open{
  padding-bottom: 10px;
}
.accordion-content .header_accordion{
  display: flex;
  min-height: 50px;
  padding: 0 15px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s linear;
}
.accordion-content.open .header_accordion{
  min-height: 35px;
}
.accordion-content .header_accordion .title{
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.accordion-content .header_accordion i{
  font-size: 15px;
  color: #333;
}
.accordion-content .description{
  height: 0;
  font-size: 15px;
  text-align: left;
  line-height: 1.8;
  color: #333;
  font-weight: 400;
  padding: 0 15px;
  transition: all 0.2s linear;
}

 .descriptions{
  height: 100%;
  font-size: 15px;
  text-align: left;
  line-height: 1.8;
  color: #333;
  font-weight: 400;
  padding: 0 15px;
  transition: all 0.2s linear;
}




/*-----------------------------------*\
  #CTA
\*-----------------------------------*/

.cta {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--gradient);
  opacity: 0.95;
  z-index: -1;
}

.cta-subtitle,
.cta .section-title { color: var(--white-1); }

.cta-subtitle {
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  text-align: center;
}

.cta .section-title { margin-block: 12px 18px; }

 .section-title { margin-bottom: 5rem; }

.cta .btn { margin-inline: auto; }





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

/*==========Visa Service section end===========*/
.visa_service{
  padding: 7rem 5%;
}

.visa_service .slider_container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}


.visa_service  .slider_container .box{
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
  border-radius: var(--radius-8);
  width: 100%;
  height: 22rem;
  position: relative;
}


.visa_service .slider_container .box img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .8s;
  cursor: pointer;
}

.visa_service .slider_container .box  img:hover{
  transform: scale(1.5);
  z-index: 2;
}
.visa_service .slider_container .box .content{
  position: absolute;
  top: -10px; left: 0;
  margin-top: 150px;
  height: 100%;
  width: 100%;
  text-align:center;
  background: #1e272eb4;
  transition: .8s;
}


.visa_service .slider_container .box .content a{
 text-decoration: none;
}

.visa_service .slider_container .box .content h3{
  font-size: 2rem;
  color: #fff;
  margin-top: 2rem;
  text-decoration: none;
}


.slide_image_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 2rem;
}

/*==========New Arrivals product Section CSS===========*/


.visa_service .slider_container .swiper {
  overflow: initial;
}


.visa_service .slider_container img{
  width: 100%;
  height: 100%;
}


.visa_service .swiper-button-next::after,
.swiper-button-prev::after{
  content: '';
}


.visa_service .swiper-button-next,
.visa_service .swiper-button-prev{
 background: #e4c59094;
 width: 30px;
 height: 30px;
 border-radius: 50%;
 color: #fff;
 font-size: 1.8rem;
 line-height: 30px;
 text-align: center;
 z-index: 1000;
}


.visa_service .swiper-button-prev{
 left: 0;
 right: 2.5rem;
}

.visa_service .swiper-button-next{
 right: 0;
}




/*==========Subject Section CSS===========*/

.subject{
  padding: 7rem 3%;
}
.subject-slider .subject .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  grid-gap: 1rem;
}


.subject .box-container .box{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto 0;
  padding: 2rem 1rem;
  text-align: center;
  border: var(--black);
  background: #fff;
  cursor: pointer;
  border-radius: 20px 0 20px 0;
}



.subject .box-container .box img{
  height: 13rem;
  background: #fff;
  margin-bottom: .5rem 0;
  border-radius: 20px;
  border: var(--border);
  transition: all 0.3s ease;
}

.subject .box-container .box img:hover{
  transform: scale(1.1);
  background: #eee;
  box-shadow: 0 0 10px 0 rgba(0,0,0, 0.5);
}

.subject .swiper-button-next,
.subject .swiper-button-prev{
  height: 4rem;
  width: 4rem;
  line-height: 4rem;
  border-radius: 10px 0 10px 0;
  background: #221e1e;
  color: #fff;
  transition: all 0.3s ease;
}


.subject .swiper-button-next:hover,
.subject .swiper-button-prev:hover{
  background: #f10000;
  color: #fff;
}

.subject .swiper-button-next::after,
.subject .swiper-button-prev::after{
  font-size: 2rem;
  font-weight: 900;
}


.subject .swiper-button-prev{
  left: 0;
  right: 2.5rem;
 }
 
 .subject .swiper-button-next{
  right: 0;
 }
 


/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.contact { background-color: var(--white-2); }

.contact .section-text { margin-block: 5px 35px; }

.contact-form {
  background-color: var(--white-1);
  padding: 20px;
  border-radius: var(--radius-2);
  margin-block-end: 30px;
  box-shadow: var(--shadow-1);
}

.input-field {
  background-color: var(--white-2);
  color: var(--eerie-black);
  font-size: var(--fs-5);
  padding: 15px;
  border-radius: var(--radius-2);
  outline: 1px solid transparent;
  outline-offset: 0;
  margin-block-end: 15px;
}

.input-field::-webkit-inner-spin-button { display: none; }

.input-field:focus { outline-color: var(--red-crayola); }

.input-field::placeholder { transition: var(--transition-1); }

.input-field:focus::placeholder { opacity: 0; }

textarea.input-field {
  resize: vertical;
  min-height: 80px;
  height: 100px;
  max-height: 200px;
  overscroll-behavior: contain;
}

.checkbox {
  width: max-content;
  margin-block-start: 5px;
  accent-color: var(--red-crayola);
}

.label-link {
  display: inline-block;
  color: var(--red-crayola);
}

.label-link:is(:hover, :focus) { text-decoration: underline; }

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-block-end: 15px;
}

.checkbox-wrapper .label { font-size: var(--fs-6); }

.contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 25px;
}

.contact-item { min-width: 100%; }

.contact-card {
  background-color: var(--white-1);
  padding: 20px;
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-1);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-card .card-icon {
  background-color: var(--cultured-2);
  color: var(--red-crayola);
  font-size: 25px;
  padding: 13px;
  border-radius: 50%;
  transition: var(--transition-1);
}

.contact-card:is(:hover, :focus) .card-icon {
  background-color: var(--red-crayola);
  color: var(--white-1);
}

.contact-card .card-title { margin-block-end: 5px; }

.contact-card :is(.card-link, .card-address) {
  font-size: var(--fs-6);
  transition: var(--transition-1);
}

.contact-card .card-link:is(:hover, :focus) { color: var(--red-crayola); }






/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer-top {
  background-color: var(--white-2);
  color: var(--light-steel-blue);
}

.footer-top .container {
  display: grid;
  gap: 30px;
}

.footer-brand .logo { color: var(--white); }

.footer-text {
  line-height: 1.6;
  margin-block: 15px;
}

.schedule {
  display: flex;
  align-items: center;
  gap: 15px;
}

.schedule-icon,
.footer-item .item-icon {
  background-image: var(--gradient);
  color: #fff;
  font-size: 18px;
  padding: 11px;
  border-radius: 50%;
}

.schedule .span,
.footer-item .item-text { line-height: 1.6; }

.footer-list-title {
  color: var(--white);
  font-family: var(--ff-poppins);
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
  margin-block-end: 10px;
}

.footer-link {
  display: flex;
  align-items: center;
  color: #636e72;
  gap: 5px;
  padding-block: 10px;
  transition: var(--transition);
}

.footer-link ion-icon {
  --ionicon-stroke-width: 50px;
}

.footer-link:is(:hover, :focus) { color: #f10000; }

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-item:not(:first-child) { margin-block-start: 20px; }

.footer-bottom {
  background-color: var(--black);
  padding-block: 50px;
  text-align: center;
}

.copyright{
  display: flex;
  row-gap: 5px;
}

.copyright a{
  margin-left: 5px;
}

.copyright a:hover{
  color: #c22e2e;
  text-decoration: underline;
}
.copyright {
  color: #fff;
  line-height: 1.8;
  margin-block-end: 25px;
}

.footer .social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.footer .social-link {
  padding: 11px;
  background-color: hsla(0, 0%, 100%, 0.2);
  color: #fff;
  font-size: 18px;
  border-radius: 50%;
}

.footer .social-link:is(:hover, :focus) { background-image: var(--gradient); }

.footer_logo img{
  width: 300px;
  height: 100%;
}




/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-color: var(--eerie-black);
  color: var(--white-1);
  padding: 12px;
  border-radius: 50%;
  box-shadow: var(--shadow-2);
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

.back-top-btn:is(:hover, :focus) { opacity: 0.9; }





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  .grid-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
  }



  /**
   * BLOG
   */

  .blog .grid-list { grid-template-columns: 1fr; }

  .blog-card.grid {
    display: grid;
    grid-template-columns: 0.47fr 1fr;
    align-items: center;
    gap: 10px;
  }


    /**
   * FOOTER
   */

   .footer-top .container { grid-template-columns: 1fr 1fr; }




  /**
   * CONTACT
   */

   .input-wrapper {
    display: flex;
    gap: 15px;
  }

  .contact-item { min-width: calc(50% - 18px); }

}







/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 4.5rem;
    --fs-2: 3.7rem;
    --fs-3: 2.3rem;
    --fs-4: 1.8rem;
    --fs-5: 1.5rem;
    --fs-6: 1.4rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }

  .section-text {
    max-width: 65ch;
    margin-inline: auto;
  }



  /**
   * HERO
   */

  /**
   * HERO
   */

   .hero .slider-btn {
    display: grid;
    position: absolute;
    z-index: 1;
    color: #000;
    font-size: 2.4rem;
    border: 1px solid hsl(25, 100%, 50%);
    width: 45px;
    height: 45px;
    place-items: center;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: var(--transition-1);
  }

  .hero .slider-btn ion-icon { transform: rotate(-45deg); }

  .hero .slider-btn.prev { left: 30px; }

  .hero .slider-btn.next { right: 30px; }

  .hero .slider-btn:is(:hover, :focus-visible) {
    background-color: hsl(25, 100%, 50%);
    color: var(--black);
  }




  /**
   * ABOUT
   */

  .about-banner { max-width: 550px; }

  .about .section-text {
    max-width: unset;
    margin-inline: 0;
  }


  /**
   * FOOTER
   */

   .footer-bottom { padding-block: 30px; }

   .footer-bottom .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
   }
 
   .copyright { margin-block-end: 0; }

  /**
   * CONTACT
   */

  .contact-form { padding: 30px; }

  .contact-item { min-width: calc(50% - 12.5px); }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5rem;
    --fs-2: 4rem;
    --fs-3: 2.5rem;

    /**
     * spacing
     */

    --section-padding: 100px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 960px; }

  .grid-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * HEADER
   */

  .nav-toggle-btn { display: none; }

  .navbar,
  .navbar.active { all: unset; }

  .navbar-list {
    all: unset;
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .navbar-link { position: relative; }

  .navbar-link:is(:hover, :focus) { color: var(--eerie-black); }

  .navbar-link::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-2);
  }

  .navbar-link:is(:hover, :focus)::after { transform: scaleX(1); }

  .header .btn { margin-block-start: 0; }



  /**
   * HERO
   */

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
    text-align: left;
  }

  .hero-content { margin-block-end: 0; }

  .hero-subtitle {
    position: relative;
    padding-inline-start: 15px;
  }

  .hero-subtitle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--red-crayola);
  }

  .hero-text,
  .hero .btn { margin-inline: 0; }



  /**
   * SERVICE
   */

  .service-card { padding: 20px; }

  .service-card .h3 { --fs-3: 2.3rem; }



  /**
   * PROJECT
   */

  .project-card .card-subtitle { --fs-6: 1.5rem; }



  /**
   * ABOUT
   */

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }

  .about-banner { margin-block-end: 0; }



  /**
   * BLOG
   */

  .blog .grid-list {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }

  .blog .grid-list > li:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 5;
  }

  .blog-card:not(.grid) { height: 100%; }

  .blog-card .card-content { padding-block: 10px; }

  .blog-card:not(.grid) .card-content { padding: 25px; }

  .blog-card.grid .h3 { --fs-3: 2rem; }

  .blog-card .time { --fs-6: 1.6rem; }


    /**
   * FOOTER
   */

   .footer-top .container { grid-template-columns: 1fr 0.5fr 0.6fr 0.75fr; }


  /**
   * CONTACT
   */

  .checkbox-wrapper { margin-block: 20px; }

  .contact-item { min-width: calc(33.33% - 16.66px); }

  .contact-card { padding: 30px; }

  .contact-card .card-icon { font-size: 32px; }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 6.8rem;
    --fs-2: 4.5rem;
    --fs-4: 1.9rem;
    --fs-5: 1.6rem;
    --fs-6: 1.6rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1140px; }

  .btn { --fs-6: 1.5rem; }



  /**
   * SERVICE
   */

  .service-card { padding: 30px; }

  .service-card .h3 { --fs-3: 2.5rem; }



  /**
   * PROJECT
   */

  .project-card .card-content { padding: 30px; }

  .project-card .card-subtitle { --fs-6: 1.6rem; }



  /**
   * ABOUT
   */

  .about .container { gap: 60px; }

  .about-item { gap: 7px; }

  .about-item ion-icon { font-size: 20px; }



  /**
   * CTA
   */

  .cta .section-title { margin-block: 15px 24px; }



  /**
   * BLOG
   */

  .blog-card .time { --fs-6: 1.6rem; }

  .blog-card.grid .h3 { --fs-3: 2.4rem; }



  /**
   * CONTACT
   */

  .contact-form { padding: 50px; }

  .contact-card { gap: 20px; }

  .contact-card .card-icon { padding: 15px; }

}



@media (max-width: 768px){
  .project .grid-lists{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    column-gap: 25px;
    row-gap: 20px;
  }
  
  .project .grid_list{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    column-gap: 25px;
    row-gap: 20px;
    margin-top: 2rem;
  }
}

@media (max-width: 668px){
  .project .grid-lists{
    display: grid;
    grid-template-columns: repeat(1, 2fr);
    column-gap: 25px;
    row-gap: 20px;
  }
  
  .project .grid_list{
    display: grid;
    grid-template-columns: repeat(1, 2fr);
    column-gap: 25px;
    row-gap: 20px;
    margin-top: 2rem;
  }
}

@media (max-width: 991px){

  .navbar{
    overflow-y: scroll;
  }

  .header .navbar ul li ul{
    position: relative;
    width: 100%;
}

.header .navbar ul li ul li{
  background: #0E0D0B;
  color: #fff;
}

.header .navbar ul li .dropdown{
  font-size: 1.2rem;
  padding: 8px 10px;
  line-height: 1.8;
  text-transform: uppercase;
  border-bottom: 1px solid #3E3D3C;
}
.header .navbar ul li ul li ul{
    width: 100%;
    left: 0;
}

.header.active .navbar-item {
  color: #fff;
}

.header.active .nav-open-btn .line{
  width: 30px;
  height: 2px;
  background-color: #000000;
  color: #fff;
  margin-block: 4px;
  transform-origin: left;
  animation: menuBtn 400ms ease-in-out alternate infinite;
}


.header.active .nav-open-btn {
  position: relative;
  left: 15%;
  color: #000;
  font-size: 35px;
}

.header .navbar .dropdown_multi{
  position: relative;
  left: 0%;
  display: block;
  top: 0px;
}
#dropdown_responsive{
  background-color: #EB1933;
}

#show_none{
  display: block;
}

.dropdown i{
  display: none;
}


.copyright{
  display: block;
}
.home{
  padding: 50px;
  position: relative;
  width: 100%;
  height: 65vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: var(--gradient);
  margin-top: 7rem;
}
.home .content{
  z-index: 888;
  color: #fff;
  width: 100%;
  margin-top: 250px;
  display: none;
}

.home .content h1{
  font-size: 1.5em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 34px;
  margin-bottom: 5px;
}

.home .content .slide_btn_div{
  z-index: 888;
  color: #fff;
  width: 45%;
}

.home .content .slide_btn{
  padding: 10px 15px;
  background: #fff;
  color: #101111;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
  transition: var(--transition-2);
}

.home .content .slide_btn:hover{
  background: hsl(25, 100%, 50%);
  color: #fff;
}
.slider-navigation{
  z-index: 888;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(80px);
  margin-bottom: 320px;
}


.home .slider_btn {
  display: grid;
  position: absolute;
  z-index: 900;
  background-color: var(--safety-orange);
  color: #fff;
  font-size: 2rem;
  width: 35px;
  height: 35px;
  place-items: center;
  top: 55%;
  transform: translateY(-50%) rotate(45deg);
  transition: var(--transition-2);
}


.home .slider_btn ion-icon { transform: rotate(-45deg); }

.home .slider_btn.prev { left: 20px; }

.home .slider_btn.next { right: 20px; }

.home .slider_btn:is(:hover, :focus-visible) {
  color: var(--black);
}

.home .content p{
  margin-bottom: 25px;
}



.home_others{
  padding: 100px;
  position: relative;
  width: 100%;
  height: 45vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: var(--gradient);
  margin-top: 7rem;
}

.home_others::before{
  z-index: 777;
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.521);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}


.home_others .content{
  z-index: 888;
  color: #fff;
  width: 100%;
  margin-top: -20px;
}

.home_others .content h2{
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2rem;
}

.home_others .content .bread-list{
  display: flex;
  gap: 10px;
  z-index: 888;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
}

.logo img{
  width: 170px;
  height: 100%;
  margin-left: 0px;
}

.service_1{
  background: #F5F2EB;
  padding: 2rem 0%;
}

}