/*
Theme Name: Genesis Block Theme
Theme URI: https://github.com/studiopress/genesis-block-theme/
Author: StudioPress
Author URI: https://www.studiopress.com/
Description: A beautifully-simple yet powerful WordPress theme that integrates perfectly with the block editor and the Genesis Blocks plugin. Start building amazing websites with blocks today! Install the Genesis Blocks plugin to add even more page-building blocks such as testimonials, sharing icons, notices, call to actions, buttons and more.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: genesis-block-theme
Domain Path: /languages/
Tags: one-column, featured-images, theme-options, custom-background, custom-colors, custom-logo, custom-menu, editor-style, translation-ready, footer-widgets, full-width-template, blog, sticky-post, threaded-comments, wide-blocks
Requires at least: 5.0
Requires PHP: 7.1
*/
/* --------------------------------------------------------------
Reset
-------------------------------------------------------------- */
/* stylelint-disable selector-list-comma-newline-after  */
/* @import url('.css/font.css'); */

///////Changes///////

@font-face {
    font-family: 'Roc Grotesk';
    src: url('./fonts/RocGrotesk-Bold.woff2') format('woff2'),
        url('./fonts/RocGrotesk-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roc Grotesk';
    src: url('./fonts/RocGrotesk-Regular.woff2') format('woff2'),
        url('./fonts/RocGrotesk-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Whirly Birdie Wide';
    src: url('./font/sWhirlyBirdie-WideBold.woff2') format('woff2'),
        url('./fonts/WhirlyBirdie-WideBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


///////End Changes///////



* {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;

}

body,
input,
textarea,
button {
  font-size: 16px;
  color: #4e4e4e;
}

button:focus {
  box-shadow: none !important;
  outline: none;
  border: none;
}

input:focus {
  box-shadow: none !important;
  outline: none;
}

textarea:focus {
  box-shadow: none !important;
  outline: none;
}

body {
  overflow-x: hidden;
  font-family: 'Roc Grotesk';
  background-color: #12141D;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #292929;
  margin: 0;
}

h1 {
  font-size: 34px;
  color: #262b6a;
  font-weight: 400;
}

h2 {
  font-size: 28px;
  color: #292929;
  font-weight: 400;
}

h3 {
  font-size: 27px;
  color: #262b6a;
  font-weight: 700;
}

h4 {
  font-size: 22px;
  color: #292929;
}

h5 {
  font-size: 15px;
  color: #262b6a;
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #262b6a;
  outline: none;
  transition: 0.3s all ease;
}

a:hover,
a:focus {
  text-decoration: none;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.bg-purple {
  background-color: #710068;
  color: #fff !important;
  border-radius: 4px;
}

/* Container */
.container {
  padding: 0 160px;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}

/* Container End */
.mobile-menu {
  display: none;
}

header {
  position: relative;
  padding: 40px 0 10px;
}

header .navbar {
  width: 100%;
  padding: 0;
}
header .logo {
  font-family: 'Whirly Birdie Wide';
  font-size: 49px;
  line-height: 59px;
  font-weight: 700;
  color: #fff;
}
header .logo span{
  color: #1EBD92;
}
.navbar-nav {
  width: 100%;
  justify-content: flex-end;
}

.nav-item:nth-child(4) {
  margin-left: auto;
}

header .nav-item {
  margin-right: 10px;
  border-radius: 4px !important;
  display: flex;
  align-items: center;

}

.nav-item.active {
  color: #000;
}

header .nav-link {
  font-size: 20px;
  line-height: 33px;
  font-weight: 400;
  color: #fff;
}

header .nav-link:hover {
  color: #1EBD92;
}

.nav-item.bg-purple {
  padding: 4px 15px !important;
  background-color: #710068;
  color: #fff !important;
}

.bg-purple .nav-link {
  color: #fff;
}

header.scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 999;
  box-shadow: 0px 2px 11px 0px #05182726;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
  outline: none;
}

.hamburger {
  cursor: pointer;
  margin: auto;
  transform: rotate(0);
  transition: .5s ease-in-out;
  -webkit-transform: rotate(0);
  width: 26px;
  position: relative;
  z-index: 999;
}

.hamburger div {
  background: #fff;
  border-radius: 9px;
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  transform: rotate(0);
  transition: .25s ease-in-out;
  -webkit-transform: rotate(0);
  width: 100%;
}

.hamburger div:nth-child(1) {
  top: 0;
}

.hamburger div:nth-child(2),
.hamburger div:nth-child(3) {
  top: 8px;
}

.hamburger div:nth-child(4) {
  top: 16px;
}

.hamburger.open div:nth-child(1),
.hamburger.open div:nth-child(4) {
  left: 50%;
  top: 18px;
  width: 0%;
}

.hamburger.open div:nth-child(2) {
  background: #bbb;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger.open div:nth-child(3) {
  background: #bbb;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*===============================
        Banner-wrapper
===============================*/
.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(100vh - 95px);
}

/*===============================
        banner-info
===============================*/
.banner-info {
  max-width: 65%;
  width: 100%;
}
.typed-cursor {
  display: none !important;
}
.hero-text {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-size: 70px;
}
.banner-info h1 {
  font-size: 50px;
  line-height: 94px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}

.banner-info h1 span {
  background-color: #fff;
  display: inline-block;
  margin: 0 20px;
  padding: 0 30px;
  color: #12141D;
}

.banner-info p {
  font-size: 20px;
  line-height: 33px;
  font-weight: 400;
  color: #9A9A9A;
  max-width: 61%;
}

.banner-info a {
  display: inline-block;
  font-size: 34px;
  line-height: 65px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  border-bottom: 1px solid #1EBD92;
  padding-bottom: 6px;
  margin-top: 140px;
}

/*===============================
        Skill-wrapper
===============================*/

.skills-wrap {
  max-width: 35%;
  width: 100%;
}

#skills-wrapper {
  margin: 0 20px 0 40px;
  height: 480px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

@media (max-width: 1400px) {
  #skills-wrapper {
    height: 440px;
  }
}

@media (max-width: 1179px) {
  #skills-wrapper {
    height: 340px;
  }
}

@media (max-width: 992px) {
  #skills-wrapper {
    width: 600px;
    margin: 0 auto 50px;
  }
}

@media (max-width: 768px) {
  #skills-wrapper {
    height: 300px;
    margin: 0 0 20px;
  }
}

