@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
/* Global Rules */
:root {
    --main-color:  #FF7E39;
    --section-padding: 6.1rem;
    --content-padding: 2rem;
    --hover:   #FF7E39;
    --main-transition: all .7s ease-in;

    --main-transition: 0.3s;
    --main-padding-top: 100px;
    --main-padding-bottom: 100px;
    --section-background: #ececec;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #191919;

}


ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


a {
    text-decoration: none;
    
}
.dots {
    background-image: url("../images/dots.png");
    height: 186px;
    width: 204px;
    background-repeat: no-repeat;
    position: absolute;
  }
  .dots-up {
    top: 200px;
    right: 0;
  }
  .dots-down {
    bottom: 200px;
    left: 0;
  }

/* End Global Rules */

/* Special Components */


.heading {
    padding-bottom: var(--content-padding);
    
}
/* 
.heading h2 {
    color: #ff7e392d;
    font-size: 6.125rem;
} */

.main-title {
    text-transform: uppercase;
    margin: 0 auto 50px;
    border: 2px solid var(--hover);
    color: white ;
    padding: 10px 20px;
    font-size: 30px;
    width: fit-content;
    position: relative;
    z-index: 1;
    transition: var(--main-transition);
    border-radius: 4px;

  }
  .main-title::before,
  .main-title::after {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--main-color);
    position: absolute;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);

  }
  .main-title::before {
    left: -30px;
  }
  .main-title::after {
    right: -30px;
  }
  .main-title:hover::before {
    z-index: -1;
    animation: left-move 0.5s linear forwards;
  }
  .main-title:hover::after {
    z-index: -1;
    animation: right-move 0.5s linear forwards;
  }
  .main-title:hover {
    color: white;
    border: 2px solid var(--hover);
    transition-delay: 0.5s;
  }

  
  @keyframes left-move {
    50% {
      left: 0;
      width: 12px;
      height: 12px;
    }
    100% {
      left: 0;
      border-radius: 0;
      width: 50%;
      height: 100%;
    }
  }
  @keyframes right-move {
    50% {
      right: 0;
      width: 12px;
      height: 12px;
    }
    100% {
      right: 0;
      border-radius: 0;
      width: 50%;
      height: 100%;
    }
  }
  
  /* End Animation */
  


.heading h3 {
    font-size: 2.5rem;
    color: white;
}

.heading h3::after {
    position: absolute;
    content: "";
    bottom: -10px;
    left: 50%;
    height: 3px;
    width: 50%;
    transform: translateX(-50%);
    background-color: var(--main-color);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.heading h3:hover::after {
    width: 100%;
}


/* Navbar Section */
.navbar {
    background-color: #191919;
}

@font-face {
  font-family: customfont;
  src:url(/Fonts/bernardo\ moda\ contrast.ttf);
 }

.navbar .navbar-brand{
    color: #FF7E39;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 24px;
    font-family: customfont !important;
}


.navbar ul li a {
    position: relative;
    overflow: hidden;
    transition: var(--main-transition);
  }

  .navbar ul li a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--hover);
    bottom: 0;
    left: -100%;
    transition: var(--main-transition);
    -webkit-transition: var(--main-transition);
    -moz-transition: var(--main-transition);
    -ms-transition: var(--main-transition);
    -o-transition: var(--main-transition);
  }
  
  .navbar ul li a:hover::before {
    left: 0%;
  }

.nav-item,
.social-icons a {
    padding-left: 0.9rem;
}

.nav-item .nav-link,
.social-icons i {
    font-size: 1rem;
    color: white;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}


.social-icons .fa-linkedin {
    color: whitesmoke ;
}

.social-icons .fa-facebook-f {
    color: #0d6efd;
}

.social-icons .fa-instagram {
    color: transparent;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-background-clip: text;
}

.nav-item .nav-link.active:hover,
.nav-item .nav-link.active,
.nav-item .nav-link:hover,
.social-icons i:hover,
.navbar-toggler-icon {
    color: var(--hover);
}



