/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
    /*max-width: none;*/
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Slick Theme Color */

/* Arrows */
.slick-prev,
.slick-next
{   
    color: #959595;
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: #ebebeb;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: #000;
    outline: none;
    background: #ebebeb;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
    color: #000;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 25px;
    line-height: 1;
    color: #959595;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.slick-prev{
    left: 40px;
    width: 50px;
    height: 50px;
    z-index: 999;
    border-radius: 50px;
}
[dir='rtl'] .slick-prev
{
    right: 40px;
    left: auto;
}
.slick-prev:before
{
    content: '\f177';
}
[dir='rtl'] .slick-prev:before
{
    content: '\f054';
}

.slick-next{
    right: 40px;
    width: 50px;
    height: 50px;
    z-index: 999;
    border-radius: 50px;
}


[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '\f178';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

.service-section {
	padding: 75px 0 98px;
	background: #041c33;
  }
  
  .single-service-box {
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
	transition: 0.5s;
	overflow: hidden;
	background: #162C41;
	padding: 30px 30px 30px;
	border-radius: 20px;
  }
  
  .single_service_inner {
	display: flex;
	align-items: center;
	gap: 30px;
  }
  
  .service-content h3 {
	font-size: 24px;
	color: #ffffff;
	font-weight: 500;
  }
  
  .service-content p {
	font-size: 15px;
	line-height: 24px;
	color: #ffffff99;
	margin: 13px 0 25px;
  }
  .service-icon {
	width: 46px;
	height: 46px;
	border-radius: 23px;
	background-color: rgba(255,255,255,0.10196078431372549);
	text-align: center;
	position: absolute;
	right: 30px;
	line-height: 46px;
	top: 30px;
	transition: 0.5s;
  }
  
  .single-service-box:hover .service-icon {
	background: #dceaa2;
  }
  .single-service-box:hover .service-icon img {
	filter: brightness(0) invert(0);
  }
  
  .service_btn a {
	padding: 9px 22px;
	font-size: 12px;
	color: #ffffff;
	font-weight: 400;
	font-family: "Unbounded";
	background: #2E4254;
	border-radius: 22px;
  }
  
  .single-service-box:hover .service_btn a {
	color: #fff;
	background: var(--secondary-color);
  }
  
  .mediket-section-title h4 {
	color: var(--secondary-color);
	padding: 0 0 23px 25px;
	font-size: 16px;
	font-weight: 400;
	position: relative;
	z-index: 1;
	display: inline-block;
  }
  .mediket-section-title h4:before {
	position: absolute;
	z-index: -1;
	content: '';
	left: 0;
	top: 1px;
	background: url(../images/main-home/shape.png);
	height: 15px;
	width: 15px;
	background-repeat: no-repeat;
	background-size: cover;
	animation: wooo 3.5s infinite;
  }
  
  .mediket-section-title h1 {
	margin: 0;
	font-size: 36px;
	line-height: 46px;
	color: #041c33;
	font-weight: 600;
  }
  
  .mediket-section-title p {
	padding: 21px 0 18px;
	font-size: 18px;
	line-height: 28px;
	color: #ffffffa1;
	font-weight: 400;
  }
  
  .mediket-section-title.style_two h1 {
	color: #fff;
  }
  
  /* section tiele home 2 */
  
  .mediket-section-title.home-2 h1 {
	margin: 0;
	font-size: 42px;
	line-height: 52px;
	font-weight: 600;
	font-family: "Unbounded";
  }
  
  .mediket-section-title.style-three span {
	color: var(--brand-color);
	position: relative;
	z-index: 1;
  }
  .mediket-section-title.style-three span:after {
	position: absolute;
	content: "";
	bottom: -28px;
	left: 0;
	height: 32px;
	width: 100%;
	background: url('../images/home-two/title-shape.png');
	animation: bg-anim 5s linear infinite;
	background-repeat: no-repeat;
  }
  .mediket-section-title.style-three h4 {
	color: var(--brand-color);
  }
  .mediket-section-title.style-three h4:before{
	background: url(../images/home-two/subtitle-shape.png);
  }
  .mediket-section-title.style-three h4:before {
	background: url(../images/home-two/subtitle-shape.png);
	width: 16px;
  }
	