#skills-wrapper .skill-wrapper {
  position: absolute;
  overflow: hidden;
}

#skills-wrapper .skill-wrapper .skill {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 30rem;
  height: 40rem;
  font-size: 9.5rem;
  background-color: #000e4a;
  background-color: #e8f3ff;
}

#skills-wrapper .skill-wrapper .skill.skill__large {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background-size: 620px;
  background-position: -110px -50px;
  transition: 0.8s all ease;
}

#skills-wrapper .skill-wrapper .skill.skill__large {
  background-image: url(./images/holographic.webp);
  background-position: calc(6.96637% + 200px) 11.8107%;
  border-radius: 20px;
}

#skills-wrapper .skill-wrapper .skill-logo  {
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 1179px) {
  #skills-wrapper .skill-wrapper .skill.skill__large {
    width: 70px;
    height: 70px;
    border-radius: 10px;
  }
}

#skills-wrapper .skill-wrapper .skill.skill--small {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: rgba(242, 247, 251, 8%);
  border: 1px solid rgba(242, 247, 251, 0.25);
  transition: 240ms;
  display: flex;
  position: relative;
  justify-content: center;
}

@media (max-width: 1179px) {
  #skills-wrapper .skill-wrapper .skill.skill--small {
    width: 45px;
    height: 45px;
    border-radius: 8px;
  }
}

#skills-wrapper .skill-wrapper .skill.skill--small .skill--small__logo {
  padding: 10px;
  transition: 240ms;
  fill: #f2f7fb;
  color: #f2f7fb;
}

#skills-wrapper .skill-wrapper .skill.skill--small .skill--small__name {
  font-size: 12px;
  position: absolute;
  bottom: 8px;
  opacity: 0;
  transition: 200ms;
}

#skills-wrapper .skill-wrapper .skill.skill--small:hover {
  width: 80px;
  height: 80px;
}

#skills-wrapper .skill-wrapper .skill.skill--small:hover .skill--small__logo {
  width: 26px;
  height: 26px;
  margin-bottom: 20px;
  padding: 0;
}

#skills-wrapper .skill-wrapper .skill.skill--small:hover .skill--small__name {
  opacity: 1;
}

#skills-wrapper .skill-wrapper .skill-logo {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

#skills-wrapper .skill-wrapper .skill-logo .skill-logo__image {
  width: 100%;
  height: 100%;
  padding: 15px;
}

#skills-wrapper #skill-php {
  left: 10%;
  top: 9%;
}

#skills-wrapper #skill-js {
  right: 11%;
  bottom: 41%;
}