.navbar-toggler {
    padding: 5px 5px;
    border: 1px solid var(--main-color);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    height: 100%;
    font-size: 25px;
}


/* Carousel Customize  */

.bg-1 {
    background-image: url(../images/slideshow-1.jpg);
}

.bg-2 {
    background-image: url(../images/slideshow-2.jpg);
}

.bg-3 {
    background-image: url(../images/slideshow-3.jpg);
}

.bg-1,
.bg-2,
.bg-3 {
    background-size: cover;
}

.carousel-caption {
    top: 63%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.carousel-caption h1 {
    font-size: 2.5rem;
    text-transform: capitalize;
    letter-spacing: 2px;
    line-height: 1.1;
    font-weight: 800;
}

.carousel-caption h1 span {
    color: var(--main-color);
}


.carousel-control-next,
.carousel-control-prev {
    bottom: unset;
    right: unset;
    border: 2px solid white;
    padding: 5px 5px 0 5px;
}

.carousel-control-next {
    top: 56%;
}

.carousel-indicators {
    bottom: 14%;
}

.carousel-indicators button {
    width: 100px !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }



    .mg-top {
        margin-top: 1rem;
    }

    .carousel-caption {
        bottom: 8%;
    }

    .carousel-caption h5 {
        font-size: 65px;
    }
    .carousel-control-next{
        top: 55%;
    }
    .navbar ul li a:hover::before {
        left: -100%;
      }

}

@media only screen and (max-width: 767px) {
    .navbar-nav {
        text-align: center;
    }

    .mg-top {
        margin-top: 1rem;
    }


    .carousel-caption {
        bottom: 4rem;
    }

    .carousel-caption h5 {
        font-size: 35px;
    }

    .navbar ul li a:hover::before {
        left: -100%;
      }

    .carousel-control-next{
        top: 58%;
    }
}



/*Down Icons */
.landing .down-icon {
    width: 25px;
    height: 50px;
    border: 2px solid white;
    border-radius: 30px;
    position: absolute;
    left: 50%;
    bottom: 7px;
    transform: translateX(-50%);
    z-index: 999;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transition: all .5s;
}

.landing .down-icon:hover,
.landing .down-icon span:hover{
    background: #191919;
    border: 2px solid #191919;

}


.landing .down-icon span {
    width: 8px;
    height: 8px;
    background: var(--hover);
    border-radius: 50%;
    bottom: 4px;
    animation: move 1s infinite;
    -webkit-animation: move 1s infinite;
}


@keyframes move {
    0% {
        bottom: 0;
    }

    5% {
        bottom: 2px;
    }

    10% {
        bottom: 4px;
    }

    15% {
        bottom: 6px;
    }

    20% {
        bottom: 8px;
    }

    25% {
        bottom: 10px;
    }

    30% {
        bottom: 12px;
    }

    35% {
        bottom: 14px;
    }

    40% {
        bottom: 16px;
    }

    45% {
        bottom: 18px;
    }

    50% {
        bottom: 20px;
    }

    55% {
        bottom: 18px;
    }

    60% {
        bottom: 16px;
    }

    65% {
        bottom: 14px;
    }

    70% {
        bottom: 12px;
    }

    75% {
        bottom: 10px;
    }

    80% {
        bottom: 8px;
    }

    85% {
        bottom: 6px;
    }

    90% {
        bottom: 4px;
    }

    95% {
        bottom: 2px;
    }

    100% {
        bottom: 0px;
    }

}

/* About */

.about,
.team,
.info-box {
    padding: var(--section-padding) 0 0 0;
}

.hr-line{
  position: relative;
}

