/*
Author       : Theme-Family
Template Name: Pardoner -  SEO & Digital Agency Landing Page Theme
Version      : 1.0.1
*/
/*=============================================================
    CSS INDEX
    =============================
    01. GENERAL STYLE (body, link color, SECTION TITLE, PRELOADER, BTN, SECTION PADDING etc)
    02. START BOOTSTRAP NAVIGATION OVERRIDES
    03. START HOME DESIGN
    04. START COUNTER DESIGN
    04. START ABOUT DESIGN
    05. START VIDEO DESIGN
	06. START SERVICE DESIGN
    07. START PORTFOLIO DESIGN
    08. START FREQUENTLY DESIGN
    09. START TESTIMONIAL DESIGN 
    10. START COUNTER DESIGN
    11. START PRICING DESIGN
	12. START COMPANY BRAND LOGO DESIGN 
	13. START BLOG DESIGN
	14. START CONTACT DESIGN
	15. START FOOTER DESIGN
  =============================================================*/
/*
* ----------------------------------------------------------------------------------------
* 01.GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/
html{
	overflow-x: hidden;
	height: 100%;
}
body {
	font-family: var(--thm-font);
	font-weight: normal;
	font-style: normal;
	font-size: 15px;
	color: var(--thm-black);
}
:root {
	--thm-font: 'Roboto', sans-serif;
	--thm-base: #176f71;
	--thm-color: #fb5c72;
	--thm-black: #222222;
	--thm-white: #ffffff;
	--thm-ase: #afb2bf;
	--thm-gray: #8e8e8e;
	--thm-f6: #F1F8FF;
	--thm-fb: #f6f6f6;
	--thm-p: #666666;
	--thm-line: linear-gradient(-106deg, #222222, #176f71)
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--thm-font);
	color: var(--thm-black);
	font-weight: 700;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
}
h2 {
	font-size: 40px;
	line-height: 50px;
	margin-bottom: 0px;
	font-weight: 700;
}
h3 {
	font-size: 22px;
	line-height: 32px;
	margin-bottom: 0px;
	font-weight: 700;
}
h4 {
  font-size: 20px;
  line-height: 27px; }

h5 {
  font-size: 18px;
  line-height: 26px; }

h6 {
  font-size: 14px;
  line-height: 22px; }
  
p:last-child {
	margin-bottom: 0;
}
ul,
li {
    margin: 0;
    padding: 0;
}
p {
	padding: 0;
	margin: 0;
	font-size: 15px;
	color: var(--thm-p);
	line-height: 28px;
	font-family: var(--thm-font);
	font-weight: 400;
	letter-spacing: 0.4px;
}
img {
	max-width: 100%;
	height: auto;
	border: 0;
}
a {
text-decoration: none;
transition: all 0.2s ease 0s;
}
a:focus, .btn:focus {
	text-decoration: none;
	outline: none;
}
a:hover, a:active {
	color: var(--thm-color);
	text-decoration: none;
	outline: 0;
}
*, ::before, ::after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
span {
	letter-spacing: 0;
}
a, button, input {
	outline: medium none;
	color: inherit;
}
dl, ol, ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
button:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: transparent !important;
}
fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}
::-webkit-input-placeholder {
	color: inherit;
}
::-moz-input-placeholder {
	color: inherit;
}
::-ms-input-placeholder {
	color: inherit;
}
.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 270px;
	z-index: 9;
	overflow: hidden;
}
.form-group {
	margin-bottom: 30px;
	background: var(--thm-f6);
}
.atf-main-contact .form-group:focus {
	border-color: var(--thm-color);
	box-shadow: none;
	outline: 0 none;
}
button, input, textarea {
    color: var(--thm-black);
}
button, input, textarea:focus {
    border: none;
    outline:none;
}
.atf-color-ase{
	color:var(--thm-ase)
}
/*
* ----------------------------------------------------------------------------------------
* PRELOADER
* ----------------------------------------------------------------------------------------
*/
.atf-status {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background:var(--thm-base);
}

.atf-status .atf-status-mes {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px)
}

.atf-status-mes:before,
.atf-status-mes:after {
    content: '';
    border: 1em solid #ffffff;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: atf-status-mes 2s linear infinite;
            animation: atf-status-mes 2s linear infinite;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
}

.atf-status-mes:before {
    -webkit-animation-delay: .5s;
            animation-delay: .5s
}

@-webkit-keyframes atf-status-mes {
    0% {
        -webkit-transform: scale(0);
                transform: scale(0);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
    }

    50% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
    }

    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
    }
}

@keyframes atf-status-mes {
    0% {
        -webkit-transform: scale(0);
                transform: scale(0);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
    }

    50% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
    }

    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
    }
}


/*END PRELOADER DESIGN*/

/*START SECTION PADDING DESIGN*/

.atf-section-padding {
	padding: 100px 0;
}

/*START SECTION TITLE DESIGN*/

.atf-section-title {
	margin-bottom: 60px;
	text-align: center;
}
.atf-section-title h2 {
	font-weight: 900;
	font-size: 30px;
	line-height: 1.3;
	color: var(--thm-black);
	text-transform: capitalize;
	font-family: var(--thm-font);
	text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}
.atf-section-title h5 {
	color: var(--thm-color);
	line-height: 25px;
	margin: 0px 0 5px;
	text-transform: capitalize;
	font-family: var(--thm-font);
}
.atf-section-title h3 {
	text-transform:capitalize;
	font-family:  var(--thm-font);
}
.atf-section-title p {
	padding: 15px 0 0px;
	font-family: var(--thm-font);
}
@media only screen and (max-width:480px) { 
	.atf-section-title  h2  {font-size:25px;}
}
/*END SECTION TITLE DESIGN*/

