/********** Template CSS **********/
:root {
    --primary: #ff9f00;
    --secondary: #fdbe33;
    --light: #f4f6f8;
    --dark: #040f28;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.5s;
}

.btn::after {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
}

.btn.btn-primary::after {
    background: var(--dark);
}

.btn:hover::after,
.btn.active::after {
    width: 50%;
    left: 25%;
}

.btn-primary {
    color: #ffffff;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 50%;
    bottom: 0;
    margin-left: -22px;
    border-radius: 0;
    z-index: 99;
}

.bg-dark-radial {
    background-image: -webkit-repeating-radial-gradient(
        center center,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.3) 1px,
        transparent 1px,
        transparent 100%
    );
    background-image: -moz-repeating-radial-gradient(
        center center,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.3) 1px,
        transparent 1px,
        transparent 100%
    );
    background-image: -ms-repeating-radial-gradient(
        center center,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.3) 1px,
        transparent 1px,
        transparent 100%
    );
    background-image: -o-repeating-radial-gradient(
        center center,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.3) 1px,
        transparent 1px,
        transparent 100%
    );
    background-image: repeating-radial-gradient(
        center center,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.3) 1px,
        transparent 1px,
        transparent 100%
    );
    background-size: 3px 3px;
}

.bg-light-radial {
    background-image: -webkit-repeating-radial-gradient(
        center center,
        rgba(256, 256, 256, 0.2),
        rgba(256, 256, 256, 0.2) 1px,
        transparent 1px,
        transparent 100%
    );
    background-image: -moz-repeating-radial-gradient(
        center center,
        rgba(256, 256, 256, 0.2),
        rgba(256, 256, 256, 0.2) 1px,
        transparent 1px,
        transparent 100%
    );
    background-image: -ms-repeating-radial-gradient(
        center center,
        rgba(256, 256, 256, 0.2),
        rgba(256, 256, 256, 0.2) 1px,
        transparent 1px,
        transparent 100%
    );
    background-image: -o-repeating-radial-gradient(
        center center,
        rgba(256, 256, 256, 0.2),
        rgba(256, 256, 256, 0.2) 1px,
        transparent 1px,
        transparent 100%
    );
    background-image: repeating-radial-gradient(
        center center,
        rgba(256, 256, 256, 0.2),
        rgba(256, 256, 256, 0.2) 1px,
        transparent 1px,
        transparent 100%
    );
    background-size: 3px 3px;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    padding: 30px 15px;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
    transition: 0.5s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 15, 40, 0.7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.page-header {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(4, 15, 40, 0.7), rgba(4, 15, 40, 0.7)),
        url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.service-item .service-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background-color: #d8e5e2;
}

.service-item .service-icon i {
    transition: 0.2s;
}

.service-item:hover .service-icon i {
    font-size: 60px;
}

div.portfolio-item-service .portfolio-box {
    display: block;
    padding: 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

div.portfolio-item-service p {
    margin-bottom: 0;
}

.portfolio-item {
    margin-bottom: 60px;
}

.portfolio-title {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 120px;
    padding: 0 30px;
    right: 30px;
    left: 30px;
    bottom: -60px;
    background: #ffffff;
    z-index: 3;
}

.portfolio-btn {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
    font-size: 120px;
    line-height: 0;
    transition: 0.1s;
    transition-delay: 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
}

.portfolio-box::before,
.portfolio-box::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    transition: 0.5s;
    z-index: 1;
    background: rgba(4, 15, 40, 0.7);
}

.portfolio-box::before {
    left: 0;
}

.portfolio-box::after {
    right: 0;
}

.portfolio-item:hover .portfolio-box::before {
    left: 0;
    width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
    right: 0;
    width: 50%;
}

@media (min-width: 992px) {
    .testimonial,
    .contact-form {
        margin-left: -90px;
    }
}

@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--primary);
    }
}

.footer-shape::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 100%;
    top: 0;
    left: -40px;
    background: var(--primary);
    transform: skew(40deg);
}

/* select2.min.css | http://127.0.0.1:8000/assets/plugins/select2/css/select2.min.css */

.select2-container--default .select2-selection--single {
    height: 55px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 50px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    top: 13px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    color: #777777;
}

.select2-container--default .select2-selection--single {
    border: none;
}

.form-control::file-selector-button {
    padding: 1rem 0.75rem;
    color: #fff;
    background-color: #ff9f00;
}

input {
    height: 55px;
}

/* 3.15 Accordion */
.accordion {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}

.accordion .accordion-header,
.accordion .accordion-body {
    padding: 10px 15px;
}

