*,
*::after,
*::before {
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}

:root {
  --container: 120rem;
  --primary: red;
  --white: whitesmoke;
  --white-light: white;
  --box-shadow: whitesmoke;
}




body{
  font-family: 'Poppins', 'Courier New', Courier, monospace;
  background-color: #ccccd2;
  /* height: 200vh; */
}

.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: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
  position: relative;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
   color: rgb(255, 0, 0);

}

.btn-sosial {
  font-size: 1.5rem;
  background-color: #fff;
  overflow: hidden;
}

.btn-sosial:hover > i {
  scale: 1.5;
  color: red;
}

@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;
  transition: opacity 300ms ease;
  cursor: pointer;
}

.navbar-brand:hover{
  opacity: 0.5;
  
 }


.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;
      font-size: 1.5rem;
  }

  .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      visibility: visible;
      transition: .5s;
      opacity: 1;
  }
}
img{
    max-width: 100%;
}

.btn-quote{
  font-family: 'rubik', segoe UI;
  font-size: 1.5rem;
  padding-top: 24px;
}

/* Recent Galery */

.recent-work-title{
  color: green;
  font-family: segoe UI;
  font-size: 3rem;
}
.gallery{
    background-color: #dbddf1;
    padding: 80px 0;
}


.gallery img{
    background-color: #ffffff;
    padding: 15px;
    width: 100%;
    box-shadow: 0 0 15px rgba(0, 0,0, 0.3);
    cursor: pointer;
}

/* Slider Utama */

.slider-utama .carousel-item{
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.slider-utama .carousel-item::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0,0, 0.5);
  z-index: -1;
}


.slider-utama .carousel-item .container {
  
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.slider-utama .container h2{
  font-size: 3rem;
  font-family: poppins, segoe UI;
  color: #FFFFFF;
  margin: 0 0 10px;
  opacity: 0;
  text-shadow: 5px 5px 10px orangered;
}
.slider-utama .container p{
  font-size: 20px;
  color: #EEEEEE;
  margin: 0;
  opacity: 0;
}
.slider-utama .carousel-item.active h2{
  animation: fadeInLeft 0.5s ease forwards;
}
.slider-utama .carousel-item.active p{
  animation: fadeInRight 0.5s ease forwards;
}

@keyframes fadeInLeft{
  0%{
    opacity: 0;
    transform: translateX(-30px);
  }
  100%{
    opacity: 1;
    transform: translateX(0px);
  }
}

@keyframes fadeInRight{
  0%{
    opacity: 0;
    transform: translateX(30px);
  }
  100%{
    opacity: 1;
    transform: translateX(0px);
  }
}
.slider-utama .carousel-controls{
  background-color: red;
  position: absolute;
  left: 50%;
  bottom: 40px;
  z-index: 10;
  transform: translateX(-50%);
}

.slider-utama .carousel-indicators{
  position: relative;
  margin: 0;
}

.slider-utama .carousel-indicators button {
  height: 70px;
  width: 70px;
  margin: 0 5px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  border: 3px solid transparent;
  transition: all 0.5s ease;
}

.slider-utama .carousel-indicators button.active {
  border-color: #FFFFFF;
  transform: scale(1.1);
}


/* Our Team */
.section-team {
  padding: clamp(4rem, 5vw, 12rem) 0rem;
}

.team-box .team-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  text-align: center;
  margin-bottom: 4rem;
  max-height: 100%;
  font-family: segoe UI;
}

.team-heading h1{
  font-size: 4rem;
  margin-top: 30px;
}