/*START SCROLL TO TOP*/

#back_to_top {
    position: fixed;
    right: 2%;
    top: 100%;
    width: 28px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    border: 2px solid var(--thm-color);
    color: var(--thm-color);
    text-align: center;
    background-color: var(--thm-white);
    border-radius: 100px;
    z-index: 999;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

#back_to_top:hover {
    background-color: var(--thm-color);
    color: var(--thm-white);
}

#back_to_top.active {
    top: calc(100% - 110px)
}

#back_to_top i {
    -webkit-animation: mymove 1s ease-in 0s infinite alternate;
    animation: mymove 1s ease-in 0s infinite alternate;
    display: inline-block;
    position: relative;
}

@-webkit-keyframes mymove {
    from {
        top: -5px;
    }
    to {
        top: 5px;
    }
}

@keyframes mymove {
    from {
        top: -5px;
    }
    to {
        top: 5px;
    }
}
/*END SCROLL TO TOP*/

/* START BTN STYLE */
.atf-themes-btn {
	border: none;
	position: relative;
	display: inline-block;
	text-align: center;
	overflow: hidden;
	z-index: 1;
	color: #ffffff;
	background: var(--thm-base);
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border-radius: 3px;
	font-weight: 600;
	font-size: 15px;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 12px;
	padding-bottom: 12px;
	box-shadow: 0 7px 25px rgb(123,104,238,0.25);
}

.atf-themes-btn span {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: var(--thm-color);
	-webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
	transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
	border-radius: 30px;
}

.atf-themes-btn:hover, .atf-themes-btn:focus {
	color: #ffffff;
}

.atf-themes-btn:hover span, .atf-themes-btn:focus span {
	width: 225%;
	height: 562.5px;
}
.atf-themes-btn-one {
	border: none;
	position: relative;
	display: inline-block;
	text-align: center;
	overflow: hidden;
	z-index: 1;
	color: var(--thm-color);
	background-color: #ffffff;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border-radius: 3px;
	font-weight: 600;
	font-size: 17px;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 12px;
	padding-bottom: 12px;
	margin-top: 5px;
	margin-right: 25px;
	box-shadow: 0 7px 25px rgb(123,104,238,0.25);
}
.atf-themes-btn-one span {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: var(--thm-color);
	-webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
	transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
	border-radius: 30px;
}
.atf-themes-btn-one:hover, .atf-themes-btn-one:focus {
	color: var(--thm-white);
}
.atf-themes-btn-one:hover span, .atf-themes-btn-one:focus span {
	width: 225%;
	height: 562.5px;
}
/* END BTN STYLE */	

/*
* ----------------------------------------------------------------------------------------
* 01.END GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/	
/*
* ----------------------------------------------------------------------------------------
* 02.START BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
/**************************************
 * 02.Navber Style
 *************************************/
.atf_header_top {
	background-color: var(--thm-color) !important;
	padding: 5px 0;
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease 0s;
	position: relative;
	z-index: 1;
}
.atf_header_top::after {
	background: var(--thm-base) none repeat scroll 0 0;
	content: "";
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: calc(70% + 0px);
	-webkit-transform: skewX(-30deg);
	transform: skew(-30deg);
	border-right: 4px solid #fff;
}
.atf_header-social{
	list-style-type: none;
	text-align:right;
}
.atf_header-social a:hover {
	background:  var(--thm-white)!important;
	color:  var(--thm-black)!important;
}
.atf_header-social a {
	display: inline-block !important;
	margin: 0 4px;
	background: var(--thm-color);
	padding: 5px 10px !important;
	transition: all 0.3s ease 0s;
	width: 40px;
	height: 40px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.atf_header_top i{
	padding-right: 5px;
	color: rgba(255, 255, 255, 0.8);
}
.atf_header_top p{
	margin-bottom: 0;color: rgba(255, 255, 255, 0.8);
}

.atf_header_top_left p,
.atf_header_top_right p{
	display: inline-block;
	
}

.atf_header_top_left p{
	padding-right: 12px;
}
.atf_header_top_right p{
	padding-left: 8px;
}
/* .atf-top-header {
	margin-top: 38px;
}  */
#navigation.navbar-fixed {
	margin-top: 0;
}
.site-logo img {
	width: 147px;
	height: auto;
	margin-top: 13px;
}
.bg-faded {
	background-color: transparent;
	transition: all 0.5s ease 0s;
}
.navbar-fixed {
	z-index: 999;
	position: fixed;
	padding: 6px 0 0;
	opacity: .98;
	width: 100%;
	top: 0;
	-webkit-animation: fadeInDown 800ms;
	 animation: fadeInDown 800ms;
	-webkit-backface-visibility: hidden;
	border-radius: 0px;
	background: var(--thm-black);
	box-shadow: 0 0 40px rgba(225, 225, 225, 0.1);
}
#navigation {
	padding: 10px 0 0px;
	/* border-bottom: 1px solid rgb(247, 243, 243 , 0.1);
	 background-color: transparent;  */
}
#navigation.navbar-fixed {
	padding-top: 5px;
	padding-bottom: 5px;
}
.header_right {
	display: flex;
	flex-basis: auto;
}
#main-menu ul{
	list-style-type: none;
}
#main-menu ul li{
	display: inline-block;
	margin-left: 25px;
	position: relative;
}
#main-menu ul li a {
	color: var(--thm-white);
	font-weight: 400;
	text-transform: capitalize;
	font-family: var(--thm-font);
	transition: .5s;
	font-size: 17px;
	padding: 24px 0 26px;
	border-bottom: 1px solid transparent;
	display: block;
}