.hr-line::before {
  content: "";
  position: absolute;
  left: 50%;
  background-color: var(--main-color);
  width: 40%;
  bottom: -40px;
  transform: translateX(-50%);
  height: 1px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.hr-line::after {
  content: " ";
  position: absolute;
  border: 2px solid #333;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  bottom: -46px;
  height: 12px;
  width: 12px;
  background-color: white;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}


@media (min-width: 768px) and (max-width: 976px) {
 .about-content{
  padding-top: 24px !important;

  }

}



.about .skills-content .prog-holder {
    width: 100%;
    margin-top: .5rem;
    padding: 1rem 1rem 0 0;
}

.about .skills-content .prog-holder h4 {
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: .9rem;
    color: white;
}

.about .skills-content .prog-holder .prog {
    background-color: #dedadc;
    height: 0.3rem;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.about .skills-content .prog-holder .prog span {
    display: block;
    background-color: var(--main-color);
    height: 100%;
    position: relative;
}

.about .skills-content .prog-holder .prog span::before {
    content: attr(data-progress);
    position: absolute;
    background-color: var(--main-color);
    color: white;
    top: -1.93rem;
    right: -18px;
    width: 2.5rem;
    text-align: center;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.about .skills-content .prog-holder .prog span::after {
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 8px;
    border-color: var(--main-color) transparent transparent transparent;
    right: -7px;
    top: -0.47rem;
}


.about .about-content p {
    font-size: 1.1rem;
}

.about .image img {
    position: relative;
    width: 600px;
    animation: up-and-down 5s linear infinite;
  }
  .about-text{
    width: 60%;
  }
  .about .image{
    width: 40%;
  }

  /* Small */
  @media (max-width: 768px) {
    .about .image {
        display: none;
      }
      .about-text{
        width: 100%;
      }
      .stats .box .number{
        font-size: 40px !important;
      }
      .bg-2{
        background-position: -60px -146px;
      }
  }
  /* Medium */
  @media (max-width: 992px) {
    .about .image {
        display: none;
      }
      .about-text{
        width: 100%;
      }
      .stats .box .number{
        font-size: 40px !important;
      }
      
  }
  


  .about .go-down {
    color: var(--main-color);
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--main-transition);
  }
  .about .go-down:hover {
    color: var(--main-color-alt);
  }
  .about .go-down i {
    animation: bouncing 1.5s infinite;
  }
  @keyframes up-and-down {
    0%,
    100% {
      top: 0;
    }
    50% {
      top: -50px;
    }
  }
  @keyframes bouncing {
    0%,
    10%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }
    40%,
    60% {
      transform: translateY(-15px);
    }
  }


  /* Start Stats */
  .stats {
    padding-top: 50px;
    padding-bottom: var(--main-padding-bottom);
    position: relative;
  }
  .stats::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .stats h2 {
    font-weight: bold;
    font-size: 40px;
    width: fit-content;
    margin: 0 auto 50px;
    position: relative;
  }
  .stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
  .stats .box {
    padding: 15px 7.5px;
    border-radius: 4px;
    color: white;
    text-align: center;
    position: relative;
    opacity: 0.8;
    transition: var(--main-transition);
  }
  .stats .box::before,
  .stats .box::after {
    content: "";
    position: absolute;
    width: 2px;
    background-color: var(--main-color);
    transition: 1s;
    height: 0;
  }
  
  .stats .box::before {
    top: 0;
    right: 0;
  }
  .stats .box::after {
    left: 0;
    bottom: 0;
  }
  .stats .box:hover {
    opacity: 1;
  }
  .stats .box:hover::before,
  .stats .box:hover::after {
    height: 100%;
  }
  .stats .box .number {
    display: block;
    font-size: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .stats .box .text {
    color: var(--main-color);
    font-size: 20px;
    font-weight: bold;
  }
  /* End Stats */

/* About End */


/* Start Services */
.services,.work-steps {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
  }
  .services .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
  }
  .services .box {
    background-color: #ffffff1f;
    box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
    counter-increment: services;
    transition: var(--main-transition);
    position: relative;
    border-radius: 2px;

  }
  .services .box::before {
    content: "";
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    top: -3px;
    background-color: var(--main-color);
    position: absolute;
    width: 0;
    transition: var(--main-transition);
  }
  .services .box:hover {
    transform: translateY(-10px);
  }
  .services .box:hover::before {
    width: 100%;
  }
  .services .box > i {
    margin: 30px auto 20px;
    display: block;
    text-align: center;
    color: #d5d5d5;
  }
  .services .box > h3 {
    text-align: center;
    margin: 20px 0 40px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--main-color);
  }
  .services .box .info {
    padding: 15px;
    position: relative;
    background-color: #ffffff1f;
    text-align: right;
    font-size: 0.9rem;
  }
  .services .box .info::before {
    content: "0" counter(services);
    position: absolute;
    background-color: var(--main-color);
    color: white;
    left: 0;
    top: 0;
    height: 100%;
    width: 80px;
    font-size: 25px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 15px;
  }
  .services .box .info::after {
    content: "";
    position: absolute;
    background-color: #ffffff1f;
    top: 0;
    left: 80px;
    width: 40px;
    height: calc(100% + 0.4px);
    transform: skewX(-30deg);
  }
  .services .box .info a {
    color: var(--main-color);
  }


  .spikes {
    position: relative;
  }
  .spikes::after {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    height: 30px;
    z-index: 1;
    background-image: linear-gradient(135deg, rgb(226, 95, 20) 25%, transparent 25%),
      linear-gradient(225deg, rgb(226, 95, 20) 25%, transparent 25%);
    /* background-size: 30px 30px; */
  }
  /* End Services */


  /* Start Work Steps */
  .work-steps .service-box {
    background-color: #ffffff1f;
  padding: 1.5rem .5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
}

