/**
Theme Name: Develaw
Text Domain: Develaw
Version: 0.1
Requires at least: 4.7
Requires PHP: 7.4.0
Theme URI: https://tobynet.cz/
Author: Tobynet
Author URI: https://tobynet.cz/
Description: Develaw šablona
*/


:root{
    --bg-primary-color: #FFFBF9;
    --primary-text-color: #232323;
    --purple-color: #602C47;
    --carrot-color: #E03322;
    --main-radius: 20px;
}
*:focus{outline: none;}
body{
    margin: 0;
    padding: 0;
    background: var(--bg-primary-color);
    color: var(--primary-text-color);
    overflow-x: hidden;
}
body.home footer{margin-top: 0;}
.empty-zone{
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}
.empty-zone.is-20{height: 20px;}
.empty-zone.is-40{height: 40px;}
.empty-zone.is-60{height: 60px;}
.empty-zone.is-80{height: 80px;}
.empty-zone.is-100{height: 100px;}

/* FONTS */
.entry-content .tagline{
    font-size: 14px;
    line-height: 1.5em;
    letter-spacing: 0.2em;
}

h1,h2,
h3,h4,
h5,h6{position: relative; line-height: 1.1em;}
h1{
    font-size: 56px;
    line-height: 1.1em;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0!important;
}
h2{font-size: 48px;}
h3{font-size: 40px;}
h4{font-size: 32px;}

/* FLEX-SYSTEM */
.ar-flex{
    position: relative;
    margin: 0 -16px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.ar-item{
    position: relative;
    margin: 0 16px 32px 16px;
}
.has-1-columns .ar-item{width: calc(100% * (1/1) - 0px - 0px - 32px);}
.has-2-columns .ar-item{width: calc(100% * (1/2) - 0px - 0px - 32px);}
.has-3-columns .ar-item{width: calc(100% * (1/3) - 0px - 0px - 32px);}
.has-4-columns .ar-item{width: calc(100% * (1/4) - 0px - 0px - 32px);}
.has-5-columns .ar-item{width: calc(100% * (1/5) - 0px - 0px - 32px);}
.has-6-columns .ar-item{width: calc(100% * (1/6) - 0px - 0px - 32px);}
.has-7-columns .ar-item{width: calc(100% * (1/7) - 0px - 0px - 32px);}
.has-8-columns .ar-item{width: calc(100% * (1/8) - 0px - 0px - 32px);}
.has-9-columns .ar-item{width: calc(100% * (1/9) - 0px - 0px - 32px);}
.has-10-columns .ar-item{width: calc(100% * (1/10) - 0px - 0px - 32px);}
.has-11-columns .ar-item{width: calc(100% * (1/11) - 0px - 0px - 32px);}
.has-12-columns .ar-item{width: calc(100% * (1/12) - 0px - 0px - 32px);}

.ar-item.ar-size-10{width: calc(10% - 32px);}
.ar-item.ar-size-15{width: calc(15% - 32px);}
.ar-item.ar-size-20{width: calc(20% - 32px);}
.ar-item.ar-size-25{width: calc(25% - 32px);}
.ar-item.ar-size-30{width: calc(30% - 32px);}
.ar-item.ar-size-35{width: calc(35% - 32px);}
.ar-item.ar-size-40{width: calc(40% - 32px);}
.ar-item.ar-size-45{width: calc(45% - 32px);}
.ar-item.ar-size-50{width: calc(50% - 32px);}
.ar-item.ar-size-55{width: calc(55% - 32px);}
.ar-item.ar-size-60{width: calc(60% - 32px);}
.ar-item.ar-size-65{width: calc(65% - 32px);}
.ar-item.ar-size-70{width: calc(70% - 32px);}
.ar-item.ar-size-75{width: calc(75% - 32px);}
.ar-item.ar-size-80{width: calc(80% - 32px);}
.ar-item.ar-size-85{width: calc(85% - 32px);}
.ar-item.ar-size-90{width: calc(90% - 32px);}
.ar-item.ar-size-95{width: calc(95% - 32px);}
.ar-item.ar-size-100{width: calc(100% - 32px);}

.ar-to-right{margin-left: auto;}
.ar-justify-center{justify-content: center;}

/* GRID */
.parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
}
.partem{
    position: relative;
    margin: 0;
    padding: 40px;
    box-sizing: border-box;
    background: #fff;
    border-radius: var(--main-radius);
}
.partem.arc1 { grid-area: 1 / 1 / 2 / 3;}
.partem.arc2 { grid-area: 1 / 3 / 3 / 4;}
.partem.arc3 { grid-area: 1 / 4 / 3 / 5;}
.partem.arc4 { grid-area: 2 / 1 / 3 / 3;}