#navigation.navbar-fixed #main-menu ul li a {
	color: var(--thm-white);
	padding: 22px 0 22px;
}
#navigation.navbar-fixed #main-menu ul li a:hover,
#navigation.navbar-fixed #main-menu ul li a:focus,
#main-menu ul li a:hover,
#main-menu ul li a:focus{
	color: var(--thm-color);
}
#main-menu ul li > a:hover,
#main-menu ul li > a:focus{
	border-bottom: 1px solid var(--thm-color);
}
#navigation #main-menu ul li a:hover,
#navigation #main-menu ul li a:focus,
#navigation.navbar-fixed #main-menu ul li a:hover,
#navigation.navbar-fixed #main-menu ul li a:focus{
	border-bottom: 1px solid transparent;
}
.slicknav_nav_icon{
	color: var(--thm-white);
	font-size: 24px;
}
#mobile_menu{
	display: none;
}
.navbar-light .logo-black {
	display: none;
}
.navbar-light.navbar-fixed .site-logo .logo-white {
	display: none;
}
.navbar-light.navbar-fixed .site-logo .logo-black {
	display: block;
}
/*-------------------------------
# dropdwon menu 
--------------------------------*/
#navigation #main-menu ul li ul,
#navigation #main-menu ul li ul li ul {
	background: var(--thm-color);
	box-shadow: 0 0 10px 3px rgba(0,0,0,.05);
	left: 0;
	list-style: outside none none;
	margin: 0;
	opacity: 0;
	/* padding: 10px; */
	position: absolute;
	text-align: left;
	top: 115%;
	transition: all 0.3s ease 0s;
	visibility: hidden;
	width: 180px;
	z-index: 999;
	border-radius: 4px;
}
#navigation #main-menu ul li  ul li{
	position: relative;
}
#navigation #main-menu ul li ul li ul{
	top: 0;
	right: auto;
	left: 205px;
}
#navigation #main-menu ul li:hover ul,
#navigation #main-menu ul li ul li:hover > ul{
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; 
	visibility: visible;
	top:100%;
}
#navigation #main-menu ul li ul li {display: block; margin: 0; padding: 0;}
#navigation.navbar-fixed #main-menu ul li ul li a,
#navigation #main-menu ul li ul li a {
	color: var(--thm-white);
	display: block;
	font-size: 14px;
	line-height: 30px;
	font-weight: 600;
	padding: 5px 12px;
	position: relative;	
	transition: all 0.3s ease 0s !important;
	visibility: inherit !important;
	opacity: inherit !important;
	text-transform: capitalize;
}

#navigation #main-menu ul li ul li a:hover {
	color: var(--thm-white) !important;
	text-decoration: underline;
	padding-left: 15px;
	border-left: 3px solid var(--thm-white) !important;
}
.atf-menu-btn a {
	padding: 9px 15px !important;
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	display: inline-block;
	border: none;
	overflow: clip;
	border-bottom: none !important;
}
.atf-menu-btn .atf-themes-btn:hover {	
	box-shadow:0 0 15px rgba(0,0,0,0.2);
	color: var(--thm-white)! important;
}
/*
* ----------------------------------------------------------------------------------------
* 02.END BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 03.START HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-silder-one {
  margin-top: 0;
 
}
.atf-silder-one .swiper-slide {
  position: relative;
  background-color: var(--thm-black);
}
.atf-silder-one .container {
	position: relative;
	padding-top: 225px;
	padding-bottom: 225px;
	z-index: 30;
}
.atf-silder-one .image-layer-one {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
	-webkit-transform: scale(1,1.1);
  transform: scale(1,1.1);
  -webkit-transition: -webkit-transform 1.5s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0s, opacity cubic-bezier(0.230, 1.000, 0.320, 1.000) 1.5s;
  transition: transform 1.5s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0s, opacity cubic-bezier(0.230, 1.000, 0.320, 1.000) 1.5s;
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  opacity: .5;
  z-index: 1;
}
 
.atf-silder-one .swiper-slide-active .image-layer-one {
  -webkit-transform: scale(1,1);
  transform: scale(1,1);
  -webkit-transition: -webkit-transform 1.5s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0s, opacity cubic-bezier(0.230, 1.000, 0.320, 1.000) 1.5s;
  transition: transform 1.5s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0s, opacity cubic-bezier(0.230, 1.000, 0.320, 1.000) 1.5s;
   z-index:-1;
} 

.atf-silder-one__content {
	position: relative;
	display: block;
}

.atf-silder-one__sub-title {
	font-size: 15px;
	color: var(--thm-white, #ffffff);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(-120px);
	transform: translateY(-120px);
	-webkit-transition-delay: 1000ms;
	transition-delay: 1000ms;
	-webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
	transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
	transition: transform 2000ms ease, opacity 2000ms ease;
	transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
	display: inline-block;
	background: var(--thm-color);
	padding: 5px 15px;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.atf-silder-one__title {
	font-size: 60px;
	color: var(--thm-white, #ffffff);
	font-family: var(--thm-font);
	font-weight: 700;
	line-height: 60px;
	text-transform: uppercase;
	margin-top: 12px;
	margin-bottom: 25px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(-120px);
	transform: translateY(-120px);
	-webkit-transition-delay: 1000ms;
	transition-delay: 1000ms;
	-webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
	transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
	transition: transform 2000ms ease, opacity 2000ms ease;
	transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}
.atf-slider-one__description{
	margin-bottom:35px;
	color: var(--thm-white, #ffffff);
	font-size:18px;
}
.atf-slider-one__description,
.atf-silder-one__btn-box {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.atf-thm-one__btn {
  background-color: var(--thm-white, #ffffff);
  color: var(--thm-black);
}

.atf-silder-one .swiper-slide-active .atf-silder-one__sub-title,
.atf-silder-one .swiper-slide-active .atf-slider-one__description,
.atf-silder-one .swiper-slide-active .atf-silder-one__title,
.atf-silder-one .swiper-slide-active .atf-silder-one__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}


/*slider nav*/