.accordion .accordion-header {
    background-color: #f9f9f9;
    background-image: linear-gradient(to right,
            #ff0000,
            #cd5800,
            #957200,
            #5b7d00,
            #008000);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s;
    color: #000;
}

.accordion .accordion-header h4 {
    line-height: 1;
    margin: 5px;
    font-size: 14px;
    font-weight: 700;
}

.accordion .accordion-header:hover {
    /*background-color: #f2f2f2;*/
    background-color: #ad4646;
    background: linear-gradient(90deg,
            rgba(246, 4, 4, 0.938813025210084) 0%,
            rgba(60, 253, 29, 0.48503151260504207) 75%);
    -webkit-transform: scale(1.1);
    transform: scale(1.03);
}

.accordion .accordion-header[aria-expanded="true"] {
    /*box-shadow: 0 2px 6px #acb5f6;
    background-color: #6777ef;
    color: #fff;*/
    box-shadow: 0 2px 6px #acb5f6;
    background: rgb(246, 4, 4);
    background: linear-gradient(90deg,
            rgba(246, 4, 4, 0.938813025210084) 0%,
            rgba(60, 253, 29, 0.48503151260504207) 75%);
    color: #fff;
}

.accordion .accordion-body {
    line-height: 24px;
}
/******/
/* 3.5 Card */
.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
    background-color: #fff;
    border-radius: 3px;
    border: none;
    position: relative;
    margin-bottom: 30px;
}

.card .card-header,
.card .card-body,
.card .card-footer {
    background-color: transparent;
    padding: 20px 25px;
}

.card .navbar {
    position: static;
}

.card .card-body {
    padding-top: 20px;
    padding-bottom: 20px;
}

.card .card-body .section-title {
    margin: 30px 0 10px 0;
    font-size: 16px;
}

.card .card-body .section-title:before {
    margin-top: 8px;
}

.card .card-body .section-title+.section-lead {
    margin-top: -5px;
}

.card .card-body p {
    font-weight: 500;
}

.card .card-header {
    border-bottom-color: #f9f9f9;
    line-height: 30px;
    -ms-grid-row-align: center;
    align-self: center;
    width: 100%;
    min-height: 70px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
}

.card .card-header .btn {
    margin-top: 1px;
    padding: 2px 15px;
}

.card .card-header .btn:not(.note-btn) {
    border-radius: 30px;
}

.card .card-header .btn:hover {
    box-shadow: none;
}

.card .card-header .form-control {
    height: 31px;
    font-size: 13px;
    border-radius: 30px;
}

.card .card-header .form-control+.input-group-btn .btn {
    margin-top: -1px;
}

.card .card-header h4 {
    font-size: 16px;
    line-height: 28px;
    color: #6777ef;
    padding-right: 10px;
    margin-bottom: 0;
}

.card .card-header h4+.card-header-action,
.card .card-header h4+.card-header-form {
    margin-left: auto;
}

.card .card-header h4+.card-header-action .btn,
.card .card-header h4+.card-header-form .btn {
    font-size: 12px;
    border-radius: 30px !important;
    padding-left: 13px !important;
    padding-right: 13px !important;
}

.card .card-header h4+.card-header-action .btn.active,
.card .card-header h4+.card-header-form .btn.active {
    box-shadow: 0 2px 6px #acb5f6;
    background-color: #6777ef;
    color: #fff;
}

.card .card-header h4+.card-header-action .dropdown,
.card .card-header h4+.card-header-form .dropdown {
    display: inline;
}

.card .card-header h4+.card-header-action .btn-group .btn,
.card .card-header h4+.card-header-form .btn-group .btn {
    border-radius: 0 !important;
}

.card .card-header h4+.card-header-action .btn-group .btn:first-child,
.card .card-header h4+.card-header-form .btn-group .btn:first-child {
    border-radius: 30px 0 0 30px !important;
}

.card .card-header h4+.card-header-action .btn-group .btn:last-child,
.card .card-header h4+.card-header-form .btn-group .btn:last-child {
    border-radius: 0 30px 30px 0 !important;
}

.card .card-header h4+.card-header-action .input-group .form-control,
.card .card-header h4+.card-header-form .input-group .form-control {
    border-radius: 30px 0 0 30px !important;
}

.card .card-header h4+.card-header-action .input-group .form-control+.input-group-btn .btn,
.card .card-header h4+.card-header-form .input-group .form-control+.input-group-btn .btn {
    border-radius: 0 30px 30px 0 !important;
}