.work-steps .icon-holder {
  margin-bottom: 1rem;
  color: white;
  font-size: 1.5rem;
  padding-top: 1.5rem;
}


.work-steps .icon-holder .icon-circle {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 0 0 10px var(--hover);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;

}

.work-steps .icon-holder .icon-circle:hover {
  background-color: var(--main-color);
  color: white;
  box-shadow: 0 0 0 10px #cee0f8;

}

.service-box h4{
    color: var(--main-color);
}


.work-steps .feat h4 {
  font-size: 1.2rem;
}

.work-steps .feat p {
  font-size: .9rem;
}

/* End */
 /* Start Pricing */
 .pricing {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
  }
  .pricing .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }
  .pricing .box {
    position: relative;
    box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.753), 0 2px 4px 0 rgb(0 0 0 / 12%);
    transition: var(--main-transition);
    background: #ffffff1f;
    text-align: center;
    z-index: 1;
  }
  .pricing .box::before,
  .pricing .box::after {
    content: "";
    width: 0;
    height: 50%;
    background-color: #ffffff1f;
    position: absolute;
    z-index: -1;
    transition: var(--main-transition);
  }
  .pricing .box::before {
    left: 0;
    top: 0;
  }
  .pricing .box::after {
    right: 0;
    bottom: 0;
  }
  .pricing .box:hover::before,
  .pricing .box:hover::after {
    width: 100%;
  }
  @media (min-width: 1200px) {
    .pricing .box.popular {
      top: -20px;
    }
  }
  .pricing .box.popular .label {
    position: absolute;
    writing-mode: vertical-rl;
    background-color: var(--main-color);
    color: white;
    font-weight: bold;
    padding: 10px 10px 35px 10px;
    font-size: 18px;
    right: 20px;
    width: 40px;
  }
  .pricing .box.popular .label::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-style: solid;
    border-color: transparent transparent white;
    border-width: 20px;
  }
  .pricing .box .title {
    font-weight: bold;
    margin: 30px 0;
    font-size: 25px;
    letter-spacing: -1px;
    color: var(--hover);
    letter-spacing: 3px;
  }
  .pricing .box img {
    width: 50px;
    margin-bottom: 30px;
  }
  .pricing .box .price {
    margin-bottom: 20px;
  }
  .pricing .box .amount {
    display: block;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--main-color);
  } 
  .pricing .box ul {
    text-align: left;
  }
  .pricing .box ul li {
    padding: 20px;
    color: white
    ;
  }
  .pricing .box ul li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    margin-right: 10px;
    font-weight: 900;
    color: var(--main-color);
  }
  .pricing .box a {
    display: block;
    width: fit-content;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    margin: 30px auto 40px;
    padding: 15px 20px;
    border-radius: 6px;
    font-weight: bold;
    transition: var(--main-transition);
  }
  .pricing .box a:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: white;
  }
  /* End Pricing */