.atf-slider__nav {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  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;
}

.atf-slider__nav .swiper-button-next, .atf-slider__nav .swiper-button-prev {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
	z-index: 100;
	width: 50px;
	height: 140px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--thm-white, #ffffff);
	font-size: 20px;
	background-color: rgba(255, 255, 255, 0.2);
	margin: 0;
	text-align: center;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.atf-slider__nav .swiper-button-next:hover,
.atf-slider__nav .swiper-button-prev:hover {
  background-color: var(--thm-color);
  color: var(--thm-white);
}

.atf-slider__nav .swiper-button-next::after,
.atf-slider__nav .swiper-button-prev::after {
  display: none;
}
@media only screen and (max-width: 767px) {
	.atf-slider__nav {
		display: none;
	}
	.atf-slider-one__description br{
		display:none;
	}
	.atf-silder-one__title{
		font-size:45px;
		line-height:45px;
	}
}
@media only screen and (max-width: 576px) {
	.atf-silder-one__title{
		font-size:30px;
		line-height:30px;
	}
}

/*
* ----------------------------------------------------------------------------------------
* 03.END HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 04.START ABOUT DESIGN
* ----------------------------------------------------------------------------------------
*/
#about .atf-section-title{
	margin-bottom:15px;
}
#about .atf-about-content p {
	font-size: 16px;
	line-height: 30px;
}
.atf-main-services{
	margin:15px 0;
}
.atf-single-about {
	padding: 10px 0px;
	border-radius: 0px;
}
.atf-about-icon {
	display: inline-block;
	transition: .5s ease;
}
.atf-about-icon i {
	color: var(--thm-color);
	font-size: 45px;
	text-align: center;
	padding-top: 9px;
}
.atf-about-text h3 {
	padding: 0px 0 5px 0;
	color: var(--thm-black);
	font-weight: 700;
}
.atf-about-text p {
	color: var(--thm-p);
}
.atf-ovarlay-area {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0, 0.4);
}
/*
* ----------------------------------------------------------------------------------------
* 04.END ABOUT DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 05.START VIDEO DESIGN
* ----------------------------------------------------------------------------------------
*/
#video {
	height: 300px;
	position: relative;
}
#video .atf-section-title{
	margin-bottom:15px;
}
#video .atf-video-content p {
	font-size: 17px;
	line-height: 30px;
}
#video .atf-singl-video .atf-video-img {
	position: relative;
	display: block;
}
#video .atf-singl-video {
	position: relative;
}
.atf-singl-video .waves-box {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 999;
}
.atf-singl-video .iq-video {
	background: var(--thm-white);
	display: inline-block;
	width: 70px;
	height: 70px;
	text-align: center;
	font-size: 20px;
	color: var(--thm-white);
	border-radius: 100%;
	line-height: 53px;
	z-index: 9;
	position: relative;
	border: 8px solid var(--thm-color);
}
.atf-singl-video .iq-video i {
	margin-left: 3px;
	color: var(--thm-color);
}
.atf-singl-video .iq-waves {
	position: absolute;
	left: -30px;
	top: -30px;
	z-index: 2;
}
.atf-singl-video .iq-waves .wave-1 {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
.atf-singl-video .iq-waves .waves {
	position: absolute;
	width: 130px;
	height: 130px;
	background: rgba(234 237 249 / 50%);
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	border-radius: 50%;
	background-clip: padding-box;
	-webkit-animation: waves 3s ease-in-out infinite;
	animation: waves 3s ease-in-out infinite;
}
.atf-singl-video .iq-waves .wave-1 {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
.atf-singl-video .iq-waves .wave-2 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
.atf-singl-video .iq-waves .wave-3 {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}
@-webkit-keyframes waves {
	0% {
		-webkit-transform: scale(0.2, 0.2);
		transform: scale(0.2, 0.2);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
	50% {
		opacity: 0.9;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
	}
	100% {
		-webkit-transform: scale(0.9, 0.9);
		transform: scale(0.9, 0.9);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
}
@keyframes waves {
	0% {
		-webkit-transform: scale(0.2, 0.2);
		transform: scale(0.2, 0.2);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
	50% {
		opacity: 0.9;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
	}
	100% {
		-webkit-transform: scale(0.9, 0.9);
		transform: scale(0.9, 0.9);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
}
/*
* ----------------------------------------------------------------------------------------
* 05.END VIDEO DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 06.START SERVICE DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-feature-number {
	position: absolute;
	font-size: 130px;
	opacity: 0;
	left: 30%;
	font-weight: 700;
	transition: .5s ease;
	top: 33%;
}
.atf-feature-content{
	position:relative;
	margin:12px 0;
	text-align:center;
}

.atf-feature-content:hover .atf-feature-number{
	opacity: 0.1;
}
.atf-feature-text h3 {
	padding: 15px 0 10px 0;
	color: var(--thm-black);
}
.atf-single-feature {
	border: none;
	border-radius: 0px;
}
.atf-feature-content {
	padding: 35px 25px;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	background: var(--thm-white);
}
.atf-feature-icon {
	display: inline-block;
	transition: .5s ease;
}
.atf-feature-icon i {
	color: var(--thm-color);
	font-size: 45px;
	text-align: center;
}
.atf-hire{background: var(--thm-base);}
.atf-hire-text h3{color: var(--thm-white);}
.atf-hire-text p{color: var(--thm-white); margin-top:7px;}
.atf-hire-btn .atf-themes-btn{background: var(--thm-white);color: var(--thm-black);}
.atf-hire-btn .atf-themes-btn:hover{color: var(--thm-white);}
/*
* ----------------------------------------------------------------------------------------
* 06.END FEATURE DESIGN
* ----------------------------------------------------------------------------------------
*/
/**************************************
 * 07. START PORTFOLIO DESIGN
 *************************************/
#portfolio {
    position: relative;
	overflow: hidden;
}
#portfolio .atf-portfolio-nav {
	margin-bottom: 40px;
	text-align: center;
}
#portfolio .atf-portfolio-nav .nav {
	display: inline-block;
	margin: 0;
	border-radius: 10px;
}
#portfolio .atf-portfolio-nav .nav li {
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    text-transform: capitalize;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    padding: 5px 15px;
    margin: 4px 4px;
    color: var(--thm-black);
    border: 1px solid var(--thm-ase);
}
#portfolio .atf-portfolio-nav .nav li:hover, 
#portfolio .atf-portfolio-nav .nav li.filter-active {
	color: var(--thm-white);
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	background: var(--thm-color);
}
.atf-grid-portfolio img {
    width: 100%;
}
.atf-single-portfolio{
    background: var(--thm-color);
    font-family: 'Raleway', sans-serif;
    overflow: hidden;
    position: relative;
}
.atf-single-portfolio img{
    width: 100%;
    height: auto;
    /* transform: scale(1.5); */
    transform-origin: right center;
    transition: all 0.7s ease 0s;
}
.atf-single-portfolio:hover img{
    opacity: 0.7;
    transform: translateX(50px) scale(1.2);
}
.atf-single-portfolio .atf-single-portfolio-content{
    background: var(--thm-white);
    text-align: center;
    width: 75%;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.9);
    opacity: 0;
    transform-origin: left center;
    transform: translateX(-100%) translateY(-50%) scale(0);
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.7s ease 0s;
}
.atf-single-portfolio:hover .atf-single-portfolio-content{
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scale(1);
}
.atf-single-portfolio .atf-single-portfolio-title{
    color: var(--thm-color);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    margin: 0 0 5px;
}
.atf-single-portfolio .atf-single-portfolio-title:after{
    content: '';
    height: 2px;
    width: 60px;
    margin: 10px auto 0;
    border-bottom: 2px dashed var(--thm-base);
    display: block;
    clear: both;
}
.atf-single-portfolio .atf-single-portfolio-post {
	color: var(--thm-black);
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	letter-spacing: 1px;
	margin: 10px 0 13px;
	display: block;
}
.atf-single-portfolio .atf-single-portfolio-icon{
    padding: 0;
    margin: 0;
    list-style: none;
	margin-left:70px;
}
.atf-single-portfolio .atf-single-portfolio-icon li{
    margin: 0 4px;
    display: inline-block;
}
.atf-single-portfolio .atf-single-portfolio-icon li {
    color: var(--thm-white);
    background: var(--thm-color);
    font-size: 13px;
    text-align: center;
    line-height: 28px;
    height: 27px;
    width: 27px;
    display: block;
    transition: all 0.3s ease 0s;
	float:left;
}
.atf-single-portfolio .atf-single-portfolio-icon li:hover{
    box-shadow: -3px -3px 0 rgba(0,0,0,0.3);
    border-radius: 0 0 50% 0;
}
@media only screen and (max-width:991px){
    .atf-single-portfolio{ margin: 0 0 30px; }
}
/**************************************
 * 07. END PORTFOLIO DESIGN
 *************************************/
 /*
* ----------------------------------------------------------------------------------------
* 08.START FREQUENTLY DESIGN
* ----------------------------------------------------------------------------------------
*/ 
#faq .atf-section-title {
	margin-bottom:35px;
}
.atf-faq-accordion .card {
    border: none;
    display: block;
    text-align: left;
    margin-bottom: 15px;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    background-color: #f9faff;
    border-radius: 0 !important
}