@media (min-width: 600px){
  .team-box .team-content {grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
  
}
@media (min-width:600px){ 
.team-box .team-content { 
  display: grid;
  grid-template-columns: repeat(2, 1fr),
    minmax(min-content, 1fr);
  gap: 3rem;
} 
 }
.team-box .team-content .team-card {
  position: relative;
}

.team-box .team-content .team-card__img {
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  max-width: 100%;
  height: 100%;
  border-left: 2px solid var(--color-yellow);
}
.team-box .team-content .team-card .overlay {
  position: absolute;
  top: 0%;
  right: 0;
  color: #fff;
  width: 0%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(9, 201, 143, 0.9);
  transition: width 0.4s;
}
.team-box .team-content .team-card .overlay * {
  flex: 1;
  justify-content: center;
}
.team-box .team-content .team-card__content {
  position: absolute;
  bottom: 0px;
  background-color: orange;
  background: linear-gradient(
    to right,
    var(yellow),
    var(dark yellow)
  );
  color: whitesmoke;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  width: 80%;
  height: 25%px;
  padding: 0.5rem o.5rem; 
  
}
.team-box .team-content .team-card__content .team-name {
  color: green;
  margin-left: 10px;
  margin-top: 5px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: segoe UI;
}
.team-box .team-content .team-card__content .team-title {
  text-transform: capitalize;
  margin-bottom: 5px;
  margin-left: 10px;
  font-family: segoe UI;
}
.team-box .team-content .team-card:hover .overlay {
  width: 16%;
  background-color: rgba(9, 201, 143, 0.9)6;
  justify-items: center;
}
.team-box .team-content .team-card:hover .overlay .gambar {
  margin-top: 20px;
}
.team-box .team-content .team-card:hover .team-card__img {
  filter: brightness(0.8);
}

.main{
  height: 0vh;
}
.hover-effect1 {
  min-height: 20px;
  background: #F44336;
  text-align: center;
}
.hover-effect1 ul {
 padding-top: 1px;
}
.hover-effect1 ul li {
 display: inline-block;
}
.hover-effect1 ul li a {
 font-size: 30px;
 text-align: center;
 color: #fff;
 margin: 0px 10px;
 line-height: 50px;
 display: inline-block;
 width: 50px;
 height: 50px;
 background:#dc3545;
 -webkit-transition: all .6s ease;
 -moz-transition: all .6s ease;
 -ms-transition: all .6s ease;
 -o-transition: all .6s ease;
 transition: all .6s ease;
}
.hover-effect1 ul li:hover a {
  border-radius: 50%;
  background: #dc3545;
 -moz-transform: rotate(360deg);
 -webkit-transform: rotate(360deg);
 -o-transform: rotate(360deg);
 -ms-transform: rotate(360deg);
 transform: rotate(360deg);
}

.yellow{
color: black;
}

/* About Us */
.about-us {
  background-color: #EEEEEE;
}

.about-title {
  font-family: poppins;
  font-size: 35px;
  padding-top: 50px;
  color: red;
}

.office-title{
  font-size: 2rem;
}

.row .judul-legalitas{
  margin: 40px 50px;
  font-family: segoe UI;
  font-size: 35px;
  font-weight: 700;
  color : red;
  overflow-x: hidden;
  /* margin-bottom: 30px; */
}

.legalitascontent .isilegalitas {
  text-align: justify;
  font-family: segoe Ui;
}

.legalitascontent .table {
  font-family: segoe Ui;
  /* font-size: 10px; */
}

.legalitas-img .crew-img{

  border-radius: 10px;
  font-family: segoe UI;
  font-size: 1rem;
  outline: 0.5rem solid grey;
  outline-offset: 0.5rem;
}

.table .body-table{
  font-size: 5rem;
}

/* Our Partners */

.teamkami .team-kami {
  background-color: aqua;
  margin-top: 40px;
}


.team-wrapper {
  width: 22rem;
  height: 28rem;
  position: relative;
  margin-top: 30px;
}



.profile {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 22rem;
  height: 28rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: 0.5s;
}

.profile .profile-image { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: var(--background);
  transition: .5s;
}

.profile .profile-image .img1 {
  width: 100%;
}

.profile-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.profile:hover img {
  opacity: 0.4;
  transition: .5s;
}

.profile:hover .profile-image {
  transform: translateY(-70px);
  transition: all .9s;
}

.profile:hover .profile-bio {
  opacity: 0.9; 
}


.social-icons {
  position: absolute;
  /* margin-left: 20px; */
  justify-content: center;
  display: flex;
  gap: 0.75rem;
  z-index: 3;
  bottom: 7.125rem;
}

.social-icons li {
  list-style: none;
}

.social-icons li a {
  position: relative;
  display: block;
  display: grid;
  place-items: center;
  background: #fff;
  font-size: 15px;
  font-weight: bold;
  width: 2rem;
  height: 2rem;
  border: 1px solid #CDCDCD;
  border-radius: 0.5rem;
  transition: .2s;
  transform: translateY(2rem);
  opacity: 0;
}



.social-icons li a:hover {
  background: var(--background);
  transition: .2s;
}

.social-icons li a svg {
  color: var(--background);
  transition: .2s;
}

.social-icons li a:hover svg {
  color: white;
  transition: 0.8s;
  transform: rotateY(360deg);
}

.profile:hover .social-icons li a {
  opacity: 1; 
}

.profile:hover li:nth-child(1) a {
  transition-delay: 0.1s;
}

.profile:hover li:nth-child(2) a {
  transition-delay: 0.2s;
}

.profile:hover li:nth-child(3) a {
  transition-delay: 0.3s;
}

.profile:hover li:nth-child(4) a {
  transition-delay: 0.4s;
}

.profile-name {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 4.5rem;
  font-size: 15px;
  padding: 0.5rem 0.5rem;
  z-index: 1;
  color: #333;
  background-color: #fff;
  text-align: left;
}

.profile:hover .profile-name {
  background-color: #fff;
}

.profile-name h2 {
  margin-bottom: 0.2rem;
}
.pwrapper {
  display: flex;
  column-gap: 15px;
}


/* Our Team Work */

.judul-team {
  margin-top: 4rem;
  font-family: POPPINS;
}


.img-team {
  width: 100%;
  
}

.team-wrapper {
  width: 22rem;
  height: 28rem;
  position: relative;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 22rem;
  height: 28rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: 0.5s;
}

/* css partner */
.card{
  overflow-x: hidden;
}
.card .card-img-top{
  width: 100%;
  height: 100%;
}

.card {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 3rem;
  row-gap: 4px;
}

.card-body .card-title{
  font-family: segoe UI;
  font-size: 1rem;
  text-align: center;
}
.card-partner .card{
  padding: 5px 5px 5px;
}



.card-body .card-text{
  font-family: segoe UI;
  font-size: 0.8rem;
  text-align: justify;
}

.partners-title{
  font-family: segoe UI;
  font-size: 4rem;
  margin-top: 3rem;
  color: green;
  margin-top: 80px;
}

.partner-desc{
  font-family: segoe UI;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}


.card-item{
  margin-bottom: 10px;
  align-content: space-around;
}

@media (max-width: 300px) {
.img-thumbnail {
  align-content: space-around ;
  height: 100px;
}}

.img-thumbnail{
  margin-bottom: 20px;
}

.line1 {
  justify-content: center;
  align-items: center;
}
.line2{
  justify-content: center;
  align-items: center;
  align-content: space-around;
}

/* visi Misi */
.center .visimisi-title{
  font-family: poppins;
  font-size: 3rem;
  color: green;
}

.center .visimisi-text{
  font-family: segoe UI;
  font-size: 1.5rem;
  padding-top: 1.5rem;
}

.card {
  padding-top: 1rem;
  border-radius: 1em;
}
.card-title-visimisi{
  font-size: 2rem;
}
.card-body .card-text{
  font-family: segoe UI;
  font-size: 1em;
}

/* Ruang Lingkup */
.scope-work{
  font-size: 4rem;
  margin-top: 80px;
}

.skill-area{
  background-color: gray;
}

.skill h2, p {
  font-family: segoe UI;
}

.accordion-header .accordion-title{
  font-family: segoe Ui;
  font-size: 2rem;
}

.accordion-body p, h5 {
  font-family: segoe UI;
  text-align: justify; 
}

.accordion-header button:hover{
  background-color: orange;
}


/* footer */
.footer-copyright{
  font-size: 1.2rem;
}

.page-footer{
  overflow-y: hidden;
}

.link-footer a{
  text-decoration: none;
}

.link-footer a:hover{
 color: orangered;
}

.link-footer a:active{
  color: blue;
 }

.footer-title{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



 /* section About */
.section-service {
  padding: clamp(4rem, 10vw, 6rem) 0rem;
}

.service-box {
  display: grid;
  align-items: flex-start;
  column-gap: var(--grid-column-gap);
  row-gap: var(--grid-row-gap);
}

.service-box__content {
  display: grid;
  gap: 2rem;
  justify-items: flex-start;
  max-height: 100%;
}

.service-box__image {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  justify-items: center;
  align-items: center;
}

.service-box__image img {
  background-size: cover;
  background-position: center;
  max-width: 100%;
  height: auto;
  outline: 0.3rem solid whitesmoke;
}

.service-box__image img:last-child {
  grid-column: 1/-1;
  max-width: 60%;
  margin-top: -5rem;
  outline: 0.5rem solid yellow;
  outline-offset: 0.5rem;
}



/* Tab */

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap');
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}
:root {
  --container: 120rem;
  --primary: hsl(201.43, 13.21%, 58.43%);
  --white: hsl(0, 0%, 100%);
  --white-light: hsl(0, 0%, 99%);
  --box-shadow: hsl(220, 7.32%, 91.96%);
}
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
  font-family: 'Rubik', sans-serif;
  background: var(--box-shadow);
}

