/* OUTLINE BLOCKS */
#PageMain,
#PageFooter {
 margin-top: 0;
}

.se-outline-block {
 text-align: center;
}

.se-outline-block .features {
 border: 1px solid #000;
 background-color: #fff;
 padding: 30px 15px;
}

.sePage .sePageLayout .se-outline-block h2 {
 margin-top: 0px;
}

.sePage .sePageLayout .se-outline-block h5 {
 margin-bottom: 0px;
}

.se-outline-block .col-margin-bottom {
margin-bottom: 30px;
}

.sePageContent .sePageSection.se-outline-block {
margin-top: 0px; 
margin-bottom: 0px;
}

span.circle {
 background: #090;
 border-radius: .8em;
 -moz-border-radius: .8em;
 -webkit-border-radius: .8em;
 color: #fff;
 display: inline-block;
 line-height: 1.6em;
 margin-right: 15px;
 text-align: center;
 width: 1.6em; 
}

/* FULL WIDTH 2 COLUMN FEATURE */
.se-2col-fw-feature .content-block-column {
 display: flex;
 flex-direction: column;
 justify-content: center;
}

.se-2col-fw-feature .content-block-column {
 width: 100%;
}

.se-2col-fw-feature .content-block-column:first-child {
 min-height: 360px;
}

.se-2col-fw-feature .content-block-column:last-child {
 padding: 45px 30px;
 text-align: center;
}

.se-2col-fw-feature .custom1-6 .col-sm-push-6 {
 left: inherit;
}

.se-2col-fw-feature .custom1-6 .col-sm-pull-6 {
 right: inherit;
}

@media only screen and (min-width: 992px) {

 /* FULL WIDTH 2 COLUMN FEATURE */
 .se-2col-fw-feature .content-block-column:first-child {
 min-height: 480px;
 }

 .se-2col-fw-feature .content-block-column {
 width: 50%;
 }

 .se-2col-fw-feature .custom1-6 .col-sm-push-6 {
 left: 50%;
 }

 .se-2col-fw-feature .custom1-6 .col-sm-pull-6 {
 right: 50%;
 }

 .se-2col-fw-feature .content-block-column:last-child {
 padding: 45px 60px;
 }

/*ACCORDIAN*/
.sePage .sePageLayout .se-accordian-section .content-block-column {
 height: 100% !important;
}
.sePage .sePageLayout .se-accordian-section .se-accordion {
 text-align: left;
}
.sePage .sePageLayout .se-accordian-section .se-accordion .card {
 padding: 0;
 border: 1px solid #d2d2d2;
 border-width: 1px 0;
 margin-bottom: -1px;
 -webkit-column-break-inside: avoid;
 break-inside: avoid-column;
}
.sePage
 .sePageLayout
 .sePageMain
 .se-accordian-section
 .se-accordion
 .card-body {
 padding-bottom: 22px;
}

.sePage .sePageLayout .se-accordian-section .se-accordion h3.mb-0 {
 margin: 0;
 font-size: 18px;
}


.sePage .sePageLayout .se-accordian-section .se-accordion button {
 margin: 0;
 font-size: 18px;
 padding: 11px 0;
 text-decoration: none;
 white-space: normal;
 text-align: left;
 width: 100%;
 position: relative;
}
.sePage
 .sePageLayout
 .sePageMain
 .se-accordian-section
 .se-accordion
 button:focus {
 outline: none;
}
.sePage
 .sePageLayout
 .sePageMain
 .se-accordian-section
 .se-accordion
 button:after {
 font-family: "Font Awesome 6 Free";
 font-weight: 900;
 font-size: 16px;
 content: "\f061";
color: #00a1df;
 position: absolute;
 right: 0;
 top: 50%;
 -webkit-transform: translateY(-50%) rotate(90deg);
 -ms-transform: translateY(-50%) rotate(90deg);
 transform: translateY(-50%) rotate(90deg);
 -webkit-transition: all 0.25s 0s;
 transition: all 0.25s 0s;
 -webkit-animation: fadeIn ease 0.25s;
 animation: fadeIn ease 0.25s;
}
.sePage
 .sePageLayout
 .sePageMain
 .se-accordian-section
 .se-accordion
 button.collapsed:after {
 content: "\f061";
 -webkit-transition: all 0.25s 0s;
 transition: all 0.25s 0s;
 -webkit-transform: translateY(-50%) rotate(0deg);
 -ms-transform: translateY(-50%) rotate(0deg);
 transform: translateY(-50%) rotate(0deg);
}