.atf-faq-accordion .card .card-header {
    padding: 0;
    border: none;
    text-align: left
}
.atf-faq-accordion .card .card-header button {
	border: none;
	width: 100%;
	display: block;
	cursor: pointer;
	text-align: left;
	position: relative;
	color: var(--thm-white);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	background:var(--thm-color);
	font-size: 16px;
	font-weight: 600;
	padding: 12px 20px;
}
.atf-faq-accordion .card .card-header button::before {
    content: "\f078";
    position: absolute;
    right: 20px;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    font-family: 'Font Awesome 6 Free';
    font-size: 15px
}

.atf-faq-accordion .card .card-header button.collapsed {
    border-bottom-width: 0
}

.atf-faq-accordion .card .card-header button.collapsed::before {
    -webkit-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0)
}

.atf-faq-accordion .card .card-body ul {
    margin-bottom: 15px
}

.atf-faq-accordion .card .card-body ul:last-child {
    margin-bottom: 0
}

.atf-faq-accordion .card .card-body ul li {
    margin-bottom: 12px;
    color: var(--thm-color);
}

.atf-faq-accordion .card .card-body ul li:last-child {
    margin-bottom: 0
}

.atf-faq-accordion .card:last-child {
    margin-bottom: 0
}
/*
* ----------------------------------------------------------------------------------------
* 08. END  FREQUENTLY DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 09.START TESTIMONIAL DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-testimonial-slider {margin-top:40px;}
.testimonial {
	border-top: 3px solid var(--thm-color);
	padding: 70px 25px 100px;
	margin-bottom: 30px;
	position: relative;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.testimonial:after{
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 30px;
    color: #00adb7;
    position: absolute;
    top: 20px;
    left: 25px;
}
.testimonial .description{
    font-size: 15px;
}
.testimonial .pic {
	width: 80px;
	height: 80px;
	position: absolute;
	bottom: 10px;
	left: 25px;
}
.testimonial .pic img {
	width: 100%;
	height: auto;
	border-radius: 50%;
}
.testimonial .testimonial-title {
	position: absolute;
	bottom: 20px;
	left: 130px;
}
.testimonial .testimonial-title small{
    display: block;
    font-size: 14px;
}
.owl-theme .owl-controls .owl-page.active span{
    background: #00adb7;
}
/* owl theme */
.atf-main-testimonials.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 50px;
    line-height: .7;
}
.atf-main-testimonials.owl-theme .owl-dots .owl-dot span {
	width: 15px;
	height: 15px;
	margin: 0 8px;
	border-radius: 50%;
	background: transparent;
    border: 2px solid var(--thm-black);
	
}
.atf-main-testimonials.owl-theme .owl-dots .owl-dot.active span,
.atf-main-testimonials.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--thm-color);
	border: 2px solid var(--thm-color);
}
/*
* ----------------------------------------------------------------------------------------
* 09. END TESTIMONIAL DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 10.START COUNTER DESIGN
* ----------------------------------------------------------------------------------------
*/
#counter{
	background:var(--thm-f6);
}
.atf-counter {
	padding: 23px;
	box-shadow: 0 0 15px rgba(0,0,0, 0.1);
	background: var(--thm-white);
}
.atf-counter-icon i {
	font-size: 50px;
	color: var(--thm-color);
	padding-top: 7px;
}
.atf-counter-value {
	font-size: 25px;
	font-weight:600;
}
.atf-main-counter{
	margin:15px 0;
}
.atf-counter-content h3{
	font-weight:700;
	font-size: 17px;
}
/*
* ----------------------------------------------------------------------------------------
* 10.END COUNTER DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 11.START PRICING DESIGN
* ----------------------------------------------------------------------------------------
*/
#pricing{background:var(--thm-f6);}
.atf-pricingTable {
	background: #fff;
	font-family: var(--thm-font);
	text-align: center;
	padding: 30px;
	border: 4px solid #fff;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
	position: relative;
	z-index: 1;
}
.atf-pricingTable::after {
	content: '';
	background: var(--thm-base);
	height: 165px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.atf-pricingTable .atf-pricingTable-header{
    font-family: var(--thm-font);
    margin: 0 0 10px;
}
.atf-pricingTable .atf-title {
	color: transparent;
	background: var(--thm-color);
	font-size: 35px;
	text-transform: uppercase;
	margin: 20px 0;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.atf-pricingTable .atf-pricing-content {
	padding-top: 20px;
	margin: 0 0 25px;
	list-style: none;
	border-top: 1px solid #eee;
}
.atf-pricingTable .atf-pricing-content li{
    color: var(--thm-p);
    font-size: 17px;
    margin: 0 0 10px;
}
.atf-pricingTable .atf-pricing-content li:last-child{ margin-bottom: 0; }
.atf-pricingTable .atf-price-value {
	color: var(--thm-color);
	background: var(--thm-white);
	width: 130px;
	height: 130px;
	padding: 28px 3px 28px 0;
	margin: 0 20px 20px 65px;
	border: 2px solid var(--thm-color);
	box-shadow: 0 0 0 5px #fff inset, 0 0 0 7px #fb5c72 inset;
	border-radius: 50%;
}
.atf-pricingTable .atf-price-value .atf-currency{
    font-size: 18px;
    line-height: 18px;
    margin: 0 -5px 0 0;
    vertical-align: top;
    display: inline-block;
}
.atf-pricingTable .atf-price-value .atf-amount{
    font-size: 55px;
    line-height: 50px;
    letter-spacing: -2px;
    display: inline-block;
}
.atf-pricingTable .atf-price-value .atf-duration{
    font-size: 13px;
    display: block;
}
@media only screen and (max-width: 991px){
    .atf-pricingTable{ margin: 15px 0; }
}
/*
* ----------------------------------------------------------------------------------------
* 11.END PRICING DESIGN
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 12.START BLOG DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-blog-area .atf-single-blog {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
	border-bottom: 3px solid var(--thm-color);
	margin: 0 10px;
}
.atf-blog-area .atf-single-blog .atf-blog-content {
	padding: 25px 25px 20px;
	background: var(--thm-white);
}
.atf-blog-icon a:hover{
	color: var(--thm-black); 
}
.atf-post-img .atf-blog-tag a {
	overflow: hidden;
	position: relative;
}
.atf-blog-area .atf-single-blog:hover img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.02, 1.02);
  transform: scale(1.02, 1.02);
}
.atf-blog-area .atf-single-blog img {
  -webkit-transition: all .5s;
  transition: all .5s;
}
.atf-blog-content .atf-blog-tag {
	font-weight: 500;
	-webkit-transition: all .3s;
	transition: all .3s;
	background: var(--thm-color);
	color: var(--thm-white);
	padding: 7px 15px;
	border-radius: 5px;
}
.atf-blog-content .atf-blog-time {
	-webkit-transition: all .3s;
	transition: all .3s;
}
.atf-single-blog .atf-blog-content h4 {
	padding-top:10px;
}
.atf-single-blog .atf-blog-content p {
	padding: 4px 0 15px;
}
.atf-blog-tag:hover,
.atf-blog-time:hover{
	color: var(--thm-color);
}
.atf-blog-btn .atf-themes-btn:hover{
	color: var(--thm-color);
}
.atf-blog-btn .atf-themes-btn {
	color: var(--thm-black);
	box-shadow: 0 0 0 0 #496dff !important;
	background: transparent;
	border-radius: 0;
}
.atf-blog-date i{
	color: var(--thm-color);
}
.atf-single-blog{margin:15px 0;}
/*
* ----------------------------------------------------------------------------------------
* 12.END BLOG DESIGN
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 13. START COMPANY BRAND LOGO DESIGN  
* ----------------------------------------------------------------------------------------
*/
#atf-brand-area {
	background:var(--thm-line);
}
#atf-brand-area .atf-section-padding {
	margin-bottom:40px;
}