h6{
  font-size: 1.2rem;
}
.container {
  max-width: var(--container);
  padding: 0 1rem;
  margin: 0 auto;
}
header {
  text-align: center;
}
.section-heading {
  margin: 3rem 0;
  font-size: 4rem;
  padding-bottom: 0.7rem;
  position: relative;
  display: inline-block;
}
.section-heading::before,
.section-heading::after {
  content: '';
  position: absolute;
}
.section-heading::before {
  width: 100%;
  height: 0.2rem;
  bottom: 0;
  left: 0;
  background: var(--primary);
  border-radius: 0.2rem;
}
.section-heading::after {
  bottom: -0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  border: 0.2rem solid var(--primary);
  background: var(--box-shadow);
}
.tab-container {
  width: 70%;
  margin: 0 auto 3rem auto;
  box-shadow: 0 0.8rem 1rem var(--box-shadow);
}
@media (max-width: 767px) {
  .tab-container {
    width: 90%;
  }
}
.tab-filter-container {
  padding: 2rem;
  text-align: center;
  background: hsl(205.71, 30.43%, 95.49%);
}
.filter-btn {
  display: inline-flex;
  padding: 0.8rem 2.5rem;
  cursor: pointer;
  border-radius: 2rem;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
}
.tab-filter-item-container {
  background: var(--white);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.tab-item {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 0rem 3rem;
  transform: translateY(100%);
  background: var(--white-light);
  transition: transform 0.5s ease-in-out;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(29rem, 1fr));
  place-items: center start;
}
.tab-img {
  width: 30rem;
  border-radius: 10px;
  outline: 0.3rem solid hsl(201.43, 13.21%, 58.43%);
  outline-offset: 0.3rem;
}
.tab-heading {
  padding: 2rem 0;
  font-size: 2rem;
}
.paragraph{
  font-family: segoe UI;
  font-family: 0.8rem;
}