.partem .part-flex{
    position: relative;
    margin: 0 -15px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.partem .part-flex .part-item{
    position: relative;
    margin: 0 15px;
    width: calc(100% * (1/2) - 0px - 0px - 30px);
}
.partem .part-flex .part-item .image-holder{
    position: relative;
    width: 100%;
    padding-bottom: 80%;
}
.partem .part-flex .part-item .image-holder img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.partem .part-flex .part-item .text-holder{position: relative;}
.partem .part-flex .part-item .text-holder h4{
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 22px;
}
.partem.arc2 .part-flex,
.partem.arc3 .part-flex{
    flex-direction: column;
    height: 100%;
}
.partem.arc2 .part-flex .part-item,
.partem.arc3 .part-flex .part-item{width: calc(100% * (1/1) - 0px - 0px - 30px);}
.partem.arc2 .part-flex .part-item:nth-child(2){margin-top: auto;}
.partem.arc3 .part-flex{flex-direction: column-reverse;}
.partem.arc3 .part-flex .part-item:nth-child(1){margin-top: auto;}
.partem.arc4 .part-flex{flex-direction: row-reverse;}

.purple-ground{
    position: relative;
    padding: 64px;
    box-sizing: border-box;
}

.kb-row-layout-wrap.ar-transparent-bg .wp-block-kadence-column{
    padding: 64px;
    box-sizing: border-box;
    background: rgba(255,255,255,.75);
    border-radius: var(--main-radius);
}
.kb-row-layout-wrap.ar-transparent-bg .wp-block-kadence-column .kb-row-layout-wrap .wp-block-kadence-column{padding: 0;background: transparent;}

.textation-flex{
    position: relative;
    margin: 0 -5px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.textation-flex .textation-item{
    position: relative;
    margin: 0 5px;
}
.textation-flex .textation-item img{
    position: relative;
    margin: 0;
    display: block;
}
.explain-flex{
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    background: #FFF0E5;
    border-radius: var(--main-radius);
    overflow: hidden;
    align-items: end;
}
.explain-flex .explain-item{
    position: relative;
    margin: 0;
    flex-grow: 1;
    flex-basis: 0;
    padding: 50px;
    box-sizing: border-box;
}
.explain-flex .explain-item.explain-img{
    flex-grow: 0;
    flex-basis: auto;
    width: 35%;
    padding: 0;
}
.explain-flex .explain-item.explain-img .image-holder{
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}
.explain-flex .explain-item.explain-img .image-holder img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.explain-flex .explain-item h3{
    position: relative;
    margin: 0 0 25px 0;
    padding: 0;
}
.over-screen{
    position: relative;
    width: calc(100% + 50%);
    margin-top: 30px;
    margin-bottom: 100px;
}

.over-screen .slick-prev{right: calc(34% + 50px);}
.over-screen .slick-next{right: calc(34% - 12px);}


.ar-team-holder{
    position: relative;
    margin: 0
}
.ar-team-holder .ar-team-image-holder{
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.ar-team-holder .ar-team-image-holder img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
.ar-team-holder .text-holder{position: relative; margin-top: 20px;}
.ar-team-holder .text-holder h4{
    position: relative;
    margin: 0;
    padding: 0;
    display: block;
    font-size: 22px;
}

/* BUTTNS */
.ar-btn-with-icon{
    position: relative;
    display: table;
    color: var(--primary-text-color);
    cursor: pointer;
}
.ar-btn-with-icon .btn-holder{
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.ar-btn-with-icon .btn-holder .ar-icon{
    position: relative;
    width: 20px;
    height: 20px;
    text-align: center;
    background: transparent;
    border-radius: 20px;
    margin: 0 7px 0 0;
    overflow: hidden;
    transition: 350ms;
}
.ar-btn-with-icon .btn-holder .ar-icon svg{
    position: relative;
    top: 2px;
    width: 17px;
    height: 17px;
    fill: #000;
    transition: transform 0.3s ease;
}

@keyframes slideOutIn {
  0%   {transform: translateX(0);}
  40%  {transform: translateX(-100%);} /* odjede doleva */
  60%  {transform: translateX(100%);}  /* přeskočí doprava */
  100% {transform: translateX(0);}     /* vrátí se zpět */
}
.ar-btn-with-icon:hover .btn-holder .ar-icon{background: var(--carrot-color);}
.ar-btn-with-icon:hover .btn-holder .ar-icon svg {
  animation: slideOutIn 0.5s ease forwards;
  fill: #fff;
}
.ar-btn-with-icon.reverse .btn-holder .ar-icon{
    rotate: 180deg;
    margin: 0 0 0 7px;
}
.ar-btn-with-icon.reverse .btn-holder .ar-icon svg{top: 1px;}


button.ar-btn-with-icon{
    margin-left: auto;
    background: #E03322;
    border: 1px solid #FD6C54;
    color: #fff;
    font-size: 16px;
    padding: 14px 35px;
    cursor: pointer;
    border-radius: 25px;
}
button.ar-btn-with-icon .ar-icon{
    margin: 0 0 0 7px!important;
    rotate: 180deg;
}
button.ar-btn-with-icon .btn-holder .ar-icon svg{fill: #fff;}
button.ar-btn-with-icon:hover .btn-holder .ar-icon{background: #fff;}
button.ar-btn-with-icon:hover .btn-holder .ar-icon svg{fill: #E03322;}

.ar-btn-with-icon.colored{
    margin-left: auto;
    background: #E03322;
    border: 1px solid #FD6C54;
    color: #fff;
    font-size: 16px;
    padding: 13px 30px;
    cursor: pointer;
    border-radius: 25px;
}
.ar-btn-with-icon.colored .ar-icon{
    margin: 0 0 0 7px!important;
    rotate: 180deg;
}
.ar-btn-with-icon.colored .btn-holder .ar-icon svg{fill: #fff;}
.ar-btn-with-icon.colored:hover .btn-holder .ar-icon{background: #fff;}
.ar-btn-with-icon.colored:hover .btn-holder .ar-icon svg{fill: #E03322;}







.no-margin{
    margin-top: 0;
    margin-bottom: 0;
}
.entry-content iframe{border-radius: var(--main-radius);}


/*HEADER*/
header{
    position: relative;
    width: 100%;
    background: var(--bg-primary-color);
    border-bottom: 1px solid #F1F1F1;
    padding: 12px 0;
    box-sizing: border-box;
}
header .container{
    position: static;  
}
header .header-flex{
    margin: 0 -15px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
header .header-flex .header-item{
    margin: 0 15px;
}
header .header-flex .header-item.to-right{margin-left: auto;}
header .header-flex .header-item a.logo{position: relative;}
header .header-flex .header-item a.logo img{
    width: auto;
    height: 48px;
    display: block;
}

header .header-flex .header-item .main-menu{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    
}
header .header-flex .header-item .main-menu > li{margin-left: 8px;}
header .header-flex .header-item .main-menu > li > a{
    position: relative;
    display: block;
    padding: 12px 20px;
    box-sizing: border-box;
    color: var(--primary-text-color);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5em;
    background: transparent;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: 350ms;
}
header .header-flex .header-item .main-menu > li.menu-item-has-children > a:after{
    content: "\e64b";
    font-family: 'themify';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 12px;
    margin-left: 7px;
    -webkit-font-smoothing: antialiased;
}
header .header-flex .header-item .main-menu > li > a:hover,
header .header-flex .header-item .main-menu > li.current-menu-item > a{
    background: #FFF0E5;
    border-color: #FEC8C0;
}
header .header-flex .header-item .main-menu > li.full-bg{margin-left: 25px;}
header .header-flex .header-item .main-menu > li.full-bg > a{
    background: #E03322;
    border-color: #FEC8C0;
    color: #fff;
    padding: 12px 32px;
}

header .header-flex .header-item .main-menu > li ul.sub-menu{
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    padding: 20px 64px;
    box-sizing: border-box;
    background: #FFF0E5;
    z-index: 99;
    flex-wrap: nowrap;
    align-items: center;
    list-style: none;
    justify-content: center;
    display: none;
    opacity: 0;
}
header .header-flex .header-item .main-menu > li ul.sub-menu li{
    position: relative;
    background: #fff;
    margin: 0 20px 0 0;
    border-radius: 8px;
    transition: 350ms;
}
header .header-flex .header-item .main-menu > li ul.sub-menu li:nth-last-child(1){margin: 0;}
header .header-flex .header-item .main-menu > li ul.sub-menu li a{
    position: relative;
    display: block;
    padding: 25px 40px 25px 80px;
    box-sizing: border-box;
    color: var(--primary-text-color);
    text-decoration: none;
}
header .header-flex .header-item .main-menu > li ul.sub-menu li a:before{
    position: absolute;
    content: '';
    top: 11px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: center;
}
header .header-flex .header-item .main-menu > li ul.sub-menu li.smart-s a:before{background-image: url("assets/img/smart-s.png");}
header .header-flex .header-item .main-menu > li ul.sub-menu li.smart-o a:before{background-image: url("assets/img/smart-o.png");}
header .header-flex .header-item .main-menu > li ul.sub-menu li.smart-r a:before{background-image: url("assets/img/smart-r.png");}
header .header-flex .header-item .main-menu > li ul.sub-menu li.smart-t a:before{background-image: url("assets/img/smart-t.png");}


header .header-flex .header-item .main-menu > li ul.sub-menu li:hover{box-shadow: 3px 3px 15px #f7ddca;}


/* FORM */
.ar-form{
    position: relative;
    width: 100%;
    border-radius: var(--main-radius);
    background: #FFF0E5;
    padding: 30px;
    box-sizing: border-box;
}
.ar-form .ar-form-grid{
    position: relative;
    margin: 0 -10px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.ar-form .ar-form-grid .ar-form-item{
    position: relative;
    margin: 0 10px 20px 10px;
    width: calc(100% * (1/1) - 0px - 0px - 20px);
}
.ar-form .ar-form-grid.ar-2-columns .ar-form-item{width: calc(100% * (1/2) - 0px - 0px - 20px);}

.ar-form .ar-form-grid .ar-form-item label{
    position: relative;
    display: block;
}
.ar-form .ar-form-grid .ar-form-item label .ar-title-field{
    position: relative;
    display: block;
    margin-bottom: 5px;
    display: flex;
    flex-wrap: wrap;
}
.ar-form .ar-form-grid .ar-form-item label .ar-title-field p{
    position: relative;
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 14px;
}
.ar-form .ar-form-grid .ar-form-item label .ar-title-field p a{color: #000;}
.ar-form .ar-form-grid .ar-form-item label .ar-title-field p a:hover{text-decoration: none;}
.ar-form .ar-form-grid .ar-form-item label .ar-title-field span{
    position: relative;
    margin: 0 5px 0 0;
}
.ar-form .ar-form-grid .ar-form-item label .ar-title-field span:nth-last-child(1){margin: 0;}
.ar-form .ar-form-grid .ar-form-item label .ar-title-field span.star{color: #FD6C54;}

.ar-form .ar-form-grid .ar-form-item label .ar-input{
    position: relative;
    width: 100%;
    border: 1px solid #F1F1F1;
    background: #fff;
    border-radius: 12px;
    padding: 14px 20px;
    box-sizing: border-box;
    font-size: 14px;
}
.ar-form .ar-form-grid .ar-form-item label textarea.ar-input{height: 120px;}

.ar-welcome{position: relative;}
.ar-welcome .ar-flex{align-items: center;}
.ar-welcome .welcome-image-holder{
    position: relative;
    width: 100%;
    padding-bottom: 90%;
}
.ar-welcome .welcome-image-holder img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ar-image-flex{
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.ar-image-flex img{
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 2px solid #fff;
}
.ar-image-flex img:nth-child(2),
.ar-image-flex img:nth-child(3){margin-left: -15px;}

.ar-stars{
    position: relative;
    margin-left: -15px;
}
.ar-stars .ar-stars-item{
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.ar-stars .ar-stars-item img{
    position: relative;
    margin: 0 5px 0 0;
    display: block;
}
.ar-stars .ar-stars-item span.star-text{font-size: 14px;}
.welcome-text{
    position: relative;
    line-height: 1.5em;
    font-size: 17px;
}

.mini-form-holder{
    position: relative;
    margin: 30px 0 0 0;
}
.mini-form-holder span.info-text{
	margin-left: -15px;
	font-size: 20px;
	font-weight: bold;
	color: #E03322;
}



.mini-form-holder img.ar-check{
    position: relative;
    display: block;
	width: 30px;
	height: 30px;
}
.ar-inputs{
    position: relative;
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    background: #fff;
    border: 2px solid #F1F1F1;
    border-radius: 12px;
    font-size: 16px;
}
textarea.ar-inputs{
    height: 50px;
    resize: none;
    overflow: hidden;
}


/* BLOG ITEMS */
.ar-blog-filter{
    position: relative;
    margin: 80px 0 50px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.ar-blog-filter li{
    position: relative;
    margin: 0 1px 0 0;
}
.ar-blog-filter li:nth-last-child(1){margin: 0;}
.ar-blog-filter li a{
    position: relative;
    display: block;
    font-size: 16px;
    padding: 12px 20px;
    box-sizing: border-box;
    border-radius: 50px;
    text-decoration: none;
    color: var(--primary-text-color);
    border: 1px solid transparent;
    transition: 350ms;
}
.ar-blog-filter li a:hover,
.ar-blog-filter li a.active{
    background: #FFF0E5;
    border: 1px solid #FEC8C0;
}

.ar-blog-box{position: relative;}
.ar-blog-box .blog-image-holder{
    position: relative;
    width: 100%;
    padding-bottom: 70%;
    background: rgb(185, 185, 185);
    border-radius: 12px;
    overflow: hidden;
}
.ar-blog-box .blog-image-holder img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ar-blog-box .blog-text-holder{
    position: relative;
    margin: 15px 0 0 0;
}
.ar-blog-box .blog-text-holder h2.blog-title{
    position: relative;
    margin: 5px 0 10px 0;
    padding: 0;
    font-size: 24px;
    line-height: 1.1em;
    color: #232323;
}
.ar-blog-box .blog-text-holder p.blog-desc{
    position: relative;
    margin: 0 0 15px 0;
    padding: 0;
    line-height: 1.5em;
    color: var(--primary-text-color);
}
.ar-blog-box .blog-text-holder .ar-btn-with-icon .ar-icon{
    margin: 0 0 0 7px;
    rotate: 180deg;
}
.ar-blog-box .blog-text-holder .ar-btn-with-icon .ar-icon svg{top: 0;}
.ar-blog-box .blog-text-holder .blog-cat{
    position: relative;
    margin: 0 -5px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.ar-blog-box .blog-text-holder .blog-cat li{
    position: relative;
    margin: 0 5px 10px 5px;
    font-size: 13px;
    padding: 4px 8px;
    box-sizing: border-box;
    background: #FFF0E5;
    color: #000;
    border-radius: 12px;
}
.page-numbers{
    position: relative;
    margin: 20px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.page-numbers li{position: relative;}
.page-numbers li .page-numbers{
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    background: transparent;
    transition: 350ms;
}
.page-numbers li a.page-numbers:hover{
    background: rgb(238, 238, 238);
}
.page-numbers li .page-numbers.current{
    background: var(--purple-color);
    color: #fff;
}


.single-header,
.single-body{
    position: relative;
    margin: 96px 0;
    padding: 0;
}
.single-header .single-information-box{position: relative; margin: 0 0 35px 0;}
.single-header .single-information-box.ar-date{margin: 35px 0 0 0;}
.single-header .single-information-box.ar-category-info{margin: 35px 0 0 0;}
.single-header .single-information-box.ar-category-info .post-categories{
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.single-header .single-information-box.ar-category-info .post-categories li{position: relative; margin: 0 7px 0 0;}
.single-header .single-information-box.ar-category-info .post-categories li:nth-last-child(1){margin: 0;}
.single-body h4{margin-top: 0;}
.single-header .single-welcome-image-holder{
    position: relative;
    width: 100%;
    padding-bottom: 55%;
    background: var(--purple-color);
    border-radius: var(--main-radius);
    overflow: hidden;
}
.single-header .single-welcome-image-holder img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single-body .single-content{
    position: relative;
    line-height: 1.5em;
    color: #565656;
}
.single-body .single-content h1,
.single-body .single-content h2,
.single-body .single-content h3,
.single-body .single-content h4,
.single-body .single-content h5{color: #232323}

.single-body .single-content h2,
.single-body .single-content h3{
    margin-top: 0;
    margin-bottom: 25px;
}
.single-body .single-content .wp-block-list{
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}
.single-body .single-content .wp-block-list li{
    position: relative;
    padding: 8px 0 8px 35px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.single-body .single-content .wp-block-list li:nth-last-child(1){border: none;}
.single-body .single-content .wp-block-list li:before{
    position: absolute;
    content: '';
    top: 19px;
    left: 0;
    width: 16px;
    height: 3px;
    background: #E03322;
}

.single-body .main-contributors{
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}
.single-body .main-contributors li{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
}
.single-body .main-contributors li:nth-last-child(1){margin: 0;}
.single-body .main-contributors li .item{position: relative;}
.single-body .main-contributors li .item.photo{
    flex-grow: 0;
    flex-basis: auto;
    width: 48px;
    margin: 0 10px 0 0;
    border-radius: 12px;
    overflow: hidden;
}
.single-body .main-contributors li .item.photo img{
    position: relative;
    display: block;
    width: 100%;
    height: 48px;
    object-fit: cover;
}

.single-body .ar-sitcky{
    position: sticky;
    top: 50px;
}











footer{
    position: relative;
    margin: 64px auto;
    width: calc(100% - 128px);
    box-sizing: border-box;
}
footer .footer-holder{
    position: relative;
    width: 100%;
    padding: 48px;
    box-sizing: border-box;
    background: var(--purple-color);
    color: #fff;
    border-radius: var(--main-radius);
}
footer .footer-holder .footer-flex{
    position: relative;
    margin: 0 -20px;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}
footer .footer-holder .footer-flex .footer-item{
    position: relative;
    margin: 0 20px;
}
footer .footer-holder .footer-flex .footer-item.to-right{margin-left: auto;}

footer .footer-holder .footer-flex .footer-item .footer-logo{position: relative;}
footer .footer-holder .footer-flex .footer-item .footer-logo img{
    display: block;
    height: 60px;
    width: auto;
}
footer .footer-holder .footer-flex .social-menu{
    position: relative;
    margin: 25px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
footer .footer-holder .footer-flex .social-menu li{
    position: relative;
    margin: 0 15px 0 0;
}
footer .footer-holder .footer-flex .social-menu li:nth-last-child(1){margin: 0;}
footer .footer-holder .footer-flex .social-menu li a{
    position: relative;
    top: 0;
    display: block;
    font-size: 20px;
    text-decoration: none;
    color: #fff;
    transition: 350ms;
}
footer .footer-holder .footer-flex .social-menu li a span.name_of_current_page{display: none;}
footer .footer-holder .footer-flex .social-menu li a:hover{top: -3px;}

footer .footer-holder .footer-flex .ar-widget{
    position: relative;
    margin: 25px 0 0 0;
}
footer .footer-holder .footer-flex .ar-widget .widget-title{
    position: relative;
    display: block;
    margin: 0 0 5px 0;
    font-size: 14px;
    opacity: 0.85;
}
footer .footer-holder .footer-flex .ar-widget .textwidget p{
    position: relative;
    margin: 0;
    line-height: 1.5em;
}
footer .footer-holder .footer-flex .ar-widget .textwidget a{color: #fff;}
footer .footer-holder .footer-flex .ar-widget .textwidget a:hover{text-decoration: none;}

footer .footer-holder .footer-flex .footer-menu{
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
}
footer .footer-holder .footer-flex .footer-menu li{
    position: relative;
    margin: 0 0 12px 0;
}
footer .footer-holder .footer-flex .footer-menu li:nth-last-child(1){margin: 0;}
footer .footer-holder .footer-flex .footer-menu li a{
    position: relative;
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}
footer .footer-holder .footer-flex .footer-menu li a:after{
    position: absolute;
    content: '';
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1.3px;
    background: #fff;
    transition: 350ms;
}
footer .footer-holder .footer-flex .footer-menu li:hover a:after{
    width: 100%;
}

footer .un-footer{
    position: relative;
    margin: 35px -15px 0 -15px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #565656;
}
footer .un-footer .un-footer-item{
    position: relative;
    margin: 0 15px;
}
footer .un-footer .un-footer-item.to-right{margin-left: auto;}
footer .un-footer .un-footer-item .under-footer{
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
footer .un-footer .un-footer-item .under-footer li{
    position: relative;
    margin: 0 0 0 15px;
}
footer .un-footer .un-footer-item .under-footer li a{
    position: relative;
    display: block;
    color: #565656;
    text-decoration: none;
}
footer .un-footer .un-footer-item .under-footer li a:after{
    position: absolute;
    left: 0;
    bottom: -2px;
    content: '';
    display: block;
    width: 100%;
    height: 1.2px;
    background: #565656;
    transition: 450ms;
}
footer .un-footer .un-footer-item .under-footer li:hover a:after{
    bottom: -8px;
    opacity: 0;
}


/* POPUP */
.fancybox-content{
    background: #FFFBF9;
    border-radius: var(--main-radius);
    padding: 0;
    overflow: hidden;
}
.fancybox-slide--html .fancybox-close-small {
    color: #000;
    padding: 10px;
    right: 20px;
    top: 20px;
}


.ar-modal-body{
    position: relative;
    padding: 0; 
}
.ar-modal-body .ar-modal-head{
    position: relative;
    padding: 56px 32px 16px 32px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.ar-modal-body .ar-modal-content{
    position: relative;
    margin: 16px 32px 48px 32px;
    box-sizing: border-box;
}
.ar-modal-body .ar-modal-content h4{
    position: relative;
    margin: 0 0 15px 0;
    font-size: 20px;
    color: #000;
}
.ar-modal-body .ar-modal-content p{
    font-size: 14px;
}
.ar-modal-flex{
    position: relative;
    margin: 0 -16px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.ar-modal-item{
    position: relative;
    margin: 0 16px 32px 16px;
}
.ar-modal-item.is-grow{
    flex-grow: 1;
    flex-basis: 0;
}
.ar-modal-item.is-member-photo{
    flex-grow: 0;
    flex-basis: auto;
    width: 268px;
}
.ar-modal-item.is-member-photo .modal-image-holder{
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: rgb(194, 194, 194);
    border-radius: 12px;
    overflow: hidden;
}
.ar-modal-item.is-member-photo .modal-image-holder img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ar-modal-body .ar-modal-content .member-contacts{
    position: relative;
    margin: 0 0 0 0;
    padding: 0;
    list-style: none;
}
.ar-modal-body .ar-modal-content .member-contacts li{
    position: relative;
    margin: 0 0 10px 0;
}
.ar-modal-body .ar-modal-content .member-contacts li:nth-last-child(1){margin: 0;}
.ar-modal-body .ar-modal-content .member-contacts li a{
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    color: #000;
    text-decoration: none;
}
.ar-modal-body .ar-modal-content .member-contacts li a i{
    margin-right: 15px;
    font-size: 20px;
}



.ar-modal-body.are-team{width: 844px;}


.side-panel{
    position: fixed;
    left: -350px;
    width: 300px;
    height: 100%;
    background: var(--bg-primary-color);
    box-shadow: 3px 3px 45px rgba(0,0,0,0.25);
    z-index: 99999;
    padding: 25px;
    box-sizing: border-box;
    overflow-y: auto;
    transition: 350ms;
}
.side-panel a.logo{
    position: relative;
    padding: 0;
    margin: 0 auto 25px 0px;
    width: 70%;
    display: block;
}
.side-panel a.logo img{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}
.side-panel .main-menu{
    position: relative;
    margin: 0 0 40px 0;
    padding: 0;
    list-style: none;
    display: block;
}
.side-panel .main-menu > li{
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.side-panel .main-menu > li:nth-last-child(1){border: none;}
.side-panel .main-menu > li > a{
    position: relative;
    margin: 0;
    padding: 10px 0 10px 15px;
    box-sizing: border-box;
    display: block;
    color: var(--primary-text-color);
    text-decoration: none;
    font-size: 16px;
}
.side-panel .main-menu > li.current-menu-item > a{color: var(--carrot-color);}
.side-panel .main-menu > li.current-menu-item:before{
    position: absolute;
    content: '';
    left: 0;
    height: 50%;
    top: 25%;
    width: 3px;
    background: var(--carrot-color);
}
.side-panel .main-menu > li > ul.sub-menu{
    position: relative;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    margin: 0 0 15px 0;
    border-radius: 8px;
    background: #FFF0E5;
    list-style: none;
}
.side-panel .main-menu > li > ul.sub-menu > li{
    position: relative;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e0c3ad;
}
.side-panel .main-menu > li > ul.sub-menu > li:nth-last-child(1){border: none;}
.side-panel .main-menu > li > ul.sub-menu > li > a{
    position: relative;
    text-decoration: none;
    color: var(--primary-text-color);
    padding: 10px 0;
    box-sizing: border-box;
    display: block;
}
.side-panel .social-menu{
    position: relative;
    margin: 0 0 50px 10px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.side-panel .social-menu li{
    position: relative;
    margin: 0 8px 0 0;
}
.side-panel .social-menu li:nth-last-child(1){margin: 0;}
.side-panel .social-menu li a{
    position: relative;
    width: 34px;
    height: 34px;
    border: 1px solid var(--primary-text-color);
    text-decoration: none;
    color: var(--primary-text-color);
    display: block;
}
.side-panel .social-menu li a span.name_of_current_page{display: none;}
.side-panel .social-menu li a i{
    position: relative;
    display: block;
    text-align: center;
    line-height: 34px;
}
.transparent-bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -50;
    transition: 350ms;
}
.side-panel.display{left: 0;}
.transparent-bg.display{
    background: rgba(0,0,0,0.15);
    z-index: 99998;
}


.team-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;   /* dva sloupce stejně široké */
  column-gap: 32px;
  row-gap: 32px;
  align-items: start;
}
.team-card{
  display: inline-block; 
  width: 100%;
  break-inside: avoid;      
  margin: 0 0 16px;
  transition: 800ms;      
}
.team-grid > .team-card:nth-child(odd){
  grid-column: 2;
}
.team-grid > .team-card:nth-child(even){
  grid-column: 1;
  margin-top: -85%; 
}
.team-grid.slow-down > .team-card:nth-child(even){margin-top: 0;}


.image-spotter{
    position: relative;
    width: 100%;
    margin: 0;
    display: none;
}
.image-spotter.is-visible { display: block; }
.number-img{
    position: relative;
    margin: 0 auto;
    width: 55%;
    padding: 0;
    display: block;
}
.service-text-flex{
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
}
.service-text-flex .service-item{
    position: relative;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    flex-basis: 0;
}
.service-text-flex .service-item.ar-line{
    flex-grow: 0;
    flex-basis: auto;
    width: 70px;
}
.service-text-flex .service-item .service-holder{
    position: relative;
    margin: 0;
    padding: 90px 0;
}
.service-text-flex .service-item .service-holder h3{
    position: relative;
    margin: 0 25px 0 0;
    font-size: 32px;
}
.service-text-flex .service-item .service-holder p{
    position: relative;
    line-height: 1.5em;
    opacity: 0.75;
}
.service-text-flex .service-item.ar-line .as-line{
    position: relative;
    width: 3px;
    height: 100%;
    background: #FD6C54;
}
.service-text-flex .service-item .service-holder .ar-circle-spot{
    position: absolute;
    top: 50%;
    left: -86px;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: #FD6C54;
    border: 10px solid var(--bg-primary-color);
    transform: translate(0,-50%);
    z-index: 3;
}
.ar-sticky {
  position: sticky;
  top: 24px; /* uprav podle výšky hlavičky */
  height: fit-content; /* aby sticky kopíroval obsah */
  align-self: flex-start; /* Safari */
}

.wp-block-button__link {
    padding: 12px 25px;
    font-size: 16px;
}
.ar-modal-content h3{
    position: relative;
    margin: 0 0 15px 0;
    text-align: center;
    font-size: 36px;
}
.ar-modal-content .ar-form{
    padding: 0;
    background: transparent;
}
.ar-persone-icon{
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.ar-persone-icon:before{
    position: relative;
    content: '';
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background: url('assets/img/avatar.svg') no-repeat top left;
}
.ar-persone-icon.justify{justify-content: center;}


.ar-referencce-sliders-holder{
    position: relative;
    margin: 64px 64px 0px 64px;
    /* background: pink; */
}
.ar-referencce-sliders-holder .reference-flow-holder{
    position: relative;
    margin: 0;
    padding: 0;
    display: block;
}

.reference-media-shower{
    position: relative;
    margin: 0;
    padding: 0;
    display: block;
}

.reference-media-flex{
    position: relative;
    margin: 0 -20px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.reference-media-flex .reference-media-item{
    position: relative;
    margin: 0 20px 30px 20px;
    width: calc(100% * (1/2) - 0px - 0px - 40px);
}
.reference-media-flex .reference-media-item .reference-image-holder{
    position: relative;
    width: 100%;
    padding-bottom: 90%;
    background: rgba(0,0,0,0.5);
    border-radius: 16px;
    overflow: hidden;
}
.reference-media-flex .reference-media-item .reference-image-holder img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reference-media-flex .reference-media-item .reference-image-holder a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.reference-media-flex .reference-media-item .reference-image-holder .play-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    border-radius: 100%;
    overflow: hidden;
    background: rgba(0,0,0,0.17);
    backdrop-filter: blur(7px);
    transform: translate(-50%,-50%);
}

.reference-media-flex .reference-media-item .reference-image-holder a img{
    position: relative;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%,-50%);
    transition: 350ms;
}
.reference-media-flex .reference-media-item .reference-image-holder:hover a img{margin-top: -15px;}
.reference-media-flex .reference-media-item .reference-text-holder{
    position: relative;
    margin: 0;
}
.reference-media-flex .reference-media-item .reference-text-holder h3{
    position: relative;
    margin: 0;
    padding: 0;
}
.reference-media-flex .reference-media-item .reference-text-holder .ref-content{
    font-size: 18px;
    margin-bottom: 25px;
}
.small-reference-flex{
    position: relative;
    margin: 0 -16px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.small-reference-item{
    position: relative;
    margin: 0 16px 16px 16px;
    background: #FFF0E5;
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
}
.small-reference-item h5{
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 16px;
}
.ref-2-columns .small-reference-item{width: calc(100% * (1/2) - 0px - 0px - 32px)}
.ref-3-columns .small-reference-item{width: calc(100% * (1/3) - 0px - 0px - 32px)}
.ref-4-columns .small-reference-item{width: calc(100% * (1/4) - 0px - 0px - 32px)}
.ref-5-columns .small-reference-item{width: calc(100% * (1/5) - 0px - 0px - 32px)}
.ref-6-columns .small-reference-item{width: calc(100% * (1/6) - 0px - 0px - 32px)}
.ar-referencce-sliders-holder .small-reference-item{cursor: pointer;}
.ar-reverse .reference-media-flex:nth-child(even){flex-direction: row-reverse;}


.over-screen .slick-prev,
.over-screen .slick-next{
    top: auto;
    bottom: -50px;
}
.over-screen .slick-prev {left: calc(67% - 120px);}
.over-screen .slick-next {left: calc(67% - 58px);}

.forbes{overflow: unset!important;}
.forbes:after{
    position: absolute;
    right: -30px;
    bottom: -40px;
    content: "";
    width: 309px;
    height: 247px;
    background: url('assets/img/mail_icon.png') no-repeat center center;
}

@media screen and (max-width : 1450px){
    body,
    .ar-btn-with-icon,
    .welcome-text,
    .ar-team-holder .text-holder p.desc,
    .ar-blog-box .blog-text-holder p.blog-desc{font-size: 14px;}
    h1{font-size: 48px;}
    .ar-stars .ar-stars-item span.star-text {font-size: 12px;}
    .ar-blog-box .blog-text-holder h2.blog-title{font-size: 20px;}
    .ar-team-holder .text-holder h4 {font-size: 18px;}
    .ar-image-flex img {
        width: 32px;
        height: 32px;
    }
    .ar-item.ar-size-15.hide-on{display: none;}
    .ar-item.ar-size-35.arsize-50{width: calc(50% - 32px);}
}

@media screen and (max-width : 1300px){
    h1{font-size: 40px;}
    .explain-flex .explain-item.explain-img {width: 30%;}
    .explain-flex .explain-item h3{font-size: 26px; margin-bottom: 15px;}
    .explain-flex .explain-item {padding: 30px;}

    .forbes:after{
        right: -20px;
        bottom: -30px;
        width: 220px;
        height: 176px;
        background-size: cover;
    }
}

@media screen and (max-width : 1200px){
    h2{font-size: 32px;}
    .explain-flex .explain-item.explain-img {width: 100%;}
    .explain-flex .explain-item h3{font-size: 20px; margin-bottom: 10px;}
    .explain-flex .explain-item {padding: 25px;}
    .over-screen {
        width: 100%;
        margin-top: 30px;
        margin-bottom: 80px;
    }
    .explain-flex{display: block;}
    .over-screen .slick-next {right: 18px;}
    .over-screen .slick-prev {right: calc(0% + 70px);}
    .partem {padding: 25px;}
    .kb-row-layout-wrap.ar-transparent-bg .wp-block-kadence-column {padding: 30px;}
    h3{font-size: 24px;}
}

@media screen and (max-width : 1150px){
    .ar-welcome .ar-flex.flex-down{
        display: block;
        margin: 30px 0 0 0;
    }
    .ar-item.ar-size-35.arsize-50{width: calc(100% - 32px);}
    .ar-flex.ar-likes{justify-content: center;}
    .ar-welcome h1{text-align: center;}
    .ar-welcome h1 br{display: none;}
    .ar-welcome .welcome-text{text-align: center;}
    .header-item.to-right.hide-on-respo{display: none;}
    header .header-flex .header-item.right-btn{margin-left: auto;}
    .respo-btn{
        position: relative;
        width: 32px;
        height: 32px;
        cursor: pointer;
    }
    .ar-item.ar-size-50 {width: calc(100% - 32px);}
}

@media screen and (max-width : 1100px){
    .ar-referencce-sliders-holder{margin: 40px 0 0 0;}
}


@media screen and (max-width : 1030px){
    p.ar-left-text{text-align: left!important;}

    .image-align-center .alignright.size-full{
        margin: 0 auto;
        float: none;
    }
    .text-align-center {text-align: center;}
    .has-100-font-size{font-size: 72px;}
}
@media screen and (max-width : 1024px){
    .team-grid{margin-top: 40px;}

}

@media screen and (max-width : 1000px){
    .parent{
        display: flex;
        margin: 0 -8px;
        flex-wrap: wrap;
        grid-column-gap: 0;
        grid-row-gap: 0;
    }
    .parent .partem{margin: 0 8px 16px 8px;; width: calc(100% * (1/2) - 0px - 0px - 16px);}
    .partem .part-flex{display: block;}
    .partem .part-flex .part-item {width: calc(100% * (1 / 1) - 0px - 0px - 30px);}

    .has-3-columns .ar-item {width: calc(100% * (1 / 2) - 0px - 0px - 32px);}
    .ar-blog-filter li a {
        font-size: 14px;
        padding: 10px 16px;
    }
    .ar-modal-body.are-team {width: 100%;}
    .reference-souce{margin: 0 7px;}
}

@media screen and (max-width : 900px){
    .container,
    .wp-block-group.alignwide .wp-block-group__inner-container,
    .wp-block-cover.alignwide .wp-block-cover__inner-container,
    .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide){
        width: calc(100% - 60px);
    }

    footer {
        margin: 30px auto;
        width: calc(100% - 60px);
    }
}

@media screen and (max-width : 800px){
    .number-img {width: 65%;}
    .service-text-flex .service-item .service-holder {padding: 80px 0;}


    .reference-media-flex{display: block;}
    .reference-media-flex .reference-media-item {
        position: relative;
        margin: 0 20px 30px 20px;
        width: calc(100% * (1 / 1) - 0px - 0px - 40px);
    }

    .forbes:after{
        width: 150px;
        height: 120px;
    }
}




@media screen and (max-width : 776px){
    footer .footer-holder {padding: 30px;}
    footer .footer-holder .footer-flex{
        flex-direction: column-reverse;
        margin: 0 -15px;
    }
    footer .footer-holder .footer-flex .footer-item,
    footer .footer-holder .footer-flex .footer-item.to-right{
        margin: 0 15px 30px 15px;
    }
    footer .un-footer{display: block;}
    footer .un-footer .un-footer-item .under-footer{
        display: block;
        margin-top: 10px;
    }
    footer .un-footer .un-footer-item .under-footer li a{padding: 3px 0;}
    footer .un-footer .un-footer-item .under-footer li a:after{display: none;}
    .has-100-font-size{font-size: 66px;}

    .team-grid{
        display: block;
        grid-template-columns: 1fr;
    }
    .team-grid > .team-card:nth-child(even){
        margin-top: 0;
    }
}

@media screen and (max-width : 700px){
   .ref-2-columns .small-reference-item {width: calc(100% * (1 / 1) - 0px - 0px - 32px);}
}


@media screen and (max-width : 600px){
    .has-2-columns .ar-item {width: calc(100% * (1 / 1) - 0px - 0px - 32px);}
    .ar-form .ar-form-grid.ar-2-columns .ar-form-item {width: calc(100% * (1 / 1) - 0px - 0px - 20px);}
    .parent .partem{
        margin: 0 8px 16px 8px;
        width: calc(100% * (1/1) - 0px - 0px - 16px);
    }
    .purple-ground {padding: 30px 20px;}
    
    .mini-form-holder .ar-flex .ar-item.ar-to-right{
        margin-left: 16px;
        flex-grow: 0;
        flex-basis: auto;
        width: 100%;
    }
    .mini-form-holder .ar-flex .ar-btn-with-icon.colored{
        width: 100%;
        box-sizing: border-box;
    }
    .mini-form-holder .ar-flex .ar-btn-with-icon.colored .btn-holder{justify-content: center;}
    .ar-item.respo-none-display{display: none}
    .service-text-flex .service-item .service-holder {
        padding: 0;
        margin-bottom: 50px;
    }
    .service-text-flex .service-item .service-holder:nth-last-child(1){margin: 0;}
    .service-text-flex .service-item.ar-line {width: 30px;}
    .service-text-flex .service-item .service-holder h3{font-size: 24px;}
    .service-text-flex .service-item .service-holder .ar-circle-spot{top: 14%; left: -46px;}
    .empty-zone.is-100 {height: 50px;}
    .has-3-columns .ar-item {width: calc(100% * (1 / 1) - 0px - 0px - 32px);}

    .ar-modal-flex{display: block;}
    .ar-modal-item.is-member-photo {
        width: calc(100% - 32px);
    }
	
    .mobile-break { display: none; }
    
	
}

@media screen and (max-width : 550px){
    h1 {
        font-size: 30px;
    }
    h1 br{display: none;}
}
@media screen and (max-width : 480px){
    .has-100-font-size{font-size: 56px;}
}