#skills-wrapper #skill-dotnet {
  bottom: 5%;
  left: 25%;
}

#skills-wrapper #skill-css3 {
  left: 43%;
  top: 0;
}

#skills-wrapper #skill-html {
  top: 13%;
  right: 18%;
}

#skills-wrapper #skill-wordpress {
  right: 42%;
  top: 20%;
}

#skills-wrapper #skill-rest-api {
  top: 50%;
  left: 40%;
}

#skills-wrapper #skill-ajax {
  top: 40%;
  left: 16%;
}

#skills-wrapper #skill-less {
  bottom: 5%;
  left: 3%;
}

#skills-wrapper #skill-jquery {
  bottom: 26%;
  right: 80%;
}
#skills-wrapper #skill-sass {
  bottom: 10%;
  right: 30%;
}

#skills-wrapper #skill-angular {
  bottom: 22%;
  right: 13%;
}

/*===============================
        Featured-Work
===============================*/
.featured-work-wrapper {
  background-color: #fff;
  padding: 150px 0;
  border-radius: 80px;
  width: 90%;
  margin: 0 auto;
  transition: 2s all ease;
  transition-delay: 0.3s;
}

.featured-work-wrapper.animate {
  width: 100%;
}

.featured-work-inner {}

.heading {
  padding-left: 160px;
}

.heading h3 {
  font-size: 80px;
  line-height: 90px;
  font-weight: 700;
  color: #262626;
}

.heading p {
  font-size: 80px;
  line-height: 90px;
  font-weight: 400;
  color: #B6B6B6;
}

.work-slider {
  margin-top: 110px;
}
.work-slider .slick-slide img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 780px;
  background-color: #fbfbfb;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-filter 250ms;
  transition: filter 250ms;
  transition: filter 250ms,-webkit-filter 250ms;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: calc(100% - 50px);
}
/* .work-slider .slick-slide .work-card img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
} */

.work-slider .slick-slide .work-card:hover img {
  -webkit-filter: grayscale(10%);
  filter: grayscale(10%);
}
.work-slider .slick-list {
  padding-left: 160px;
}

.work-slider .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-slider .slick-prev,
.work-slider .slick-next {
  right: 190px;
  background: transparent;
  width: 60px;
  height: 60px;
  top: -120px;
  left: auto;
  border: 1px solid #181818;
  z-index: 2;
}

.work-slider .slick-next {
  right: 110px;
}

.slick-prev:before,
.slick-next:before {
  content: "";
  background-image: url(./images/down-arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 10px;
  opacity: 1;
  display: inline-block;
}

.slick-next:before {
  transform: rotate(180deg);
}

.work-card {}

.work-card h4 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 700;
  color: #262626;
  margin-bottom: 20px;
  margin-top: 60px;
}

.work-card p {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  color: #262626;
  width: 93%;
  overflow: hidden;
  white-space: nowrap;
}

/*===============================
        stack-wrapper
===============================*/
.stack-wrapper {
  padding: 150px 0;
}

.stack-info {
  margin-bottom: 100px;
}

.switch-row {
  display: none;
}

.switch-row.visible {
  display: flex;
}

.stack-info:last-child {
  margin-bottom: 0;
}

.stack-heading {
  margin-bottom: 40px;
}

.stack-heading h4 {
  font-size: 44px;
  line-height: 50px;
  font-weight: 700;
  color: #1EBD92;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.custom-switch {
  display: flex;
  padding-left: 65px;
  min-height: 2.5rem;
}

.custom-switch .custom-control-label::before {
  width: 3.75rem;
  height: 2rem;
  border-radius: 1.5rem;
}
.custom-control-label {
  cursor: pointer;
}
.custom-switch .custom-control-label::after {
  width: calc(2rem - 4px);
  height: calc(2rem - 4px);
  border-radius: 1.5rem;
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
  background-color: #fff;
  -webkit-transform: translateX(1.75rem);
  transform: translateX(1.75rem);
}
.custom-control-input:checked~.custom-control-label::before{
  background-color: #1EBD92;
  border-color: #1EBD92;
}
.stack-heading p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #9A9A9A;
}

.stack-card {
  height: 135px;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 0 25px;
  background-color: #1E212C;
  border-radius: 19px;
}

.stack-card h5 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
}

/*===============================
        portfolio
===============================*/
.portfolio-wrapper {}

.portfolio-card {}

.portfolio-card-row {
  display: flex;
  flex-wrap: wrap;
}