.tab-item.select_tab {
  transform: translateY(0);
  transition: transform 0.5s ease-in-out;
  background: var(--white-light);
  animation: fadeOut 0.6s ease-in-out;
}

.btn-primary {
  margin-top: 1.2rem;
  display: inline-block;
  background: var(--primary);
  padding: 0.6rem 2rem;
  border-radius: 2rem;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 1.2rem;
}
 
@keyframes fadeOut {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Portfolio */

.container .img-filter{
  max-width: 1100px;
}
 
#filter-buttons button {
  border-radius: 3px;
  background: #fff;
  border-color: transparent; 
  margin-left: auto;
  border-radius: 20px;
}

#filter-buttons button:hover {
  background: #ddd;
}

#filter-buttons button.active {
  color: #fff;
  background: #6c757d;
}

#filterable-cards .card {
  width: 25rem;
  border: 2px solid transparent;
  margin: 0 auto;
}

#filterable-cards .card.hide {
  display: none;
}

@media (max-width: 600px) {
  #filterable-cards {
   justify-content: center;
  }

  #filterable-cards .card {
    width: calc(100% / 2 - 10px);
  }
}

.filter-menu{
  font-size: 1.5rem;
}

.carousel-caption{
  margin-bottom: 200px;
  justify-content: center;
}
.carousel-caption h1 {
  font-size: 4rem;
  text-shadow: 3px 3px #dc3545;
}
.carousel-caption p{
  font-size: 3rem;
}