.pricing .box > i{
    margin-bottom: 30px;
    text-align: center;
    color: #d5d5d5;
    font-size: 3rem;
}

/* Gallery */
.gallery{
  padding-top: var(--main-padding-top);
}
.gallery .container{
  max-width: 1200px;
  margin:100px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap:20px;
}

.gallery .container .main-video-container{
  flex:1 1 700px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  background-color: transparent;
  padding:15px;
}

.gallery .container .main-video-container .main-video{
  margin-bottom: 7px;
  border-radius: 5px;
  width: 100%;
}

.gallery .container .main-video-container .main-vid-title{
  font-size: 20px;
  color:var(--main-color);
}

.gallery .container .video-list-container{
  flex:1 1 350px;
  height: 475px;
  overflow-y: scroll;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  background-color: transparent;
  padding:10px;
}

.gallery .container .video-list-container::-webkit-scrollbar{
  width: 10px;
}

.gallery .container .video-list-container::-webkit-scrollbar-track{
  background-color: #fff;
  border-radius: 5px;
}

.gallery .container .video-list-container::-webkit-scrollbar-thumb{
  background-color: #444;
  border-radius: 5px;
}

.gallery .container .video-list-container .list{
  display: flex;
  align-items: center;
  gap:15px;
  padding:10px;
  background-color: #eee;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 10px;
}

.gallery .container .video-list-container .list:last-child{
  margin-bottom: 0;
}

.gallery .container .video-list-container .list.active{
  background-color: #444;
}

.gallery .container .video-list-container .list.active .list-title{
  color:#fff;
}

.gallery .container .video-list-container .list .list-video{
  width: 50px;
  border-radius: 5px;
}

.gallery .container .video-list-container .list .list-title{
  font-size: 17px;
  color:#444;
}

/* Contact */
.contact {
    padding: var(--section-padding) 0 0 0;
}

.contact .content {
    display: flex;
    justify-content: space-between;
}

.form{
  width: 65%;
}
@media(max-width:767px) {
    .contact .content {
        flex-direction: column;
    }

    .contact .content .form  .main-input{
      width: calc(100% - 1.438rem) !important;
    }
    .form, .contact .content .info{
      width: 100% !important;
    }

    .contact .content .info{
      padding-bottom: 55px;
    }
  
}

.alert {
  display: none;
}
  /* Medium */
  @media (max-width: 767px) {
    .contact .content .form  textarea.main-input{
      width: calc(95% - 1.65rem) !important;
      margin-left: 1.2rem !important;
    }
  }
  @media (min-width: 768px) and (max-width: 976px) {
    .contact .content .form  textarea.main-input{
      width: calc(100% - 1.438rem) !important;
      margin-left: 1rem !important;

    }
  }
    @media (min-width: 980px) {
      /* .contact .content .form  .main-input{
        width: calc(91% / 2) !important;
      } */
      .contact .content .form  textarea.main-input{
        width: calc(100% - 1.438rem) !important;
        margin-left: 1.2rem !important;

      }
      
    }
      


.contact .content .form  .main-input {
    padding: 0.938rem;
    display: inline-block;
    margin: 0px .5rem 1.56rem;
    width: 100%;
    caret-color: var(--main-color);
    color: white;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .7);
    border-radius: 0;
}

.contact .content .form  .main-input:focus {
    outline: none;
}

.contact .content .form  textarea.main-input {
    width: calc(100% - 1.438rem);
}


.contact .content .info {
    width: 35%;
}

@media(max-width:767px) {
    .contact .content .info {
        order: 0;
        text-align: center;
    }

    .contact .content .info h4:nth-of-type(2) {
        margin-top: 1.875rem;
    }
}

.contact .content .info h4,
.contact .content .info h3 {
    text-transform: uppercase;
    margin-bottom: 1.875rem;
    font-weight: 500;
    font-size: 1.313rem;
    color: var(--main-color);
    
}

