/* =========
--- CSS INDEX ---
1.Fonts CSS
2.Common CSS
3.Loader CSS
4.Navbar CSS
5.Banner CSS
6.My Client CSS
7.Our Services CSS
8.Newsletter CSS
9.About Us CSS
10.Pricing CSS
11.FAQ CSS
12.Our Team CSS
13.Why Choose Us CSS
14.Testimonial CSS
15.Blog CSS
16.Get In Touch CSS
17.Counter CSS
18.Payments CSS
19.About Us Page CSS
20.Services Page CSS
21.Service Detail Page CSS
22.Team Page CSS
23.Team Detail Page CSS
24.Pricing Page CSS
25.FAQ Page CSS
26.Blog Page CSS
27.Blog Detail Page CSS
28.Contact Us Page CSS
29.404 Error Page CSS
30.Footer CSS
============*/

/*==========Fonts CSS Start==========*/
@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome-webfonte0a5.eot?v=4.3.0');
    src: url('../fonts/fontawesome-webfontd41d.eot?#iefix&v=4.3.0') format('embedded-opentype'), 
    url('../fonts/fontawesome-webfonte0a5.woff2?v=4.3.0') format('woff2'), 
    url('../fonts/fontawesome-webfonte0a5.woff?v=4.3.0') format('woff'), 
    url('../fonts/fontawesome-webfonte0a5.ttf?v=4.3.0') format('truetype'), 
    url('../fonts/fontawesome-webfonte0a5.svg?v=4.3.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/*==========Fonts CSS End==========*/
:root {
    --primary-color: #FF6A32;
    --primary-dark-color: #17172F;
    --secondary-dark-color: #191928;
    --white--color: #ffffff;
    --alert-color: #6944D2;
    --heading-font: 'Syne', sans-serif;
    --body-font: 'Hanken Grotesk', sans-serif;
}

/*==========Common CSS Start==========*/
body{
    font-family: 'Rubik', sans-serif;
    overflow-x: hidden !important;
    font-size: 15px;
    line-height: 24px;
    color: #101621;
}

/*==Scrollbar==*/

::-webkit-scrollbar {
    width: 5px;
}

::-moz-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: #bfbfbf;
}

::-moz-scrollbar-track {
    background-color: #bfbfbf;
}