/* List Proyek */

.portofolio-title {
  padding-top: 50px;
  padding-bottom: 20px;
  font-family: segoe UI;
  font-weight: bolder;
}

.list-project{
  margin-top: 5px;
  margin-bottom: 100px;
}

.list-header{
  padding: 30px;
}

/* Pagination Gallery */
.client-project{
  padding: 10px;
}

.container .client-project_container{
  margin: 0 auto;
  padding: 20px;
  padding-top: 100px;
}

.title-client{
  margin-top: 20px;
  margin-bottom: 20px;
}


.pagination{
  text-align: center;
  margin-top: 2rem;
  justify-content: center;
}

.pagination a{
  color: #007BFF;
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid #007BFF;
  margin: 0 5px;
  border-radius: 5px;
  align-items: center;
}

.pagination a:hover{
  background-color: #007BFF;
  color: #fff;
}

.pagination .active{
  background-color: #007BFF;
  color: #fff;
}

.card-container{
  /* display: flex; */
  /* grid-template-columns: repeat(auto-fill, minmax(300px, 1.333fr)); */
  /* gap: 20px; */
}

.card{
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
  background-color: #c49f3b;
  text-align: center;

}

.card img{
  max-width: 100%;
  /* height: auto; */
  border-radius: 10px;
  margin-bottom: 10px;
  backface-visibility: hidden;
  object-fit: cover;
  transition: 0.5s ease-in-out;
}

.card h3{
  color: black;
}

.card:hover img{
  filter: grayscale(1) brightness(0.3);
}

#page-numbers { 
	margin-top: 20px; 
	font-size: 1.5rem; 
}