.card .card-header h4+.card-header-action .input-group .input-group-btn+.form-control,
.card .card-header h4+.card-header-form .input-group .input-group-btn+.form-control {
    border-radius: 0 30px 30px 0 !important;
}

.card .card-header h4+.card-header-action .input-group .input-group-btn .btn,
.card .card-header h4+.card-header-form .input-group .input-group-btn .btn {
    margin-top: -1px;
    border-radius: 30px 0 0 30px !important;
}

.card .card-footer {
    background-color: transparent;
    border: none;
}

.card.card-mt {
    margin-top: 30px;
}

.card.card-progress:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 99;
    z-index: 99;
}

.card.card-progress .card-progress-dismiss {
    position: absolute;
    top: 66%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    color: #fff !important;
    padding: 5px 13px;
}

.card.card-progress.remove-spinner .card-progress-dismiss {
    top: 50%;
    transform: translate(-50%, -50%);
}

.card.card-progress:not(.remove-spinner):after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsb2FkZXItMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQogd2lkdGg9IjQwcHgiIGhlaWdodD0iNDBweCIgdmlld0JveD0iMCAwIDUwIDUwIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MCA1MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iIzAwMCIgZD0iTTQzLjkzNSwyNS4xNDVjMC0xMC4zMTgtOC4zNjQtMTguNjgzLTE4LjY4My0xOC42ODNjLTEwLjMxOCwwLTE4LjY4Myw4LjM2NS0xOC42ODMsMTguNjgzaDQuMDY4YzAtOC4wNzEsNi41NDMtMTQuNjE1LDE0LjYxNS0xNC42MTVjOC4wNzIsMCwxNC42MTUsNi41NDMsMTQuNjE1LDE0LjYxNUg0My45MzV6Ij4NCjxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZVR5cGU9InhtbCINCiAgYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIg0KICB0eXBlPSJyb3RhdGUiDQogIGZyb209IjAgMjUgMjUiDQogIHRvPSIzNjAgMjUgMjUiDQogIGR1cj0iMC42cyINCiAgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiLz4NCjwvcGF0aD4NCjwvc3ZnPg0K");
    background-size: 80px;
    background-repeat: no-repeat;
    background-position: center;
}

.card.card-primary {
    border-top: 2px solid #6777ef;
}

.card.card-secondary {
    border-top: 2px solid #34395e;
}

.card.card-success {
    border-top: 2px solid #47c363;
}

.card.card-danger {
    border-top: 2px solid #fc544b;
}

.card.card-warning {
    border-top: 2px solid #ffa426;
}

.card.card-info {
    border-top: 2px solid #3abaf4;
}

.card.card-dark {
    border-top: 2px solid #191d21;
}

.card.card-hero .card-header {
    padding: 20px;
    /*background-image: linear-gradient(to bottom, #6777ef, #95a0f4);*/
    color: #fff;
    overflow: hidden;
    height: auto;
    min-height: auto;
    display: block;
}

.card.card-hero .card-header h4 {
    font-size: 25px;
    line-height: 1;
    color: #fff;
}

.card.card-hero .card-header .card-description {
    margin-top: 5px;
    font-size: 16px;
}

.card.card-hero .card-header .card-icon {
    float: right;
    margin: -60px;
    animation: pulsate 2s ease-out;
    animation-iteration-count: infinite;
}

.card.card-hero .card-header .card-icon .ion,
.card.card-hero .card-header .card-icon .fas,
.card.card-hero .card-header .card-icon .far,
.card.card-hero .card-header .card-icon .fab,
.card.card-hero .card-header .card-icon .fal {
    font-size: 140px;
}

.card.card-statistic-1 .card-header,
.card.card-statistic-2 .card-header {
    border-color: transparent;
    padding-bottom: 0;
    height: auto;
    min-height: auto;
    display: block;
}

.card.card-statistic-1 .card-header h4,
.card.card-statistic-2 .card-header h4 {
    line-height: 1.2;
    color: #98a6ad;
}

.card.card-statistic-1 .card-body,
.card.card-statistic-2 .card-body {
    padding-top: 0;
}

.card.card-statistic-1 .card-body,
.card.card-statistic-2 .card-body {
    font-size: 26px;
    font-weight: 700;
    color: #34395e;
    padding-bottom: 0;
}

.card.card-statistic-1,
.card.card-statistic-2 {
    display: inline-block;
    width: 100%;
}

.card.card-statistic-1 .card-icon,
.card.card-statistic-2 .card-icon {
    width: 80px;
    height: 80px;
    margin: 10px;
    border-radius: 3px;
    line-height: 94px;
    text-align: center;
    float: left;
    margin-right: 15px;
}