#atf-brand-area .owl-controls {
	display:none;
}
.atf-brand-active{ text-align: center }
.atf-brand-active > a { display:inline-block}
/*
* ----------------------------------------------------------------------------------------
* 13. END COMPANY BRAND LOGO DESIGN 
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 14.START CONTACT DESIGN
* ----------------------------------------------------------------------------------------
*/
 #contact .atf-section-title{
	margin-bottom:20px;
}
#contact-form .button {
    margin: 0;
}
.atf-contact-form .form-control:focus {
	border-color: var(--thm-color);
	box-shadow: none;
	outline: 0 none;
}
.contact-area .form input,
.contact-area .form textarea {
    width: 100%;
    padding: 10px 20px;
    border: 0;
    background: var(--thm-gray);
    font-weight: 400;
    border-radius: 5px;
}
.contact-area .form textarea {
    max-height: 120px;
    max-width: 100%;
}
.contact-details p {
	color:var(--thm-black);
}
.contact-details {
	text-align: left;
	display: block;
	overflow: hidden;
}
.contact-details {
	margin: 15px 0;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	padding: 20px;
}
.contact-details i {
	font-size: 17px;
	width: 40px;
	height: 40px;
	background: var(--thm-base);
	line-height: 40px;
	color: var(--thm-white);
	text-align: center;
	float: left;
	margin-bottom: 0;
	border-radius: 50%;
	margin-right: 15px;
}
.contact-details h5 {
	font-weight: 700;
	text-transform: capitalize;
}
.contact-area .form-message.success {
    background: var(--thm-base);
    color: var(--thm-white);
    padding: 10px 15px;
    border-radius: 3px;
}	  
.contact-area .form-message.error {
    background: var(--thm-base);
    color: var(--thm-white);
    padding: 10px 15px;
    border-radius: 3px;
}
.contact-details p {
	font-weight: 300;
	text-transform: capitalize;
	display: block;
	overflow: hidden;
}