.contact .content .info .phone {
    display: block;
    margin-bottom: 0.625rem;
    color: #777;
}

.contact .content .info address {
    line-height: 1.6;
    color: #777;
}

@media(max-width:767px) {
    .contact .content .info address {
        margin-bottom: 2.5rem;
    }
}

.contact .content .info .address {
    margin-bottom: 1.875rem;
}

.contact .content .info h3 {
    margin-top: 1.875rem;
}

.contact .content .form h2 {
    margin-bottom: 1.875rem;
    font-size: 1.3125rem;
    text-transform: uppercase;
    padding-left: 0.625rem;
    font-weight: 500;
    color: var(--main-color);

}

.contact .content .info span i {
    color: var(--main-color);
    margin-right: 0.938rem;
}
 
.contact button {
  font-family: inherit;
  font-size: 18px;
  background: var(--main-color);
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  padding: 0.375rem 0.75rem;
  float: right;
}

.contact button span {
  display: block;
  margin-left: 0.3em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact button svg {
  display: block;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.contact button:hover .svg-wrapper {
  -webkit-animation: fly-1 0.6s ease-in-out infinite alternate;
          animation: fly-1 0.6s ease-in-out infinite alternate;
}

.contact button:hover svg {
  -webkit-transform: translateX(1.2em) rotate(45deg) scale(1.1);
      -ms-transform: translateX(1.2em) rotate(45deg) scale(1.1);
          transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.contact button:hover span {
  -webkit-transform: translateX(5em);
      -ms-transform: translateX(5em);
          transform: translateX(5em);
}

.contact button:active {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}

@-webkit-keyframes fly-1 {
  from {
    -webkit-transform: translateY(0.1em);
            transform: translateY(0.1em);
  }

  to {
    -webkit-transform: translateY(-0.1em);
            transform: translateY(-0.1em);
  }
}

@keyframes fly-1 {
  from {
    -webkit-transform: translateY(0.1em);
            transform: translateY(0.1em);
  }

  to {
    -webkit-transform: translateY(-0.1em);
            transform: translateY(-0.1em);
  }
}



/* Footer */
.footer {
  padding:0 0 1.5rem 0;
  color: white;
  text-align: center;
  background: rgb(25,25,25);
  background: linear-gradient(180deg, rgba(25,25,25,1) 0%, rgba(76,48,32,1) 56%, rgba(189,114,74,1) 100%);}

.footer p:not(.copyright) {
  text-transform: uppercase;
  padding: 20px;
  border-bottom: 1px solid white;
  font-size: 23px;
  width: fit-content;
  margin: 20px auto;
  color: #FF7E39;
}

.footer .copyright {
margin-top: 30px; 
}

#char {
  font-size: 20px;
  color: var(--main-color);
}




.about .button {
  position: relative;
  width: 170px;
  height: 40px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
  overflow: hidden;
  float: right;
  border-radius: 4px;
}

.about .button, .about .button__icon,.about .button__text {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.about .button .button__text {
  -webkit-transform: translateX(6px);
      -ms-transform: translateX(6px);
          transform: translateX(6px);
  color: #fff;
  font-weight: 600;
}

.about .button .button__icon {
  position: absolute;
  -webkit-transform: translateX(130px);
      -ms-transform: translateX(130px);
          transform: translateX(130px);
  height: 100%;
  width: 39px;
  background-color: rgba(48, 39, 39, 0.368);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about .button .svg {
  width: 20px;
  fill: #fff;
}


.about .button:hover {
  background: #ff7e39a0;
  border: 1px solid #ffffff1f
}

.about .button:hover .button__text {
  color: transparent;
}

.about .button:hover .button__icon {
  width: 170px;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.about .button:active .button__icon {
  background-color: var(--main-color);
}

.about .button:active {
  border: 1px solid var(--main-color);
}

 /* Small */
 @media (max-width: 767px) {
  .about .button{
    float: none !important;
    margin: auto;
  }
}