.portfolio-info {
  padding: 110px 30px 110px 160px;
  background-color: #fff;
  width: 50%;
}

.portfolio-info h5 {
  font-size: 58px;
  line-height: 66px;
  font-weight: 700;
  color: #262626;
  margin-bottom: 40px;
}

.portfolio-info p {
  font-size: 28px;
  line-height: 40px;
  font-weight: 400;
  color: #262626;
}

.portfolio-info span {
  font-size: 36px;
  line-height: 42px;
  font-weight: 700;
  color: #262626;
  margin-top: 50px;
  display: block;
}

.portfolio-img {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E4E4E4;
  width: 50%;
}

/*===============================
       about-wrapper
===============================*/
.about-wrapper {
  background-color: #fff;
  padding: 150px 0;
}

.about-inner {
  padding-left: 80px;
}

.about-inner h3 {
  font-size: 82px;
  line-height: 90px;
  font-weight: 700;
  color: #262626;
  margin-bottom: 40px;
}

.about-inner p {
  font-size: 28px;
  line-height: 40px;
  font-weight: 400;
  color: #262626;
  margin-bottom: 40px;
  max-width: 80%;
  width: 100%;
}

.about-inner p:last-child {
  margin-bottom: 0;
}

/*===============================
       Footer
===============================*/
footer {
  padding: 150px 0 0;
}

.footer-info {
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.footer-info h5 {
  font-size: 44px;
  line-height: 50px;
  font-weight: 700;
  color: #1EBD92;
  margin-bottom: 20px;
}

.footer-info p {
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  color: #9A9A9A;
  margin-bottom: 30px;
  max-width: 80%;
  width: 100%;
}

.contact-form {
  max-width: 536px;
  width: 100%;
  margin: 0 auto;
  background-color: #1E212C;
  border-radius: 40px;
  padding: 30px;
}

.contact-form h5 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.contact-form p {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    color: #9A9A9A;
    margin-bottom: 20px;
    padding-bottom: 20px;
    /* border-bottom: solid 1px #9A9A9A !important; */
    width: 100%;
}


.contact-form .form-control {
  height: 68px;
  background-color: #171921;
  border-radius: 20px;
  margin-bottom: 14px;
  border-color: #171921;
  color: #fff;
}

/* .contact-form hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-bottom: 1px solid #9A9A9A;
} */

.contact-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 68px;
  background-color: #1EBD92;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  border-radius: 8px;
  margin-top: 10px;
  color: #fff;
  border: none;
}

/* Contact form */

.wpcf7 ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: none;
}

.wpcf7 .screen-reader-response{
  display: none !important;
  border:none !important;
}
/* .wpcf7-form-control-wrap #your-phone {
  width: 50%;
} */
/* .wpcf7-form-control-wrap #your-phone {
  display: inline-block !important;
  width: 48% !important;
  
} */

input.wpcf7-form-control.wpcf7-text.wpcf7-tel.wpcf7-validates-as-required.wpcf7-validates-as-tel.form-control {
  width: 48% !important;
  display: inline-block !important;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-email.wpcf7-validates-as-required.wpcf7-validates-as-email.form-control {
  width: 48% !important;
  display: inline-block !important;
  margin-right: 18px !important;
}
/* .wpcf7-form-control-wrap #your-email {
  display: inline-block !important;
  width: 48% !important;
  margin-right: 18px !important;
} */
.wpcf7-form p{
  border: none
}
.wpcf7-form hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid #9A9A9A;
}

span.wpcf7-not-valid-tip {
  display: block !important;
  padding: 10px 0px 10px 10px !important; 
}



.copy-right {
  text-align: center;
  margin-top: 120px;
  padding: 20px 0 30px;
}

.copy-right p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #707070;
}

footer .mail {
  font-size: 60px;
  color: #1EBD92;
  font-weight: 700;
}

/*-------------Media Querries-----------------*/

/*------------- 1800px -----------------*/
@media only screen and (max-width:1800px) {
  .banner-info h1 {
    font-size: 52px;
}
}
/*------------- 1700px -----------------*/
@media only screen and (max-width:1700px) {

  .banner-info h1 {
    font-size: 54px;
  }
}
/*------------- 1600px -----------------*/
@media only screen and (max-width:1600px) {
  .container {
    padding: 0 50px;
  }

  .banner-info h1 {
    font-size: 47px;
  }

  .work-slider .slick-list {
    padding-left: 50px;
  }

  .heading {
    padding-left: 50px;
  }
  
  .banner-info p {
    max-width: 100%;
  }
  .banner-info a {
    margin-top: 50px;
}
.banner-info h1 {
 
  margin-bottom: 0px;
}
}