.atf-contact-area .form input, .atf-contact-area .form textarea {
	width: 100%;
	padding: 10px 20px;
	border: 0;
	background-color: transparent;
	font-weight: 400;
	color: var(--thm-black);
	box-shadow: 0 0px 1px rgb(19, 19, 19);
}
.atf-contact-area .form textarea {
    max-height: 120px;
    max-width: 100%;
	color: var(--thm-black);
}
.form-message{
	color: var(--thm-black);
}
.atf-contact-btn .atf-themes-btn {
	color: var(--thm-white);
	width:100%;
}
/*
* ----------------------------------------------------------------------------------------
* 14.END CONTACT DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 15.START FOOTER DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-footer-area {
	background: var(--thm-line);
}
.atf-footer-boottom {
	padding: 30px 0;
	background: var(--thm-black);
}
.atf-footer-box p {
    color: var(--thm-white);
    margin-bottom: 20px;
}
.atf-footer-social-icon a i:hover {
	background: var(--thm-white);
	transition: all .3s;
	-webkit-transition: all .3s;
	color: var(--thm-color);
}
.atf-footer-social-icon a i {
	font-size: 14px;
	margin-right: 10px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 20px;
	color: var(--thm-white);
	background: #ff8a00;
	text-align: center;
	background: var(--thm-color);
}
.atf-footer-area .atf-footer-link {
	position: relative;
}
.atf-footer-area .atf-footer-link::after {
	content: '';
	position: absolute;
	left: 16px;
	top: 33px;
	background: var(--thm-color);
	width: 45px;
	height: 3px;
}
.atf-footer-link h5 {
	margin-bottom: 40px;
	font-size: 20px;
	font-weight: 700;
	color: var(--thm-white);
}
.atf-footer-link .atf-list-menu li a {
    color: var(--thm-white);
    margin-bottom: 10px;
    display: block;
    position: relative;
    overflow: hidden;
}
.atf-footer-link .atf-list-menu li a:hover {
	color: var(--thm-ase);
	padding-left: 4px;
	transition: 0.5s;
	-webkit-transition:0.5s;
}
.atf-footer-link .atf-list-menu li a span {
    position: relative;
    display: block;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
    font-weight: 500;
    font-family: var(--thm-font);
}
.atf-footer-boottom  p{
	color: var(--thm-white);
}
.atf-footer-boottom a {
	color: var(--thm-gray);
	font-weight: 700;
    transition: all 0.3s ease-in-out 0s;
	text-decoration:underline;
	
}
.atf-footer-boottom  a:hover{
	color:  var(--thm-color);
	color: var(--thm-white);
	text-decoration:inherit;
}
.atf-footer-subscribe form input {
	background-color: rgb(248, 248, 253);
	color: var(--thm-black);
	border: none;
	width: 100%;
	height: 45px;
	padding-left: 15px;
	font-size: 14px;
	border-radius: 5px;
}
.atf-footer-subscribe .atf-themes-btn-one {
	margin-top: 10px;
	width: 100%;
}
.atf-footer-subscribe .atf-subscription-label {
	color: var(--thm-white);
	margin-top: 10px;
}
/*
* ----------------------------------------------------------------------------------------
* 15.END FOOTER DESIGN
* ----------------------------------------------------------------------------------------
*/
/* slick-arrow-2 */
.slick-arrow-2 .slick-arrow {
	cursor: pointer;
	position: absolute;
	top: -120px;
	height: 60px;
	width: 60px;
	line-height: 58px;
	display: block;
	left: auto;
	right: 100px;
	border: 2px solid;
	text-align: center;
	-webkit-box-shadow:0 0 10px rgba(0,0,0,0.1);
	box-shadow: 0 0 10px rgba(0,0,0,0.1); 
 }