.contents{
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.contents h2{
  margin-bottom: 12px;
  scale: 0.7;
  opacity: 0;
  color: #d1d1d1;
  font-size: 98%;
}

.contents p{
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
  color: #d1d1d1;
  transform: translateY(50%);
  opacity: 0;
  margin-left: 7px;
  margin-right: 7px;
}

.card:hover .contents h2{
  scale: 1;
  opacity: 1;
  cursor: pointer;
}

.card:hover .contents p{
  opacity: 1;
  transform: translateY(0);
  cursor: pointer;
}

/* Table */

.table {
  width: 100%;
  height: 100%;
  padding: 20px 50px;
}

table{
  width: 100%;
  border-collapse: collapse;
}

td th{
  font-weight: bold;
  cursor: pointer;
  padding: 10px 10px;
  border: 0.5px solid #606060;
  letter-spacing: 2px;
}

th{
  font-size: 16px;
  background-color: #ffffff;

}

td{
  font-size: 12px;
  background-color: #ffffff;
}

tr:hover td{
  background-color: #30303045;
}

.footers {
  margin-top: 25px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

button{
  padding: 7px 40px;
  color: #000000;

  background-color: transparent;
  font-size: 15px;
  cursor: pointer;
  border: none;
  border-radius: 50px;
  justify-content: space-between;
}

button.active, button:hover{
  background: rgb(185, 214, 17);
  border-radius: 50px;
  
}

.faqs{
  margin-top: 30px;
  margin-bottom: 20px;
}

/* contact form quote */
.wrapper{
  margin: 50px 50px;
  width: 715px;
  align-content: center;
  justify-content: center;
  background: antiquewhite;
  border-radius: 5px;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.05);
}
.wrapper header{
  font-size: 22px;
  font-weight: 600;
  padding: 20px 30px;
  border-bottom: 1px solid #ccc;
}
.wrapper form{
  margin: 35px 30px;
}
.wrapper form.disabled{
  pointer-events: none;
  opacity: 0.7;
}
form .dbl-field{
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
}
.dbl-field .field{
  height: 50px;
  display: flex;
  position: relative;
  width: calc(100% / 2 - 13px);
}
.wrapper form i{
  position: absolute;
  top: 50%;
  left: 18px;
  color: #ccc;
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea{
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 18px 0 48px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.field input::placeholder,
.message textarea::placeholder{
  color: #ccc;
}
.field input:focus,
.message textarea:focus{
  padding-left: 47px;
  border: 2px solid #0D6EFD;
}
.field input:focus ~ i,
.message textarea:focus ~ i{
  color: #0D6EFD;
}
form .message{
  position: relative;
}
form .message i{
  top: 30px;
  font-size: 20px;
}
form .message textarea{
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 15px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar{
  width: 0px;
}
.message textarea:focus{
  padding-top: 14px;
}
form .button-area{
  margin: 25px 0;
  display: flex;
  align-items: center;
}
.button-area button{
  color: #fff;
  border: none;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #0D6EFD;
  transition: background 0.3s ease;
}
.button-area button:hover{
  background: #025ce3;
}
.button-area span{
  font-size: 17px;
  margin-left: 30px;
  display: none;
}
@media (max-width: 600px){
  .wrapper header{
    text-align: center;
  }
  .wrapper form{
    margin: 35px 20px;
  }
  form .dbl-field{
    flex-direction: column;
    margin-bottom: 0px;
  }
  form .dbl-field .field{
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
  }
  form .message textarea{
    resize: none;
  }
  form .button-area{
    margin-top: 20px;
    flex-direction: column;
  }
  .button-area button{
    width: 45%;
    padding: 11px 0;
    font-size: 16px;
    margin-bottom: 30px;
  }
  .button-area span{
    margin: 10px 10px 10px 10px;
    text-align: center;
  }
}

.form-quote{
  display: flex;
  /* padding: 0 10px; */
  /* min-height: 100vh; */
  background: whitesmoke;
  align-items: center;
  justify-content: center;
}

.video-bcooled{
  /* display: flex; */
  /* position: relative; */
  align-content: center;
  bottom: 15px;
  margin-left: 45px;

}

  /* Popup Coocies */
  .popup-screen {
    z-index: 999999;
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    visibility: hidden;
    transition: 0.5s ease;
    transition-property: visibility;
  }

  .popup-screen.active {
    visibility: visible;
  }

  .popup-box {
    position: relative;
    background: #c49f3b;
    backdrop-filter: blur(10px);
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    box-sizing: 0 5px 25px rgba(0 0 0 / 20%);
    transform: scale(0);
    transition: 1s ease;
    transition-property: transform;
  }

  .popup-screen.active .popup-box {
    transform: scale(1);
  }

  .popup-box {
    font-size: 2.1em;
    font-weight: 800;
    margin-bottom: 20px;
  }

  .popup-box .btn{
    color: #fffb00;
    background: red;
    font-size: 1.1em;
    font-weight: 300;
    text-decoration: none;
    padding: 7px 27px;
    border-radius: 3px;
    text-transform: uppercase;
  }

  .closes-btn {
    position: absolute;
    font-size: 0.3em;
    top: 0;
    right: 0;
    margin: 20px;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s ease;
    transition-property: opacity;
    background-color: red;
    padding: 15px 15px;
    border-radius: 20px;

  }

  .closes-btn:hover {
    opacity: 1;
  }