
/*****************************************/
/********** CONTENT PAGE BANNER **********/
/*****************************************/

.content {
    padding: 120px 0 0;
    min-height: calc(100vh - 455px);
}

.content .banner {
	position: relative;
	padding-left: 20px;
}
.content .banner .container::before {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	left: 0;
	width: 5px;
	background-color: var(--primary);
    max-height: 93px;
}

.content .banner ul {
	padding: 0;
	margin-bottom: 25px;
	list-style: none;
	font-family: var(--font-family-1);
	font-size: 10px;
	font-weight: 600;
	color: var(--primary);
	letter-spacing: 2px;
    line-height: normal;
    text-transform: uppercase;
}
.content .banner ul li {
	display: inline-block;
}
.content .banner ul li a.disabled {
	pointer-events: none;
}
.content .banner ul li a:hover,
.content .banner ul li a:focus {
	color: black;
}

.content .banner h1 {
	font-size: 32px;
	font-weight: 200;
	color: black;
	line-height: 1.23;
    letter-spacing: normal;
	margin: 0;
    text-transform: uppercase;
}

.content .banner .container > div {
    display: flex;
    gap: 30px;
    margin-top: 39px;
}

.content .banner span {
    font-size: 10px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.55px;
    text-align: left;
    color: #b1b1b1;
    text-transform: uppercase;
}

.content .banner span a {
    color: var(--primary);
    margin-left: 2px;
}


@media(min-width: 768px) {
	.content .banner {
		padding-left: 40px;
	}

	.content .banner h1 {
		font-size: 48px;
	}
    .content .banner span {
        font-size: 11px;
    }
}

@media(min-width: 992px) {
	.content .banner {
		padding: 0;
	}
	.content .banner .container::before {
		left: -15px;
	}
}

/***************************/
/*******  Template *********/
/***************************/

.template {
    margin-top: 100px;
    /* width: 100%; */
}

.banner .container ul li+li::before {
    content: "/";
    padding-left: 0.2em;
    padding-right: 0.2em;
    font-size: 10px;
    margin-right: 5px;
}

.content .banner+.template {
    margin-top: 80px;
}

