/* Root */
@import url(../colors/theme-colors.css);
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --reset: 0px;
  --none: none;
  --clear: transparent;
}

/* Colors */
/* Import Font */
@font-face {
  font-family: "ReagaVintage";
  src: url(../fonts/ReagaVintageRegular.ttf);
}
/* Reset */
html, body, h1, h2, h3, h4, h5, h6, p {
  margin: var(--reset);
  padding: var(--reset);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "ReagaVintage", sans-serif;
}

h1 {
  font-size: 7rem;
}

h2 {
  font-size: 6rem;
}

h3 {
  font-size: 5rem;
}

h4 {
  font-size: 4rem;
}

h5 {
  font-size: 3rem;
}

h6 {
  font-size: 2rem;
}

body {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "Montserrat", sans-serif;
  position: relative;
  z-index: 0;
  background-color: rgba(var(--clr-four), 1);
}

a:focus, .btn, .btn:focus {
  outline: var(--reset);
  border: var(--reset);
  box-shadow: var(--none);
}

.form-control {
  border: var(--reset);
  border-radius: var(--reset);
}

.form-control:focus {
  outline: var(--reset);
  border: var(--reset);
  box-shadow: var(--reset);
}

hr {
  border-top: 1px solid rgba(var(--clear), 0.2);
}

.btn-green-solid {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  background-color: rgba(var(--clr-two), 1);
  border: 1px solid rgba(var(--clr-two), 1);
  text-decoration: none;
  border-radius: 50px;
  text-transform: capitalize;
  color: rgba(var(--clr-three), 1);
  transition: all ease 500ms;
}
.btn-green-solid span svg {
  width: 24px;
  height: 24px;
}
.btn-green-solid:hover {
  background-color: var(--clear);
  border: 1px solid rgba(var(--clr-two), 1);
  color: rgba(var(--clr-two), 1);
  transition: all ease 500ms;
}

.btn-blue-solid {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  background-color: rgba(var(--clr-one), 1);
  border: 1px solid rgba(var(--clr-one), 1);
  text-decoration: none;
  border-radius: 50px;
  text-transform: capitalize;
  color: white;
  transition: all ease 500ms;
}
.btn-blue-solid span svg {
  width: 24px;
  height: 24px;
}
.btn-blue-solid:hover {
  background-color: var(--clear);
  border: 1px solid rgba(var(--clr-one), 1);
  color: rgba(var(--clr-one), 1);
  transition: all ease 500ms;
}