/*------------- 1400px -----------------*/
@media only screen and (max-width:1400px) {

  .banner-info h1,
  .heading h3,
  .heading p,
  .stack-heading h4,
  .portfolio-info h5,
  .about-inner h3,
  .footer-info h5 {
    font-size: 43px;
  }

  .portfolio-info {
    padding: 110px 30px 110px 50px;
  }

  .portfolio-img img {
    width: 70%;
  }

  .banner-info h1 span {
    margin: 0 10px;
  }
}

/*------------- 1199px -----------------*/
@media only screen and (max-width:1199px) {

  #skills-wrapper #skill-wordpress {
    right: 40% !important;
    top: 17% !important;
  }
  #skills-wrapper #skill-sass {
    bottom: 5% !important;
    right: 25% !important;
  }
  #skills-wrapper .skill-wrapper .skill.skill--small:hover {
  width: 60px !important;
  height: 60px !important;
  }
  .banner-info h1,
  .heading h3,
  .heading p,
  .stack-heading h4,
  .portfolio-info h5,
  .about-inner h3,
  .footer-info h5 {
    font-size: 33px;
    line-height: 50px;
  }

  .banner-info a,
  .work-card h4{
    font-size: 28px;
    line-height: 36px;
  }
  footer .mail {
    font-size: 40px;
    line-height: 36px;
}

  .work-card p,
  .portfolio-info p,
  .about-inner p,
  .stack-card h5 {
    font-size: 20px;
    line-height: 30px;
  }

  .featured-work-wrapper,
  .stack-wrapper,
  .about-wrapper {
    padding: 100px 0;
  }

  footer {
    padding: 100px 0 0;
  }
  header .logo {
    font-size: 40px;
}
}

/*------------- 1024px -----------------*/
@media only screen and (max-width:1024px) {
}

/*------------- 991px -----------------*/

@media only screen and (max-width:991px) {
  
  #skills-wrapper #skill-wordpress {
    right: 40% !important;
    top: 17% !important;
  }
  #skills-wrapper #skill-sass {
    bottom: 5% !important;
    right: 25% !important;
  }
  #skills-wrapper .skill-wrapper .skill.skill--small:hover {
  width: 60px !important;
  height: 60px !important;
  }
  
  .banner-inner{
    flex-wrap: wrap;
  }

  header {
    overflow-x: hidden;
  }

  button.navbar-toggler {
    margin-right: -25px;
  }

  .about .banner_info h3 {
    margin-bottom: 30px;
  }
  .mobile-menu-wrap {
    display: flex;
    width: 80%;
    z-index: 1337;
    position: fixed;
    padding: 0 15px;
    bottom: 20px;
    left: 50%;
    border-radius: 14px;
    background: rgba(8, 8, 9, .8);
    border: 1px solid rgba(242, 247, 251, .14);
    backdrop-filter: blur(16px);
    padding: 10px 12px;
    transform: translateX(-50%);
  }

  .mobile-menu {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }

  .mobile-menu .nav-item a {
    padding: 6px 10px;
    background: #1b1b1f;
    border: 1px solid rgba(242, 247, 251, .16);
    border-radius: 8px;
    display: flex;
    font-size: 16px;
  }

  .navbar-collapse,
  .navbar-toggler {
    display: none !important;
  }

  .banner-info {
    max-width: 100%;
    width: 100%;
  }

  .skills-wrap {
    max-width: 100% !important;
  }

  .banner-info a {
    margin-top: 30px;
  }

  .footer-info img {
    width: 70%;
    margin-bottom: 40px;
  }

  .about-inner p {
    margin-bottom: 30px;
  }

  .about-inner {
    padding: 0;
  }

  .portfolio-info {
    padding: 50px;
  }

  .work-slider {
    margin-top: 50px;
  }

  .featured-work-wrapper,
  .stack-wrapper,
  .about-wrapper {
    padding: 70px 0;
  }

  footer {
    padding: 70px 0 0;
  }

  .copy-right {
    margin-top: 70px;
  }

 

  .banner-wrapper {
    padding: 20px 0;
  }

  .work-slider .slick-prev,
  .work-slider .slick-next {
    display: none !important;
  }

  .featured-work-wrapper {
    border-radius: 50px;
  }
  footer .container{
    padding: 0 15px;
  }
  .contact-form{
    max-width: 100%;
  }
  .footer-info {
    padding-left: 0;
  }

  footer .mail {

    margin-bottom: 30px;
  }
  header .logo {
    font-size: 30px;
    line-height: 40px;
  }

}