.slick-arrow-2 .slick-arrow:hover {
    background-color: var(--thm-color);
    border-color: var(--thm-color);
    color: var(--thm-white) !important; }

.slick-arrow-2 .slick-next {
  right: 15px;
  background-color: var(--thm-white);
  border-color: var(--thm-color);
  color: var(--thm-color) !important; }

.slick-arrow-2 .slick-prev {
  background-color: var(--thm-white);
  border-color:  var(--thm-color);
  color: var(--thm-color) !important; }
 
 /* slick-arrow */
.slick-arrow {
  cursor: pointer;
  z-index: 9; }

/* slick-arrow-1 */
.slick-arrow-1 .slick-arrow {
  background-color: var(--thm-white);
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 15px;
  right: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  line-height: 48px;
  display: block;
  border: 1px solid var(--thm-color);
  border-radius: 0%;
  text-align: center;
  font-size: 20px;
  color: var(--thm-color) !important;
  z-index: 1;
  opacity: 0;
  visibility: hidden; }
  .slick-arrow-1 .slick-arrow:hover {
    background-color: var(--thm-color);
    border-color: var(--thm-color);
    color: var(--thm-white) !important; }

.slick-arrow-1 .slick-next {
  right: 15px;
  left: auto; }

.slick-arrow-1:hover .slick-arrow {
  opacity: 1;
  visibility: visible; }

.slick-arrow-1-inner.slick-arrow-1:hover .slick-arrow {
  left: 50px;
  right: auto; }

.slick-arrow-1-inner.slick-arrow-1:hover .slick-next {
  right: 50px;
  left: auto; }

@media (min-width: 1350px) {
  .slick-arrow-1:hover .slick-arrow {
    left: -50px;
    right: auto; }
  .slick-arrow-1:hover .slick-next {
    right: -50px;
    left: auto; } }

/* ----------------------------------------------------
    Slick Slider Dots, Arrow
---------------------------------------------------- */
/* Slick dots */
.slick-dots {
  margin: 30px 0 0px;
  padding: 0;
  display: block;
  text-align: center;
  line-height: 1; }
.slick-dots li {
    display: inline-block;
    list-style: none;
    display: inline-block;
    font-size: 0;
    height: 10px;
    width: 10px;
    border-radius: 100%;
    margin-right: 10px;
    background-color: var(--thm-base);
    cursor: pointer;
    margin-top: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    .slick-dots li button {
      display: none; }
    .slick-dots li:hover, .slick-dots li.slick-active {
      background-color: var(--thm-color);
      height: 15px;
      width: 15px;
      margin-bottom: -2px; }
	  
/* Mobile Menu */	  
	  
@media (min-width: 1200px) {
  .container {
    max-width: 1140px !important;
  }
}
@media only screen and (max-width: 991px){
	.slicknav_nav {
		width: 300px;
		float: right;
		height:270px;
		overflow-y: auto;
	}
	
	#main-menu{
		display: none;
	}
	/* .atf-top-header {
		margin-top: 70px;
	} */
	#main-menu ul li a .arrow-btn{
		display:none;
	}
	#mobile_menu{
		display: block;
		width: 100%;
	}
	.site-logo{
		margin-bottom:16px;
	}
	.slicknav_nav {
		background-color: var(--thm-color);
	}
	#navigation #mobile_menu li a{
		color: var(--thm-white);
		font-weight: 400;
		font-family: var(--thm-font);
	}
	#navigation #mobile_menu li li a{
		color: var(--thm-black);
	}
	#navigation #mobile_menu li i{
		display: none;
	}
	#navigation ul li ul, #navigation ul {
		transition: .5s;
	}
	#navigation.navbar-fixed #mobile_menu li a{
		color: var(--thm-white);
	}
	.slicknav_nav a{
		padding: 5px 0px;
		transition: .5s;
	}
	#navigation #mobile_menu li a:hover,
	#navigation #mobile_menu li a:focus{
		color: var(--thm-white);
	}
	.slicknav_btn {
		top: 18px;
	}
	.atf-testi-images{
		margin-bottom:30px;
	}
	.border-left{
		border-left:none;
	}
	.mt-lg-40{
		margin-top:40px;
	}
	.mb-lg-40{
		margin-bottom:40px;
	}
}
@media only screen and (max-width: 575px){
	
	.slicknav_btn {
		margin: 0;
		text-decoration: none;
		position: absolute;
		top: 22px;
		right: 17px;
	}
	.atf-section-title h3{
		font-size:30px;
	}
	
}


.tacnicalstrategi {
    background: #f1f8ff;
}

.tacnicalstrategi .atf-about-content .atf-section-title {
    margin-bottom: 10px;
    text-align: center;
}

.ftrcntinfo i {color: #fb5c72;}

.ftrlogoq img {
    height: 90px;
}


#zichtbaarheid .atf-section-title {
    margin-bottom: 15px;
}