.template h2,
.template .h2,
.template h3,
.template .h3,
.template h4,
.template .h4,
.template p {
    font-family: var(--font-family-1);
    font-size: 20px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.56;
    letter-spacing: normal;
    text-align: left;
    color: #756d6f;
}
.template p {
    /* margin-bottom: 25px; */
    -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.template .container {
    max-width: 865px;
    padding: 0 20px;
    display: table;
	clear: both;
}

.template h2 + p,
.template .h2 + p,
.template h3 + p,
.template .h3 + p,
.template h4 + p,
.template .h4 + p {
    margin-top: 30px;
    
}

.template h2,
.template .h2 {
    font-size: 34px;
    line-height: 1.35;
    letter-spacing: normal;
    color: var(--primary);
}

.search .template h2{
    color: var(--darkprimary);
}

.template h3,
.template .h3 {
    font-size: 24px;
    line-height: 1.45;
    color:var(--darkprimary);
}

.template h4,
.template .h4 {
    font-size: 20px;
    font-weight: normal;
    color: var(--primary);
}

.template b,
.template strong {
    font-weight: normal;
    color: var(--darkprimary);
}

.template ul a,
.template p a {
    
    font-weight: normal;
    color: var(--primary);
    display: inline-flex;
    line-height: 1.2;
    border-bottom: 1px solid var(--primary);
    transition: var(--transition);
}

.template ul a:hover,
.template p a:hover {
    border-bottom: 1px solid transparent;
}

.content.search .template ul a, .content.search .template p a {
    display: inline;
}

p small {
    font-size: 14px;
    line-height: 1;
}

p small b {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.57;
    color: #000;
}


.template blockquote p,
.template p big {
    font-family: var(--font-family-1);
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: normal;
    line-height: 1.5;
    color: var(--darkprimary);
    text-align: left;
    padding-left: 85px;
    letter-spacing: normal;
}

.template blockquote p {
    font-style: italic;
}

.template blockquote p small {
    font-style: normal;
}
.template blockquote {
    position: relative;
    margin: 0;
}

.template blockquote::before {
    content: ' ';
    -webkit-mask-image: url(/assets/img/svg/quote.svg);
    mask-image: url(/assets/img/svg/quote.svg);
    background-color: var(--primary);
    width: 29px;
    height: 27px;
    object-fit: cover;
    display: block;
    position: absolute;
    top: -2px;
    left: 27px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

big::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 5px;
    background-color: var(--primary);
    height: calc(100% - 15px);
    margin: auto;
}



.template blockquote p {
    padding-top: 0;
}

.template blockquote p + p{
    margin-top: -15px;
}

.template blockquote p + p small{
    color: var(--primary);
}

.template ul, .template ol {
    list-style-type: none;
    font-family: var(--font-family-1);
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.56;
    letter-spacing: normal;
    text-align: left;
    color: #616161;
    margin: 0;
    padding-bottom: 20px;
    counter-reset: item;
}

.template-module ul li::before {
    content: "";
    display: inline-block;
    height: 13px;
    width: 15px;
    margin-left: -40px;
    margin-right: 26px;
    -webkit-mask-image: url(/assets/img/svg/bullet-arrow.svg);
    mask-image: url(/assets/img/svg/bullet-arrow.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--primary);
}

.template-module ol li::before {
    font-family: var(--font-family-1);
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.56;
    letter-spacing: normal;
    text-align: left;
    color: var(--primary);
    counter-increment: item;
    content: counter(item) ".";
    display: inline-block;
    width: 2em;
    margin-left: -2em;

}

.template ul li{
    margin: 5px 0;
    -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.template ol li{
    -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.template ul li:last-of-type{
    margin-bottom: 0;
}

.template-module table thead {
    background-color: var(--primary);
}

.template-module table,
.template-module table td,
.template-module table tr,
.template-module table th {
    font-family: var(--font-family-1);
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1;
    text-align: left;
    padding: 21px 0 20px 21px;
    position: relative;
}

.template-module table {
    padding: 0;
}

.template-module table th {
    color: white;
    font-weight: normal;
    background-color: var(--primary);
}

.template-module table tbody tr td:last-of-type,
.template-module table th:last-of-type {
    padding: 21px 21px 20px 0;
}


.template-module table td  {
    font-weight: 300;
    color: #626262;
    border-bottom: 1px solid #e9e8e8;
}

.template-module table td b {
    font-weight: normal;
    text-align: left;
}


.template .listing .file .link {
    font-family: var(--font-family-1);
    font-size: 0.875rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.7px;
    color: var(--primary);
    text-transform: uppercase;
    padding-right: 30px;
}

.template .listing .file .link::after {
    width: 21px;
    height: 15px;
    content: '';
    display: inline-block;
    -webkit-mask-image: url(/assets/img/elements/svg/normal-arrow.svg);
    mask-image: url(/assets/img/elements/svg/normal-arrow.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--primary);
    position: relative;
    right: -15px;
    transition: var(--transition);
    top: 2px;
}

.template .listing .file .link:hover::after {
    right: -25px;
}


.rating-section {
    border-top: 1px solid #e6e6e8;   
    /* margin-top: 100px; */
}

.template-module.module8 > div{
    padding-left: 56px;
    position: relative;
}

.template-module.module8 > .container > div{
    position: relative;
}

.template-module.module8 > .container > div img{
   z-index: 1;
   position: relative;
}

.template-module.module8 > .container > div::after{
    content: "";
    display: block;
    position: absolute;
    left: -36px;
    top: 70px;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 0;
}
@media(min-width: 992px) {
    .template-module.img-module8 + .template-module {
        margin-top: 170px;
    }
}
@media(min-width: 768px) {
    .template-module.img-module8 + .template-module {
        margin-top: 150px;
    }
}
@media(max-width: 768px) {
    .template {
        margin-top: 40px;
    }

    .content {
		padding: 40px 0 0;
	}

	.content .banner + .template {
		margin-top: 50px;
	}

    .banner .container ul li+li::before,
    .banner .container ul {
        font-size: 0.769rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .banner .container h1 {
        letter-spacing: -1.68px;
        font-size: 2.462rem;
        line-height: 1.2;
    }

    .banner .image {
        min-height: 264px;
    }

    .template h2, .template .h2 {
        font-size: 2.154rem;
    }

    .template ul,
    .template ol,
    .template p {
        font-size: 1.231rem;
    }


    .template h3, .template .h3 {
        font-size: 1.692rem;
        line-height: 1.45;
    }

    .template h4, .template .h4 {
        font-size: 1.385rem;
    }

    .template p small b,
    .template p small {
        font-size: 0.923rem; 
    }

    .template blockquote p, .template p big {
        font-size: 1.385rem;
        padding: 20px 0 0 50px;
    }

    .template-module table, .template-module table td, .template-module table tr, .template-module table th {
        font-size: 1rem;
    }

    .rating-section {
        margin-top: 60px;
    }
    big::after,
    big::before {
        left: 25px;

    }
    big::before {
        top: 20px;
        height: calc(100% - 30px);
    }

    big::after {
        left: 0px;
        top: 12px;
    }

    .template blockquote::before {
        top: 12px;
        left: 0px;
    }

    .template-module ol li::before {
        font-size: 16px;
    }

    .template .button.full, .template .button.full:hover, .template .button.full:focus {
        padding: 20px 30px 17px;
    }

    .content .banner .container::before {
        max-height: 52px;
    }

    
}



.slider-arrows {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
    width: 100%;
    justify-content: space-between;
}

.slider-arrows > div {
    position: relative;
    width: 29px;
    height: 56px;
    pointer-events: auto;
    margin: 40px;
    cursor: pointer;
}

.slider-arrows > div.prev {
    transform: rotate(180deg);
}
.slider-arrows > div.next {
    right: 0;
}
.slider-arrows > div::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-mask-image: url(/assets/img/svg/slider-arrow.svg);
    -webkit-mask-repeat: no-repeat;
    mask-image: url(/assets/img/svg/slider-arrow.svg);
    mask-repeat: no-repeat;
    mask-size: cover;
    background-color: var(--white);
    transition: var(--transition);
    cursor: pointer;
}