::-webkit-scrollbar-thumb {
    background-color: #ff6a32;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

::-moz-scrollbar-thumb {
    background-color: #ff6a32;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #6944d2;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

::-moz-scrollbar-thumb:hover {
    background-color: #6944d2;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

input,
input:focus,
input:hover,
button,
button:hover,
button:focus {
    outline: none;
}

section {
    overflow: hidden;
}

img {
    width: auto;
    max-width: 100%;
}

p {
    font-size: 15px;
    line-height: 24px;
    color: #777777;
    font-weight: normal;
    margin-bottom: 12px;
}

.dark-bg {
    background-color: #252439;
}

.dark-bg p {
    color: #c2c2d3;
}

.h1-title {
    font-family: 'Epilogue', sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 70px;
	color: #c2c2d3;
}

.h2-title{
    font-family: 'Epilogue', sans-serif;
    font-size: 50px;
    line-height: 60px;
    font-weight: 800;
    padding-bottom: 25px;
    padding-top: 12px;
}
.h2-title span{
    color:#FF6A32;
}
.h3-title {
    font-family: 'Epilogue', sans-serif;
    color: #101621;
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
}

.h2-subtitle {
    position: relative;
    font-family: 'Epilogue', sans-serif;
    font-size: 22px;
    color: #6944d2;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    display: inline-block;
}

.container{
    position: relative;
    z-index: 5;
}

.sec-btn {
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff !important;
    height: 60px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    background-color: #ff6a32;
    padding: 18px 40px;
    border-radius: 100px;
    border: none;
    overflow: hidden;
    z-index: 1;
}

.sec-btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 100px;
    background-color: #6944d2;
    transition: all 0.3s ease;
}

.sec-btn:hover {
     color: #fff;
}

.sec-btn:hover:after {
    top: 0;
    height: 100%;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ff6a32;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.link-btn:hover {
    color: #6944d2;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.link-btn span {
    margin-right: 8px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.link-btn i {
    font-size: 15px;
    margin-bottom: 2px;
}

.link-btn:hover span {
    margin-right: 12px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -12px;
    left: 0;
    width: 100%;
}

.swiper-pagination-bullet {
    background: #cccccc;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #6944d2;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.80);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.60);
}

.form-input-one {
    width: 100%;
    height: 60px;
    background: #ffffff;
    font-size: 15px;
    font-family: 'Rubik', sans-serif;
    line-height: 24px;
    color: #10161b;
    border: none;
    border-radius: 50px;
    outline: none;
    padding: 12px 30px;
    box-shadow: none;
}

.form-input-two {
    width: 100%;
    height: 60px;
    background: #ffffff;
    font-size: 15px;
    font-family: 'Rubik', sans-serif;
    line-height: 24px;
    color: #10161b;
    border: none;
    border-radius: 30px;
    outline: none;
    padding: 12px 30px;
    box-shadow: none;
}

.form-box-one {
    display: block;
    position: relative;
    font-size: 0;
    line-height: 1;
    margin-bottom: 20px;
}

.object-right-one {
    position: absolute;
    top: 50%;
    right: -70px;
    transform: translate(0, -50%);
    z-index: -1;
}

.object-left-one {
    position: absolute;
    top: 50%;
    left: -70px;
    transform: translate(0, -50%);
    z-index: -1;
}

.aliment-right-two {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translate(0, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.aliment-left-two {
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translate(0, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.aliment-right-two img, .aliment-left-two img {
    width: 70%;
    animation-duration: 3s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-name: hero-bounce;
}

.toggle-button {
    position: fixed;
    top: 10px;
    right: 30px;
    width: 60px;
    height: 60px;
    padding: 0 15px;
    background-color: #6944d2;
    border-radius: 100%;
    text-align: center;
    border: none;
    outline: none;
    display: none;
    z-index: 110;
  }
  
.toggle-button span {
    width: 30px;
    height: 3px;
    background: #ffffff;
    display: block;
    margin: 0 auto 6px auto;
    position: relative;
    top: 0;
    opacity: 1;
    float: right;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
  }

.ham {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

.toggle-menu .hamRotate {
    transform: rotate(45deg);
  }

.toggle-menu .hamRotate180 {
    transform: rotate(180deg);
  }

.line-ham {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #ffffff;
    stroke-width: 5.5;
    stroke-linecap: round;
  }

.ham8 .top {
    stroke-dasharray: 40 160;
  }

.ham8 .middle {
    stroke-dasharray: 40 142;
    transform-origin: 50%;
    transition: transform 400ms;
  }

.ham8 .bottom {
    stroke-dasharray: 40 85;
    transform-origin: 50%;
    transition: transform 400ms, stroke-dashoffset 400ms;
  }

.toggle-menu .ham8 .top {
    stroke-dashoffset: -64px;
  }

.toggle-menu .ham8 .middle {
    transform: rotate(90deg);
  }

.toggle-menu .ham8 .bottom {
    stroke-dashoffset: -64px;
 }
  
.black-shadow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    opacity: 0.5;
    z-index: 90;
    display: none;
}

.main-in-banner-one {
    position: relative;
    background-color: #f9f4ff;
    padding-top: 270px;
    padding-bottom: 140px;
}

.main-in-banner-two {
    position: relative;
    background-color: #17172f;
    padding-top: 270px;
    padding-bottom: 140px;
}

.banner-text-in-one {
    text-align: center;
}

.banner-text-in-two {
    color: #ffffff;
    text-align: center;
}

.breadcrum {
    background-color: #ff6a32;
    border-radius: 30px;
    padding: 10px 25px;
    display: inline-block;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.breadcrum ul {
    margin-bottom: 0;
    padding-left: 0;
    text-decoration: none;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrum ul li a {
    font-size: 15px;
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
}

.breadcrum ul li i {
    margin-left: 8px;
    margin-right: 8px;
    color: #ffffff;
    font-size: 18px;
}

.banner-text-in-one .h1-title {
    line-height: normal;
}

.breadcrum.two {
    margin-top: 0;
}

.breadcrum-box-two {
    text-align: center;
    margin-top: -25px;
}

/*==========Common CSS End==========*/


/*==========Loader CSS Start==========*/
.loader-box-one {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.loader {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .loader .center {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #6944d2;
    top: 0;
    left: 0;
    z-index: 1;
    transform: translate(-50%, 50%);
    border-radius: 50%;
    animation: center 3.2s ease-in-out infinite;
  }
  .loader .item {
    position: absolute;
    z-index: 0;
    width: 10px;
    height: 10px;
    top: 15px;
    left: 0;
    right: 0;
    margin: auto;
    background: #ff6a32;
    border-radius: 50%;
  }

  .loader-main ul {
    list-style: none;
  }
  
  .item-1 {
    animation: anim-1 3.2s ease-in-out infinite 0.2s;
    animation-fill-mode: backwards;
  }
  
  @keyframes anim-1 {
    0%, 60%, 100% {
      transform: rotate(45deg) translateX(40px) scale(1);
    }
    10%, 50% {
      transform: rotate(45deg) translateX(0) scale(1.5);
    }
  }
  .item-2 {
    animation: anim-2 3.2s ease-in-out infinite 0.4s;
    animation-fill-mode: backwards;
  }
  
  @keyframes anim-2 {
    0%, 60%, 100% {
      transform: rotate(90deg) translateX(40px) scale(1);
    }
    10%, 50% {
      transform: rotate(90deg) translateX(0) scale(1.5);
    }
  }
  .item-3 {
    animation: anim-3 3.2s ease-in-out infinite 0.6s;
    animation-fill-mode: backwards;
  }
  
  @keyframes anim-3 {
    0%, 60%, 100% {
      transform: rotate(135deg) translateX(40px) scale(1);
    }
    10%, 50% {
      transform: rotate(135deg) translateX(0) scale(1.5);
    }
  }
  .item-4 {
    animation: anim-4 3.2s ease-in-out infinite 0.8s;
    animation-fill-mode: backwards;
  }
  
  @keyframes anim-4 {
    0%, 60%, 100% {
      transform: rotate(180deg) translateX(40px) scale(1);
    }
    10%, 50% {
      transform: rotate(180deg) translateX(0) scale(1.5);
    }
  }
  .item-5 {
    animation: anim-5 3.2s ease-in-out infinite 1s;
    animation-fill-mode: backwards;
  }
  
  @keyframes anim-5 {
    0%, 60%, 100% {
      transform: rotate(225deg) translateX(40px) scale(1);
    }
    10%, 50% {
      transform: rotate(225deg) translateX(0) scale(1.5);
    }
  }
  .item-6 {
    animation: anim-6 3.2s ease-in-out infinite 1.2s;
    animation-fill-mode: backwards;
  }
  
  @keyframes anim-6 {
    0%, 60%, 100% {
      transform: rotate(270deg) translateX(40px) scale(1);
    }
    10%, 50% {
      transform: rotate(270deg) translateX(0) scale(1.5);
    }
  }
  .item-7 {
    animation: anim-7 3.2s ease-in-out infinite 1.4s;
    animation-fill-mode: backwards;
  }
  
  @keyframes anim-7 {
    0%, 60%, 100% {
      transform: rotate(315deg) translateX(40px) scale(1);
    }
    10%, 50% {
      transform: rotate(315deg) translateX(0) scale(1.5);
    }
  }
  .item-8 {
    animation: anim-8 3.2s ease-in-out infinite 1.6s;
    animation-fill-mode: backwards;
  }
  
  @keyframes anim-8 {
    0%, 60%, 100% {
      transform: rotate(360deg) translateX(40px) scale(1);
    }
    10%, 50% {
      transform: rotate(360deg) translateX(0) scale(1.5);
    }
  }
  @keyframes center {
    0%, 10%, 90%, 100% {
      transform: scale(0.7);
    }
    45%, 55% {
      transform: scale(1);
    }
  }
/*==========Loader CSS End==========*/

/*==========Header CSS Start==========*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: 0.3s;
}

.header-bottom {
  padding: 30px 0;
  background-color: transparent;
  box-shadow: none;
}

.site-branding a {
    display: inline-block;
    position: relative;
}

.site-branding a img {
    width: 100%;
}

.header-menu{
    position: relative;
    text-align: right;
}
.main-navigation{
    display: inline-block;
}

.main-navigation ul {
    list-style: none;
    font-size: 0;
    line-height: 1;
    margin-bottom: 0;
    padding: 0;
}

.main-navigation ul li:first-child {
    margin-left: 0;
    padding-left: 0;
}

.main-navigation ul li {
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    margin-left: 18px;
    padding-left: 18px;
    position: relative;
}

.main-navigation ul li a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    transition: 0.3s;
   font-family: 'Epilogue', sans-serif;
}

.main-navigation.one ul li a {
    color: #10161b;
}

.main-navigation.two ul li a {
  color: #ffffff;
}

.header-btn, .header-btn-two {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin-left: 45px;
    text-transform: uppercase;
}

.main-navigation ul li.sub-items:hover>a, .main-navigation ul li a:hover, .main-navigation ul li.active>a {
    color: #ff6a32;
}

.main-navigation ul li.sub-items>a:before {
    content: "\f107";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    font-family: 'FontAwesome';
    font-size: 16px;
    transition: 0.3s;
}

.site-header.sticky-header .main-navigation ul li a, .site-header.sticky-header .search-icon a, .site-header.sticky-header .main-navigation ul li.sub-items>a:before {
    color: #010f2e;
}

.site-header.two.sticky-header .main-navigation ul li a, .site-header.two.sticky-header .search-icon a, .site-header.two.sticky-header .main-navigation ul li.sub-items>a:before, .site-header.two.sticky-header .main-navigation ul li.active>a:before {
    color: #ffffff;
}

.main-navigation ul li.sub-items>a {
    padding-right: 15px;
    position: relative;
}

.main-navigation ul li.sub-items:hover>a:before, .main-navigation ul li a:hover:before {
    transform: translate(0,-50%) rotate(-180deg);
    transition: 0.3s;
}

.main-navigation ul li:first-child {
    margin-left: 0;
    padding: 0;
}

.main-navigation ul li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    width: 200px;
    height: auto;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 1px 1px 60px rgba(0,0,0,0.1);
    display: none;
    transition: 0.3s;
    z-index: 150;
}

.main-navigation.two ul li ul.sub-menu {
    background: #302f43;
    box-shadow: 1px 1px 60px rgba(0,0,0,0.2);
}

.main-navigation ul li:hover ul.sub-menu {
    display: block;
    animation: swip_up 0.3s linear 1;
}

@keyframes swip_up {
    from {
        transform: translate(0, 20px);
        opacity: 0;
    }
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.main-navigation ul li ul.sub-menu li {
    display: block;
    text-align: left;
    margin: 0;
    border-bottom: 1px solid #ebebeb;
}

.main-navigation.two ul li ul.sub-menu li {
    border-bottom: 1px solid rgb(255,255,255,0.2);
}

.main-navigation ul li ul.sub-menu li:first-child {
   padding-left: 24px;
}

.main-navigation.two ul li ul.sub-menu li:first-child {
    padding-left: 24px;
} 

.main-navigation ul li ul.sub-menu li:last-child {
    border-bottom: none;
}

.main-navigation ul li ul.sub-menu li a {
    display: block;
    padding: 10px 7px;
}

.main-navigation ul li ul.sub-menu li a {
    display: block;
    color: #10161b;
    padding: 5px 15px;
    transition: 0.3s;
}

.main-navigation.two ul li ul.sub-menu li a {
    color: #ffffff;
}

.main-navigation ul li ul.sub-menu li a:hover {
    color: #ff6a32;
    transition: 0.3s;
}

.main-navigation ul li.sub-items:hover>a, .main-navigation ul li a:hover, .main-navigation ul li.active>a {
    color: #ff6a32;
}

.site-header.sticky-header .main-navigation ul li.sub-items:hover>a, .site-header.sticky-header .main-navigation ul li a:hover, .site-header.sticky-header .main-navigation ul li.active>a, .site-header.sticky-header .main-navigation ul li.sub-items:hover>a:before, .site-header.sticky-header .main-navigation ul li a:hover:before, .site-header.sticky-header .main-navigation ul li.active>a:before, .site-header.sticky-header .main-navigation ul li ul.sub-menu li a:hover, .site-header.two.sticky-header .main-navigation ul li.active>a:before {
    color: #ff6a32;
}

.top-hader-main-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-top {
    padding: 10px 0;
    border-bottom: solid 1px #cccccc;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.hd-reg-btn {
    padding: 5px 18px;
    background-color: #ff6a32;
    font-size: 15px;
    color: #ffffff !important;
    font-family: 'Rubik', sans-serif;
    border-radius: 8px;
}

.header-top img {
    margin-left: 20px;
    animation-duration: 3s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-name: hero-bounce;
}

@keyframes hero-bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-8px);
    }
    60% {
      transform: translateY(-3px);
    }
  }

  .header-top p {
    margin-bottom: 0;
    line-height: 15px;
    color: #101621;
    margin-left: 8px;
  }

  .header-top p span {
    color: #ff6a32;
  }

  .header-btn a span img, .banner-btn a:first-child span img {
    margin-left: 8px;
  }

  .header-btn a:hover span img, .banner-btn a:first-child:hover span img {
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-name: hero-bounce;
  }

  .header-top.two {
    border-bottom: 1px solid rgb(255,255,255,0.2);
  }

  .header-top.two .top-hader-main-box p {
    color: #ffffff;
  }
/*==Sticky Header Start==*/
.site-header.sticky-header {
    background-color: #ffffff;
    box-shadow: 6px 6px 60px 0px rgba(0,0,0,0.1);
    transition: 0.3s;
    border-bottom: none;
}

.site-header.two.sticky-header {
    background-color: #1f1f3a;
    box-shadow: 6px 6px 60px 0px rgba(0,0,0,0.2);
}

.sticky-header .header-bottom {
    padding: 20px 0px;
    animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    transition: 0.3s;
}

@keyframes headerSlideDown {
    0% {
      margin-top: -150px;
    }
    100% {
      margin-top: 0;
    }
  }

.sticky-header .header-top {
    margin-top: -54px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}
/*==Sticky Header End==*/
/*==========Header CSS End==========*/

/*==========Banner CSS Start==========*/
.main-banner-one {
    position: relative;
    padding-top: 200px;
    padding-bottom: 75px;
    overflow: visible;
}

.banner-title-box-one h1 span {
    color: #ff6a32;
    text-decoration: underline 3px;
}

.banner-title-box-one p {
    font-size: 18px;
    line-height: 28px;
}

.banner-btn {
    display: flex;
    align-items: center;
    margin-top: 33px;
}

.banner-play-icon {
    width: 60px;
    height: 60px;
    position: relative;
    background-color: #6944d2;
    background-size: 200% 100%;
    background-position: left center;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 5px 5px 30px 0px rgba(105,68,210,0.35);
    -moz-box-shadow: 5px 5px 30px 0px rgba(105,68,210,0.35);
    box-shadow: 5px 5px 30px 0px rgba(105,68,210,0.35);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    z-index: 1;
}

.banner-play-icon i {
    color: #ffffff;
    font-size: 22px;
}

.banner-play-icon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 50%;
    pointer-events: none;
    animation: waveBtn 2.5s infinite;
    z-index: -1;
}

@keyframes waveBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(105,68,210,1);
    }
    50% {
        box-shadow: 0 0 0 15px transparent;
    }
    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

.banner-play-btn {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.banner-play-btn span {
    font-weight: 500;
    color: #6944d2;
    margin-left: 18px;
    text-transform: uppercase;
}

.banner-img-box-one {
    position: relative;
    display: flex;
    align-items: center;
}

.banner-img-bg-one-po {
    z-index: -1;
}

.banner-mobile-one {
    position: relative;
    left: 74px;
    border-radius: 45px;
}

.banner-img-aliment-pm-one {
    
    position: relative;
    top: 100px;
    right: 60px;
    animation: movedelement 5s linear infinite;
}

@keyframes movedelement {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    25% {
        -webkit-transform: translate(10px, 10px);
        transform: translate(10px, 10px);
    }
    50% {
        -webkit-transform: translate(5px, 5px);
        transform: translate(5px, 5px);
    }
    75% {
        -webkit-transform: translate(10px, -5px);
        transform: translate(10px, -5px);
    }
    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

.banner-text-aliment-pm-one {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-text-aliment-pm-one span, .banner-aliment-mastercard-box-one span {
    color: #0a1522;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Rubik', sans-serif;

}

.banner-aliment-pn-add {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff6a32;
    border-radius: 100%;
    margin-left: 45px;
}

.banner-aliment-pn-add i {
    color: #ffffff;
    font-size: 12px;
}

.banner-aliment-mastercard-box-one {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.banner-aliment-mastercard-box-one img {
    margin-right: 15px;
}

.banner-aliment-small-box-one {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: -35px;
    left: 110px;
}

.banner-aliment-one-small-box-one {
    width: 109px;
    padding: 18px;
    text-align: center;
    background-color: #ff6a32;
    border-radius: 10px;
    border: dashed 3px #d33a00;
    display: inline-block;
    align-items: center;
    box-shadow: 20px 20px 35px 0px rgba(0,0,0,0.2);
    margin-right: 10px;
}

.banner-aliment-add-small-one {
    background-color: #ffffff;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
}

.banner-aliment-add-small-one i {
    font-size: 18px;
    color: #ff6a32;
}

.banner-aliment-one-small-box-one span {
    font-family: 'Rubik', sans-serif;
    color: #ffffff;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
}

.banner-aliment-two-small-box-one {
    width: 109px;
    background-color: rgb(255,255,255,0.7);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(5px);
    text-align: center;
    box-shadow: 20px 20px 35px 0px rgba(0,0,0,0.2);
    margin: 0 10px;
}

.banner-aliment-two-small-box-one img {
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 8px;
}

.banner-aliment-two-small-box-one span {
    font-family: 'Rubik', sans-serif;
    color: #0a1522;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
}

.bg-aliment {
    position: absolute;
    z-index: -1;
}

.bg-aliment-line-one {
    top: 160px;
    left: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.bg-aliment-line-one img {
    width: 70%;
}

.bg-aliment-line-shap-one {
    z-index: 0;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
}

.bg-circlebluro-one {
    top: 40%;
    left: 5%;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.bg-circleblurtw-one {
    bottom: 5%;
    right: 5%;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes zoom-fade {
    0% {
      -webkit-transform: scale(0.6);
      transform: scale(0.6);
    }
  
    50% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  
    100% {
      -webkit-transform: scale(0.6);
      transform: scale(0.6);
    }
  }
  
  @keyframes zoom-fade {
    0% {
      -webkit-transform: scale(0.6);
      transform: scale(0.6);
    }
  
    50% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  
    100% {
      -webkit-transform: scale(0.6);
      transform: scale(0.6);
    }
}

.banbg-circleon-one {
    width: 35px;
    height: 35px;
    bottom: 25%;
    left: 5%;
    border-radius: 100%;
}

.banbg-circletw-one {
    width: 40px;
    height: 40px;
    top: 40%;
    right: 10%;
    border-radius: 100%;
}

.banbg-circlethr-one {
    width: 25px;
    height: 25px;
    top: 30%;
    right: 25%;
    border-radius: 100%;
}

.circle-org {
    background-color: #ff6a32;
    border-radius: 100%;
}

.circle-pup {
    background-color: #6944d2;
    border-radius: 100%;
}

.circleline-pup {
    border: solid 1px #6944d2;
    border-radius: 100%;
}

.banbg-circlelinefor-one {
    width: 57px;
    height: 57px;
    top: 20%;
    right: 5%;
}

.main-banner-two {
    position: relative;
    padding-top: 245px;
    padding-bottom: 120px;
    background-color: #17172f;
    overflow: visible;
}

.banner-text-box-two {
    text-align: center;
}

.banner-text-box-two .h1-title {
    color: #ffffff;
    text-align: center;
}

.banner-text-box-two p {
    font-size: 18px;
    line-height: 28px;
    color: rgb(255,255,255,0.8);
    text-align: center;
}

.banner-text-box-two .banner-btn {
    justify-content: center;
    margin-top: 20px;
}

.banner-text-box-two .banner-btn .banner-play-btn span {
    color: #ffffff;
}

.banner-img-box-two {
    display: flex;
    padding: 70px 100px 0 100px;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.banner-main-img-two {
    z-index: 1;
    border-radius: 10px;
    box-shadow: 30px 30px 65px 0px rgba(0,0,0,0.1);
}

.bg-aliment-line-shap-two {
    z-index: 0;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.bg-circleblurtw-two {
    z-index: 0;
    top: 40%;
    left: 5%;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.bg-circlebluro-two {
    z-index: 0;
    bottom: 20%;
    right: 20%;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.bg-aliment-line-two {
    z-index: 0;
    top: 50%;
    right: -2%;
    transform: translate(0, -50%);
}

.banbg-circleoon-two {
    width: 25px;
    height: 25px;
    z-index: 0;
    top: 48%;
    left: 27%;
    transform: translate(0, -50%);
}

.banbg-circlepon-two {
    width: 40px;
    height: 40px;
    z-index: 0;
    bottom: 10%;
    left: 10%;
}

.banbg-circleptw-two {
    width: 15px;
    height: 15px;
    z-index: 0;
    top: 20%;
    right: 10%;
}

.banbg-circleotw-two {
    width: 35px;
    height: 35px;
    z-index: 0;
    bottom: 10%;
    right: 10%;
}

.circleline-whit {
    border: solid 1px rgb(255,255,255);
    border-radius: 100%;
}

.banbg-circlelineon-two {
    width: 40px;
    height: 40px;
    z-index: 0;
    top: 20%;
    left: 40%;
}

.banbg-circlelinetw-two {
    width: 40px;
    height: 40px;
    z-index: 0;
    bottom: 40%;
    right: 10%;
}

.main-banner-img-two {
    margin-top: -255px;
}

.banbgin-circleoron-one {
    width: 35px;
    height: 35px;
    top: 40%;
    left: 30%;
    z-index: 0;
}

.banbgin-circlepupon-one {
    width: 16px;
    height: 16px;
    bottom: 20%;
    left: 40%;
    z-index: 0;
}

.banbgin-circlepuptw-one {
    width: 40px;
    height: 40px;
    top: 40%;
    right: 30%;
    z-index: 0;
}

.banbgin-circleortw-one {
    width: 25px;
    height: 25px;
    bottom: 20%;
    right: 10%;
    z-index: 0;
}

.bgin-circlebluro-one {
    bottom: 10%;
    right: 20%;
    z-index: 0;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.banbgin-circleline-one {
    width: 57px;
    height: 57px;
    bottom: 5%;
    right: 40%;
    z-index: 0;
}

.bgin-circleblurtw-one {
    left: 10%;
    bottom: 10%;
    z-index: 0;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
/*==========Banner CSS End==========*/

/*==========My Client CSS Start==========*/
.main-my-client-one {
    position: relative;
    padding: 80px 0;
}

.my-client-title {
    text-align: center;
    margin-bottom: 45px;
}

.my-client-title .h1-title {
    font-size: 22px;
    line-height: 22px;
}

.my-client-title .h1-title span {
    color: #6944d2;
}

.my-client-box-one {
    display: flex;
    align-items: center;
}

.my-client-line {
    width: 100%;
    height: 1px;
    background-color: #b7b7b7;
    margin-top: 50px;
}

.my-client-box-one img {
    margin-left: auto;
    margin-right: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.my-client-box-one:hover img {
    opacity: 1;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.my-client-blur-circlepp {
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 10%;
    right: 2%;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.bg-circle-line-pp {
    border: solid 1px #6944d2;
    border-radius: 100%;
    opacity: 0.4;
}

.bg-circle-line-org {
    border: solid 1px #ff6a32;
    border-radius: 100%;
    opacity: 0.4;
}

.my-client-line-circleorg {
    width: 42px;
    height: 42px;
    top: 20%;
    right: 10%;
}

.my-client-circleorg {
    width: 40px;
    height: 40px;
    top: 30%;
    left: 10%;
}

.my-client-line-circlepp {
    width: 115px;
    height: 115px;
    top: 20%;
    left: -50px;
}
/*==========My Client CSS End==========*/

/*==========Our Services CSS Start==========*/
.main-service-one {
    position: relative;
    padding-top: 40px;
    padding-bottom: 54px;
}

.service-title-one {
    text-align: center;
}

.main-service-box-one {
    background-color: #f9f4ff;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.service-icon-one {
    margin-right: 20px;
}

.service-text-one {
    width: calc(100% - 76px);
}

.service-text-one p {
    margin-bottom: 0;
}

.service-text-one a .h3-title {
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.main-service-box-one:hover .service-text-one a .h3-title {
    color: #6944d2;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.main-service-box-one:hover .service-icon-one img, .service-box-two:hover .service-icon-two img, .features-box-one:hover .features-icon-one img {
    animation: hvr-buzz-out 0.75s linear 1;
}

@keyframes hvr-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }

    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

.smt-one {
    margin-top: 30px;
}

.service-line-circleorg {
    width: 52px;
    height: 52px;
    top: 10%;
    left: 5%;
}

.service-circlepp {
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translate(-50%, 50%);
    left: 10%;
}

.service-blur-circleorg {
    bottom: 10%;
    left: 2%;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.service-line-aliment {
    top: 30%;
    right: -5%;
}

.service-circleorg {
    width: 30px;
    height: 30px;
    top: 20%;
    right: 2%;
}

.service-circleppsec {
    width: 14px;
    height: 14px;
    top: 60%;
    right: 10%;
}

.service-line-circlepp {
    width: 120px;
    height: 120px;
    bottom: 5%;
    right: 5%;
}

.view-more-service-btn-one {
    text-align: center;
}

.view-more-service-btn-one .sec-btn {
    display: inline-block;
}

.main-service-main-two {
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
}

.main-service-main-two .container-fluid {
    padding: 0 60px;
}

.service-title-two {
    text-align: center;
}

.service-bg-two {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 430px;
    background-color: #f9f4ff;
    z-index: -1;
}

.service-box-two {
    background-color: #ffffff;
    border-radius: 10px;
    text-align: center;
    padding: 40px;
    box-shadow: 0px 18px 26px -10px rgba(0,0,0,0.1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.service-box-two:hover {
    box-shadow: 0px 18px 26px -10px rgba(0,0,0,0.2);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.service-icon-two {
    margin-bottom: 25px;
}

.service-text-two a .h3-title{
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.service-box-two:hover .service-text-two a .h3-title  {
    color: #6944d2;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.service-text-two p {
    margin-bottom: 0;
}

.tservice-slider-one .swiper-button-next, .service-slider-two .swiper-button-prev, .service-slider-two .swiper-button-next, .service-slider-two .swiper-button-prev {
    display: none;
}

.swiper.service-slider-two  {
    padding-bottom: 50px;
}

.service-box-two.odd {
    margin-bottom: 40px;
}

.service-box-two.even {
    margin-top: 40px;
}
/*==========Our Services CSS End==========*/

/*==========Newsletter CSS Start==========*/
.main-newsletter-one {
    padding-top: 60px;
    position: relative;
    z-index: 1;
}

.newsletter-bg-one {
    background-color: #6944d2;
    border-radius: 10px;
    position: relative;
    padding: 70px 0;
    text-align: center;
}

.newsletter-title-one {
    text-align: center;
}

.newsletter-title-one .h2-subtitle, .newsletter-title-one .h2-title {
    color: #ffffff;
}

.newsletter-title-one .h2-title {
    font-size: 55px;
}

.newsletter-form-one {
    width: 45%;
    position: relative;
    display: inline-block;
}

.newsletter-form-one .form-input-one {
    border: 0;
    padding-right: 220px;
}

.newsletter-form-one .sec-btn {
    border: 0;
    position: absolute;
    right: 5px;
    top: 5px;
    line-height: 15px;
    height: 50px;
}

.newsletter-bg-img-one-left {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.newsletter-bg-img-one-right {
    position: absolute;
    z-index: 0;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.newsletter-blur-circleorg {
    bottom: 5%;
    left: 5%;
    z-index: 0;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.circle-white {
    background-color: #ffffff;
    border-radius: 100%;
}

.newsletter-circlewhite {
    width: 16px;
    height: 16px;
    top: 40%;
    left: 15%;
    z-index: 0;
}

.newsletter-circleline-two {
    width: 22px;
    height: 22px;
    top: 15%;
    right: 20%;
    z-index: 0;
}

.newsletter-illustration-two {
    top: -10%;
    right: 0;
    z-index: 0;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-name: hero-bounce;
}

.main-newsletter-one.two {
    padding-top: 0;
    margin-top: -190px;
    overflow: initial;
}
/*==========Newsletter CSS End==========*/

/*==========About Us CSS Start==========*/
.main-about-us-one {
    position: relative;
    background-color: #f9f4ff;
    padding: 360px 0 110px 0; 
    margin-top: -190px;
}

.about-us-main-img-box-one {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-bg-img-one {
    display: inline;
    z-index: 0;
}

.about-bg-img-one img {
    background-size: cover;
}

.about-us-mobile-one {
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    left: 50%;
}

.about-us-mobile-one img {
    max-width: none;
}

.main-about-text-box-one {
    margin-left: 30px;
}

.points ul {
    text-decoration: none;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.points ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.points ul li:last-child {
    margin-bottom: 0;
}

.points ul li .hex {
    margin-right: 12px;
}

.points ul li p {
    width: calc(100% - 36px);
    margin-bottom: 0;
    color: #101621;
}

.main-about-text-box-one .points {
    margin-top: 30px;
}

.download-store-one {
    display: flex;
    align-items: center;
}

.download-store-icon {
    margin-right: 20px;
}

.download-store-text .h3-title {
    line-height: 25px;
}

.download-store-text a {
    color: #777777;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    text-decoration: none;
    z-index: 1;
    display: block;
}

.download-store-text a:hover {
    color: #6944d2;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    text-decoration: underline;
}

.about-app-download-box-one {
    margin-top: 35px;
}

.download-store-one.line {
    position: relative;
}

.download-store-one.line::before {
    content: "";
    z-index: -1;
    position: absolute;
    display: block;
    top: 0;
    width: 87%;
    height: 100%;
    border-right: 1px solid #777777;
}

.about-us-paypal-one {
    position: absolute;
    width: 108px;
    height: 108px;
    border-radius: 100%;
    background-color: rgb(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 30px 60px 0px rgb(0,0,0,0.1);
    bottom: 5%;
    left: 15%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -ms-backdrop-filter: blur(5px);
    animation: movedelement 5s linear infinite;
}

.about-us-master-one {
    position: absolute;
    width: 145px;
    height: 145px;
    border-radius: 100%;
    background-color: rgb(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 30px 60px 0px rgb(0,0,0,0.1);
    bottom: 25%;
    right: 10%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -ms-backdrop-filter: blur(5px);
    animation: movedelement 5s linear infinite;
}

.about-line-circleorg {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 3%;
    z-index: 0;
}

.about-blur-circlepp {
    top: 50%;
    left: 5%;
    z-index: 0;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.about-circleorg {
    width: 30px;
    height: 30px;
    bottom: 5%;
    left: 5%;
    z-index: 0;
}

.about-line-circleorgsec {
    width: 50px;
    height: 50px;
    top: 50%;
    right: 5%;
    z-index: 0;
}

.about-circlepp {
    width: 30px;
    height: 30px;
    top: 70%;
    right: 2%;
    z-index: 0;
}

.about-blur-circleorg {
    bottom: 5%;
    right: 5%;
    z-index: 0;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.main-about-us-two {
    padding-top: 120px;
    padding-bottom: 120px;  
}

.about-imgone-two {
    float: right;
    display: block;
}

.about-us-img-box-two {
    position: relative;
    display: flow-root;
}

.about-imgtwo-two {
    position: absolute;
    top: 0;
    left: 0;
}

.about-box-years-two {
    width: 249px;
    height: 263px;
    background-size: cover;
    background-position: center;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-duration: 4s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-name: hero-bounce;
}

.h4-title {
    font-family: 'Epilogue', sans-serif;
    font-size: 40px;
    line-height: 28px;
    font-weight: 800;
    color: #ffffff;
}

.about-box-years-two .h4-title {
    font-size: 40px;
    color: #ffffff;
    text-align: left;
    margin-bottom: 22px;
    margin-right: 10px;
}

.about-box-years-two .h4-title span {
    font-size: 18px;
    font-weight: 700;
    line-height: 10px;
}

.about-content-box-two {
    padding-left: 20px;
}

.about-title-two p {
    color: #1a1b1e;
    font-size: 18px;
    line-height: 28px;
}

.about-content-box-two .sec-btn {
    margin-top: 30px;
}
/*==========About Us CSS End==========*/

/*==========Pricing CSS Start==========*/
.main-pricing-one {
    position: relative;
    padding: 120px 0;
}

.pricing-title-one {
    text-align: center;
}

.pricing-box-one {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0px 30px 60px 0px rgb(0,0,0,0.1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.pricing-box-one:hover {
    box-shadow: 0px 30px 60px 0px rgb(0,0,0,0.2);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.plan-title-one {
    display: flex;
    align-items: center;
}

.plan-icon-one {
    margin-right: 20px;
}

.plan-title-one .h3-title {
    margin-bottom: 0;
    line-height: normal;
}

.plan-price-one .h3-title {
    font-size: 40px;
    color: #fe6a32;
    line-height: normal;
    font-weight: 700;
    margin-bottom: 15px;
}

.plan-price-one .h3-title span {
    color: #101621;
    line-height: normal;
    font-size: 15px;
}

.plan-price-one {
    margin-top: 30px;
}

.plan-price-one p {
    margin-bottom: 22px;
}

.pricing-box-one .line {
    width: 100%;
    height: 1px;
    background-color: #c2c2c2;
}

.plan-points-one ul {
    text-decoration: none;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    margin-top: 30px;
}

.plan-points-one ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.plan-points-one ul li:last-child {
    margin-bottom: 0;
}

.price-point-check-one {
    background-color: #ffe1d6;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-right: 15px;
}

.price-point-check-one i {
    color: #fe6a32;
    font-size: 15px;
}

.plan-points-one ul li span {
    color: #777777;
}

.plan-btn-one {
    margin-top: 30px;
}

.pricing-box-one .sec-btn {
    display: block;
}

.pricing-line-aliment {
    top: 50%;
    transform: translate(-50%, 0);
    right: 0;
}

.pricing-circleorg {
    top: 20%;
    right: 5%;
    width: 30px;
    height: 30px;
}

.pricing-circlepp {
    width: 14px;
    height: 14px;
    top: 45%;
    right: 10%;
}

.pricing-line-circlepp {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 5%;
}

.pricing-line-circleorg {
    width: 50px;
    height: 50px;
    top: 15%;
    left: 5%;
}

.pricing-circleppsec {
    width: 30px;
    height: 30px;
    top: 50%;
    left: 7%;
}

.pricing-blur-circleorg {
    bottom: 15%;
    left: 3%;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.main-pricing-two {
    background-color: #f9f4ff;
    padding-top: 120px;
    padding-bottom: 300px;
}

.pricing-box-one.one-two {
    margin-bottom: 40px;
}

.pricing-box-one.two-two {
    margin-top: 40px;
}

.pricing-box-one.active {
    background-color: #17172f;
}

.pricing-box-one.active .h3-title, .pricing-box-one.active .plan-price-one .h3-title span {
    color: #ffffff;
}

.pricing-box-one.active .plan-price-one .h3-title {
    color: #fe6a32;
}

.pricing-box-one.active p {
    color: #ffffff;
}

.pricing-box-one.active .plan-points-one span {
    color: #ffffff;
}

.pricing-box-one.active .price-point-check-one {
    background-color: rgb(254,106,50,0.2);
}

.pricing-box-one.active .plan-btn-one .sec-btn {
    background-color: #6944d2;
}

.pricing-box-one.active .plan-btn-one .sec-btn::after {
    background-color: #ff6a32;
}

.pricing-content-two .sec-btn {
    margin-top: 20px;
}

.pricing-content-two {
    padding-left: 30px;
}
/*==========Pricing CSS End==========*/

/*==========FAQ CSS Start==========*/
.main-faq-one {
    position: relative;
    background-color: #17172f;
    padding: 120px 0;
}

.faq-title-one .h2-title {
    color: #ffffff;
}

.faq-box-one {
    margin-right: 30px;
}

.accordion-item {
    background-color: transparent;
    border: none;
    margin-bottom: 20px;
    border-radius: 0;
    border-radius: 8px;
    box-shadow: 0px 30px 60px 0px rgb(0,0,0,0.1);
}
  
.accordion-item:first-of-type {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.accordion-button {
    min-height: 60px;
    display: flex;
    align-items: center;
    line-height: 28px;
    margin-bottom: 0;
    padding: 5px 90px 5px 30px;
    position: relative;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    font-size: 18px;
    font-weight: 700;
}

.accordion-button:not(.collapsed) {
    color: #10161b;
    background-color: #ffffff;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.accordion-button.one {
    color: #10161b;
    background-color: #ffffff;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.accordion-button:focus {
    z-index: 0;
    border-color: #fff;
    outline: 0;
    box-shadow: none;
}

.accordion-button:after {
    display: none;
}

.accordion-header.h3-title {
    padding-top: 0;
}

.accordion .accordion-item .accordion-header.h3-title .icon {
    position: absolute;
    color: #fff;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background-color: #ff6a32;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.accordion-body {
    padding: 25px 30px;
}

.accordion-body.one {
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.accordion .accordion-item .accordion-header.h3-title>span {
    position: relative;
    z-index: 1;
}

.accordion .accordion-item .accordion-header.h3-title .accordion-button.collapsed .icon i {
    position: relative;
    color: #fff;
    transform: rotate(0deg);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    z-index: 1;
}

.accordion .accordion-item .accordion-header.h3-title .icon i {
    position: relative;
    color: #fff;
    transform: rotate(-90deg);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    z-index: 1;
}

.accordion-item:first-of-type .accordion-button {
    border-radius: 10px;
}

.accordion-collapse.collapse.show {
    box-shadow: none;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    margin-top: -6px;
}

.accordion-button:hover {
    z-index: 0;
}

.faq-img-box-one {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.faq-img-bg-one {
    position: absolute;
    top: auto;
    right: 0;
    animation: movedelement 5s linear infinite;
}

.faq-img-one {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
}

.faq-img-one a {
    position: absolute;
    top: 50%;
    transform: translate(-55%, -50%);
    left: 45%;
}

.faq-line-circleorg {
    width: 62px;
    height: 62px;
    top: 15%;
    left: 5%;
    z-index: 0;
}

.faq-blur-circlepp {
    z-index: 0;
    top: 50%;
    left: 8%;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.faq-circleorg {
    width: 30px;
    height: 30px;
    z-index: 0;
    bottom: 10%;
    left: 5%;
}

.faq-line-circleorgsec {
    width: 52px;
    height: 52px;
    top: 10%;
    right: 5%;
    z-index: 0;
}

.faq-circlepp {
    width: 30px;
    height: 30px;
    top: 50%;
    right: 8%;
    z-index: 0;
}

.faq-blur-circleorg {
    bottom: 10%;
    right: 6%;
    z-index: 0;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
/*==========FAQ CSS End==========*/

/*==========Our team CSS Start==========*/
.main-team-one {
    position: relative;
    padding: 120px 0;
}

.team-title-one {
    text-align: center;
}

.team-box-one {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.team-img-one {
    overflow: hidden;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.team-img-one, .team-img-one img {
    width: 100%;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.team-box-one:hover .team-img-one>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.team-text-box-one {
    position: relative;
    padding: 30px 20px;
    overflow: visible;
    margin-top: -70px;
}

.team-text-inner-one {
    width: 100%;
    padding: 20px 30px;
    background-color: #ffffff;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    border-radius: 10px;
    box-shadow: 0px 18px 26px -10px rgba(0,0,0,0.1);
}

.team-text-inner-one .h3-title {
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    margin-bottom: 5px;
    line-height: normal;
}

.team-box-one:hover .team-text-inner-one .h3-title, .team-box-two:hover .team-name-title-two .h3-title {
    color: #ff6a32;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.team-box-one:hover .team-text-inner-one {
    box-shadow: 0px 18px 26px -10px rgba(0,0,0,0.2);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.team-slider-one .swiper-button-next, .team-slider-one .swiper-button-prev, .team-slider-two .swiper-button-next, .team-slider-two .swiper-button-prev {
    display: none;
}

.swiper.team-slider-one  {
    padding-bottom: 20px;
}

.team-social-media-one {
    position: absolute;
    top: 40%;
    transform: translate(0, -60%);
    left: -50px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.team-box-one:hover .team-social-media-one {
    left: 15px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.team-social-media-one ul {
    text-decoration: none;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.team-social-media-one ul li {
    margin-bottom: 15px;
}

.team-social-media-one ul li:last-child {
    margin-bottom: 0;
}

.team-social-media-one ul li a {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff6a32;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.team-social-media-one ul li a i {
    color: #ffffff;
}

.team-social-media-one ul li a:hover {
    background-color: #6944d2;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.team-circleorg {
    width: 30px;
    height: 30px;
    top: 12%;
    left: 15%;
}

.team-circlepp {
    width: 14px;
    height: 14px;
    top: 40%;
    left: 10%;
}

.team-line-aliment {
    top: 50%;
    left: -3%;
}

.team-line-circlepp {
    width: 120px;
    height: 120px;
    bottom: 10%;
    left: 5%;
}

.team-line-circleorg {
    width: 52px;
    height: 52px;
    top: 20%;
    right: 5%;
}

.team-circleppsec {
    width: 30px;
    height: 30px;
    top: 50%;
    right: 3%;
}

.team-blur-circleorg {
    bottom: 15%;
    right: 5%;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.main-team-two {
    padding-top: 120px;
    padding-bottom: 120px;
}

.team-title-two {
    text-align: center;
}

.team-title-two .h2-title {
    margin-bottom: 0;
}

.team-box-two {
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    text-align: center;
    padding: 30px;
    box-shadow: 0px -2px 26px -6px rgba(0,0,0,0.1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.team-box-two:hover {
    box-shadow: 0px -2px 26px -6px rgba(0,0,0,0.2);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.team-img-two {
    overflow: hidden;
    display: inline-block;
    border-radius: 100%;
    border: 6px solid #d7d7d7;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}
.team-box-two:hover .team-img-two {
    border: 6px solid #6843d0;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
} 

.team-name-title-two {
    margin-bottom: 20px;
}

.team-box-two .team-name-title-two .h3-title {
    margin-top: 30px;
    margin-bottom: 5px;
    line-height: normal;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.team-name-title-two span {
    color: #777777;   
}

.team-box-two .team-social-media-one {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-bottom: -46px;
}

.team-box-two .team-social-media-one ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-box-two .team-social-media-one ul li {
    margin-bottom: 0;
    margin-right: 15px;
}

.team-box-two .team-social-media-one ul li:last-child {
    margin-right: 0;
}

.swiper.team-slider-two  {
    padding-bottom: 67px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 25px;
}

.team-box-two .team-img-two>img {
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.team-box-two:hover .team-img-two>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.main-team-mot-in-two {
    padding-top: 120px;
    padding-bottom: 90px;
}

.main-team-mot-in-two .team-box-two {
    margin-bottom: 50px;
}

.main-newsletter-one.two.team {
    margin-top: 0;
    margin-bottom: -170px;
}

.main-team-sf-in-two {
    background-color: #f9f4ff;
    padding-top: 285px;
    padding-bottom: 90px;
}

.team-feature-main-box-two {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.team-feature-icon-two {
    margin-right: 20px;
}

.team-feature-text-two {
    width: calc(100% - 66px);
}

.team-feature-text-two p {
    margin-bottom: 0;
}

.team-features-box-two {
    margin-right: 30px;
}
/*==========Our team CSS End==========*/

/*==========Why Choose Us CSS Start==========*/
.main-why-choose-us-one {
    position: relative;
    background-color: #f9f4ff;
    padding: 120px 0;
}

.why-choose-img-box-one {
    position: relative;
}

.why-choose-imgtwo {
    position: absolute;
    top: 30%;
    left: 35%;
    animation: movedelement 5s linear infinite;
}

.why-choose-bg-img-one {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.why-choose-us-text-box {
    margin-left: 30px;
}

.why-choose-op-box-one {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.why-choose-op-icon-one {
    margin-right: 20px;
}

.why-choose-op-text-one {
    width: calc(100% - 61px);
}

.why-choose-op-text-one p {
    margin-bottom: 0;
}

.why-choose-line-circleorg {
    width: 52px;
    height: 52px;
    top: 15%;
    left: 10%;
    z-index: 0;
}

.why-choose-circlepp {
    width: 30px;
    height: 30px;
    top: 50%;
    left: 12%;
    z-index: 0;
}

.why-choose-blur-circleorg {
    bottom: 12%;
    left: 7%;
    z-index: 0;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.why-choose-circleorg {
    width: 30px;
    height: 30px;
    top: 10%;
    right: 8%;
    z-index: 0;
}

.why-choose-circleppsec {
    width: 14px;
    height: 14px;
    top: 40%;
    right: 11%;
    z-index: 0;
}

.why-choose-line-circlepp {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 5%;
    z-index: 0;
}

.main-why-choose-us-two {
    padding: 120px 0;
}

.why-choose-content-two {
    padding-right: 20px;
}

.why-choose-title-two {
    text-align: left;
}

.why-choose-box-two {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.why-choose-box-two.three {
    margin-bottom: 0;
}

.why-choose-icon {
    margin-right: 20px;
}

.why-choose-text-two {
    width: calc(100% - 60px);
}

.why-choose-text-two p {
    margin-bottom: 0;
}

.why-choose-img-box-two {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.why-choose-img-two {
    position: absolute;
    border-radius: 10px;
    
}

.why-choose-img-two img {
    border-radius: 10px;
}

.why-choose-img-two.one {
    top: 0;
    right: 20%;
	animation: movedelement 5s linear infinite;
}

.why-choose-img-two.two {
    top: 30%;
    left: 5%;
}

.why-choose-img-two.three {
    bottom: 10%;
    left: 20%;
    z-index: -1;
}

.why-choose-img-two.four {
    bottom: 30%;
    right: 5%;
}
/*==========Why Choose Us CSS End==========*/

/*==========Testimonial CSS Start==========*/
.main-testimonial-one {
    padding: 120px 0;
    position: relative;
}

.testimonial-title-one {
    text-align: center;
}

.testimonial-box-one ul {
    text-decoration: none;
    list-style: none;
    margin-bottom: 25px;
    padding-left: 0;
    display: flex;
    align-items: center;
}

.testimonial-box-one ul li {
    margin-right: 10px;
}

.testimonial-box-one ul li:last-child {
    margin-right: 0;
}

.testimonial-box-one ul li i {
    font-size: 25px;
    color: #ffc107;
}

.testimonial-client-box-one {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.testimonial-client-img-box-one {
    border: 1px solid #ff6a32;
    padding: 10px;
    border-radius: 100%;
}

.testimonial-client-name-box-one {
    margin-left: 20px;
}

.testimonial-client-name-box-one .h3-title {
    line-height: 25px;
}

.testimonial-client-name-box-one span {
    color: #6944d2;
}

.testimonial-slider-one .swiper-button-next, .testimonial-slider-one .swiper-button-prev, .testimonial-slider-two .swiper-button-next, .testimonial-slider-two .swiper-button-prev {
    display: none;
}

.swiper.testimonial-slider-one  {
    padding-bottom: 30px;
}

.testimonial-img-box-one {
    position: relative;
    margin-left: 30px;
}

.testimonial-img-client-one {
    position: absolute;
    border-radius: 100%;
    box-shadow: 0px 30px 60px 0px rgba(0,0,0,0.1);
}

.testimonial-img-client-one.c-one {
    top: 0;
    left: 50%;
    -webkit-animation: movedelement 5s linear infinite;
    animation: movedelement 5s linear infinite;
}

.testimonial-img-client-one.c-two {
    top: 30%;
    left: 0;
    -webkit-animation: movedelement2 5s linear infinite;
    animation: movedelement2 5s linear infinite;
}

.testimonial-img-client-one.c-three {
    bottom: 30%;
    left: 20%;
    -webkit-animation: movedelement3 5s linear infinite;
    animation: movedelement3 5s linear infinite;
}

.testimonial-img-client-one.c-four {
    bottom: 10%;
    left: 10%;
    -webkit-animation: movedelement4 5s linear infinite;
    animation: movedelement4 5s linear infinite;
}

.testimonial-img-client-one.c-five {
    top: 40%;
    right: 35%;
    -webkit-animation: movedelement4 5s linear infinite;
    animation: movedelement4 5s linear infinite;
}

.testimonial-img-client-one.c-six {
    top: 50%;
    right: 0;
    -webkit-animation: movedelement2 5s linear infinite;
    animation: movedelement2 5s linear infinite;
}

@keyframes movedelement {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    25% {
        -webkit-transform: translate(10px, 10px);
        transform: translate(10px, 10px);
    }
    50% {
        -webkit-transform: translate(5px, 5px);
        transform: translate(5px, 5px);
    }
    75% {
        -webkit-transform: translate(10px, -5px);
        transform: translate(10px, -5px);
    }
    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes movedelement2 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    25% {
        -webkit-transform: translate(-10px, -10px);
        transform: translate(-10px, -10px);
    }
    50% {
        -webkit-transform: translate(-5px, -5px);
        transform: translate(-5px, -5px);
    }
    75% {
        -webkit-transform: translate(-10px, 5px);
        transform: translate(-10px, 5px);
    }
    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes movedelement3 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    25% {
        -webkit-transform: translate(15px, 15px);
        transform: translate(15px, 15px);
    }
    50% {
        -webkit-transform: translate(8px, 8px);
        transform: translate(8px, 8px);
    }
    75% {
        -webkit-transform: translate(15px, -8px);
        transform: translate(15px, -8px);
    }
    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes movedelement4 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    25% {
        -webkit-transform: translate(-15px, -15px);
        transform: translate(-15px, -15px);
    }
    50% {
        -webkit-transform: translate(-8px, -8px);
        transform: translate(-8px, -8px);
    }
    75% {
        -webkit-transform: translate(-15px, 8px);
        transform: translate(-15px, 8px);
    }
    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

.testimonial-line-aliment {
    left: -5%;
    top: 50%;
    z-index: 0;
}

.testimonial-circleorg {
    width: 30px;
    height: 30px;
    top: 20%;
    left: 10%;
}

.testimonial-circlepp {
    width: 14px;
    height: 14px;
    top: 50%;
    left: 5%;
}

.testimonial-line-circlepp {
    width: 120px;
    height: 120px;
    bottom: 10%;
    left: 5%;
}

.testimonial-line-circleorg {
    width: 52px;
    height: 52px;
    top: 10%;
    right: 15%;
}

.testimonial-circleppsec {
    width: 30px;
    height: 30px;
    top: 50%;
    right: 5%;
}

.testimonial-blur-circleorg {
    bottom: 10%;
    right: 10%;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.main-testimonial-two {
    background-color: #f9f4ff;
    padding: 120px 0;
}

.testimonial-title-two {
    text-align: center;
}

.testimonial-box-two {
    text-align: center;
}

.testimonial-quote-two {
    width: 45px;
    height: 45px;
    background-color: #ff6a32;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 18px 26px -10px rgba(255,106,50,1);
    margin-bottom: 30px;
}

.testimonial-client-img-two {
    border-radius: 100%;
    border: 1px solid #ff6a32;
    padding: 8px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    display: inline-block;
}

.testimonial-client-box-two {
    text-align: center;
}

.testimonial-client-box-two .h3-title {
    font-size: 20px;
    line-height: normal;
    margin-top: 12px;
    margin-bottom: 4px;
}

.testimonial-client-box-two span {
    color: #6944d2;
}

.review ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review ul li {
    margin-left: 10px;
}

.review ul li:first-child {
    margin-left: 0;
}

.review ul li i {
    font-size: 20px;
    color: #ffc107;
}

.testimonial-client-box-two .review {
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}

.swiper.testimonial-slider-two  {
    padding-bottom: 30px;
}

.testi-img-client-two {
    position: absolute;
    border-radius: 100%;
    box-shadow: 0px 30px 60px 0px rgba(0,0,0,0.1);
}

.testi-img-client-two.one {
    top: 20%;
    left: 0;
    -webkit-animation: movedelement 5s linear infinite;
    animation: movedelement 5s linear infinite; 
}

.testi-img-client-two.two {
    top: 50%;
    left: 15%;
    -webkit-animation: movedelement2 10s linear infinite;
    animation: movedelement2 10s linear infinite; 
}

.testi-img-client-two.three {
    bottom: 0;
    left: 5%;
    -webkit-animation: movedelement3 8s linear infinite;
    animation: movedelement3 8s linear infinite; 
}

.testi-img-client-two.four {
    top: 25%;
    right: 15%;
    -webkit-animation: movedelement4 5s linear infinite;
    animation: movedelement4 5s linear infinite;
}

.testi-img-client-two.five {
    top: 50%;
    right: 0;
    -webkit-animation: movedelement 5s linear infinite;
    animation: movedelement 5s linear infinite; 
}

.testi-img-client-two.six {
    bottom: 0;
    right: 15%;
    -webkit-animation: movedelement2 10s linear infinite;
    animation: movedelement2 10s linear infinite; 
}
@keyframes movedelement {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    25% {
        -webkit-transform: translate(10px, 10px);
        transform: translate(10px, 10px);
    }
    50% {
        -webkit-transform: translate(5px, 5px);
        transform: translate(5px, 5px);
    }
    75% {
        -webkit-transform: translate(10px, -5px);
        transform: translate(10px, -5px);
    }
    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes movedelement2 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    25% {
        -webkit-transform: translate(-10px, -10px);
        transform: translate(-10px, -10px);
    }
    50% {
        -webkit-transform: translate(-5px, -5px);
        transform: translate(-5px, -5px);
    }
    75% {
        -webkit-transform: translate(-10px, 5px);
        transform: translate(-10px, 5px);
    }
    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes movedelement3 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    25% {
        -webkit-transform: translate(15px, 15px);
        transform: translate(15px, 15px);
    }
    50% {
        -webkit-transform: translate(8px, 8px);
        transform: translate(8px, 8px);
    }
    75% {
        -webkit-transform: translate(15px, -8px);
        transform: translate(15px, -8px);
    }
    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes movedelement4 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    25% {
        -webkit-transform: translate(-15px, -15px);
        transform: translate(-15px, -15px);
    }
    50% {
        -webkit-transform: translate(-8px, -8px);
        transform: translate(-8px, -8px);
    }
    75% {
        -webkit-transform: translate(-15px, 8px);
        transform: translate(-15px, 8px);
    }
    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}
/*==========Testimonial CSS End==========*/

/*==========Blog CSS Start==========*/
.main-blog-one {
    position: relative;
    padding: 120px 0;
    background-color: #f9f4ff;
}

.blog-box-one {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 30px 60px 0px rgba(0,0,0,0.1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-box-one:hover {
    box-shadow: 0px 30px 60px 0px rgba(0,0,0,0.2);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-img-one {
    border-radius: 10px 10px 0 0;
    position: relative;
    overflow: hidden;
}

.blog-img-one>img {
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    border-radius: 10px 10px 0 0;
}

.blog-box-one:hover .blog-img-one>img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-text-box-one {
    padding: 30px;
}

.blog-author-date-one {
    display: flex;
    align-items: center;
}

.blog-author-one {
    display: flex;
    align-items: center;
}

.blog-author-name-one a {
    color: #101621;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-author-name-one a:hover {
    color: #6944d2;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-author-img-one {
    margin-right: 10px;
}

.blog-author-date-one .line {
    width: 1px;
    height: 35px;
    background-color: #c2c2c2;
    margin: 0 20px;
}

.blog-date-one {
    display: flex;
    align-items: center;
}

.blog-date-one i {
    font-size: 18px;
    color: #6944d2;
    margin-right: 10px;
}

.blog-date-one span {
    color: #777777;
}

.blog-main-title-one {
    margin-top: 25px;
}

.blog-main-title-one a .h3-title {
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-main-title-one a .h3-title:hover {
    color: #6944d2;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-title-one {
    text-align: center;
}

.blog-line-circleorg {
    width: 52px;
    height: 52px;
    top: 15%;
    left: 10%;
    z-index: 0;
}

.blog-circlepp {
    width: 30px;
    height: 30px;
    top: 50%;
    left: 10%;
    z-index: 0;
}

.blog-blur-circleorg {
    bottom: 10%;
    left: 5%;
    z-index: 0;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.blog-line-circleorgsec {
    width: 62px;
    height: 62px;
    top: 10%;
    right: 12%;
    z-index: 0;
}

.blog-blur-circlepp {
    top: 50%;
    right: 6%;
    z-index: 0;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.blog-circleorg {
    width: 30px;
    height: 30px;
    bottom: 10%;
    right: 12%;
    z-index: 0;
}
/*==========Blog CSS End==========*/

/*==========Get In Touch CSS Start==========*/
.main-get-in-touch-one {
    position: relative;
    padding: 120px 0;
}

.get-in-touch-content-one {
    margin-right: 30px;
}

.get-in-touch-content-one p {
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 5px;
}

.get-in-touch-call-one .h2-title {
    color: #ff6a32;
    margin-bottom: 0;
    padding-bottom: 0;
}

.get-in-touch-form-one .form-box-one .form-input-one {
    border: 1px solid #777777;
}

.get-in-touch-form-one .form-box-one textarea {
    height: 105px;
    border-radius: 10px;
}

.get-in-touch-line-circleorg {
    width: 60px;
    height: 60px;
    top: 15%;
    left: 5%;
}

.get-in-touch-blur-circlepp {
    top: 50%;
    left: 8%;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.get-in-touch-circlepp {
    width: 30px;
    height: 30px;
    bottom: 10%;
    left: 5%;
}

.get-in-touch-circleppsec {
    width: 14px;
    height: 14px;
    top: 15%;
    right: 10%;
}

.get-in-touch-line-aliment {
    right: -5%;
    top: 20%;
}

.get-in-touch-circleorg {
    width: 30px;
    height: 30px;
    top: 40%;
    right: 5%;
}

.get-in-touch-line-circlepp {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 5%;
}
/*==========Get In Touch CSS End==========*/
.main-team-detail-in-counterx {
    background-color: #17172f;
    padding-top: 100px;
    padding-bottom: 120px;
    position: relative;
}

.main-team-detail-in-counter-one .counter-text-box-two .h2-title {
    color: #ffffff;
}

.counter-bg-img-one-left {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.counter-bg-img-one-right {
    position: absolute;
    z-index: 0;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}
/*==========Counter CSS Start==========*/
.main-counter-two {
	background: rgba(0,6,38,1.00);
	padding-top: 40px;
    padding-bottom: 100px;
}

.h2-counter-subtitle {
    position: relative;
    font-family: 'Epilogue', sans-serif;
    font-size: 22px;
    color: #6944D2;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    display: inline-block;
}

.h2-counter-title{
    font-family: 'Epilogue', sans-serif;
    font-size: 50px;
    line-height: 60px;
    font-weight: 800;
    padding-top: 12px; 
	padding-bottom: 25px;
	color:#ffffff;
}
.h2-counter-title span{
    
	color:#FF6A32;
}
.h2-ref-subtitle {
    position: relative;
    font-family: 'Epilogue', sans-serif;
    font-size: 22px;
    color: #6944D2;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    display: inline-block;
}

.h2-ref-title{
    font-family: 'Epilogue', sans-serif;
    font-size: 50px;
    line-height: 60px;
    font-weight: 800;
    padding-top: 12px; 
	color:#ffffff;
}
.h2-ref-title span{
    
	color:#FF6A32;
}
.p-ref-title{
    font-family: 'Epilogue', sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
	color:#ffffff;
    padding-bottom: 25px;
}
.counter-box-two {
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-text-box-two .h2-title {
    font-size: 50px;
    line-height: normal;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
	color:#ffffff;
}

.counter-title-box-two {
    display: flex;
    align-items: center;
    text-align: left;
}

.counter-circle-two {
    width: 10px;
    height: 10px;
    background-color: #f26520;
    border-radius: 100%;
    margin-right: 10px
}

.counter-title-box-two span {
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
    color: #f26520;
}
/*==========Counter CSS End==========*/

/*==========Payments CSS Start==========*/
.main-payments-two {
    padding-top: 60px;
    padding-bottom: 120px;
}

.payment-content-box-two {
    padding-right: 30px;
}

.payment-title-two {
    text-align: left;
}

.payment-content-box-two .points {
    margin-top: 20px;
}

.payment-img-box-two {
    position: relative;
}

.payment-icon-two {
    position: absolute;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    box-shadow: 0px 30px 60px 0px rgba(0,0,0,0.1);
}

.payment-icon-two.one {
    top: 5%;
    left: 10%;
    width: 135px;
    height: 135px;
}

.payment-icon-two.two {
    width: 135px;
    height: 135px;
    bottom: 0;
    left: 0;
}

.payment-icon-two.three {
    width: 75px;
    height: 75px;
    top: 25%;
    right: 40%;
}

.payment-icon-two.four {
    width: 105px;
    height: 105px;
    bottom: 20%;
    left: 30%;
}
.payment-icon-two.five {
    width: 110px;
    height: 110px;
    top: 20%;
    right: 0;
}

.payment-icon-two.six {
    width: 135px;
    height: 135px;
    bottom: 0;
    right: 20%;
}
/*==========Payments CSS End==========*/

/*==========About Us Page CSS Start==========*/
.main-about-us-in-one {
    position: relative;
    padding-top: 170px;
    padding-bottom: 60px;
}

.main-in-features {
    padding-top: 60px;
    padding-bottom: 60px;
}

.features-box-one {
    background-color: #ffffff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 30px 60px 0px rgba(0,0,0,0.1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.features-box-one:hover {
    box-shadow: 0px 30px 60px 0px rgba(0,0,0,0.2);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.features-text-one {
    margin-top: 20px;
}

.features-text-one p {
    margin-bottom: 0;
}

.main-in-counter {
    position: relative;
    background-color: #f9f4ff;
    padding-top: 240px;
    padding-bottom: 120px;
    margin-top: -180px;
}

.achievement-in-content-box-one {
    padding-right: 30px;
}

.main-skills-in-one {
    position: relative;
}

.skill-content-box-one {
    padding-left: 30px;
}

.skill-bar-box-one {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #d7d7d7;
}

.skill-bar-percent-one {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 25px;
    line-height: 20px;
    font-weight: 700;
    color: #101621;
    display: flex;
    align-items: center;
}

.skill-bar-percent-one .h3-title {
    margin-bottom: 0;
}

.skill-bar-one {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    position: relative;
}

.skill-bar-one:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.skill-bar-inner-one {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    width: 0;
    height: 100%;
    overflow: visible;
    box-shadow: 0px 10px 30px 0px rgb(242,101,32,0.5);
}

.skill-bar-inner-one:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background: #f26520;
}

.skill-shape-one {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0%,-50%);
}

.achievement-img-box-one {
    position: relative;
}

.achiv-haxgoone-one {
    position: absolute;
    top: -35px;
    right: -40px;
    -webkit-animation: movedelement 5s linear infinite;
    animation: movedelement 5s linear infinite; 
}

.achiv-haxgotwo-one {
    position: absolute;
    bottom: -40px;
    left: 100px;
    animation: 10s linear 0s infinite normal none running movedelement2;
}

.achiv-in-circleorg {
    width: 30px;
    height: 30px;
    top: 30%;
    left: 10%;
    z-index: 0;
}

.achiv-in-circlepp {
    width: 14px;
    height: 14px;
    top: 40%;
    left: 5%;
    z-index: 0;
}

.achiv-aliment-line-one {
    top: 50%;
    left: -5%;
    z-index: 0;
}

.achiv-circleline-one {
    width: 120px;
    height: 120px;
    bottom: 5%;
    left: 5%;
    z-index: 0;
    opacity: 0.5;
}

.achiv-circlelineorg-one {
    width: 52px;
    height: 52px;
    top: 30%;
    right: 10%;
    z-index: 0;
    opacity: 0.5;
}

.achiv-in-circlepptwo {
    width: 30px;
    height: 30px;
    top: 50%;
    right: 5%;
    z-index: 0;
}

.achiv-blur-circleorg {
    bottom: 10%;
    right: 10%;
    z-index: 0;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.main-in-facts-two {
    background-color: #f9f4ff;
    padding: 120px 0;
}

.facts-content-box-two {
    padding-right: 30px;
}

.faq-accordion-two .accordion-item {
    box-shadow: 0px 30px 60px 0px rgb(0,0,0,0.1);
}

.main-in-facts-two .features-box-one {
    margin-top: 15px;
    margin-bottom: 15px;
}

.two-down {
    margin-bottom: 50px;
}

.two-top {
    margin-top: 50px;
}

.main-in-payments-two {
    padding-top: 120px;
    padding-bottom: 60px;
}

.main-in-payments-two .payment-content-box-two {
    margin-left: 30px;
    margin-right: 0;
}

.main-in-newsletter-one {
    padding-top: 60px;
    overflow: visible;
    margin-bottom: -160px;
}

.main-in-testimonial-two {
    background-color: #f9f4ff;
    padding-top: 280px;
    padding-bottom: 120px;
}
/*==========About Us Page CSS End==========*/

/*==========Services Page CSS Start==========*/
.main-in-servives {
    padding-top: 120px;
    padding-bottom: 90px;
    position: relative;
}

.main-in-why-choose-us-one {
    position: relative;
    background-color: #f9f4ff;
    padding-top: 120px;
    padding-bottom: 255px;
}

.main-ins-newsletter-one {
    position: relative;
    z-index: 1;
    margin-top: -170px;
}

.main-in-services-two {
    padding-top: 120px;
    padding-bottom: 120px;
}

.main-in-services-two .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
}

.main-in-services-two .service-box-two {
    box-shadow: 0px 30px 60px 0px rgb(0,0,0,0.1);
}

.main-in-services-two .service-box-two:hover {
    box-shadow: 0px 30px 60px 0px rgb(0,0,0,0.2);
}

.main-inserv-payments-two {
    padding-top: 120px;
    padding-bottom: 120px;
}

.main-inserv-testimonial-two {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: #f9f4ff;
}
/*==========Services Page CSS End==========*/

/*==========Service Detail Page CSS Start==========*/
.main-in-service-detail-one {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

.service-detail-imgbox-one {
    position: relative;
}

.sd-overlyone-one {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: movedelement3 5s linear infinite;
    animation: movedelement3 5s linear infinite;
}

.sd-overlytwo-one {
    position: absolute;
    top: 45%;
    right: 0;
    -webkit-animation: movedelement4 5s linear infinite;
    animation: movedelement4 5s linear infinite;
}

.service-detail-contentbox-one {
    padding-left: 30px;
}

.main-in-hwd-one {
    position: relative;
    z-index: -1;
    padding-top: 120px;
    padding-bottom: 90px;
    background-color: #f9f4ff;
}

.main-in-hwd-one .service-detail-title-one {
    text-align: center;
}

.service-hwd-box-one {
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 30px;
    display: flex;
    align-items: center;
    box-shadow: 0px 30px 60px 0px rgb(0,0,0,0.1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.service-hwd-box-one:hover {
    box-shadow: 0px 30px 60px 0px rgb(0,0,0,0.2);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.sd-hwd-no-one {
    width: 60px;
    height: 60px;
    background-color: #6944d2;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    z-index: 1;
}

.sd-hwd-no-one .h3-title {
    line-height: normal;
    margin-bottom: 0;
    padding-bottom: 0;
    color: #ffffff;
}

.sd-hwd-text-one {
    width: calc(100% - 80px);
    z-index: 1;
}

.sd-hwd-text-one p {
    margin-bottom: 0;
}

.sd-hwd-bgno-one {
    position: absolute;
    z-index: 0;
    bottom: 0;
    right: 30px;
}

.sd-hwd-bgno-one .h2-title {
    color: #eeeeee;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 50px;
    font-size: 50px;
}

.main-why-choose-us-sd-one {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
}

.main-why-choose-us-sd-one .why-choose-us-text-box {
    margin-left: 0;
    margin-right: 30px;
}

.main-service-detail-two {
    padding-top: 120px;
    padding-bottom: 100px;
}

.service-detail-menu-two ul {
    text-decoration: none;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.service-detail-menu-two ul li {
    margin-bottom: 20px;
}

.service-detail-menu-two ul li:last-child {
    margin-bottom: 0;
}

.service-detail-menu-two ul li a {
    background-color: #f9f4ff;
    border-radius: 10px;
    width: 100%;
    height: 60px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.service-detail-menu-two ul li a:hover, .service-detail-menu-two ul .active a {
    background-color: #f26520;
    box-shadow: 0px 10px 30px 0px rgb(242,101,32,0.3);
}

.service-detail-menu-two ul li a i {
    color: #6944d2;
    font-size: 18px;
    line-height: 0;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.h4-title {
    font-family: 'Epilogue', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: normal;
    color: #1a1b1e;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.service-detail-menu-two ul li a:hover .h4-title, .service-detail-menu-two ul li a:hover i, .service-detail-menu-two ul .active a i, .service-detail-menu-two ul .active a .h4-title {
    color: #ffffff;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.service-detail-info-two {
    margin-left: 20px;
}

.service-detail-main-img-two, .service-detail-main-img-two img {
    border-radius: 10px;
}

.service-detail-main-text-box-two {
    margin-top: 50px;
}

.service-detail-title-two {
    display: flex;
    align-items: center;
}

.service-icon-two {
    margin-right: 25px;
}

.points-box-two {
    display: flex;
    align-items: center;
}

.service-detail-main-text-box-two .points-box-two {
    margin-top: 30px;
    margin-bottom: 30px;
}

.service-detail-main-text-box-two .points-box-two .points.two {
    margin-left: 50px;
}

.service-detail-main-text-box-two .h3-title {
    margin-top: 30px;
}

.sd-imgo-two, .sd-imgo-two img, .sd-imgt-two, .sd-imgt-two img {
    border-radius: 10px;
}

.service-detail-main-text-box-two .sd-img-two {
    margin-top: 30px;
    margin-bottom: 30px;
}

/*==========Service Detail Page CSS End==========*/

/*==========Team Page CSS Start==========*/
.main-team-in-se-one {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

.main-team-in-counter-one {
    background-color: #f9f4ff;
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
}

.main-team-in-tm-one {
    position: relative;
    padding-top: 120px;
}
/*==========Team Page CSS End==========*/

/*==========Team Detail Page CSS Start==========*/
.main-team-detail-in-one {
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
}

.team-detail-main-one {
    margin-left: 20px;
}

.team-detail-title-main-box-one {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.team-detail-title-main-box-one .team-social-media-one {
    position: relative;
    margin-bottom: 16px;
    top: auto;
    transform: none;
    left: auto;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.team-detail-title-main-box-one .team-social-media-one ul {
    display: flex;
    align-items: center;
}

.team-detail-title-main-box-one .team-social-media-one ul li {
    margin-bottom: 0;
    margin-left: 10px;
}

.team-detail-title-main-box-one .team-social-media-one ul li:first-child {
    margin-left: 0;
}

.team-detail-title-box-one .h2-title {
    padding-bottom: 0;
    margin-bottom: 0;
}

.team-member-info-one {
    margin-top: 20px;
    margin-bottom: 30px;
}

.team-member-info-one ul {
    list-style: none;
    text-decoration: none;
    display: flex;
    margin-bottom: 0;
    padding-left: 0;
    align-items: center;
    justify-content: space-between;
}

.team-member-info-one ul li {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    color: #101621;
    font-weight: 500;
}

.team-member-info-one ul li span {
    color: #f26520;
}

.team-detail-main-one .points ul {
    columns: 2;
    margin-top: 30px;
}

.main-team-detail-in-counter-one {
    background-color: #17172f;
    padding-top: 195px;
    padding-bottom: 80px;
    position: relative;
}

.main-team-detail-in-counter-one .counter-text-box-two .h2-title {
    color: #ffffff;
}

.counter-bg-img-one-left {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.counter-bg-img-one-right {
    position: absolute;
    z-index: 0;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.team-detail-in-feature-one {
    margin-bottom: -180px;
}

.main-team-detail-in-info-two {
    padding-top: 120px;
}

.team-infobg-two {
    padding: 70px;
    background-color: #f9f4ff;
    border-radius: 10px;
}

.main-team-detail-in-info-two .team-img-two {
    border: 10px solid #f26520;
}

.team-detail-main-two .team-detail-title-box-two .h2-title {
    padding-bottom: 0;
}

.team-member-info-two {
    margin-top: 50px;
}

.team-member-info-two ul {
    text-decoration: none;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.team-member-info-two ul li {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}

.team-member-info-two ul li:last-child {
    margin-bottom: 0;
}

.team-member-info-two ul li span {
    color: #777777;
}

.team-detail-main-two {
    margin-left: 30px;
}

.team-detail-main-two .team-social-media-one {
    position: relative;
    top: auto;
    transform: none;
    left: auto;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    margin-top: 20px;
}

.team-detail-main-two .team-social-media-one ul {
    display: flex;
}

.team-detail-main-two .team-social-media-one ul li {
    margin-bottom: 0;
    margin-left: 10px;
}

.team-detail-main-two .team-social-media-one ul li:first-child {
    margin-left: 0;
}

.td-mpe-two {
    margin-top: 50px;
}

.td-mpe-two p:last-child {
    margin-bottom: 0;
}
/*==========Team Detail Page CSS End==========*/

/*==========Pricing Page CSS Start==========*/
.main-pricing-in-one {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
}

.main-get-in-pc-touch-one {
    position: relative;
    padding-bottom: 120px;
}

.main-pricing-in-two {
    padding-top: 120px;
    padding-bottom: 90px;
}

.main-pricing-in-two .pricing-box-one {
    margin-bottom: 30px;
}
/*==========Pricing Page CSS End==========*/

/*==========FAQ Page CSS Start==========*/
.main-faq-in-one {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

.faq-title-in-one {
    text-align: center;
}

.faq-accordion-one.one-one {
    padding-right: 15px;
}

.faq-accordion-one.two-one {
    padding-left: 15px;
}

.main-faq-in-one-two {
    padding-top: 120px;
    padding-bottom: 120px;
}

.faq-in-one-two-content p:last-child {
    margin-bottom: 0;
}

.faq-in-one-two-content {
    padding-right: 20px;
}

.main-faq-in-two-two {
    background-color: #f9f4ff;
    padding-top: 120px;
    padding-bottom: 120px;
}

.faq-in-two-two-content {
    padding-left: 20px;
}

.faq-in-two-two-content p:last-child {
    margin-bottom: 0;
}
/*==========FAQ Page CSS End==========*/

/*==========Blog Page CSS Start==========*/
.main-blog-grid-in {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

.main-blog-grid-in .blog-box-one {
    margin-bottom: 30px;
}

.pagination-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.pagination-box ul {
    text-decoration: none;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.pagination-box ul li {
    margin-left: 20px;
}

.pagination-box ul li:first-child {
    margin-left: 0;
}

.pagination-box ul li a:first-child i, .pagination-box ul li a:last-child i {
    font-size: 30px;
    color: #10161b;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.pagination-box ul li:first-child a, .pagination-box ul li:last-child a {
    width: auto;
    height: auto;
    background-color: transparent;
    background: transparent !important;
}

.pagination-box ul li:first-child a:hover i, .pagination-box ul li:last-child a:hover i {
    color: #f26520;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.pagination-box ul li a {
    width: 40px;
    height: 40px;
    background-color: #ebebeb;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.pagination-box ul li:hover a {
    background-color: #f26520;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.pagination-box ul .active a {
    background-color: #f26520;
}

.pagination-box ul li a {
    width: 60px;
    height: 60px;
    background-color: #ebebeb;
    border-radius: 100%;
}

.pagination-box ul li a span {
    font-size: 18px;
    font-weight: 500;
    color: #10161b;
}

.pagination-box ul li a:hover span {
    color: #ffffff;
}

.pagination-box ul .active a span {
    color: #ffffff;
}

.main-blog-list-in {
    padding-top: 120px;
    padding-bottom: 120px;
}

.blog-list-box {
    padding-right: 20px;
}

.blog-list-box .blog-box-one {
    box-shadow: none;
    background-color: transparent;
    margin-bottom: 70px;
}

.blog-list-box .blog-text-box-one {
    padding-left: 0;
    padding-bottom: 0;
    padding-right: 0;
}

.blog-list-box .blog-img-one>img, .blog-list-box  .blog-img-one {
    border-radius: 10px 10px 10px 10px;
}

.search-form-box {
    position: relative;
}

.search-form-box .form-input-two {
    border: 1px solid #cccccc;
    color: #777777;
}

.search-form-box .sec-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 0;
    height: 50px;
    width: 50px;
    border: none;
}

.blog-sidebar-title-line {
    display: flex;
    align-items: center;
}

.title-line-one {
    width: 70%;
    height: 1px;
    background-color: #777777;
    margin-right: 20px;
}

.title-line-two {
    width: 30%;
    height: 1px;
    background-color: #ff6a32;
}

.blog-Categories, .blog-recent-post, .blog-tag {
    margin-top: 50px;
}

.blog-Categories ul, .blog-recent-post ul, .blog-tag ul {
    text-decoration: none;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    margin-top: 30px;
}

.blog-Categories ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.blog-Categories ul li:last-child {
    margin-bottom: 0;
}

.blog-Categories ul li img {
    width: 11px;
    height: 11px;
    transform: rotate(0deg);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-Categories ul li:hover img {
    transform: rotate(90deg);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-Categories ul li a {
    width: calc(11px - 100%);
    margin-left: 10px;
    color: #777777;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-Categories ul li a:hover {
    color: #ff6a32;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-recent-post ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.blog-recent-post ul li:last-child {
    margin-bottom: 0;
}

.recent-post-img {
    border-radius: 10px;
    overflow: hidden;
    margin-right: 20px;
}

.recent-post-img img {
    border-radius: 10px;
    width: 100%;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-recent-post ul li:hover .recent-post-img img {
    transform: scale(1.2);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-recent-post ul li .recent-post-text a {
    color: #777777;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-recent-post ul li:hover .recent-post-text a {
    color: #ff6a32;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.recent-post-text {
    width: calc(100% - 120px);
}

.recent-post-text .blog-date-one {
    margin-top: 10px;
}

.blog-tag ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.blog-tag ul li {
    margin-bottom: 15px;
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.blog-tag ul li a {
    background-color: #ffffff;
    border: 1px solid #777777;
    border-radius: 30px;
    font-weight: 500;
    color: #777777;
    padding: 10px 20px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-tag ul li a:hover {
    background-color: #ff6018;
    color: #ffffff;
    border: 1px solid #ff6018;
    box-shadow: 0px 10px 20px 0px rgb(255,82,25,0.4);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-gallery {
    margin-top: 30px;
}

.blog-box-gallery {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.blog-box-gallery a {
    margin-right: 20px;
    margin-bottom: 20px;
}

.blog-box-gallery a, .blog-box-gallery a img {
    border-radius: 10px;
}

.blog-gfq {
    margin-top: 30px;
    background-color: #6944d2;
    border-radius: 10px;
    padding: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.blog-gfq .h3-title {
    color: #ffffff;
    margin-top: 30px;
}

.blog-gfq p {
    color: #ffffff;
    font-weight: 500;
}

.blog-gfq .sec-btn:after {
    background-color: #1f1f3a;
}
/*==========Blog Page CSS End==========*/

/*==========Blog Detail Page CSS Start==========*/
.main-blog-detail-in-one {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

.blog-about-author {
    background-color: #17172f;
    padding: 40px;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    margin-bottom: 50px;
}

.blog-about-author .h3-title {
    color: #ffffff;
    margin-top: 30px;
}

.blog-about-author p {
    color: #d1d1d1;
}

.blog-about-author .team-social-media-one {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    transition: none;
    margin-top: 25px;
}

.blog-about-author .team-social-media-one ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-about-author .team-social-media-one ul li {
    margin-bottom: 0;
    margin-left: 10px;
}

.blog-about-author .team-social-media-one ul li:first-child {
    margin-left: 0;
}

.blog-detail-main-content-box-one {
    padding-left: 20px;
}

.blog-detail-img-one, .blog-detail-content-imgone-one, .blog-detail-content-imgtwo-one, .blog-detail-content-imgthree-one, .bd-prev-img, .bd-next-img {
    border-radius: 10px;
    overflow: hidden;
    display: block;
}

.blog-detail-img-one img, .blog-detail-content-imgone-one img, .blog-detail-content-imgtwo-one img, .blog-detail-content-imgthree-one img, .bd-prev-img img, .bd-next-img img {
    border-radius: 10px;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-detail-img-one:hover img, .blog-detail-content-imgone-one:hover img, .blog-detail-content-imgtwo-one:hover img, .blog-detail-content-imgthree-one:hover img, .bd-prev:hover .bd-prev-img img, .bd-next:hover .bd-next-img img {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-detail-main-content-box-one .blog-author-date-one {
    margin-top: 30px;
}

.blog-detail-main-title-one {
    margin-top: 10px;
}

.blog-detail-main-title-one .h2-title {
    padding-bottom: 15px;
    margin-bottom: 0;
}

.blog-detail-content-img-box-one {
    margin-top: 30px;
    margin-bottom: 30px;
}

.blog-detail-quort-box-one {
    margin-top: 30px;
    margin-bottom: 25px;
}

.blog-detail-quort-box-one .h3-title {
    text-align: center;
    font-style: italic;
}

.blog-detail-main-content-box-one .bd-line, .blog-detail-main-content-box-two .bd-line {
    width: 100%;
    height: 1px;
    background-color: #cccccc;
    margin-top: 50px;
}

.blog-detail-tag-social-one {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-detail-tag-social-one .blog-tag {
    margin-top: 0;
}

.blog-detail-tag-social-one .team-social-media-one {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    transition: none;
}

.blog-detail-tag-social-one .team-social-media-one ul {
    display: flex;
    align-items: center;
}

.blog-detail-tag-social-one .team-social-media-one ul li {
    margin-bottom: 0;
    margin-right: 10px;
}

.blog-detail-tag-social-one .team-social-media-one ul li:last-child {
    margin-right: 0;
}

.bd-related-blog-one {
    margin-top: 110px;
}

.bd-comment-box-one {
    display: flex;
    align-items: center;
}

.bd-comment-img {
    margin-right: 20px;
}

.bd-comment-name-btn-one {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bd-comment-name-date-one span {
    color: #6944d2;
    margin-top: 10px;
}

.bd-comment-name-btn-one .sec-btn {
    height: 40px;
    padding: 8px 20px;
}

.bd-comment-content-one {
    width: calc(100% - 170px);
}

.bd-comment-name-btn-one {
    margin-bottom: 20px;
}

.bd-comment-one, .bd-write-comment-one {
    margin-top: 120px;
}

.bd-comment-one .bdc-line {
    width: 100%;
    height: 1px;
    border: 1px dashed #c2c2c2;
    margin-top: 40px;
    margin-bottom: 40px;
}

.leave-reply-form-one .form-input-one {
    border: 1px solid #777777;
}

.leave-reply-form-one textarea {
    border-radius: 10px;
    height: 120px;
}

.blog-detail-main-content-box-two {
    padding-right: 20px;
}

.blog-detail-main-content-box-two .blog-author-date-one {
    margin-bottom: 20px;
}

.blog-detail-img-two {
    border-radius: 10px;
    overflow: hidden;
    display: block;
    margin-bottom: 30px;
}

.blog-detail-img-two img {
    border-radius: 10px;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-detail-img-two img:hover {
    transform: scale(1.05);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.blog-detail-quort-box-two {
    background-color: #17172f;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.blog-detail-quort-box-two .h3-title {
    font-style: italic;
    color: #ffffff;
    margin-bottom: 20px;
}

.blog-detail-quort-box-two {
    margin-top: 30px;
    margin-bottom: 30px;
}

.blog-detail-content-imgthree-one {
    margin-top: 30px;
}

.bd-next-prev {
    background-color: #f9f4ff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.bd-prev {
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: start;
}

.bd-next {
    display: flex;
    align-items: center;
    text-align: right;
    justify-content: end;
}

.bd-prev-img {
    margin-right: 20px;
}

.bd-next-img {
    margin-left: 20px;
}

.bd-prev-content, .bd-next-content {
    width: calc(90% - 120px);
}

.h4-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.bd-prev-content .link-btn {
    display: flex;
    align-items: center;
}

.bd-prev-content .link-btn i {
    font-size: 25px;
    margin-right: 10px;
}

.bd-next-content .link-btn i {
    margin-left: 10px;
}

.bd-next-content .link-btn span {
    margin-right: 0;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.bd-next-content .link-btn:hover span {
    margin-right: 0;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}
/*==========Blog Detail Page CSS End==========*/

/*==========Contact Us Page CSS Start==========*/
.main-contact-us-in-one {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

.contact-us-info-one ul, .contact-us-info-box-two ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
}

.contact-us-info-one ul li, .contact-us-info-box-two ul li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-us-info-box-two ul li {
    background-color: #f9f4ff;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.contact-us-info-box-two ul li:hover {
    box-shadow: 0px 30px 60px 0px rgb(0,0,0,0.1);
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.contact-us-info-box-two ul li:hover .contact-in-icon img {
    animation: hvr-buzz-out 0.75s linear 1;
}

.contact-us-info-one ul li:last-child, .contact-us-info-box-two ul li:last-child {
    margin-bottom: 0;
}

.contact-in-icon {
    margin-right: 20px;
}

.contact-in-content {
    width: calc(100% - 64px);
}

.contact-in-content p {
    font-size: 18px;
    margin-bottom: 0;
}

.contact-form-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0px 30px 60px 0px rgb(0,0,0,0.1);
}

.main-map-contact-in-one {
    width: 100%;
    height: 500px;
}

.contact-map-two {
    width: 100%;
    height: 500px;
    border-radius: 10px;
}

.contact-map-two iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.main-map-contact-in-two {
    padding-bottom: 120px;
}

.main-map-contact-in-one iframe {
    width: 100%;
    height: 100%;
}

.main-contact-us-in-two {
    padding-top: 120px;
    padding-bottom: 120px;
}

.contact-us-info-box-two {
    padding-left: 20px;
}
/*==========Contact Us Page CSS End==========*/

/*==========404 Error Page CSS Start==========*/
.main-404-error-in-one, .main-404-error-in-two {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

.error-404-content-one, .error-404-content-two {
    text-align: center;
}

.error-404-content-one .h2-title, .error-404-content-two .h2-title {
    margin-top: 50px;
    margin-bottom: 0;
    padding-bottom: 15px;
}

.error-404-content-one p, .error-404-content-two p {
    margin-bottom: 30px;
}
/*==========404 Error Page CSS End==========*/

/*==========Footer CSS Start==========*/
.main-footer-one {
    background-color: #17172f;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.footer-content-one {
    text-align: center;
}

.footer-content-one .h2-title {
    font-size: 55px;
    line-height: normal;
    color: #ffffff;
    font-weight: 800;
    padding-top: 0;
}

.footer-content-one .h2-title span {
    color: #ff6a32;
}

.footer-content-one p {
    color: #a3adbf;
    font-weight: 500;
}

.footer-btn-one {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 120px;
}

.footer-btn-one .sec-btn.footer-o i {
    font-size: 15px;
    color: #ffffff;
    margin-right: 10px;
}

.footer-btn-one .sec-btn.footer-t i {
    font-size: 15px;
    color: #6944d2;
    margin-right: 10px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.footer-btn-one .sec-btn.footer-o {
    background-color: #6944d2;
    margin-right: 15px;
}

.footer-btn-one .sec-btn.footer-o:after, .footer-btn-one .sec-btn.footer-t:after {
    background-color: #ff6a32;
}

.footer-btn-one .sec-btn.footer-t {
    background-color: #ffffff;
    color: #6944d2 !important;
    margin-left: 15px;
}

.footer-btn-one .sec-btn.footer-t:hover {
    color: #ffffff !important;
}

.footer-btn-one .sec-btn.footer-t:hover i {
    color: #ffffff;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.footer-links-one ul {
    list-style: none;
    text-decoration: none;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: end;
}

.footer-links-one ul li {
    margin-right: 50px;
}

.footer-links-one ul li:last-child {
    margin-right: 0;
}

.footer-links-one ul li a {
    color: #ffffff;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.footer-links-one ul li a:hover {
    color: #ff6a32;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.footer-logo-links-one .line {
    border: 1px solid rgb(255,255,255,0.2);
    margin-top: 30px;
}

.footer-copyright span {
    color: #ffffff;
}

.footer-copyright span a {
    color: #ff6a32;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.footer-copyright span a:hover {
    color: #6944d2;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.footer-copyright-social-media-one {
    padding: 25px 0;
	margin-bottom: 20px;
}

.footer-social-media-one ul {
    text-decoration: none;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: end;
}

.footer-social-media-one ul li {
    margin-right: 20px;
}

.footer-social-media-one ul li:last-child {
    margin-right: 0;
}

.footer-social-media-one ul li a {
    color: #ffffff;
    font-size: 20px;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.footer-social-media-one ul li a:hover {
    color: #ff6a32;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

.footer-aliment-line-one {
    top: -50%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 0;
}

.footer-line {
    top: 10%;
    left: -1%;
    z-index: 0;
}

.footer-circleorg {
    width: 30px;
    height: 30px;
    top: 10%;
    left: 10%;
    z-index: 0;
}

.footer-circlepp {
    width: 14px;
    height: 14px;
    top: 30%;
    left: 10%;
    z-index: 0;
}

.footer-line-circlepp {
    width: 120px;
    height: 120px;
    bottom: 10%;
    left: 5%;
    z-index: 0;
}

.footer-line-circleorg {
    width: 52px;
    height: 52px;
    top: 10%;
    right: 10%;
    z-index: 0;
}

.footer-circleppsec {
    width: 30px;
    height: 30px;
    bottom: 50%;
    right: 5%;
    z-index: 0;
}

.footer-blur-circleorg {
    bottom: 10%;
    right: 8%;
    z-index: 0;
    animation-name: zoom-fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
/*==========Footer CSS End==========*/

/*==========Back To Top CSS Start==========*/
.progress-wrap {
    position: fixed;
    right: 50px;
    bottom: 50px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: 0px 30px 60px 0px rgb(0,0,0,0.2);
    background-color: #6944d2;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }
  
  .progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .progress-wrap::after {
    position: absolute;
    content: '\f062';
    font-family: 'FontAwesome';
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: #ffffff;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }

  .progress-wrap svg path { 
    fill: none; 
  }
  
  .progress-wrap svg.progress-circle path {
    stroke: #ffffff;
    stroke-width: 4;
    box-sizing:border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }
/*==========Back To Top CSS End==========*/

/*==========Responsive CSS Start==========*/
@media screen and (max-width: 1600px) {
    .bg-circlebluro-one {
        left: 2%;
    }

    .my-client-circleorg {
        left: 5%;
    }

    .footer-blur-circleorg {
        right: 3%;
    }

    .achiv-in-circleorg {
        left: 2%;
    }
}

@media screen and (max-width: 1500px) {
    .service-circlepp {
        left: 3%;
    }

    .get-in-touch-blur-circlepp {
        left: 2%;
    }
}

@media screen and (max-width: 1399px) {
    .main-navigation ul li {
        margin-left: 15px;
        padding-left: 15px;
    }

    .main-navigation ul li ul.sub-menu li:first-child {
        padding-left: 15px;
    }

    .header-btn, .header-btn-two {
        margin-left: 35px;
    }

    .h1-title {
        font-size: 60px;
        line-height: 70px;
    }

    .h2-title {
        font-size: 55px;
        line-height: 65px;
    }

    .h3-title {
        font-size: 22px;
        line-height: 32px;
    }

    .h2-subtitle {
        font-size: 20px;
        line-height: 20px;
    }

    .banner-text-aliment-pm-one span, .banner-aliment-mastercard-box-one span {
        font-size: 15px;
    }

    .banner-aliment-pn-add {
        width: 20px;
        height: 20px;
        margin-left: 14px;
    }

    .banner-title-box-one p {
        font-size: 15px;
        line-height: 24px;
	
    }

    .bg-circlebluro-one {
        left: 0;
    }

    .footer-links-one ul li {
        margin-right: 40px;
    }

    .why-choose-imgone {
        max-width: unset;
    }

    .bg-aliment-line-two {
        right: 0%;
    }

    .about-imgtwo-two {
        left: -30px;
    }

    .service-box-two {
        padding: 30px;
    }

    .main-pricing-two .pricing-box-one {
        padding: 30px;
    }

    .banner-img-box-two {
        padding: 70px 90px 0 90px;
    }

    .bd-related-blog-one .blog-text-box-one {
        padding: 20px;
    }
}

@media screen and (max-width: 1299px) {
    .bg-aliment-mobile {
        width: 20px;
        height: 20px;
    }

    .h4-title {
        font-size: 16px;
        font-weight: 700;
        line-height: 26px;
    }

    .banbg-circleon-one, .pricing-circleppsec, .team-circleorg, .team-line-circlepp, .why-choose-circlepp, .testimonial-circlepp, .blog-circlepp, .get-in-touch-line-circleorg, .footer-circlepp {
        left: 2%;
    }

    .faq-line-circleorg, .team-circlepp, .why-choose-line-circleorg, .testimonial-line-circlepp, .blog-line-circleorg, .get-in-touch-circlepp, .footer-circleorg, .footer-line-circlepp {
        left: 3%;
    }

    .my-client-circleorg  {
        top: 50%;
        left: 2%;
    }

    .my-client-line-circlepp {
        top: 20%;
        left: 5%;
    }

    .banbg-circletw-one, .why-choose-circleorg, .why-choose-line-circlepp, .testimonial-line-circleorg, .blog-line-circleorgsec, .get-in-touch-circleppsec, .get-in-touch-line-circlepp, .footer-line-circleorg {
        right: 3%;
    }

    .pricing-circlepp, .faq-circlepp, .why-choose-circleppsec, .testimonial-circleppsec, .blog-circleorg, .get-in-touch-circleorg, .footer-circleppsec {
        right: 2%;
    }

    .testimonial-circleorg {
        top: 30%;
        left: 3%;
    }

    .bg-aliment-blur-mobile {
        width: 5%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why-choose-img-box-two {
        background-size: contain;
    }

    .why-choose-img-two.two {
        left: 0;
    }

    .why-choose-img-two.one {
        right: 5%;
		
    }

    .why-choose-img-two.three {
        bottom: 5%;
    }

    .why-choose-img-two.four {
        right: -5%;
    }

    
}

@media screen and (max-width: 1199px) {
    .main-navigation ul li {
        margin-left: 10px;
        padding-left: 10px;
    }

    .header-btn, .header-btn-two {
        margin-left: 15px;
    }

    .main-navigation ul li ul.sub-menu li:first-child {
        padding-left: 12px;
    }

    .sec-btn {
        height: 55px;
        padding: 15px 35px;
    }

    .main-navigation ul li a {
        font-size: 15px;
    }

    .h1-title {
        font-size: 58px;
        line-height: 68px;
    }

    .h2-title {
        font-size: 45px;
        line-height: 55px;
    }

    .h3-title {
        font-size: 20px;
        line-height: 30px;
    }

    .h2-subtitle-one {
        font-size: 18px;
        line-height: 18px;
    }

    .banner-text-aliment-pm-one span, .banner-aliment-mastercard-box-one span {
        font-size: 14px;
        line-height: normal;
        width: calc(100% - 35px);
    }

    .testimonial-img-client-one {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonial-img-client-one.c-one {
        width: 25%;
    }

    .testimonial-img-client-one.c-two {
        width: 16%;
    }

    .testimonial-img-client-one.c-three {
        width: 13%;
    }

    .testimonial-img-client-one.c-four {
        width: 12%;
    }

    .testimonial-img-client-one.c-five {
        width: 18%;
    }

    .testimonial-img-client-one.c-six {
        width: 20%;
    }

    .blog-author-date-one .line {
        margin: 0 10px;
    }

    .blog-text-box-one {
        padding: 25px;
    }

    .blog-author-img-one {
        width: 23%;
        margin-right: 7px;
    }

    .blog-author-name-one a {
        font-size: 14px;
    }

    .blog-date-one i {
        font-size: 14px;
        margin-right: 5px;
    }

    .blog-date-one span {
        font-size: 14px;
    }

    .footer-links-one ul li {
        margin-right: 30px;
    }

    .accordion-button {
        font-size: 16px;
        line-height: 20px;
    }

    .faq-img-one {
        width: 95%;
    }

    .about-us-paypal-one {
        width: 78px;
        height: 78px;
        left: 8%;
    }

    .about-us-master-one {
        width: 100px;
        height: 100px;
        right: 6%;
    }

    .download-store-text .h3-title {
        line-height: 15px;
    }

    .download-store-one.line::before {
        width: 97%;
    }

    .plan-price-one .h3-title {
        font-size: 30px;
    }

    .newsletter-title-one .h2-title {
        font-size: 45px;
    }

    .banner-img-box-two {
        padding: 50px 70px 0 70px;
    }

    .banner-text-box-two p {
        font-size: 15px;
        line-height: 24px;
    }

    .about-imgtwo-two {
        left: 0;
        width: 15%;
    }

    .achiv-haxgotwo-one {
        bottom: -20%;
    }

    .team-member-info-one ul {
       flex-wrap: wrap;
    }

    .team-member-info-one {
        margin-bottom: 0;
    }

    .team-member-info-one ul li {
        margin-bottom: 20px;
    }

    .blog-box-gallery a {
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .bd-related-blog-one .blog-box-one {
        margin-bottom: 30px;
    }

    .bd-comment-one, .bd-write-comment-one {
        margin-top: 90px;
    }

    .bd-next-prev {
        padding: 20px;
    }

    .bd-prev-content, .bd-next-content {
        width: 100%;
    }

    .h4-title {
        font-size: 15px;
        font-weight: 700;
        line-height: 25px;
    }

    .contact-form-box {
        padding: 30px;
    }

    .about-box-years-two {
        left: -60px;
    }
}

@media screen and (max-width: 991px) {
    .site-header {
        background: #ffffff;
        height: 80px;
        padding: 0;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        transition: none;
        border-bottom: none;
        transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    }

    .site-header.two {
        background-color: #1f1f3a;
    }

    .header-top {
       display: none;
    }
    
    .header-bottom {
        background-color: transparent;
        box-shadow: none;
    }
    
    .sticky-header .header-bottom {
        padding: 23px 0px;
        animation: none;
        transition: 0.3s;
    }
    
    .site-branding {
        position: fixed;
        top: 5px;
        left: 30px;
        width: 200px;
        height: 70px;
        display: flex;
        align-items: center;
    }
    
    .site-branding a img.sticky-logo {
        display: block;
        position: relative;
        opacity: 1;
    }
    
    .header-search-box {
        display: none;
    }
    
    .toggle-button {
        display: block;
    }
    
    .header-menu,
    .site-header.sticky-header .header-menu {
        display: block;
        height: auto;
    }
    
    .header-btn {
        display: none;
    }
    
    .mobile-menu-box {
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        height: 100vh;
        background: transparent;
        padding: 100px 60px 30px;
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
        z-index: 100;
    }
    
    .toggle-menu .mobile-menu-box {
        opacity: 1;
        pointer-events: unset;
    }
    
    .mobile-menu-box:before {
        content: '';
        position: absolute;
        bottom: 50px;
        right: 0;
        width: 100%;
        height: 50%;
        background-size: 100%;
        background-position: bottom center;
        background-repeat: no-repeat;
        pointer-events: none;
        opacity: 0;
        transition: 0.3s;
        z-index: 3;
    }

    .menu-background.one {
        background: #ffffff;
    }

    .menu-background.two {
        background: #1f1f3a;
    }
    
    .menu-background.top {
        position: absolute;
        top: -100%;
        left: 50%;
        transform: translate(-50%) skewY(-20deg);
        width: 101%;
        height: 50.3333%;
        transition: 1s;
        z-index: 0;
    }
    
    .toggle-menu .menu-background.top {
        top: -20%;
        transition-delay: 0.5s;
    }

    .menu-background.middle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) skewY(-20deg);
        width: 101%;
        height: 0;
        transition: 1s;
        z-index: 1;
    }
    
    .toggle-menu .menu-background.middle {
        height: 50%;
        transition-delay: 0.5s;
    }
    
    .menu-background.bottom {
        position: absolute;
        bottom: -100%;
        left: 50%;
        transform: translate(-50%) skewY(-20deg);
        width: 101%;
        height: 50.3333%;
        transition: 1s;
        z-index: 0;
    }
    
    .toggle-menu .menu-background.bottom {
        bottom: -20%;
        transition-delay: 0.3s;
    }
    
    .main-navigation ul {
        position: relative;
        display: block;
        text-align: left;
        z-index: 10;
        top: 60px;
    }
    
    .main-navigation ul li {
        display: block;
        margin-right: 0;
        margin-bottom: 5vh;
        position: relative;
        left: -30px;
        opacity: 0;
        transition: 0.5s;
    }
    
    .main-navigation.toggle-menu ul li {
        left: 0;
        opacity: 1;
    }
    
    .main-navigation.toggle-menu ul li:nth-child(1) {
        transition-delay: 0.5s;
    }
    
    .main-navigation.toggle-menu ul li:nth-child(2) {
        transition-delay: 0.6s;
    }
    
    .main-navigation.toggle-menu ul li:nth-child(3) {
        transition-delay: 0.7s;
    }
    
    .main-navigation.toggle-menu ul li:nth-child(4) {
        transition-delay: 0.8s;
    }
    
    .main-navigation.toggle-menu ul li:nth-child(5) {
        transition-delay: 0.9s;
    }
    
    .main-navigation.toggle-menu ul li:nth-child(6) {
        transition-delay: 1s;
    }
    
    .main-navigation.toggle-menu ul li:nth-child(7) {
        transition-delay: 1.1s;
    }
    
    .main-navigation.toggle-menu ul li:nth-child(8) {
        transition-delay: 1.2s;
    }
    
    .main-navigation.toggle-menu ul li:nth-child(9) {
        transition-delay: 1.3s;
    }
    
    .main-navigation.toggle-menu ul li:nth-child(10) {
        transition-delay: 1.4s;
    }
    
    .main-navigation ul li:last-child {
        margin-bottom: 0;
    }
    
    .header-search-box {
      display: none;
    }
    
    .main-navigation.toggle-menu ul li {
      text-align: left;
      margin-top: 0;
      margin-left: 0;
      opacity: 1;
      transition: 0.5s;
      transition-delay: 0.4s;
    }
    
    .main-navigation ul li {
      display: block;
      margin: -50px 0 10px 0;
      padding: 10px 40px 20px 40px;
      opacity: 0;
      transition: 0.5s;
    }
    
    .main-navigation.toggle-menu ul li {
      text-align: left;
      margin-top: 0;
      opacity: 1;
      transition: 0.5s;
      transition-delay: 0.4s;
    }
    
    .main-navigation ul li a {
      font-size: 20px;
      line-height: 28px;
      color: #ffffff;
    }
    
    .main-navigation ul li {
      display: block;
      margin: 0 0 10px 0;
      padding: 10px 40px 20px 0;
      opacity: 0;
      transition: 0.5s;
    }
    
    .main-navigation ul li ul.sub-menu, .main-navigation ul li:hover ul.sub-menu {
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
      background: transparent;
      box-shadow: none;
      border-radius: 0;
      display: block;
      animation: none;
      padding: 0;
      margin-top: 10px;
      transition: 0s;
      display: none;
    }
    
    .main-navigation ul li ul.sub-menu li:first-child {
        padding-left: 8px;
    }
    
    .main-navigation ul li ul.sub-menu li {
      text-align: left;
      border: none;
      padding: 0 0 0 10px;
      margin-bottom: 10px;
    }
    
    .main-navigation ul li ul.sub-menu li a {
      color: #10161b;
      padding: 0;
      font-size: 18px;
      line-height: 24px;
    }
    
    .main-navigation ul li.sub-items>a:before {
      color: #10161b;
    }
    
    .main-navigation ul li.sub-items:hover>a:before, .main-navigation ul li a:hover:before {
      transform: translate(0,-50%) rotate(0deg);
      color: #ff6a32;
    }
    
    .main-navigation ul li.sub-items:hover>a, .main-navigation ul li a:hover, .main-navigation ul li.active>a {
      color: #ff6a32;
    }
    
    .site-header.sticky-header .main-navigation ul li a, .site-header.sticky-header .search-icon a, .site-header.sticky-header .main-navigation ul li.sub-items>a:before {
      color: #10161b;
    }
    
    .main-navigation ul li.sub-items:hover>a, .main-navigation ul li a:hover, .main-navigation ul li.active>a::before {
      color: #ff6a32;
    }
    
    .main-navigation ul li:first-child {
      padding: 0 40px 20px 0;
    }

    .site-branding {
        top: 6px;
        transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    }

    .site-header.sticky-header {
        height: 80px;
        transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    }

    .site-header.sticky-header .site-branding {
        top: 6px;
        transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    }

    .site-header.sticky-header .toggle-button {
        top: 10px;
        transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    }

    .banner-title-box-one {
        text-align: center;
        padding-top: 22px;
    }

    .banner-btn {
        justify-content: center;
    }

    .banner-img-box-one {
        justify-content: center;
        padding-top: 80px;
    }

    .banner-aliment-small-box-one {
        left: 230px;
    }

    .main-banner-one {
        padding-bottom: 36px;
        padding-top: 135px;
    }

    .main-service-one {
        padding-top: 0px;
    }

    .main-service-one {
        padding-bottom: 12px;
    }

    .newsletter-form-one .sec-btn {
        position: relative;
        margin-right: auto;
        margin-left: auto;
        margin-top: 10px;
    }

    .newsletter-form-one .form-input-one {
        padding-right: 30px;
    }

    .newsletter-bg-one {
        padding: 50px 0;
    }

    .newsletter-form-one {
        width: 60%;
    }

    .main-about-us-one {
        padding: 323px 0 80px 0;
    }

    .main-about-text-box-one {
        margin-left: 0;
        margin-top: 50px;
    }

    .about-us-paypal-one {
        left: 20%;
    }

    .about-us-master-one {
        right: 26%;
    }

    .download-store-one.line::before {
        width: 80%;
    }

    .main-pricing-one {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .pricing-box-one {
        margin-bottom: 30px;
    }

    .main-faq-one {
        padding: 80px 0;
    }

    .faq-img-bg-one {
        position: relative;
        margin-top: 60px;
    }

    .banner-play-btn {
        margin-left: 30px;
    }

    .main-team-one {
        padding: 80px 0;
    }

    .team-text-inner-one {
        padding: 20px 20px;
    }

    .why-choose-us-text-box {
        margin-left: 0;
        margin-top: -10px;
    }

    .faq-box-one {
        margin-bottom: 22px;
        margin-right: 0;
    }

    .main-why-choose-us-one {
        padding-top: 50px;
        padding-bottom: 80px;
    }

    .main-testimonial-one {
        padding-top: 80px;
        padding-bottom: 27px;
    }

    .testimonial-img-box-one {
        margin-left: 0;
        margin-top: 50px;
    }

    .testimonial-img-client-one.c-one {
        width: 18%;
    }

    .testimonial-img-client-one.c-two, .testimonial-img-client-one.c-five, .testimonial-img-client-one.c-six {
        width: 12%;
    }

    .testimonial-img-client-one.c-four {
        width: 10%;
    }

    .main-blog-one {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .blog-box-one {
        margin-bottom: 30px;
    }

    .main-get-in-touch-one {
        padding: 80px 0;
    }

    .get-in-touch-content-one {
        margin-right: 0;
        margin-bottom: 38px;
    }

    .main-footer-one {
        padding-top: 80px;
    }

    .footer-btn-one {
        margin-bottom: 75px;
    }

    .footer-links-one ul li {
        margin-right: 25px;
    }

    .footer-content-one .h2-title {
        font-size: 45px;
    }

    .banner-text-box-two p {
        font-size: 15px;
        line-height: 24px;
    }

    .about-imgtwo-two {
        left: 0;
    }

    .about-content-box-two {
        padding-left: 0;
        padding-top: 50px;
    }

    .counter-box-two {
        margin-bottom: 30px;
    }

    .main-about-us-two {
        padding-bottom: 70px;
        padding-top: 80px;
    }

    .main-counter-two {
        padding-bottom: 45px;
    }

    .main-service-main-two {
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .payment-content-box-two {
        padding-right: 0;
        padding-bottom: 50px;
    }

    .main-payments-two {
        padding-bottom: 80px;
    }

    .main-pricing-two {
        padding-top: 80px;
        padding-bottom: 263px;
    }

    .pricing-content-two {
        padding-left: 0;
        padding-top: 50px;
    }

    .newsletter-illustration-two {
        width: 20%;
    }

    .main-team-two {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .main-testimonial-two {
        padding: 80px 0;
    }

    .testi-img-client-two.one, .testi-img-client-two.two, .testi-img-client-two.three, .testi-img-client-two.five, .testi-img-client-two.six {
        width: 6%;
    }

    .testi-img-client-two.two, .testi-img-client-two.five {
        top: 60%;
    }

    .main-why-choose-us-two {
        padding: 80px 0;
    }

    .why-choose-img-box-two {
        width: 100%;
        height: 582px;
    }

    .why-choose-img-two.one {
        right: 15%;
    }

    .why-choose-img-two.two {
        left: 15%;
    }

    .why-choose-img-two.three {
        left: 30%;
    }

    .why-choose-img-two.four {
        right: 5%;
    }

    .why-choose-content-two {
        padding-right: 0;
        padding-bottom: 50px;
    }

    .main-navigation.two ul li ul.sub-menu li:first-child {
        padding-left: 8px;
    }

    .main-navigation ul li ul.sub-menu li a {
        padding-bottom: 8px;
    }

    .main-about-us-in-one {
        padding-top: 132px;
        padding-bottom: 20px;
    }

    .features-box-one {
        margin-bottom: 30px;
    }

    .main-in-counter {
        padding-top: 335px;
        padding-bottom: 80px;
        margin-top: -348px;
    }

    .achievement-in-content-box-one {
        padding-right: 0;
        padding-bottom: 50px;
    }

    .achievement-img-box-one, .achievement-img-box-one img:first-child {
        width: 100%;
    }

    .achiv-haxgotwo-one {
        bottom: -4%;
    }

    .features-box-one {
        padding: 20px;
    }

    .bgin-circleblurtw-one, .bgin-circlebluro-one {
        width: 8%;
    }

    .main-in-facts-two {
        padding: 80px 0;
    }

    .facts-content-box-two {
        padding-right: 0;
        padding-bottom: 50px;
    }

    .main-in-payments-two {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .main-in-payments-two {
        padding-top: 80px;
    }

    .main-in-payments-two .payment-content-box-two {
        margin-left: 0;
        margin-right: 0;
        margin-top: 50px;
        padding-bottom: 0;
    }

    .main-in-testimonial-two {
        padding-top: 240px;
        padding-bottom: 80px;
    }

    .main-in-services-two .service-box-two.odd {
        margin-bottom: 0;
    }

    .main-in-services-two .service-box-two.even {
        margin-top: 0;
    }

    .main-in-services-two .service-box-two {
        margin-bottom: 30px !important;
    }

    .main-in-services-two {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .main-inserv-testimonial-two {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .main-inserv-payments-two {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .main-in-service-detail-one {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .service-detail-contentbox-one {
        padding-left: 0;
        margin-top: 50px;
    }

    .main-in-hwd-one {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .main-why-choose-us-sd-one {
        padding-top: 80px;
        padding-bottom: 10px;
    }

    .main-why-choose-us-sd-one .why-choose-us-text-box {
        margin-right: 0;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 50px;
    }

    .main-service-detail-two {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .service-detail-info-two {
        margin-left: 0;
        margin-top: 50px;
    }

    .main-team-in-se-one {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .main-team-in-counter-one {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .main-team-in-tm-one {
        padding-top: 80px;
    }

    .main-team-mot-in-two {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .main-team-sf-in-two {
        padding-top: 250px;
        padding-bottom: 50px;
    }

    .team-features-box-two {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .main-team-detail-in-one {
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .team-detail-main-one {
        margin-left: 0;
        margin-top: 50px;
    }

    .main-team-detail-in-info-two {
        padding-top: 80px;
    }

    .team-detail-main-two {
        margin-left: 0;
        margin-top: 50px;
    }

    .team-infobg-two {
        padding: 50px;
    }

    .mbm {
        margin-bottom: 30px !important;
    }

    .main-pricing-in-one {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .main-get-in-pc-touch-one {
        padding-bottom: 80px;
    }

    .main-pricing-in-two {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .main-faq-in-one {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .faq-accordion-one.one-one {
        margin-bottom: 20px;
        padding-right: 0;
    }

    .faq-accordion-one.two-one {
        padding-left: 0;
    }

    .main-faq-in-one-two, .main-faq-in-two-two {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .faq-in-one-two-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .faq-in-two-two-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .main-blog-grid-in {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .main-blog-list-in {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .blog-list-box {
        padding-right: 0;
        margin-bottom: 80px;
    }

    .main-blog-detail-in-one {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .blog-detail-main-content-box-one {
        padding-left: 0;
        margin-top: 80px;
    }

    .bd-related-blog-one {
        margin-top: 70px;
    }

    .bd-comment-one{
        margin-top: 50px;
    }

    .bd-write-comment-one {
        margin-top: 80px;
    }

    .blog-detail-main-content-box-two {
        padding-right: 0;
        margin-bottom: 80px;
    }

    .main-contact-us-in-one {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .contact-us-info-one {
        margin-bottom: 50px;
    }

    .main-contact-us-in-two {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .contact-us-info-box-two {
        padding-left: 0;
        margin-top: 50px;
    }

    .main-map-contact-in-two {
        padding-bottom: 80px;
    }

    .main-404-error-in-one, .main-404-error-in-two.about-box-years-two .h4-title {
        padding-top: 80px;
        padding-bottom: 80px;
    }

}

@media screen and (max-width: 767px) {
    .h1-title {
        font-size: 48px;
        line-height: 58px;
    }

    .h2-title {
        font-size: 40px;
        line-height: 55px;
    }

    .h2-subtitle {
        font-size: 18px;
        line-height: 18px;
    }

    .banner-btn .banner-play-btn {
        margin-left: 30px;
    }

    .sec-btn {
        height: 50px;
        padding: 13px 33px;
    }

    .banner-play-icon {
        width: 50px;
        height: 50px;
    }

    .banner-play-icon i {
        font-size: 16px;
    }

    .banner-play-btn span {
        margin-left: 12px;
    }

    .banner-aliment-small-box-one {
        left: 200px;
    }

    .newsletter-title-one .h2-title {
        font-size: 40px;
    }

    .download-store-one.line::before {
        width: 90%;
    }

    .footer-btn-one .sec-btn.footer-o {
        margin-right: 0;
        margin-bottom: 20px;
        display: inline-block;
    }

    .footer-btn-one .sec-btn.footer-t {
        margin-left: 0;
        display: inline-block;
    }

    .footer-btn-one {
        display: block;
    }

    .footer-logo-one {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-links-one ul {
        justify-content: center;
    }

    .footer-copyright {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-social-media-one ul {
        justify-content: center;
    }

    .main-banner-two {
        padding-top: 185px;
        padding-bottom: 240px;
    }

    .main-banner-img-two {
        margin-top: -150px;
    }

    .banbg-circlelineon-two {
        top: 12%;
    }

    .about-box-years-two .h4-title span {
        font-size: 16px;
        line-height: 8px;
    }

    .about-imgtwo-two {
        width: 16%;
    }

    .about-imgone-two {
        width: 90%;
    }

    .about-box-years-two {
        width: 40%;
        height: 40%;
    }

    .payment-icon-two.one, .payment-icon-two.two, .payment-icon-two.six {
        width: 105px;
        height: 105px;
    }

    .payment-icon-two.one img {
        width: 30%;
    }

    .payment-icon-two.two img, .payment-icon-two.six img {
        width: 50%;
    }

    .pricing-box-one.two-two {
        margin-top: 15px;
    }

    .pricing-box-one.one-two {
        margin-bottom: 15px;
    }

    .newsletter-form-one {
        width: 70%;
    }

    .why-choose-img-two.two {
        left: -7%;
    }

    .banner-img-box-two {
        padding: 30px 50px 0 50px;
    }

    .main-why-choose-us-two {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .two-down {
        margin-bottom: 0;
    }

    .two-top {
        margin-top: 0;
    }

    .service-detail-menu-two ul li a .h4-title {
        font-size: 18px;
    }

    .service-detail-main-text-box-two .points-box-two {
        display: block;
    }

    .service-detail-main-text-box-two .points-box-two .points.two {
        margin-left: 0;
        margin-top: 20px;
    }

    .sd-imgo-two img, .sd-imgt-two img {
        width: 100%;
    }

    .sd-imgt-two {
        margin-top: 30px;
    }

    .team-detail-main-one .points ul {
        columns: auto;
    }

    .bd-next {
        margin-top: 30px;
    }

    .about-box-years-two {
        left: 0;
    }
}

@media screen and (max-width: 575px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .main-in-services-two .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }

    .banner-img-bg-one-po {
        width: 70%;
    }

    .banner-mobile-one {
        width: 45%;
        border-radius: 25px;
    }

    .banner-aliment-small-box-one {
        left: 50px;
    }

    .banner-aliment-one-small-box-one {
        width: 90px;
        padding: 12px;
        margin-right: 8px;
    }

    .banner-aliment-add-small-one {
        width: 30px;
        height: 30px;
    }

    .banner-aliment-add-small-one i {
        font-size: 14px;
    }

    .banner-aliment-one-small-box-one span {
        font-size: 12px;
        line-height: 12px;
    }

    .banner-aliment-two-small-box-one {
        width: 90px;
        padding: 12px;
        margin: 0 8px;
    }

    .banner-aliment-two-small-box-one span {
        font-size: 12px;
        line-height: 12px;
    }

    .banner-aliment-two-small-box-one img {
        width: 35px;
    }

    .banner-img-aliment-pm-one {
        width: 40%;
    }

    .banner-aliment-small-box-one {
        left: 170px;
    }

    .newsletter-form-one {
        width: 70%;
    }

    .about-us-mobile-one img {
        max-width: 100%;
    }

    .about-us-mobile-one {
        width: 100%;
    }

    .main-about-us-one {
        padding: 293px 0 80px 0;
    }

    .download-store-one.line::before {
        display: none;
    }

    .download-store-one.line {
        margin-bottom: 15px;
    }

    .download-store-one {
        margin-top: 15px;
    }

    .testimonial-circleorg {
        display: none;
    }

    .testimonial-img-client-one.c-two, .testimonial-img-client-one.c-five, .testimonial-img-client-one.c-six {
        width: 15%;
    }

    .progress-wrap {
        right: 30px;
        bottom: 30px;
    }

    .bg-circlebluro-two {
        bottom: 10%;
    }

    .banbg-circleoon-two {
        width: 20px;
        height: 20px;
        top: 75%;
        left: 10%;
    }

    .banbg-circlelineon-two, .banbg-circlelinetw-two {
        width: 20px;
        height: 20px;
    }

    .counter-text-box-two .h2-title {
        font-size: 40px;
    }

    .counter-title-box-two span {
        font-size: 15px;
    }

    .service-box-two.even, .service-box-two.odd {
        margin-top: 0;
        margin-bottom: 0;
    }

    .why-choose-img-two.two {
        left: 0;
    }

    .why-choose-img-two.one {
        right: 6%;
    }

    .main-team-in-tm-one .team-box-one {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .pagination-box ul li a {
        width: 40px;
        height: 40px;
    }

    .pagination-box ul li a span {
        font-size: 15px;
    }

    .blog-detail-content-imgone-one img, .blog-detail-content-imgtwo-one img {
        width: 100%;
    }

    .blog-detail-content-imgtwo-one {
        margin-top: 30px;
    }

    .contact-us-info-box-two ul li {
        padding: 20px;
    }

    .about-box-years-two .h4-title {
        font-size: 30px;
    }
}

@media screen and (max-width: 513px) {

    .header-top img {
        margin-left: 10px;
    }

    .bg-aliment-mobile {
        display: none;
    }

    .banner-aliment-one-small-box-one, .banner-aliment-two-small-box-one {
        width: 80px;
        padding: 10px;
    }

    .banner-aliment-small-box-one {
        left: 155px;
    }

    .banner-btn {
        display: block;
    }

    .banner-btn .sec-btn {
        display: inline-block;
    }

    .banner-btn .banner-play-btn {
        margin-left: auto;
        margin-top: 30px;
        justify-content: center;
    }

    .why-choose-imgone {
        max-width: 100%;
    }

    .why-choose-imgtwo {
        width: 50%;
    }

    .banner-img-box-two {
        padding: 30px 40px 0 40px;
    }

    .h4-title {
        font-size: 20px;
    }

    .about-box-years-two .h4-title span {
        font-size: 15px;
        line-height: 5px;
    }

    .about-box-years-two .h4-title {
        margin-bottom: 25px;
        margin-right: 5px;
    }

    .why-choose-img-two.one {
        right: 0;
    }

    .why-choose-img-two.four {
        right: 0%;
    }

    .main-why-choose-us-sd-one {
        padding-top: 80px;
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 458px) {
    .banner-aliment-small-box-one {
        left: 115px;
    }

    .banner-aliment-one-small-box-one, .banner-aliment-two-small-box-one {
        width: 70px;
        padding: 5px;
        margin-right: 4px;
    }

    .banner-aliment-add-small-one {
        width: 20px;
        height: 20px;
    }

    .banner-aliment-add-small-one i {
        font-size: 12px;
    }

    .banner-aliment-two-small-box-one {
        margin: 0 4px;
    }

    .banner-aliment-two-small-box-one img {
        width: 25px;
    }

    .bd-comment-box-one {
        display: block;
    }

    .bd-comment-content-one {
        width: 100%;
        margin-top: 30px;
    }

    .blog-detail-tag-social-one {
        display: block;
    }

    .blog-detail-tag-social-one .team-social-media-one {
        margin-top: 20px;
    }
}

@media screen and (max-width: 410px) {
    .h1-title {
        font-size: 36px;
        line-height: 46px;
    }

    .h2-title {
        font-size: 35px;
        line-height: 45px;
    }

    .h3-title {
        font-size: 18px;
        line-height: 28px;
    }

    .my-client-title .h1-title {
        font-size: 18px;
        line-height: 18px;
    }

    .newsletter-title-one .h2-title {
        font-size: 30px;
    }

    .newsletter-form-one {
        width: 90%;
    }

    .footer-links-one ul {
        flex-wrap: wrap;
    }

    .footer-links-one ul li, .footer-links-one ul li:last-child {
        margin-right: 10px;
        margin-left: 10px;
        margin-top: 10px;
    }

    .banner-img-aliment-pm-one {
        width: 55%;
    }

    .banner-mobile-one {
        width: 55%;
    }

    .banner-img-bg-one-po {
        width: 80%;
    }

    .banner-text-aliment-pm-one span, .banner-aliment-mastercard-box-one span {
        font-size: 12px;
    }

    .footer-content-one .h2-title {
        font-size: 35px;
    }

    .sd-overlyone-one {
        width: 30%;
    }

    .service-hwd-box-one {
        display: block;
    }

    .sd-hwd-no-one {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .sd-hwd-text-one {
        width: 100%;
    }
}

@media screen and (max-width: 375px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .main-in-services-two .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .h1-title {
        font-size: 33px;
        line-height: 43px;
    }

    .my-client-title .h1-title {
        font-size: 17px;
        line-height: 17px;
    }

    .h2-title {
        font-size: 30px;
        line-height: 40px;
    }

    .main-service-box-one {
        display: block;
    }

    .service-text-one {
        width: 100%;
    }

    .service-icon-one {
        margin-right: 0;
        margin-bottom: 25px;
    }

    .h2-subtitle {
        font-size: 16px;
        line-height: 16px;
    }

    .newsletter-title-one .h2-title {
        font-size: 28px;
    }

    .banner-aliment-small-box-one {
        left: 50px;
    }

    .banner-mobile-one {
        width: 60%;
    }

    .banner-img-bg-one-po {
        width: 90%;
        left: 12%;
    }

    .site-branding {
        width: 170px;
    }

    .newsletter-bg-one {
        padding: 50px 20px;
    }

    .newsletter-form-one {
        width: 100%;
    }

    .accordion-button {
        font-size: 15px;
        line-height: 19px;
    }

    .why-choose-bg-img-one {
        width: 70%;
    }

    .footer-content-one .h2-title {
        font-size: 30px;
        line-height: 40px;
    }

    .banner-img-box-two {
        padding: 20px 30px 0 30px;
    }

    .banner-main-img-two {
        border-radius: 6px;
    }

    .about-box-years-two .h4-title {
        margin-bottom: 18px;
        margin-right: -2px;
    }

    .h4-title {
        font-size: 18px;
    }

    .about-box-years-two .h4-title span {
        font-size: 13px;
        line-height: normal;
    }

    .main-service-main-two .container-fluid {
        padding: 0 20px;
    }

    .payment-icon-two.one, .payment-icon-two.two, .payment-icon-two.six {
        width: 65px;
        height: 65px;
    }

    .payment-icon-two.five {
        width: 60px;
        height: 60px;
    }

    .payment-icon-two.five img, .payment-icon-two.three img, .payment-icon-two.four img {
        width: 50%;
    }

    .payment-icon-two.three {
        width: 65px;
        height: 65px;
        top: 15%;
    }

    .payment-icon-two.four {
        width: 75px;
        height: 75px;
        bottom: 15%;
    }

    .testi-img-client-two.four {
        top: 20%;
    }

    .testi-img-client-two.one, .testi-img-client-two.two, .testi-img-client-two.three, .testi-img-client-two.five, .testi-img-client-two.six {
        width: 10%;
    }

    .why-choose-img-two.one, .why-choose-img-two.two, .why-choose-img-two.three, .why-choose-img-two.four {
        width: 45%;
    }

    .why-choose-img-box-two {
        height: 380px;
    }

    .why-choose-img-two.one {
        right: 7%;
    }

    .why-choose-img-two.two {
        left: 5%;
    }

    .why-choose-img-two.four {
        right: 7%;
    }

    .why-choose-img-two.three {
        left: 20%;
    }

    .counter-text-box-two .h2-title {
        font-size: 30px;
    }

    .newsletter-illustration-two {
        width: 30%;
    }

    .testi-img-client-two.two, .testi-img-client-two.five {
        top: 70%;
    }

    .why-choose-box-two {
        display: block;
    }

    .why-choose-text-two {
        width: 100%;
    }

    .why-choose-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .blog-author-name-one a, .blog-date-one span {
        font-size: 13px;
    }

    .team-detail-title-main-box-one {
        display: block;
    }
    
    .team-detail-title-main-box-one .team-social-media-one {
        margin-top: 20px;
    }

    .main-team-detail-in-counter-one {
        padding-top: 145px;
        padding-bottom: 30px;
    }

    .contact-in-content p {
        font-size: 16px;
    }

    .about-box-years-two .h4-title {
        font-size: 20px;
    }
}
.showcase-item{
    position: relative;
    display: flex;
    align-items: center;
}
.showcase-item:hover .image{
    visibility: visible;
    opacity: 1;
    transform: rotate(0deg);
}
.showcase-item:hover .year .duration{
    color: #6944D2;
}
.showcase-item:not(:last-child){
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.showcase-item .icon{
    width: 88px;
    height: 88px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 106, 50, 0.70);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 100px;
}
.showcase-item  .content{
    display: flex;
    align-items: flex-start;
    max-width: 700px;
}
.showcase-item  .content .text:first-child{
    min-width: fit-content;
}
.showcase-item  .content .text{
    margin-right: 60px;
	color:#ffffff;
}
.showcase-item  .content .text p{
    
	color:#ffffff;
}
.showcase-item .image{
    position: absolute;
    right: 28%;
    top: 0;
    visibility: hidden;
    overflow: 0;
    transform: rotate(-20deg);
    transition: all .3s;
}
.showcase-item .year{
    margin-left: auto;
}
.showcase-item .year .duration{
    font-size: 80px;
    line-height: 90px;
    color: #FF6A32;
    transition: all .4s;
}
/*==========Responsive CSS End==========*/
/*========================================================================
29. Demo Layout Twenty Six
=========================================================================*/
.fxt-template-layout26 {
  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;
  width: 100%;
  min-height: 100vh;

  padding: 30px 15px;
}
.fxt-template-layout26 .starfield {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  opacity: 0.5;
}
.fxt-template-layout26 .fxt-checkbox-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.fxt-template-layout26 .fxt-content {
  max-width: 600px;
  width: 100%;
  background-color: rgba(23, 23, 47, 150);
  padding: 40px 40px 60px;
}
@media only screen and (max-width: 767px) {
  .fxt-template-layout26 .fxt-content {
    padding: 70px 60px 50px;
  }
}
@media only screen and (max-width: 575px) {
  .fxt-template-layout26 .fxt-content {
    padding: 60px 40px 40px;
  }
}
@media only screen and (max-width: 479px) {
  .fxt-template-layout26 .fxt-content {
    padding: 50px 20px 30px;
  }
}
.fxt-template-layout26 .fxt-header {
  text-align: center;
  margin-bottom: 30px;
}
.fxt-template-layout26 .fxt-logo {
  display: block;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  max-width: 40vw;
}
@media only screen and (max-width: 991px) {
  .fxt-template-layout26 .fxt-logo {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .fxt-template-layout26 .fxt-logo {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 575px) {
  .fxt-template-layout26 .fxt-logo {
    margin-bottom: 40px;
  }
}
.fxt-template-layout26 .fxt-form p {
  font-size: 20px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .fxt-template-layout26 .fxt-form p {
    text-align: center;
  }
}
.fxt-template-layout26 .fxt-form h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #e4e4e4;
}
@media only screen and (max-width: 991px) {
  .fxt-template-layout26 .fxt-form h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .fxt-template-layout26 .fxt-form h2 {
    font-size: 22px;
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .fxt-template-layout26 .fxt-form h2 {
    font-size: 20px;
  }
}
.fxt-template-layout26 .fxt-form .fxt-otp-logo {
  margin-bottom: 20px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .fxt-template-layout26 .fxt-form .fxt-otp-logo {
    text-align: center;
  }
}
.fxt-template-layout26 .fxt-form .fxt-otp-label {
  letter-spacing: 1px;
  width: 100%;
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: 500;
  color: #e4e4e4;
}
@media only screen and (max-width: 767px) {
  .fxt-template-layout26 .fxt-form .fxt-otp-label {
    text-align: center;
  }
}
.fxt-template-layout26 .fxt-form .fxt-sending-to {
  font-size: 16px;
  margin-bottom: 20px;
  color: #cfcfcf;
}
@media only screen and (max-width: 767px) {
  .fxt-template-layout26 .fxt-form .fxt-sending-to {
    text-align: center;
  }
}
.fxt-template-layout26 .fxt-form .fxt-sending-to span {
  display: block;
}
.fxt-template-layout26 .fxt-form .form-group {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.fxt-template-layout26 .fxt-form .form-group a{
  font-size: 18px;
	font-weight: 400;
	color: #ffffff;
}
.fxt-template-layout26 .fxt-form .form-group a:hover{
  
	color: #FF6A32;
}
.fxt-template-layout26 .fxt-form .form-group .field-icon {
  position: absolute;
  z-index: 1;
  right: 19px;
  bottom: 18px;
  font-size: 14px;
  color: #bebebe;
}
.fxt-template-layout26 .fxt-form .form-group .field-icon:before {
  padding: 17px 10px;
}
.fxt-template-layout26 .fxt-form .form-group:last-child {
  margin-bottom: 0;
}
.fxt-template-layout26 .fxt-form .form-control {
  min-height: 50px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 15px;
  background-color: transparent;
  color: #fff;
}
.fxt-template-layout26 .fxt-form input::-webkit-input-placeholder {
  color: #bebebe;
  font-size: 18px;
  font-weight: 300;
}
.fxt-template-layout26 .fxt-form input::-moz-placeholder {
  color: #bebebe;
  font-size: 18px;
  font-weight: 300;
}
.fxt-template-layout26 .fxt-form input:-moz-placeholder {
  color: #bebebe;
  font-size: 18px;
  font-weight: 300;
}

.fxt-template-layout26 .fxt-form input:-ms-input-placeholder {
  color: #bebebe;
  font-size: 18px;
  font-weight: 300;
}
.fxt-template-layout26 .input{
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  border: 1px solid #38334e;
  border-radius: 5px;
  text-align: left;
  font-size: 17px;
  color: #F3F3F3;
  padding: 10px 20px;
	margin-bottom: 20px;
  transition: all 500ms ease;
	background: rgba(12,12,28,1.00)}
.fxt-template-layout26 .fxt-form .fxt-form-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.fxt-template-layout26 .fxt-form .fxt-form-row .fxt-form-col {
  padding: 10px 5px;
  text-align: center;
  margin-right: 10px;
  flex-basis: 0;
  flex-grow: 1;
}
.fxt-template-layout26 .fxt-form .fxt-form-row .fxt-form-col:last-child {
  margin-right: 0;
}
.fxt-template-layout26 .fxt-form .fxt-form-btn {
  margin-bottom: 10px;
}
.fxt-template-layout26 .fxt-btn-fill {
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: 0;
  color: #ffffff;
  border-radius: 100px;
  background-color: #FF6A32;
  padding: 10px 36px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .fxt-template-layout26 .fxt-btn-fill {
    width: 100%;
  }
}
.fxt-template-layout26 .fxt-btn-fill:hover {
  background-color: #ffffff;
  color:#000000;	
}
.fxt-template-layout26 .fxt-btn-fill:focus {
  outline: none;
}
.fxt-template-layout26 .switcher-text {
  color: #d4d4d4;
  text-decoration: underline;
  font-size: 15px;
  margin-bottom: 5px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fxt-template-layout26 .switcher-text:hover {
  color: #ffffff;
}
.fxt-template-layout26 .switcher-text2 {
  color: #d4d4d4;
  text-decoration: underline;
  font-size: 15px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fxt-template-layout26 .switcher-text2.inline-text {
  margin-left: 3px;
}
.fxt-template-layout26 .switcher-text2:hover {
  color: #ffffff;
}
.fxt-template-layout26 .fxt-style-line {
  margin-top: 30px;
  overflow: hidden;
  text-align: center;
}
.fxt-template-layout26 .fxt-style-line h3 {
  text-align: center;
  font-weight: 300;
  margin-bottom: 30px;
  font-size: 20px;
  color: #a4a4a4;
  display: inline-block;
  position: relative;
  padding: 0 25px;
  z-index: 1;
}
.fxt-template-layout26 .fxt-style-line h3:before {
  display: inline-block;
  content: "";
  height: 1px;
  width: 100%;
  background-color: #a4a4a4;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  z-index: 1;
}
.fxt-template-layout26 .fxt-style-line h3:after {
  display: inline-block;
  content: "";
  height: 1px;
  width: 100%;
  background-color: #a4a4a4;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  z-index: 1;
}
.fxt-template-layout26 ul.fxt-socials {
  text-align: center;
  margin-bottom: 20px;
}
.fxt-template-layout26 ul.fxt-socials li {
  display: inline-block;
  margin-right: 4px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 575px) {
  .fxt-template-layout26 ul.fxt-socials li {
    margin-right: 2px;
  }
}
.fxt-template-layout26 ul.fxt-socials li:last-child {
  margin-right: 0;
}
.fxt-template-layout26 ul.fxt-socials li a {
  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;
  font-size: 14px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid;
  border-color: #494949;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fxt-template-layout26 ul.fxt-socials li.fxt-facebook a {
  color: #3b5998;
}
.fxt-template-layout26 ul.fxt-socials li.fxt-facebook a:hover {
  border-color: #3b5998;
  background-color: #3b5998;
  color: #fff;
}
.fxt-template-layout26 ul.fxt-socials li.fxt-telegram a {
  color: #00acee;
}
.fxt-template-layout26 ul.fxt-socials li.fxt-telegram a:hover {
  border-color: #00acee;
  background-color: #00acee;
  color: #fff;
}
.fxt-template-layout26 ul.fxt-socials li.fxt-google a {
  color: #CC3333;
}
.fxt-template-layout26 ul.fxt-socials li.fxt-google a:hover {
  border-color: #CC3333;
  background-color: #CC3333;
  color: #fff;
}
.fxt-template-layout26 ul.fxt-socials li.fxt-instagram a {
  color: #3f729b;
}
.fxt-template-layout26 ul.fxt-socials li.fxt-instagram a:hover {
  border-color: #3f729b;
  background-color: #3f729b;
  color: #fff;
}
.fxt-template-layout26 ul.fxt-socials li.fxt-linkedin a {
  color: #0077B5;
}
.fxt-template-layout26 ul.fxt-socials li.fxt-linkedin a:hover {
  border-color: #0077B5;
  background-color: #0077B5;
  color: #fff;
}
.fxt-template-layout26 ul.fxt-socials li.fxt-youtube a {
  color: #c4302b;
}
.fxt-template-layout26 ul.fxt-socials li.fxt-youtube a:hover {
  border-color: #c4302b;
  background-color: #c4302b;
  color: #fff;
}
.fxt-template-layout26 ul.fxt-socials li.fxt-pinterest a {
  color: #bd081c;
}
.fxt-template-layout26 ul.fxt-socials li.fxt-pinterest a:hover {
  border-color: #bd081c;
  background-color: #bd081c;
  color: #fff;
}
.fxt-template-layout26 .checkbox {
  padding-left: 5px;
  margin-right: 10px;
  margin-bottom: 5px;
}
.fxt-template-layout26 .checkbox label {
  padding-left: 20px;
  color: #b9b9b9;
  margin-bottom: 0;
  font-size: 15px;
  position: relative;
}
.fxt-template-layout26 .checkbox label:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 4px;
  left: 0;
  margin-left: -5px;
  border: 1px solid;
  border-color: #dcdcdc;
  border-radius: 2px;
  background-color: transparent;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.fxt-template-layout26 .checkbox label:after {
  position: absolute;
  margin-left: -20px;
  padding-left: 3px;
  font-size: 10px;
  color: #555555;
}
.fxt-template-layout26 .checkbox input[type="checkbox"] {
  display: none;
}
.fxt-template-layout26 .checkbox input[type="checkbox"]:checked + label::after {
  font-family: 'Font Awesome 5 Free';
  content: "\f00c";
  font-weight: 900;
  color: #ffffff;
  left: 15px;
  top: 4px;
}
.fxt-template-layout26 .checkbox input[type="checkbox"]:checked + label::before {
  background-color: #1fbe66;
  border-color: #1fbe66;
}
.fxt-template-layout26 .style3 {
 color:#ffffff;
}
.fxt-template-layout26 .fxt-footer {
  text-align: center;
}
.fxt-template-layout26 .fxt-footer p {
  color: #b6b6b6;
}
.fxt-template-layout26 .fxt-footer .fxt-resend-wrap {
  margin-bottom: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 17px;
}
.fxt-template-layout26 .fxt-footer .fxt-btn-resend {
  margin-left: 3px;
  box-shadow: none;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  color: #d3d3d3;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.fxt-template-layout26 .fxt-footer .fxt-btn-resend:focus {
  outline: none;
}
.fxt-template-layout26 .fxt-footer .fxt-btn-resend:hover {
  color: #ffffff;
}
.fxt-template-layout26 .fxt-footer .text-or {
  margin-left: 3px;
}
.fxt-template-layout26 .secondary-dark-bg #error {
  color: #ffffff;
}

.formt{
    position: relative;
    padding: 40px 40px 35px;
    background-color: var(--secondary-dark-color);
    z-index: 1;
    transition: all .3s;
}
.formt table {
  border-collapse: collapse;
  width: 100%;
  padding:20px;
}

.formt tr {
  border-bottom: 1px solid #9D9DFC;
}
.formt tr:nth-child(even) {
  background-color: rgba(150, 212, 212, 0.4);

}

.formt th:nth-child(even),td:nth-child(even) {
  background-color: rgba(150, 212, 212, 0.4);
}
.formt .inner-body {
  padding-top:30px;
  padding-bottom:10px;
}
.left{
       padding-left: 10px;
	color:#ffffff
}
.fontNormal2{
	padding-left: 10px;
	color:#ffffff
}
.fontNormal2 a{
	padding-left: 10px;
	color:#ffffff
}
.fontNormal2 a:hover{
	color:#F7C308
}
.head{
	color:#F7C308;
	font-weight: 400;	
}
.tr2{
	color:#ffffff;
	padding-left: 10px;
}
em{
	color:#ffffff;
	padding-left: 10px;
}
#topcell{
color:#F7C308;
font-weight:400;
font-size:18px;
}
#sub_top{
  color:#FFFFFF;
font-weight:300;
font-size:16px;

}


.iconic-box.style-one{
    position: relative;
    padding: 40px 40px 35px;
    background-color: var(--secondary-dark-color);
    z-index: 1;
    transition: all .3s;
}
.iconic-box.style-one .box-shape{
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
}
.iconic-box.style-one:hover .box-shape{
    opacity: 1;
}
.iconic-box.style-one:hover{
    background-color: var(--primary-color);
    color: var(--primary-dark-color);
}
.iconic-box.style-one:hover .content p{
    color: var(--primary-dark-color);
    opacity: 1;
}
.iconic-box.style-one .icon{
    font-size: 40px;
    height: 40px;
    margin-bottom: 30px;
}
.iconic-box.style-one .content h4{
    margin-bottom: 15px;
}
.iconic-box.style-one .content p{
    margin-bottom: 25px;
}

.iconic-box.style-two{
    padding: 40px 40px 35px;
    background-color: var(--secondary-dark-color);
    border: 2px solid rgba(255, 255, 255, 0.10);
}
.iconic-box.style-two .icon{
    font-size: 40px;
    height: 40px;
    margin-bottom: 30px;
    color: var(--primary-color);
}
.iconic-box.style-two .content h4{
    margin-bottom: 15px;
	font-size: 18px;
	font-weight: 600;
}
.iconic-box.style-two .content h4 i{
	color:#98FF26;
	padding-right: 10px;
}
.iconic-box.style-three{
    position: relative;
    padding: 40px 40px 35px;
    background-color: var(--secondary-dark-color);
    z-index: 1;
    transition: all .3s;
    color:#FF6A32;
}
.iconic-box.style-three .box-shape{
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
}
.iconic-box.style-three:hover .box-shape{
    opacity: 1;
}
.iconic-box.style-three:hover{
    background-color: var(--primary-color);
    color: var(--primary-dark-color);
}
.iconic-box.style-three:hover .content p{
    color: var(--primary-dark-color);
    opacity: 1;
}
.iconic-box.style-three .icon{
    font-size: 40px;
    height: 40px;
    margin-bottom: 30px;
}
.iconic-box.style-three .content h4{
    margin-bottom: 15px;
}
.iconic-box.style-three .content p{
    margin-bottom: 25px;
}

.text_add_head .text_add_header{
	color:#FF6A32;
	text-align: center;
	font-weight: 700;
	font-size: 24px;
}
.text_add_des{
	margin-top:10px;
	margin-bottom:20px;
	font-size: 16px;
	color:#ffffff;
}
.text_add_click{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height:22px;
    padding: 10px 30px;
    background-color: var(--primary-color);
    color: var(--primary-dark-color);
    transition: all .3s;
	border-radius: 32px;
}
.text_add_click:hover{
    background-color: #ffffff;
}
.section-title span.sub-title{
    color: var(--primary-color);
    font-weight: 600;
    line-height: 27px;
	font-size: 22px;
}
.right-navigation{
    padding-top:30px;
}
.iconic-box.style-three{
    border-radius: 12px;
    background-color: var(--primary-dark-color);
    padding: 30px;
    transition: all .3s;
}
.iconic-box.style-three:hover{
    background-color: var(--primary-color);
    color: var(--primary-dark-color);
}
.iconic-box.style-three:hover .icon{
    color: var(--primary-dark-color);
}
.iconic-box.style-three .icon{
    font-size: 30px;
    height: 30px;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.iconic-box.style-three .content h4{
    margin-bottom: 10px;
}

.iconic-box.style-four{
    display: flex;
    align-items: flex-start;
}
.iconic-box.style-four .icon{
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    font-size: 32px;
    color: var(--primary-dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}
.iconic-box.style-four .content h4{
    margin-bottom: 7px;
}

.iconic-box.style-five{
    display: flex;
    align-items: center;
}
.iconic-box.style-five .icon{
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(2px);
    margin-right: 16px;
}

.iconic-box.style-six{
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background-color: var(--primary-dark-color);
}
.iconic-box.style-six .icon{
    display: inline-flex;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 32px;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--primary-dark-color);
    margin-bottom: 20px;
}
.iconic-box.style-six .content h4{
    font-weight: 400;
    font-size: 22px;
}

.iconic-box.style-seven{
    display: flex;
    align-items: center;
}
.iconic-box.style-seven .icon{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--primary-dark-color);
    margin-right: 15px;
}
.iconic-box.style-seven .content h4{
    margin-bottom: 6px;
}
.contact-form .form-group{
    position: relative;
}
.contact-form .form-group i{
    position: absolute;
    left: 30px;
    top: 59px;
}
.contact-form input,
.contact-form textarea{
    width: 100%;
    margin-bottom: 30px;
    padding: 0 30px;
    background-color: var(--primary-dark-color);
    border: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color: var(--white--color);
}
.contact-form textarea{
    padding-top: 25px;
}
.contact-form input{
    padding: 0 30px 0 68px;
    height: 80px;
}
input, textarea {
    display: inherit;
}
button{
    border: none;
}
.theme-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height:27px;
    padding: 18px 40px;
    background-color: var(--primary-color);
    color: var(--primary-dark-color);
    transition: all .3s;
}
.theme-btn:hover{
    background-color: var(--alert-color);
}
.theme-btn.style-one{
    border-radius: 32px;
}
/*---------------------------------------
    - Margin & Padding
-----------------------------------------*/
/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px; }

.mt-10 {
  margin-top: 10px; }

.mt-15 {
  margin-top: 15px; }

.mt-20 {
  margin-top: 20px; }

.mt-25 {
  margin-top: 25px; }

.mt-30 {
  margin-top: 30px; }

.mt-35 {
  margin-top: 35px; }

.mt-40 {
  margin-top: 40px; }

.mt-45 {
  margin-top: 45px; }

.mt-50 {
  margin-top: 50px; }

.mt-55 {
  margin-top: 55px; }

.mt-60 {
  margin-top: 60px; }

.mt-65 {
  margin-top: 65px; }

.mt-70 {
  margin-top: 70px; }

.mt-75 {
  margin-top: 75px; }

.mt-80 {
  margin-top: 80px; }

.mt-85 {
  margin-top: 85px; }

.mt-90 {
  margin-top: 90px; }

.mt-95 {
  margin-top: 95px; }

.mt-100 {
  margin-top: 100px; }

.mt-105 {
  margin-top: 105px; }

.mt-110 {
  margin-top: 110px; }

.mt-115 {
  margin-top: 115px; }

.mt-120 {
  margin-top: 120px; }

.mt-125 {
  margin-top: 125px; }

.mt-130 {
  margin-top: 130px; }

.mt-135 {
  margin-top: 135px; }

.mt-140 {
  margin-top: 140px; }

.mt-145 {
  margin-top: 145px; }

.mt-150 {
  margin-top: 150px; }

.mt-155 {
  margin-top: 155px; }

.mt-160 {
  margin-top: 160px; }

.mt-165 {
  margin-top: 165px; }

.mt-170 {
  margin-top: 170px; }

.mt-175 {
  margin-top: 175px; }

.mt-180 {
  margin-top: 180px; }

.mt-185 {
  margin-top: 185px; }

.mt-190 {
  margin-top: 190px; }

.mt-195 {
  margin-top: 195px; }

.mt-200 {
  margin-top: 200px; }

.mt-205{
  margin-top: 205px;
}
.mt-210{
  margin-top: 210px;
}
.mt-215{
  margin-top: 215px;
}
.mt-220{
  margin-top: 220px;
}
.mt-225{
  margin-top: 225px;
}
.mt-230{
  margin-top: 230px;
}
.mt-235{
  margin-top: 235px;
}
.mt-240{
  margin-top: 240px;
}
.mt-245{
  margin-top: 245px;
}
.mt-250{
  margin-top: 250px;
}
.mt-255{
  margin-top: 255px;
}
.mt-260{
  margin-top: 260px;
}
.mt-265{
  margin-top: 265px;
}
.mt-270{
  margin-top: 270px;
}
.mt-275{
  margin-top: 275px;
}
.mt-280{
  margin-top: 280px;
}
.mt-285{
  margin-top: 285px;
}
.mt-290{
  margin-top: 290px;
}
.mt-295{
  margin-top: 295px;
}
.mt-300{
  margin-top: 300px;
}
/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px; }

.mb-10 {
  margin-bottom: 10px; }

.mb-15 {
  margin-bottom: 15px; }

.mb-20 {
  margin-bottom: 20px; }

.mb-25 {
  margin-bottom: 25px; }

.mb-30 {
  margin-bottom: 30px; }

.mb-35 {
  margin-bottom: 35px; }

.mb-40 {
  margin-bottom: 40px; }

.mb-45 {
  margin-bottom: 45px; }

.mb-50 {
  margin-bottom: 50px; }

.mb-55 {
  margin-bottom: 55px; }

.mb-60 {
  margin-bottom: 60px; }

.mb-65 {
  margin-bottom: 65px; }

.mb-70 {
  margin-bottom: 70px; }

.mb-75 {
  margin-bottom: 75px; }

.mb-80 {
  margin-bottom: 80px; }

.mb-85 {
  margin-bottom: 85px; }

.mb-90 {
  margin-bottom: 90px; }

.mb-95 {
  margin-bottom: 95px; }

.mb-100 {
  margin-bottom: 100px; }

.mb-105 {
  margin-bottom: 105px; }

.mb-110 {
  margin-bottom: 110px; }

.mb-115 {
  margin-bottom: 115px; }

.mb-120 {
  margin-bottom: 120px; }

.mb-125 {
  margin-bottom: 125px; }

.mb-130 {
  margin-bottom: 130px; }

.mb-135 {
  margin-bottom: 135px; }

.mb-140 {
  margin-bottom: 140px; }

.mb-145 {
  margin-bottom: 145px; }

.mb-150 {
  margin-bottom: 150px; }

.mb-155 {
  margin-bottom: 155px; }

.mb-160 {
  margin-bottom: 160px; }

.mb-165 {
  margin-bottom: 165px; }

.mb-170 {
  margin-bottom: 170px; }

.mb-175 {
  margin-bottom: 175px; }

.mb-180 {
  margin-bottom: 180px; }

.mb-185 {
  margin-bottom: 185px; }

.mb-190 {
  margin-bottom: 190px; }

.mb-195 {
  margin-bottom: 195px; }

.mb-200 {
  margin-bottom: 200px; }

.mb-205 {
  margin-bottom: 205px; }

.mb-210 {
  margin-bottom: 210px; }

.mb-215 {
  margin-bottom: 215px; }

.mb-220 {
  margin-bottom: 220px; }

.mb-225 {
  margin-bottom: 225px; }

.mb-230 {
  margin-bottom: 230px; }

.mb-235 {
  margin-bottom: 235px; }

.mb-240 {
  margin-bottom: 240px; }

.mb-245 {
  margin-bottom: 245px; }

.mb-250 {
  margin-bottom: 250px; }

.mb-255 {
  margin-bottom: 255px; }

.mb-260 {
  margin-bottom: 260px; }

.mb-265 {
  margin-bottom: 265px; }

.mb-270 {
  margin-bottom: 270px; }

.mb-275 {
  margin-bottom: 275px; }

.mb-280 {
  margin-bottom: 280px; }

.mb-285 {
  margin-bottom: 285px; }

.mb-290 {
  margin-bottom: 290px; }

.mb-295 {
  margin-bottom: 295px; }

.mb-300 {
  margin-bottom: 300px; }

/*-- Margin Left --*/
.ml-5 {
  margin-left: 5px; }

.ml-10 {
  margin-left: 10px; }

.ml-15 {
  margin-left: 15px; }

.ml-20 {
  margin-left: 20px; }

.ml-25 {
  margin-left: 25px; }

.ml-30 {
  margin-left: 30px; }

.ml-35 {
  margin-left: 35px; }

.ml-40 {
  margin-left: 40px; }

.ml-45 {
  margin-left: 45px; }

.ml-50 {
  margin-left: 50px; }

.ml-55 {
  margin-left: 55px; }

.ml-60 {
  margin-left: 60px; }

.ml-65 {
  margin-left: 65px; }

.ml-70 {
  margin-left: 70px; }

.ml-75 {
  margin-left: 75px; }

.ml-80 {
  margin-left: 80px; }

.ml-85 {
  margin-left: 85px; }

.ml-90 {
  margin-left: 90px; }

.ml-95 {
  margin-left: 95px; }

.ml-100 {
  margin-left: 100px; }

.ml-105 {
  margin-left: 105px; }

.ml-110 {
  margin-left: 110px; }

.ml-115 {
  margin-left: 115px; }

.ml-120 {
  margin-left: 120px; }

.ml-125 {
  margin-left: 125px; }

.ml-130 {
  margin-left: 130px; }

.ml-135 {
  margin-left: 135px; }

.ml-140 {
  margin-left: 140px; }

.ml-145 {
  margin-left: 145px; }

.ml-150 {
  margin-left: 150px; }

.ml-155 {
  margin-left: 155px; }

.ml-160 {
  margin-left: 160px; }

.ml-165 {
  margin-left: 165px; }

.ml-170 {
  margin-left: 170px; }

.ml-175 {
  margin-left: 175px; }

.ml-180 {
  margin-left: 180px; }

.ml-185 {
  margin-left: 185px; }

.ml-190 {
  margin-left: 190px; }

.ml-195 {
  margin-left: 195px; }

.ml-200 {
  margin-left: 200px; }

.ml-205{
  margin-left: 205px;
}
.ml-210{
  margin-left: 210px;
}
.ml-215{
  margin-left: 215px;
}
.ml-220{
  margin-left: 220px;
}
.ml-225{
  margin-left: 225px;
}
.ml-230{
  margin-left: 230px;
}
.ml-235{
  margin-left: 235px;
}
.ml-240{
  margin-left: 240px;
}
.ml-245{
  margin-left: 245px;
}
.ml-250{
  margin-left: 250px;
}
.ml-255{
  margin-left: 255px;
}
.ml-260{
  margin-left: 260px;
}
.ml-265{
  margin-left: 265px;
}
.ml-270{
  margin-left: 270px;
}
.ml-275{
  margin-left: 275px;
}
.ml-280{
  margin-left: 280px;
}
.ml-285{
  margin-left: 285px;
}
.ml-290{
  margin-left: 290px;
}
.ml-295{
  margin-left: 295px;
}
.ml-300{
  margin-left: 300px;
}
/*-- Margin Right --*/
.mr-5 {
  margin-right: 5px; }

.mr-10 {
  margin-right: 10px; }

.mr-15 {
  margin-right: 15px; }

.mr-20 {
  margin-right: 20px; }

.mr-25 {
  margin-right: 25px; }

.mr-30 {
  margin-right: 30px; }

.mr-35 {
  margin-right: 35px; }

.mr-40 {
  margin-right: 40px; }

.mr-45 {
  margin-right: 45px; }

.mr-50 {
  margin-right: 50px; }

.mr-55 {
  margin-right: 55px; }

.mr-60 {
  margin-right: 60px; }

.mr-65 {
  margin-right: 65px; }

.mr-70 {
  margin-right: 70px; }

.mr-75 {
  margin-right: 75px; }

.mr-80 {
  margin-right: 80px; }

.mr-85 {
  margin-right: 85px; }

.mr-90 {
  margin-right: 90px; }

.mr-95 {
  margin-right: 95px; }

.mr-100 {
  margin-right: 100px; }

.mr-105 {
  margin-right: 105px; }

.mr-110 {
  margin-right: 110px; }

.mr-115 {
  margin-right: 115px; }

.mr-120 {
  margin-right: 120px; }

.mr-125 {
  margin-right: 125px; }

.mr-130 {
  margin-right: 130px; }

.mr-135 {
  margin-right: 135px; }

.mr-140 {
  margin-right: 140px; }

.mr-145 {
  margin-right: 145px; }

.mr-150 {
  margin-right: 150px; }

.mr-155 {
  margin-right: 155px; }

.mr-160 {
  margin-right: 160px; }

.mr-165 {
  margin-right: 165px; }

.mr-170 {
  margin-right: 170px; }

.mr-175 {
  margin-right: 175px; }

.mr-180 {
  margin-right: 180px; }

.mr-185 {
  margin-right: 185px; }

.mr-190 {
  margin-right: 190px; }

.mr-195 {
  margin-right: 195px; }

.mr-200 {
  margin-right: 200px; }

.mr-205{
  margin-right: 205px;
}
.mr-210{
  margin-right: 210px;
}
.mr-215{
  margin-right: 215px;
}
.mr-220{
  margin-right: 220px;
}
.mr-225{
  margin-right: 225px;
}
.mr-230{
  margin-right: 230px;
}
.mr-235{
  margin-right: 235px;
}
.mr-240{
  margin-right: 240px;
}
.mr-245{
  margin-right: 245px;
}
.mr-250{
  margin-right: 250px;
}
.mr-255{
  margin-right: 255px;
}
.mr-260{
  margin-right: 260px;
}
.mr-265{
  margin-right: 265px;
}
.mr-270{
  margin-right: 270px;
}
.mr-275{
  margin-right: 275px;
}
.mr-280{
  margin-right: 280px;
}
.mr-285{
  margin-right: 285px;
}
.mr-290{
  margin-right: 290px;
}
.mr-295{
  margin-right: 295px;
}
.mr-300{
  margin-right: 300px;
}
/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px; }

.pt-10 {
  padding-top: 10px; }

.pt-15 {
  padding-top: 15px; }

.pt-20 {
  padding-top: 20px; }

.pt-25 {
  padding-top: 25px; }

.pt-30 {
  padding-top: 30px; }

.pt-35 {
  padding-top: 35px; }

.pt-40 {
  padding-top: 40px; }

.pt-45 {
  padding-top: 45px; }

.pt-50 {
  padding-top: 50px; }

.pt-55 {
  padding-top: 55px; }

.pt-60 {
  padding-top: 60px; }

.pt-65 {
  padding-top: 65px; }

.pt-70 {
  padding-top: 70px; }

.pt-75 {
  padding-top: 75px; }

.pt-80 {
  padding-top: 80px; }

.pt-85 {
  padding-top: 85px; }

.pt-90 {
  padding-top: 90px; }

.pt-95 {
  padding-top: 95px; }

.pt-100 {
  padding-top: 100px; }

.pt-105 {
  padding-top: 105px; }

.pt-110 {
  padding-top: 110px; }

.pt-115 {
  padding-top: 115px; }

.pt-120 {
  padding-top: 120px; }

.pt-125 {
  padding-top: 125px; }

.pt-130 {
  padding-top: 130px; }

.pt-135 {
  padding-top: 135px; }

.pt-140 {
  padding-top: 140px; }

.pt-145 {
  padding-top: 145px; }

.pt-150 {
  padding-top: 150px; }

.pt-155 {
  padding-top: 155px; }

.pt-160 {
  padding-top: 160px; }

.pt-165 {
  padding-top: 165px; }

.pt-170 {
  padding-top: 170px; }

.pt-175 {
  padding-top: 175px; }

.pt-180 {
  padding-top: 180px; }

.pt-185 {
  padding-top: 185px; }

.pt-190 {
  padding-top: 190px; }

.pt-195 {
  padding-top: 195px; }

.pt-200 {
  padding-top: 200px; }

.pt-205 {
  padding-top: 205px; }

.pt-210 {
  padding-top: 210px; }

.pt-215 {
  padding-top: 215px; }

.pt-220 {
  padding-top: 220px; }

.pt-225 {
  padding-top: 225px; }

.pt-230 {
  padding-top: 230px; }

.pt-235 {
  padding-top: 235px; }

.pt-240 {
  padding-top: 240px; }

.pt-245 {
  padding-top: 245px; }

.pt-250 {
  padding-top: 250px; }

.pt-255 {
  padding-top: 255px; }

.pt-260 {
  padding-top: 260px; }

.pt-265 {
  padding-top: 265px; }

.pt-270 {
  padding-top: 270px; }

.pt-275 {
  padding-top: 275px; }

.pt-280 {
  padding-top: 280px; }

.pt-285 {
  padding-top: 285px; }

.pt-290 {
  padding-top: 290px; }

.pt-295 {
  padding-top: 295px; }

.pt-300 {
  padding-top: 300px; }

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px; }

.pb-10 {
  padding-bottom: 10px; }

.pb-15 {
  padding-bottom: 15px; }

.pb-20 {
  padding-bottom: 20px; }

.pb-25 {
  padding-bottom: 25px; }

.pb-30 {
  padding-bottom: 30px; }

.pb-35 {
  padding-bottom: 35px; }

.pb-40 {
  padding-bottom: 40px; }

.pb-45 {
  padding-bottom: 45px; }

.pb-50 {
  padding-bottom: 50px; }

.pb-55 {
  padding-bottom: 55px; }

.pb-60 {
  padding-bottom: 60px; }

.pb-65 {
  padding-bottom: 65px; }

.pb-70 {
  padding-bottom: 70px; }

.pb-75 {
  padding-bottom: 75px; }

.pb-80 {
  padding-bottom: 80px; }

.pb-85 {
  padding-bottom: 85px; }

.pb-90 {
  padding-bottom: 90px; }

.pb-95 {
  padding-bottom: 95px; }

.pb-100 {
  padding-bottom: 100px; }

.pb-105 {
  padding-bottom: 105px; }

.pb-110 {
  padding-bottom: 110px; }

.pb-115 {
  padding-bottom: 115px; }

.pb-120 {
  padding-bottom: 120px; }

.pb-125 {
  padding-bottom: 125px; }

.pb-130 {
  padding-bottom: 130px; }

.pb-135 {
  padding-bottom: 135px; }

.pb-140 {
  padding-bottom: 140px; }

.pb-145 {
  padding-bottom: 145px; }

.pb-150 {
  padding-bottom: 150px; }

.pb-155 {
  padding-bottom: 155px; }

.pb-160 {
  padding-bottom: 160px; }

.pb-165 {
  padding-bottom: 165px; }

.pb-170 {
  padding-bottom: 170px; }

.pb-175 {
  padding-bottom: 175px; }

.pb-180 {
  padding-bottom: 180px; }

.pb-185 {
  padding-bottom: 185px; }

.pb-190 {
  padding-bottom: 190px; }

.pb-195 {
  padding-bottom: 195px; }

.pb-200 {
  padding-bottom: 200px; }

.pb-205 {
  padding-bottom: 205px; }

.pb-210 {
  padding-bottom: 210px; }

.pb-215 {
  padding-bottom: 215px; }

.pb-220 {
  padding-bottom: 220px; }

.pb-225 {
  padding-bottom: 225px; }

.pb-230 {
  padding-bottom: 230px; }

.pb-235 {
  padding-bottom: 235px; }

.pb-240 {
  padding-bottom: 240px; }

.pb-245 {
  padding-bottom: 245px; }

.pb-250 {
  padding-bottom: 250px; }

.pb-255 {
  padding-bottom: 255px; }

.pb-260 {
  padding-bottom: 260px; }

.pb-265 {
  padding-bottom: 265px; }

.pb-270 {
  padding-bottom: 270px; }

.pb-275 {
  padding-bottom: 275px; }

.pb-280 {
  padding-bottom: 280px; }

.pb-285 {
  padding-bottom: 285px; }

.pb-290 {
  padding-bottom: 290px; }

.pb-295 {
  padding-bottom: 295px; }

.pb-300 {
  padding-bottom: 300px; }

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px; }

.pl-10 {
  padding-left: 10px; }

.pl-15 {
  padding-left: 15px; }

.pl-20 {
  padding-left: 20px; }

.pl-25 {
  padding-left: 25px; }

.pl-30 {
  padding-left: 30px; }

.pl-35 {
  padding-left: 35px; }

.pl-40 {
  padding-left: 40px; }

.pl-45 {
  padding-left: 45px; }

.pl-50 {
  padding-left: 50px; }

.pl-55 {
  padding-left: 55px; }

.pl-60 {
  padding-left: 60px; }

.pl-65 {
  padding-left: 65px; }

.pl-70 {
  padding-left: 70px; }

.pl-75 {
  padding-left: 75px; }

.pl-80 {
  padding-left: 80px; }

.pl-85 {
  padding-left: 85px; }

.pl-90 {
  padding-left: 90px; }

.pl-95 {
  padding-left: 95px; }

.pl-100 {
  padding-left: 100px; }

.pl-105 {
  padding-left: 105px; }

.pl-110 {
  padding-left: 110px; }

.pl-115 {
  padding-left: 115px; }

.pl-120 {
  padding-left: 120px; }

.pl-125 {
  padding-left: 125px; }

.pl-130 {
  padding-left: 130px; }

.pl-135 {
  padding-left: 135px; }

.pl-140 {
  padding-left: 140px; }

.pl-145 {
  padding-left: 145px; }

.pl-150 {
  padding-left: 150px; }

.pl-155 {
  padding-left: 155px; }

.pl-160 {
  padding-left: 160px; }

.pl-165 {
  padding-left: 165px; }

.pl-170 {
  padding-left: 170px; }

.pl-175 {
  padding-left: 175px; }

.pl-180 {
  padding-left: 180px; }

.pl-185 {
  padding-left: 185px; }

.pl-190 {
  padding-left: 190px; }

.pl-195 {
  padding-left: 195px; }

.pl-200 {
  padding-left: 200px; }

.pl-205 {
  padding-left: 205px; }

.pl-210 {
  padding-left: 210px; }

.pl-215 {
  padding-left: 215px; }

.pl-220 {
  padding-left: 220px; }

.pl-225 {
  padding-left: 225px; }

.pl-230 {
  padding-left: 230px; }

.pl-235 {
  padding-left: 235px; }

.pl-240 {
  padding-left: 240px; }

.pl-245 {
  padding-left: 245px; }

.pl-250 {
  padding-left: 250px; }

.pl-255 {
  padding-left: 255px; }

.pl-260 {
  padding-left: 260px; }

.pl-265 {
  padding-left: 265px; }

.pl-270 {
  padding-left: 270px; }

.pl-275 {
  padding-left: 275px; }

.pl-280 {
  padding-left: 280px; }

.pl-285 {
  padding-left: 285px; }

.pl-290 {
  padding-left: 290px; }

.pl-295 {
  padding-left: 295px; }

.pl-300 {
  padding-left: 300px; }
/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px; }

.pr-10 {
  padding-right: 10px; }

.pr-15 {
  padding-right: 15px; }

.pr-20 {
  padding-right: 20px; }

.pr-25 {
  padding-right: 25px; }

.pr-30 {
  padding-right: 30px; }

.pr-35 {
  padding-right: 35px; }

.pr-40 {
  padding-right: 40px; }

.pr-45 {
  padding-right: 45px; }

.pr-50 {
  padding-right: 50px; }

.pr-55 {
  padding-right: 55px; }

.pr-60 {
  padding-right: 60px; }

.pr-65 {
  padding-right: 65px; }

.pr-70 {
  padding-right: 70px; }

.pr-75 {
  padding-right: 75px; }

.pr-80 {
  padding-right: 80px; }

.pr-85 {
  padding-right: 85px; }

.pr-90 {
  padding-right: 90px; }

.pr-95 {
  padding-right: 95px; }

.pr-100 {
  padding-right: 100px; }

.pr-105 {
  padding-right: 105px; }

.pr-110 {
  padding-right: 110px; }

.pr-115 {
  padding-right: 115px; }

.pr-120 {
  padding-right: 120px; }

.pr-125 {
  padding-right: 125px; }

.pr-130 {
  padding-right: 130px; }

.pr-135 {
  padding-right: 135px; }

.pr-140 {
  padding-right: 140px; }

.pr-145 {
  padding-right: 145px; }

.pr-150 {
  padding-right: 150px; }

.pr-155 {
  padding-right: 155px; }

.pr-160 {
  padding-right: 160px; }

.pr-165 {
  padding-right: 165px; }

.pr-170 {
  padding-right: 170px; }

.pr-175 {
  padding-right: 175px; }

.pr-180 {
  padding-right: 180px; }

.pr-185 {
  padding-right: 185px; }

.pr-190 {
  padding-right: 190px; }

.pr-195 {
  padding-right: 195px; }

.pr-200 {
  padding-right: 200px; }

.pr-205 {
  padding-right: 205px; }

.pr-210 {
  padding-right: 210px; }

.pr-215 {
  padding-right: 215px; }

.pr-220 {
  padding-right: 220px; }

.pr-225 {
  padding-right: 225px; }

.pr-230 {
  padding-right: 230px; }

.pr-235 {
  padding-right: 235px; }

.pr-240 {
  padding-right: 240px; }

.pr-245 {
  padding-right: 245px; }

.pr-250 {
  padding-right: 250px; }

.pr-255 {
  padding-right: 255px; }

.pr-260 {
  padding-right: 260px; }

.pr-265 {
  padding-right: 265px; }

.pr-270 {
  padding-right: 270px; }

.pr-275 {
  padding-right: 275px; }

.pr-280 {
  padding-right: 280px; }

.pr-285 {
  padding-right: 285px; }

.pr-290 {
  padding-right: 290px; }

.pr-295 {
  padding-right: 295px; }

.pr-300 {
  padding-right: 300px; }