.header {
  padding: 10px 0;
}
.header .navbar .navbar-brand img {
  width: 90px;
  height: 54px;
}
.header .navbar .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  color: white;
  position: relative;
  z-index: 0;
  transition: all ease 900ms;
}
.header .navbar .navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 0;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  transition: all ease 900ms;
}
.header .navbar .navbar-nav .nav-item .nav-link.active {
  color: rgba(var(--clr-two), 1);
}
.header .navbar .navbar-nav .nav-item .nav-link.active::after {
  content: "";
  width: 100%;
  height: 1px;
  margin: 0 auto;
  background: rgba(var(--clr-two), 1);
  background: linear-gradient(90deg, rgba(46, 204, 113, 0) 0%, rgb(46, 204, 113) 50%, rgba(46, 204, 113, 0) 100%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.header .navbar .navbar-nav .nav-item .nav-link:hover {
  color: rgba(var(--clr-two), 1);
  transition: all ease 900ms;
}
.header .navbar .navbar-nav .nav-item .nav-link:hover::after {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(var(--clr-two), 1);
  background: linear-gradient(90deg, rgba(46, 204, 113, 0) 0%, rgb(46, 204, 113) 50%, rgba(46, 204, 113, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  transition: all ease 900ms;
}

.intro {
  padding: 50px 0;
  position: relative;
  z-index: 0;
}
.intro::after {
  content: "";
  width: 100%;
  height: 400px;
  background-image: url(../../images/logo-shape.webp);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 12%;
  bottom: 0;
  z-index: -1;
}
.intro .name {
  color: white;
  text-align: center;
  font-size: 10rem;
  letter-spacing: 0.1rem;
}
.intro .wrapper {
  margin-top: 140px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.intro .wrapper .heading {
  width: 50%;
}
.intro .wrapper .heading h3 {
  color: white;
  font-size: 5rem;
  margin-bottom: 30px;
}
.intro .wrapper .heading .email {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.intro .wrapper .heading .email span {
  font-size: 1.2rem;
  color: white;
}
.intro .wrapper .heading .email span img {
  width: 70px;
  height: 70px;
  margin-right: 20px;
}
.intro .wrapper .heading .email span small {
  display: block;
}
.intro .wrapper .heading .email span a {
  text-decoration: none;
  color: rgba(var(--clr-one), 1);
  transition: all ease 500ms;
}
.intro .wrapper .heading .email span a:hover {
  color: rgba(var(--clr-five), 1);
  transition: all ease 500ms;
}
.intro .wrapper .text {
  width: 50%;
  margin-top: 10px;
}
.intro .wrapper .text p {
  color: rgba(var(--clr-six), 1);
  font-size: 1.5rem;
}

.latest-work {
  background-color: rgba(var(--clr-three), 1);
  padding: 100px 0;
}
.latest-work .heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 0;
  text-align: center;
}
.latest-work .heading h2 {
  font-size: 10rem;
  text-transform: uppercase;
  background: -webkit-linear-gradient(rgba(52, 152, 219, 0), rgb(52, 152, 219));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.latest-work .heading .wrapper {
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  z-index: 1;
}
.latest-work .heading .wrapper small {
  color: white;
  font-size: 1rem;
}
.latest-work .heading .wrapper p {
  color: white;
  font-size: 2.5rem;
  text-transform: capitalize;
  font-weight: bold;
}
.latest-work .filter-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.latest-work .filter-container .filtr-item {
  width: 48%;
  background-color: rgba(var(--clr-four), 1);
  padding: 20px;
  border-radius: 10px;
  margin: 10px auto;
}
.latest-work .filter-container .filtr-item a {
  text-decoration: none;
  color: white;
  transition: all ease 500ms;
}
.latest-work .filter-container .filtr-item a img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
  filter: grayscale(100%);
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease 500ms;
}
.latest-work .filter-container .filtr-item a .category {
  background-color: rgba(var(--clr-two), 1);
  color: rgba(var(--clr-four), 1);
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
.latest-work .filter-container .filtr-item a p {
  font-size: 1.5rem;
}
.latest-work .filter-container .filtr-item a:hover {
  transition: all ease 500ms;
  color: rgba(var(--clr-one), 1);
}
.latest-work .filter-container .filtr-item a:hover img {
  filter: grayscale(0%);
  transition: all ease 500ms;
}

.about {
  padding: 100px 0;
}
.about .heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 0;
  text-align: center;
}
.about .heading h2 {
  font-size: 10rem;
  text-transform: uppercase;
  background: -webkit-linear-gradient(rgba(46, 204, 113, 0), rgb(46, 204, 113));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about .heading .wrapper {
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  z-index: 1;
}
.about .heading .wrapper small {
  color: white;
  font-size: 1rem;
  text-transform: capitalize;
}
.about .heading .wrapper p {
  color: white;
  font-size: 2.5rem;
  text-transform: capitalize;
  font-weight: bold;
}
.about .content {
  display: flex;
  justify-content: space-between;
  align-self: center;
}
.about .content .head {
  width: 40%;
}
.about .content .head h3 {
  font-size: 5rem;
  color: white;
}
.about .content .text {
  margin-left: 30px;
}
.about .content .text p {
  color: rgba(var(--clr-six), 1);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.testimonials {
  background-color: rgba(var(--clr-three), 1);
  padding: 100px 0;
}
.testimonials .heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 0;
  text-align: center;
}
.testimonials .heading h2 {
  font-size: 10rem;
  text-transform: uppercase;
  background: -webkit-linear-gradient(rgba(189, 195, 199, 0), rgb(189, 195, 199));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.testimonials .heading .wrapper {
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  z-index: 1;
}
.testimonials .heading .wrapper small {
  color: white;
  font-size: 1rem;
}
.testimonials .heading .wrapper p {
  color: white;
  font-size: 2.5rem;
  text-transform: capitalize;
  font-weight: bold;
}
.testimonials .swiper {
  padding-bottom: 75px;
}
.testimonials .swiper .swiper-wrapper .swiper-slide .testimonial {
  min-height: 350px;
  background-color: rgba(var(--clr-four), 1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.testimonials .swiper .swiper-wrapper .swiper-slide .testimonial img {
  width: 51px;
  height: 37px;
  margin-bottom: 30px;
}
.testimonials .swiper .swiper-wrapper .swiper-slide .testimonial .text {
  margin: 20px auto;
}
.testimonials .swiper .swiper-wrapper .swiper-slide .testimonial .text p {
  color: rgba(var(--clr-six), 1);
}
.testimonials .swiper .swiper-wrapper .swiper-slide .testimonial .author h4 {
  color: white;
}
.testimonials .swiper .swiper-wrapper .swiper-slide .testimonial .author span {
  color: rgba(var(--clr-one), 1);
}
.testimonials .swiper .swiper-pagination {
  margin: 0 auto;
  padding: 10px;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100px;
  left: 0;
  right: 0;
  background-color: rgba(var(--clr-four), 1);
}
.testimonials .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(var(--clr-five), 1);
}

.cta {
  padding: 100px 0;
  position: relative;
  z-index: 0;
}
.cta::after {
  content: "";
  width: 100%;
  height: 1px;
  margin: 0 auto;
  background: rgba(var(--clr-two), 1);
  background: linear-gradient(90deg, rgba(189, 195, 199, 0) 0%, rgb(189, 195, 199) 50%, rgba(189, 195, 199, 0) 100%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.cta .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta .wrapper .head {
  width: 60%;
}
.cta .wrapper .head h2 {
  color: white;
  font-size: 5rem;
}
.cta .wrapper .text {
  width: 40%;
}
.cta .wrapper .text p {
  color: rgba(var(--clr-six), 1);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.cta .wrapper .text a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  background-color: rgba(var(--clr-one), 1);
  border: 1px solid rgba(var(--clr-one), 1);
  color: white;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.cta .wrapper .text a span svg {
  width: 24px;
  height: 24px;
  margin-left: 10px;
}
.cta .wrapper .text a:hover {
  background-color: var(--clear);
  border: 1px solid rgba(var(--clr-one), 1);
  color: rgba(var(--clr-one), 1);
}

.footer {
  padding: 50px 0;
  position: relative;
  z-index: 0;
}
.footer::after {
  content: "";
  width: 100%;
  height: 1px;
  margin: 0 auto;
  background: rgba(var(--clr-two), 1);
  background: linear-gradient(90deg, rgba(189, 195, 199, 0) 0%, rgb(189, 195, 199) 50%, rgba(189, 195, 199, 0) 100%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.footer .foot-block .head {
  margin-bottom: 20px;
}
.footer .foot-block .head h5 {
  color: white;
  font-size: 1.5rem;
  text-transform: capitalize;
}
.footer .foot-block .text p {
  color: rgba(var(--clr-six), 1);
}
.footer .foot-block ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  -moz-column-count: 2;
       column-count: 2;
}
.footer .foot-block ul li {
  margin-bottom: 20px;
}
.footer .foot-block ul li a {
  text-decoration: none;
  color: rgba(var(--clr-six), 1);
  text-transform: capitalize;
  transition: all ease 500ms;
}
.footer .foot-block ul li a:hover {
  color: rgba(var(--clr-two), 1);
  transition: all ease 500ms;
}

.copyrights {
  padding: 20px 0;
}
.copyrights .text {
  text-align: center;
}
.copyrights .text p {
  color: rgba(var(--clr-six), 1);
}

.top-page {
  padding: 100px 0 50px;
}
.top-page .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-page .wrapper .heading {
  width: 50%;
}
.top-page .wrapper .heading a {
  text-decoration: none;
  color: rgba(var(--clr-five), 1);
  text-transform: capitalize;
  transition: all ease 500ms;
}
.top-page .wrapper .heading a svg {
  width: 24px;
  height: 24px;
}
.top-page .wrapper .heading a:hover {
  color: rgba(var(--clr-two), 1);
  transition: all ease 500ms;
}
.top-page .wrapper .heading .title {
  margin-top: 20px;
  font-size: 4rem;
  color: white;
  text-transform: capitalize;
}
.top-page .wrapper .heading .subtitle {
  color: rgba(var(--clr-six), 1);
  font-size: 1.2rem;
}
.top-page .wrapper .email {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.top-page .wrapper .email span {
  font-size: 1.2rem;
  color: white;
}
.top-page .wrapper .email span img {
  width: 70px;
  height: 70px;
  margin-right: 20px;
}
.top-page .wrapper .email span small {
  display: block;
}
.top-page .wrapper .email span a {
  text-decoration: none;
  color: rgba(var(--clr-one), 1);
  transition: all ease 500ms;
}
.top-page .wrapper .email span a:hover {
  color: rgba(var(--clr-five), 1);
  transition: all ease 500ms;
}

.page {
  background-color: rgba(var(--clr-three), 1);
  padding: 100px 0;
}
.page .filter-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.page .filter-container .filtr-item {
  width: 48%;
  background-color: rgba(var(--clr-four), 1);
  padding: 20px;
  border-radius: 10px;
  margin: 10px auto;
}
.page .filter-container .filtr-item a {
  text-decoration: none;
  color: white;
  transition: all ease 500ms;
}
.page .filter-container .filtr-item a img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
  filter: grayscale(100%);
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease 500ms;
}
.page .filter-container .filtr-item a .category {
  background-color: rgba(var(--clr-two), 1);
  color: rgba(var(--clr-four), 1);
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
.page .filter-container .filtr-item a p {
  font-size: 1.5rem;
}
.page .filter-container .filtr-item a:hover {
  transition: all ease 500ms;
  color: rgba(var(--clr-one), 1);
}
.page .filter-container .filtr-item a:hover img {
  filter: grayscale(0%);
  transition: all ease 500ms;
}
.page .pagination {
  margin-top: 50px;
}
.page .pagination .page-numbers {
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(var(--clr-five), 0.4);
  padding: 10px 15px;
  border-radius: 5px;
  color: rgba(var(--clr-four), 1);
  text-decoration: none;
  margin: 5px;
  transition: all ease 500ms;
}
.page .pagination .page-numbers:hover {
  background-color: rgba(var(--clr-five), 1);
  transition: all ease 500ms;
}
.page .pagination .page-numbers.current {
  background-color: rgba(var(--clr-five), 1);
}
.page .portfolio-details-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.page .heading {
  margin: 50px auto;
  position: relative;
  z-index: 0;
  text-align: center;
}
.page .heading h2 {
  font-size: 10rem;
  text-transform: uppercase;
  background: -webkit-linear-gradient(rgba(46, 204, 113, 0), rgb(46, 204, 113));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page .heading .wrapper {
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  z-index: 1;
}
.page .heading .wrapper small {
  color: white;
  font-size: 1rem;
  text-transform: capitalize;
}
.page .heading .wrapper p {
  color: white;
  font-size: 2.5rem;
  text-transform: capitalize;
  font-weight: bold;
}
.page .portfolio-details-text p {
  color: rgba(var(--clr-six), 1);
  margin-bottom: 20px;
  font-size: 1.2rem;
  line-height: 2;
}
.page .form-control {
  width: 100%;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--clear);
  color: rgba(var(--clr-two), 1);
  font-size: 1.2rem;
  border-radius: 5px;
  padding: 0 20px;
  transition: all ease 500ms;
}
.page .form-control:focus {
  background-color: rgba(var(--clr-two), 0.1);
  border: 1px solid rgba(var(--clr-two), 1);
  color: rgba(var(--clr-two), 1);
  transition: all ease 500ms;
}
.page label {
  color: rgba(var(--clr-six), 1);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.page .form-check-group .wpcf7-radio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}
.page .form-check-group .wpcf7-radio .wpcf7-list-item {
  width: auto;
  padding: 10px;
  margin: 0 15px;
  border: 1px solid rgba(var(--clr-two), 0.1);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.page .form-check-group .wpcf7-radio .wpcf7-list-item:first-child {
  margin-left: 0;
}
.page .form-check-group .wpcf7-radio .wpcf7-list-item input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(var(--clr-two), 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 10px;
  position: relative;
  z-index: 0;
  transition: border-color 0.3s;
}
.page .form-check-group .wpcf7-radio .wpcf7-list-item input[type=radio]:checked {
  border-color: rgba(var(--clr-two), 1);
  background-color: rgba(var(--clr-two), 0.1);
}
.page .form-check-group .wpcf7-radio .wpcf7-list-item input[type=radio]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: rgba(var(--clr-two), 1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
  cursor: pointer;
}
.page .form-check-group .wpcf7-radio .wpcf7-list-item input[type=radio]:checked::after {
  opacity: 1;
}
.page .form-check-group .wpcf7-radio .wpcf7-list-item label {
  margin: 0;
  font-weight: normal;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 0;
}
.page .form-check-group .wpcf7-radio .wpcf7-list-item:has(input:checked) {
  background-color: rgba(var(--clr-two), 0.1);
  border: 1px solid rgba(var(--clr-two), 1);
  color: rgba(var(--clr-two), 1);
}
.page .hint {
  color: rgba(var(--clr-six), 0.6);
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-style: italic;
}
.page textarea {
  min-height: 270px;
  padding: 20px !important;
}
.page .wpcf7 form .wpcf7-response-output {
  padding: 20px;
  color: white;
  border-radius: 5px;
  border: 1px solid rgba(var(--clr-five), 1) !important;
}
.page .page-content h1, .page .page-content h2, .page .page-content h3, .page .page-content h4, .page .page-content h5, .page .page-content h6 {
  color: white;
  margin-bottom: 20px;
}
.page .page-content p {
  color: rgba(var(--clr-six), 1);
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 20px;
}

@media (max-width: 575.98px) {
  .header .navbar .navbar-toggler {
    background-color: rgba(var(--clr-two), 1);
  }
  .header .navbar .navbar-nav .nav-item .nav-link {
    text-align: center;
  }
  .intro::after {
    content: none;
  }
  .intro .name {
    font-size: 6rem;
  }
  .intro .wrapper {
    margin-top: 0;
    display: block;
  }
  .intro .wrapper .heading {
    width: 100%;
  }
  .intro .wrapper .heading h3 {
    font-size: 2rem;
  }
  .intro .wrapper .text {
    margin-top: 30px;
    width: 100%;
  }
  .intro .wrapper .text p {
    font-size: 1.2rem;
  }
  .latest-work .heading h2 {
    font-size: 4rem;
  }
  .latest-work .heading .wrapper {
    bottom: 0;
  }
  .latest-work .filter-container {
    display: block;
    margin: 0 auto;
    padding: 0;
  }
  .latest-work .filter-container .filtr-item {
    width: 100%;
  }
  .about .heading h2 {
    font-size: 4rem;
  }
  .about .heading .wrapper {
    bottom: 0;
  }
  .about .content {
    display: block;
  }
  .about .content .head {
    width: 100%;
    margin-bottom: 30px;
  }
  .about .content .head h3 {
    font-size: 3rem;
  }
  .about .content .text {
    width: 100%;
    margin-left: 0;
  }
  .testimonials .heading h2 {
    font-size: 4rem;
  }
  .testimonials .heading .wrapper {
    bottom: 0;
  }
  .cta .wrapper {
    display: block;
  }
  .cta .wrapper .head {
    width: 100%;
  }
  .cta .wrapper .head h2 {
    font-size: 4rem;
  }
  .cta .wrapper .text {
    width: 100%;
  }
  .footer .foot-block {
    margin-bottom: 30px;
  }
  .top-page .wrapper {
    display: block;
  }
  .top-page .wrapper .heading {
    width: 100%;
    margin-bottom: 30px;
  }
  .top-page .wrapper .email {
    width: 100%;
    justify-content: flex-start;
  }
  .page .filter-container {
    display: block;
    margin: 0 auto;
    padding: 0;
  }
  .page .filter-container .filtr-item {
    width: 100%;
  }
  .page .form-check-group {
    display: block;
  }
  .page .form-check-group .wpcf7-radio .wpcf7-list-item {
    margin: 10px auto;
  }
  .page .heading h2 {
    font-size: 4rem;
  }
  .page .heading .wrapper {
    bottom: 0;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .header .navbar .navbar-toggler {
    background-color: rgba(var(--clr-two), 1);
  }
  .header .navbar .navbar-nav .nav-item .nav-link {
    text-align: center;
  }
  .intro::after {
    content: none;
  }
  .intro .name {
    font-size: 6rem;
  }
  .intro .wrapper {
    margin-top: 0;
    display: block;
  }
  .intro .wrapper .heading {
    width: 100%;
  }
  .intro .wrapper .heading h3 {
    font-size: 2rem;
  }
  .intro .wrapper .text {
    margin-top: 30px;
    width: 100%;
  }
  .intro .wrapper .text p {
    font-size: 1.2rem;
  }
  .latest-work .heading h2 {
    font-size: 4rem;
  }
  .latest-work .heading .wrapper {
    bottom: 0;
  }
  .latest-work .filter-container {
    display: block;
    margin: 0 auto;
    padding: 0;
  }
  .latest-work .filter-container .filtr-item {
    width: 100%;
  }
  .about .heading h2 {
    font-size: 4rem;
  }
  .about .heading .wrapper {
    bottom: 0;
  }
  .about .content {
    display: block;
  }
  .about .content .head {
    width: 100%;
    margin-bottom: 30px;
  }
  .about .content .head h3 {
    font-size: 3rem;
  }
  .about .content .text {
    width: 100%;
    margin-left: 0;
  }
  .testimonials .heading h2 {
    font-size: 4rem;
  }
  .testimonials .heading .wrapper {
    bottom: 0;
  }
  .cta .wrapper {
    display: block;
  }
  .cta .wrapper .head {
    width: 100%;
  }
  .cta .wrapper .head h2 {
    font-size: 4rem;
  }
  .cta .wrapper .text {
    width: 100%;
  }
  .footer .foot-block {
    margin-bottom: 30px;
  }
  .top-page .wrapper {
    display: block;
  }
  .top-page .wrapper .heading {
    width: 100%;
    margin-bottom: 30px;
  }
  .top-page .wrapper .email {
    width: 100%;
    justify-content: flex-start;
  }
  .page .filter-container {
    display: block;
    margin: 0 auto;
    padding: 0;
  }
  .page .filter-container .filtr-item {
    width: 100%;
  }
  .page .form-check-group {
    display: block;
  }
  .page .form-check-group .wpcf7-radio .wpcf7-list-item {
    margin: 10px auto;
  }
  .page .heading h2 {
    font-size: 4rem;
  }
  .page .heading .wrapper {
    bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .header .navbar .navbar-toggler {
    background-color: rgba(var(--clr-two), 1);
  }
  .header .navbar .navbar-nav .nav-item .nav-link {
    text-align: center;
  }
  .intro::after {
    content: none;
  }
  .intro .name {
    font-size: 6rem;
  }
  .intro .wrapper {
    margin-top: 0;
    display: block;
  }
  .intro .wrapper .heading {
    width: 100%;
  }
  .intro .wrapper .heading h3 {
    font-size: 2rem;
  }
  .intro .wrapper .text {
    margin-top: 30px;
    width: 100%;
  }
  .intro .wrapper .text p {
    font-size: 1.2rem;
  }
  .latest-work .heading h2 {
    font-size: 4rem;
  }
  .latest-work .heading .wrapper {
    bottom: 0;
  }
  .latest-work .filter-container {
    display: block;
    margin: 0 auto;
    padding: 0;
  }
  .latest-work .filter-container .filtr-item {
    width: 100%;
  }
  .about .heading h2 {
    font-size: 4rem;
  }
  .about .heading .wrapper {
    bottom: 0;
  }
  .about .content {
    display: block;
  }
  .about .content .head {
    width: 100%;
    margin-bottom: 30px;
  }
  .about .content .head h3 {
    font-size: 3rem;
  }
  .about .content .text {
    width: 100%;
    margin-left: 0;
  }
  .testimonials .heading h2 {
    font-size: 4rem;
  }
  .testimonials .heading .wrapper {
    bottom: 0;
  }
  .cta .wrapper {
    display: block;
  }
  .cta .wrapper .head {
    width: 100%;
  }
  .cta .wrapper .head h2 {
    font-size: 4rem;
  }
  .cta .wrapper .text {
    width: 100%;
  }
  .footer .foot-block {
    margin-bottom: 30px;
  }
  .top-page .wrapper {
    display: block;
  }
  .top-page .wrapper .heading {
    width: 100%;
    margin-bottom: 30px;
  }
  .top-page .wrapper .email {
    width: 100%;
    justify-content: flex-start;
  }
  .page .filter-container {
    display: block;
    margin: 0 auto;
    padding: 0;
  }
  .page .filter-container .filtr-item {
    width: 100%;
  }
  .page .form-check-group {
    display: block;
  }
  .page .form-check-group .wpcf7-radio .wpcf7-list-item {
    margin: 10px auto;
  }
  .page .heading h2 {
    font-size: 4rem;
  }
  .page .heading .wrapper {
    bottom: 0;
  }
}/*# sourceMappingURL=theme-en.css.map */