 /*--------------------- Copyright (c) 2021 ----------------------- 
[Master Stylesheet] 
Template Name: Trade Coin - Digital Exchange HTML Template 
Version: 1.0.0
Author: Kamleshyadav
-------------------------------------------------------------------*/
 
 body {
     font-family: 'PT Sans', sans-serif;
     color: #606060;
     font-size: 14px;
     line-height: 22px;
     font-weight: 400;
     margin: 0;
     padding: 0;
 }
 
 a {
     text-decoration: none;
 }
 
 .me-landing-box a .img-fluid {
     width: 100%;
 }
 
 html {
     scroll-behavior: smooth;
 }
 
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'Ibarra Real Nova', serif;
     color: #111111;
 }
 
 li {
     list-style: none;
 }
 
 ul {
     margin: 0px;
 }
 
 a {
     color: #606060;
     transition: 0.3s;
 }
 
 a:hover {
     color: #f93e7e;
     text-decoration: none;
 }
 
 input,
 input:focus,
 textarea {
     outline: none;
 }
 
 ::placeholder {
     color: #ccc;
 }
 
 input,
 textarea {
     width: 100%;
     height: 50px;
     border: 1px solid #eee;
     padding: 0px 15px;
 }
 
 .me-padder-top {
     padding-top: 96px;
 }
 
 .me-padder-bottom {
     padding-bottom: 70px;
 }
 
 .me-btn {
     display: inline-block;
     min-width: 120px;
     height: 40px;
     line-height: 40px;
     border: none;
     background: #f93e7e;
     color: #ffffff;
     outline: none;
     text-align: center;
     border-radius: 30px;
     position: relative;
     transition: 0.3s;
     text-transform: capitalize;
     cursor: pointer;
 }
 
 .me-btn:focus {
     outline: none;
 }
 
 .me-btn:hover {
     background: #ffffff;
     color: #606060;
 }
 
 .me-btn:after {
     position: absolute;
     border: 2px solid #ffb628;
     content: '';
     width: 120px;
     height: 40px;
     left: 0;
     top: 0;
     bottom: 0;
     right: 0;
     border-radius: 30px;
     transform: scale(0);
     transition: 0.3s;
 }
 
 .me-btn:hover:after {
     transform: scale(1);
 }
 /* main css */
 
 .me-heading2 h1 {
     font-size: 36px;
     font-weight: 600;
     text-transform: capitalize;
 }
 
 .me-heading2 {
     text-align: center;
     margin-bottom: 40px;
 }
 
 .me-heading2 h4 {
     padding-bottom: 10px;
     font-size: 18px;
     position: relative;
 }
 
 .me-heading2 h4:after {
     border-bottom: 2px solid #ffb628;
     position: absolute;
     content: '';
     width: 100px;
     height: 2px;
     left: 0;
     right: 0;
     bottom: 0;
     margin: auto;
 }
 
 .me-landing-title {
     display: flex;
     background: #f5fdff;
     padding: 15px;
     align-items: center;
 }
 
 .me-landing-title h4 {
     flex: 1;
     margin-bottom: 0;
     font-size: 20px;
     font-weight: 600;
 }
 
 .me-landing-box,
 .me-landing-feature-box {
     box-shadow: 1.5px 3.99px 27px 0px rgba( 0, 0, 0, 0.1);
     transition: 0.3s;
 }
 
 .me-landing-box:hover,
 .me-landing-feature-box:hover {
     transform: translateY(-10px);
 }
 
 .me-home-transform {
     margin-top: 20px;
 }
 
 .me-landing-box {
     margin-bottom: 30px;
 }
 
 .me-landing-inner {
     background: #fbfbfb;
 }
 
 .me-land-data h4 {
     margin-bottom: 0;
     font-size: 20px;
     font-weight: 600;
 }
 
 .me-landing-feature-box {
     padding: 20px;
     margin-bottom: 30px;
     display: flex;
     align-items: center;
 }
 
 .me-landing-feature-box .me-land-icon {
     margin-right: 20px;
 }
 
 .me-landing-feature-box .feature_svg {
     width: 80px;
     height: 80px;
     text-align: center;
     line-height: 90px;
     border: 1px solid #eee;
 }
 
 .feature_svg svg {
     fill: #f93e7e;
 }
 
 .me-footer-copyright {
     padding: 15px 0px;
     background: linear-gradient(45deg, #f93e7e, #ffb628);
 }
 
 .me-footer-copyright p {
     margin: 0;
     text-transform: capitalize;
     color: #fff;
 }
 
 .me-copyright-block p a {
     font-weight: 600;
 }
 
 .me-copyright-block a {
     color: #ffffff;
 }
 
 .me-copyright-block ul {
     display: flex;
     justify-content: flex-end;
     padding-left: 0px;
 }
 
 .me-copyright-block ul li {
     margin-right: 15px;
     text-transform: capitalize;
 }
 
 .me-copyright-block ul li:last-child {
     margin-right: 0px;
 }
 
 .me-banner-three {
     position: relative;
     overflow: hidden;
     background: rgba(119, 184, 234, 0.1);
 }
 
 .me-shape-three {
     left: 0;
     position: absolute;
     opacity: 0.7;
     animation: dot_mover 6s linear infinite alternate;
 }
 
 .me-shape-four {
     position: absolute;
     left: 0;
     bottom: 0px;
     opacity: 0.5;
     animation: dot_mover 4s linear infinite alternate;
 }
 
 .me-banner-three:after {
     width: 400px;
     height: 400px;
     background-image: radial-gradient(#f93e7e38 1px, transparent 1px);
     content: '';
     background-size: 10px 10px;
     position: absolute;
     top: 80px;
     transform: rotate(45deg);
     right: -220px;
     animation: banner_move 20s linear alternate infinite;
 }
 
 @keyframes banner_move {
     0%,
     100% {
         transform: translateY(0px) rotate(-50deg);
     }
     50% {
         transform: translateY(80px) rotate(-50deg);
     }
 }
 
 .me-banner-two:after {
     animation: banner_move_two 10s linear alternate infinite;
 }
 
 @keyframes banner_move_two {
     0%,
     100% {
         transform: translateX(1px) rotate(-63deg);
     }
     50% {
         transform: translateX(30px) rotate(-63deg);
     }
 }
 
 .me-banner-three-text {
     margin-top: -12px;
     padding: 70px 50px 70px 0px;
 }
 
 .me-banner-three-text h1 {
     font-size: 56px;
     font-weight: 600;
     text-transform: capitalize;
 }
 
 .me-banner-three-text .me-btn {
     margin-right: 15px;
 }
 
 .me-banner-three-img {
     padding: 100px 0px;
 }
 
 .me-banner-three .col-md-6.col-12 {
     display: flex;
     align-items: center;
 }
 
 .me-land-banner-shape {
     transform: rotate(180deg);
     margin-top: -6px;
 }
 
 .me-land-banner-shape svg {
     fill: rgba(119, 184, 234, 0.1);
 }
 
 @media (max-width: 1199px) {
     .me-landing-title {
         flex-wrap: wrap;
     }
     .me-landing-title h4 {
         width: 100%;
         flex: unset;
         margin: 0 0 20px;
     }
 }
 
 @media (max-width: 991px) {
     .me-banner-three {
         padding: 60px 0px;
     }
     .me-shape-three {
         width: 30%;
     }
     .me-banner-three-text,
     .me-banner-three-img {
         padding: 0;
     }
     .me-padder-top {
         padding-top: 56px;
     }
     .me-padder-bottom {
         padding-bottom: 30px;
     }
     .me-copyright-block ul {
         justify-content: center;
         margin-top: 3px;
     }
     .me-footer-copyright {
         text-align: center;
     }
     .me-home-transform {
         margin-top: 0px;
     }
 }
 
 @media (max-width: 767px) {
     .me-banner-three-text {
         margin-bottom: 30px;
     }
     .me-shape-three,
     .me-shape-four,
     .me-banner-three:after {
         display: none;
     }
     .me-banner-three-text h1 {
         font-size: 40px;
     }
     .me-banner-three-text .me-btn {
         margin-right: 2px;
     }
     .me-landing-feature-box .me-land-icon {
         margin-right: 14px;
     }
     .me-landing-feature-box .feature_svg {
         width: 60px;
         height: 60px;
         line-height: 75px;
     }
     .me-landing-box img {
         width: 100%;
     }
     .me-landing-box {
         width: 80%;
         margin: 0px auto 30px;
     }
 }
 
 @media (max-width: 480px) {
     .me-landing-box {
         width: 100%;
     }
 }