/*------------- Tablet Screen --------*/

/*------------- 767px -----------------*/
@media only screen and (max-width:767px) {
  #skills-wrapper #skill-wordpress {
    right: 40% !important;
    top: 17% !important;
  }
  #skills-wrapper #skill-sass {
    bottom: 5% !important;
    right: 25% !important;
  }
  #skills-wrapper .skill-wrapper .skill.skill--small:hover {
  width: 60px !important;
  height: 60px !important;
  }
  
  .about-inner p{
      max-width: 100%;
  }
  
  
  .portfolio-info {
    width: 100%;
    padding: 50px 30px;
  }

  .portfolio-img {
    width: 100%;
    height: 432px;
  }

  .portfolio-card-row:last-child {
    flex-direction: column-reverse;
  }

  .banner-info h1,
  .heading h3,
  .heading p,
  .stack-heading h4,
  .portfolio-info h5,
  .about-inner h3,
  .footer-info h5 {
    font-size: 24px;
    line-height: 32px;
  }

  .banner-info a {
    font-size: 26px;
  }

  .portfolio-info span,
  .contact-form h5 {
    font-size: 26px;
  }

  .contact-form button,
  .contact-form .form-control {
    height: 41px;
    font-size: 18px;
  }

  .mobile-menu .nav-item a {
    padding: 6px 6px;
  }

  .stack-card {
    height: 100px;
  }

  .custom-switch {
    min-height: 1.5rem;
  }

  .custom-switch .custom-control-label::before {
    width: 2.75rem;
    height: 1.5rem;
  }

  .custom-switch .custom-control-label::after {
    width: calc(1.5rem - 4px);
    height: calc(1.5rem - 4px);
  }

  .custom-switch .custom-control-input:checked~.custom-control-label::after {
    -webkit-transform: translateX(1.3rem);
    transform: translateX(1.3rem);
  }

  .work-card h4 {
    font-size: 20px;
    line-height: 26px;
    margin: 20px 0 10px;
  }

  .banner-info p,
  .footer-info p {
    font-size: 18px;
    line-height: 24px;
  }
  .footer-info p{
    margin-bottom: 15px;
  }
  


}

/*------------- 660px -----------------*/
@media only screen and (max-width:640px) {
  .mobile-menu .nav-item a {
    padding: 6px 6px;
    background: #1b1b1f;
    border: 1px solid rgba(242, 247, 251, .16);
    border-radius: 8px;
    display: flex;
    font-size: 14px;
  }
  #skills-wrapper #skill-wordpress {
    right: 40% !important;
    top: 17% !important;
  }
  #skills-wrapper #skill-sass {
    bottom: 5% !important;
    right: 25% !important;
  }
  #skills-wrapper .skill-wrapper .skill.skill--small:hover {
  width: 60px !important;
  height: 60px !important;
  }
  
  

input.wpcf7-form-control.wpcf7-text.wpcf7-tel.wpcf7-validates-as-required.wpcf7-validates-as-tel.form-control, input.wpcf7-form-control.wpcf7-text.wpcf7-email.wpcf7-validates-as-required.wpcf7-validates-as-email.form-control {
    width: 100% !important;
} 

}

/*------------- 480px -----------------*/
@media only screen and (max-width:480px) {
  .container {
    padding: 0 15px;
  }

  .banner-info h1,
  .heading h3,
  .heading p,
  .stack-heading h4,
  .portfolio-info h5,
  .about-inner h3,
  .footer-info h5 {
    font-size: 22px;
    line-height: 30px;
  }

  .banner-info h1 span {
    margin: 0 5px;
    padding: 0 15px;
  }

  .banner-info a {
    font-size: 20px;
  }

  .mobile-menu-wrap {
    width: 95%;
  }

  .work-card p,
  .portfolio-info p,
  .about-inner p,
  .stack-card h5 {
    font-size: 18px;
    line-height: 24px;
  }

  .portfolio-info h5 {
    margin-bottom: 20px;
  }

  .portfolio-info span {
    margin-top: 20px;
  }
  footer .mail {
    font-size: 20px;
    line-height: 26px;
}
}

/*------------- 425px -----------------*/
@media only screen and (max-width:425px) {}

/*------------- 330px -----------------*/
@media only screen and (max-width:330px) {}