.card.card-statistic-1 .card-icon .ion,
.card.card-statistic-1 .card-icon .fas,
.card.card-statistic-1 .card-icon .far,
.card.card-statistic-1 .card-icon .fab,
.card.card-statistic-1 .card-icon .fal,
.card.card-statistic-2 .card-icon .ion,
.card.card-statistic-2 .card-icon .fas,
.card.card-statistic-2 .card-icon .far,
.card.card-statistic-2 .card-icon .fab,
.card.card-statistic-2 .card-icon .fal {
    font-size: 22px;
    color: #fff;
}

.card.card-statistic-1 .card-icon {
    line-height: 90px;
}

.card.card-statistic-2 .card-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 22px;
    margin: 25px;
}

.card.card-statistic-1 .card-header,
.card.card-statistic-2 .card-header {
    padding-bottom: 0;
    padding-top: 25px;
}

.card.card-statistic-2 .card-body {
    padding-top: 20px;
}

.card.card-statistic-2 .card-header+.card-body,
.card.card-statistic-2 .card-body+.card-header {
    padding-top: 0;
}

.card.card-statistic-1 .card-header h4,
.card.card-statistic-2 .card-header h4 {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.card.card-statistic-1 .card-header h4 {
    margin-bottom: 0;
}

.card.card-statistic-2 .card-header h4 {
    text-transform: none;
    margin-bottom: 0;
}

.card.card-statistic-1 .card-body {
    font-size: 20px;
}

.card.card-statistic-2 .card-chart {
    padding-top: 20px;
    margin-left: -9px;
    margin-right: -1px;
    margin-bottom: -15px;
}

.card.card-statistic-2 .card-chart canvas {
    height: 90px !important;
}

.card .card-stats {
    width: 100%;
    display: inline-block;
    margin-top: 2px;
    margin-bottom: -6px;
}

.card .card-stats .card-stats-title {
    padding: 15px 25px;
    background-color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.card .card-stats .card-stats-items {
    display: flex;
    height: 50px;
    align-items: center;
}

.card .card-stats .card-stats-item {
    width: calc(100% / 3);
    text-align: center;
    padding: 5px 20px;
}

.card .card-stats .card-stats-item .card-stats-item-label {
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-top: 4px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.card .card-stats .card-stats-item .card-stats-item-count {
    line-height: 1;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
}

.card.card-large-icons {
    display: flex;
    flex-direction: row;
}

.card.card-large-icons .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 150px;
    border-radius: 3px 0 0 3px;
}

.card.card-large-icons .card-icon .ion,
.card.card-large-icons .card-icon .fas,
.card.card-large-icons .card-icon .far,
.card.card-large-icons .card-icon .fab,
.card.card-large-icons .card-icon .fal {
    font-size: 60px;
}

.card.card-large-icons .card-body {
    padding: 25px 30px;
}

.card.card-large-icons .card-body h4 {
    font-size: 18px;
}

.card.card-large-icons .card-body p {
    opacity: 0.6;
    font-weight: 500;
}

.card.card-large-icons .card-body a.card-cta {
    text-decoration: none;
}

.card.card-large-icons .card-body a.card-cta i {
    margin-left: 7px;
}

.card.bg-primary,
.card.bg-danger,
.card.bg-success,
.card.bg-info,
.card.bg-dark,
.card.bg-warning {
    color: #fff;
}

.card.bg-primary .card-header,
.card.bg-danger .card-header,
.card.bg-success .card-header,
.card.bg-info .card-header,
.card.bg-dark .card-header,
.card.bg-warning .card-header {
    color: #fff;
    opacity: 0.9;
}

@media (max-width: 575.98px) {
    .card.card-large-icons {
        display: inline-block;
    }

    .card.card-large-icons .card-icon {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .card .card-header {
        height: auto;
        flex-wrap: wrap;
    }

    .card .card-header h4+.card-header-action,
    .card .card-header h4+.card-header-form {
        flex-grow: 0;
        width: 100%;
        margin-top: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .card .card-stats .card-stats-items {
        height: 49px;
    }

    .card .card-stats .card-stats-items .card-stats-item {
        padding: 5px 7px;
    }

    .card .card-stats .card-stats-items .card-stats-item .card-stats-item-count {
        font-size: 16px;
    }

    .card.card-sm-6 .card-chart canvas {
        height: 85px !important;
    }

    .card.card-hero .card-header {
        padding: 25px;
    }
}

