@font-face {
    font-family: 'CirceRegular';
    src: url('fonts/Circe-Regular.woff') format('woff'),
         url('fonts/Circe-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



body {
    font-size: 16px;
    text-decoration: none;
    font-family: "CirceRegular", sans-serif;
}

@media (min-width: 1400px) {
    .container{
        max-width: 1370px
    }
}


.ci-slider-item {
    text-align: center;
}

.ci-header-info {
    color: white;
    text-align: center;
    font-size: 1.2em;
    padding: 5px;
}

.ci-footer-map {
    margin-top: 55px;
}


.ci-header-container {
    text-align: right;
    padding-right: 10%;
}

.ci-header-phone a {
    color: #BE0000;
    font-size: 2em;
    padding-top: 5px;
    padding-right: 15px;
}
/* Top menu animate */
.ci-header-nav {
    margin-top: 15px;
}

.ci-header-nav ul {
    /*position: absolute;*/
    /*top: 50%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    /*margin: 0;*/
    /*padding: 0;*/
    display: flex;
    justify-content: right;
}
.ci-header-nav ul li {
    list-style: none;
}
.ci-header-nav ul li a {
    position: relative;
    display: block;
    margin: 0 5px;
    padding: 5px 10px;
    color: black;
    font-size: 1.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    overflow: hidden;
}
.ci-header-nav ul li a::before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    left: -100%;
    width: 100%;
    height: 4px;
    background: #FE0201;
    transition: 0.5s;
}
.ci-header-nav ul li a:hover {
    color: #fff;
}
.ci-header-nav ul li a:hover::before {
    animation: animate .5s linear forwards;
}

@keyframes animate {
    0% {
        top: calc(100% - 5px);
        left: -100%;
        height: 4px;
        z-index: 1;
    }
    50% {
        top: calc(100% - 5px);
        left: 0;
        height: 4px;
        z-index: 1;
    }
    100% {
        top: 0;
        left: 0;
        height: 100%;
        z-index: -1;
    }
}

@media all and (max-width: 1100px) {
    .ci-header-nav {
        display: none;
    }
}

/* Slider Start */
.ci-slider-item-1 {
    background: url(../img/slider-1.jpg) no-repeat center 70%;
    overflow: hidden;
    padding: 12% 0;
    background-size: cover;
}
.ci-slider-item-2 {
    background: url(../img/slider-2.jpg) no-repeat center 70%;
    overflow: hidden;
    padding: 12% 0;
    background-size: cover;
}
.ci-slider-item-3 {
    background: url(../img/slider-3.jpg) no-repeat center 70%;
    overflow: hidden;
    padding: 12% 0;
    background-size: cover;
}
.ci-slider-item-4 {
    background: url(../img/slider-4.jpg) no-repeat center 70%;
    overflow: hidden;
    padding: 12% 0;
    background-size: cover;
}

.home-banner {
    padding: 9% 0;
    background-size: inherit;
    height: 500px;
}

.home-banner:hover .ci-container {
    display: block;
}

.ci-container {
    display: none;
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 20%;
    padding: 0px;
    min-height: 60px;
}
.ci-slider-btn {
    display: block;
    width: 100%;
    height: 100%;
    background: #dc0000;
    color: #fff;
    font-weight: 400;
    border-radius: 3px;
    font-size: 4.7em;
    text-transform: uppercase;
    text-align: center;
}

.ci-slider-btn:hover {
    background: darkgreen;
    color: #fff;
    text-decoration: none;
}

@media only screen and (max-width: 1100px) {
    .home-banner{
        height: 350px;
    }
    .ci-slider-btn {
        font-size: 3.3em;
    }
}

@media only screen and (max-width: 400px) {
    .home-banner{
        padding: 40px 0;
        height: 200px;
    }
    .ci-slider-btn {
        font-size: 1.5em;
    }
}

/* Slider End */


.ci-home-section .ci-home-section-title {
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 35px;
    transition: all .3s;
}
.ci-home-section .ci-home-section-title a {
    text-decoration: underline;
    color: #E71919;
}

.ci-home-section p {
    text-indent: 20px;
    margin-bottom: 5px;
    font-size: 1.2em;
}
.ci-home-section ul {
    margin: 0 0 5px 50px;
    font-size: 1.2em;
    list-style-type: disc;
}


/*   Main Work Block Start   */
.ci-work-section {
    padding: 30px 0 50px 0;
}
.ci-work-item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    height: 100%;
}
.ci-work-item:hover {
    text-decoration: none;
}

.ci-work-item-top {
    display: none;
    padding: 5% 10%;
    justify-content: space-around;
    align-items: center;
    height: 40%;
}
.ci-work-item:hover .ci-work-item-top {
    display: flex;
}
.ci-work-item-top-text {
    color: white;
    font-size: 1.5em;
    text-align: left;
}
.ci-work-item-top-button {
    color: black;
    background-color: white;
    padding: 5%;
    border-radius: 6px;
    font-size: 1.2em;
    text-align: center;
}
.ci-work-item-top-text:hover, .ci-work-item-top-button:hover {
    text-decoration: none;
}
.ci-work-item-top-text:visited, .ci-work-item-top-button:visited {
    text-decoration: none;
}
.ci-work-item-top-text:active, .ci-work-item-top-button:active {
    text-decoration: none;
}


.ci-work-item-center {
    position: relative;
}
.ci-work-item-image {
    width: 100%;
    height: 100%;
}
.ci-work-item-text {
    display: none;
    position: absolute;
    top: 0;
    background-color: rgba(255,255,255,0.8);
    width: 100%;
    height: 100%;
    color: darkgreen;
    padding: 5% 5%;
}
.ci-work-item:hover .ci-work-item-text {
    display: block;
}

.ci-work-item-bottom {
    display: flex;
    padding: 5% 10%;
    justify-content: space-around;
    align-items: center;
    height: 40%;
}
.ci-work-item:hover .ci-work-item-bottom {
    display: none;
}
.ci-work-item-bottom-text {
    color: white;
    font-size: 1.5em;
    text-align: left;
}
.ci-work-item-bottom-button {
    color: black;
    background-color: white;
    padding: 5%;
    border-radius: 6px;
    font-size: 1.2em;
}
.ci-work-item-bottom-text:hover, .ci-work-item-bottom-button:hover {
    text-decoration: none;
}


/*   Main Work Block End   */



/*  Check Eligibility Form Start */

.ci-form fieldset {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
    border-radius: 6px;
}

.ci-form input[type="text"],
.ci-form input[type="tel"],
.ci-form input[type="password"],
.ci-form input[type="email"],
.ci-form input[type="url"],
.ci-form input[type="number"],
.ci-form input[type="phone"],
.ci-form input[type="date"],
.ci-form textarea,
.ci-form select {
    border-radius: 6px;
    padding: 8px 10px;
}

.ci-form input[type="text"]:hover,
.ci-form input[type="tel"]:hover,
.ci-form input[type="password"]:hover,
.ci-form input[type="email"]:hover,
.ci-form input[type="url"]:hover,
.ci-form input[type="number"]:hover,
.ci-form input[type="phone"]:hover,
.ci-form input[type="date"]:hover,
.ci-form textarea:hover,
.ci-form select:hover {
    border-color: lightgreen;
}

.ci-form input[type="text"]:focus,
.ci-form input[type="tel"]:focus,
.ci-form input[type="password"]:focus,
.ci-form input[type="email"]:focus,
.ci-form input[type="url"]:focus,
.ci-form input[type="number"]:focus,
.ci-form input[type="phone"]:focus,
.ci-form input[type="date"]:focus,
.ci-form textarea:focus,
.ci-form select:focus {
    border: solid 3px #104d0b;
}

.ci-eligibility-form-container {
    position: relative;
}

.ci-eligibility-form-inactive {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    color: #104d0b;
    font-size: 1.8em;
    padding-top: 2em;
}


/*  Check Eligibility Form End */


.ci-article-section .ci-article-section-title {
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 35px;
    transition: all .3s;
}
.ci-article-top {
    position: relative;
    padding: 0px;
    margin: 0px;

}
.ci-article-top-text {
    position: absolute;
    left: 20%;
    bottom: 10%;
    color: white;
}
.ci-article-title {
    font-size: 3.5em;
}
.ci-article-main {
    padding: 20px;
}
.ci-article-section p {
    text-indent: 20px;
    margin-bottom: 5px;
    font-size: 1.2em;
}
.ci-article-section ul {
    margin: 0 0 5px 50px;
    font-size: 1.2em;
    list-style-type: disc;
}
.ci-article-main img {
    margin: 50px;
}


.ci-study-btn-container {
    padding-left: 10%;
}

.ci-visitor-btn-container {
    padding-right: 10%;
}
.ci-visitor-btn-container a {
    float: right;
}

.ci-work-btn-container {
    padding-left: 10%;
}

/* Pay Send Form Start */

.ci-pay-send-result {
    max-width: 500px;
    margin: 15px auto;
    text-align: center;
    font-size: 36px;
    color: darkgreen;
}

.ci-pay-send-form {
    max-width: 500px;
    margin: 20px auto 15%;
}

/* Pay Send Form End */

/*  All Button Free Estimation   Start */
.ci-free-estimation-btn {
    display: block;
    width: 100%;
    height: 100%;
    background: #dc0000;
    color: #fff;
    font-weight: normal;
    border-radius: 5px;
    font-size: 1.5em;
    padding: 5px 15px;
    text-transform: uppercase;
    text-align: center;
    transition: all ease 0.3s;
    text-decoration: none;
    max-width: 400px;
}
.ci-free-estimation-btn:visited {
    background: #dc0000;
    color: #fff;
    text-decoration: none;
}
.ci-free-estimation-btn:focus {
    background: #dc0000;
    color: #fff;
    text-decoration: none;
}
.ci-free-estimation-btn:hover {
    background: darkgreen;
    color: #fff;
    text-decoration: none;
}

/*  All Button Free Estimation   End */


.tab button.active {
    background-color: #47AD68;
    background: linear-gradient(to bottom, #0B3718, #47AD68);
    color: #fff;
}
.free-assess-btn a {
    background-color: #dc0000;
    color: #ffffff;
    padding: 10px 15px;
    transition: all ease 0.3s;
}
.free-assess-btn a:hover {
    background-color: darkgreen;
}


#footercontainer {
    padding: 30px 0;
}

#footercontainer .footer-content .address-container {
    padding: 5px 0;
}

.ci-footer {
    background:url(/img/ci-footer.png) repeat-x;
    height: 200px;
    width: 100%;
}

.ci-footer-center {
    display: flex;
    justify-content: space-between;
}

.ci-footer-contacts {
    width: 90%;
    margin-left: 25px;
}
.ci-footer-contact {
    display: block;
    color: white;
    height: 50px;
}
.ci-footer-contact:visited {
    color: white;
    text-decoration: none;
}
.ci-footer-contact:hover {
    color: #FE0000;
    text-decoration: none;
}
.ci-footer-contact img {
    float: left;
    margin: 0px 15px 0px 10px;
}
.ci-footer-contact-phone {
    font-size: 2em;
    line-height: 1.5;
}
.ci-footer-contact-email {
    font-size: 1.5em;
    line-height: 2;
}
.ci-footer-contact-address {
    font-size: 1em;
    line-height: 1.8;
}

.ci-footer-social {
    width: 50px;
    height: 50px;
    display: block;
    margin: 5px 25px;
}

.ci-footer-menu {
    display: block;
}
.ci-footer-menu li {
    margin: 8px 10px;
}
.ci-footer-menu a {
    color: white;
    text-transform: uppercase;
    text-decoration: underline;
}
.ci-footer-menu a:visited {
    color: white;
    text-decoration: underline;
}
.ci-footer-menu a:hover {
    color: #FE0000;
    text-decoration: underline;
}

@media only screen and (max-width: 1100px) {
    .ci-footer-left{
        display: none;
    }
    .ci-footer-right {
        display: none;
    }
    .ci-footer-contact-email {
        font-size: 1.2em;
        line-height: 2.5;
    }
}

.ci-green-grad {
    background-color: #47AD68;
    background: linear-gradient(to bottom, #0B3718, #47AD68);
}
.ci-red-grad {
    background-color: #FF2E2E;
    background: linear-gradient(to bottom, #FF2E2E, #D00606);
}

.lSSlideOuter .lSPager.lSpg > li.active a, .lSSlideOuter .lSPager.lSpg > li:hover a {
    background-color: #2E7D47 !important;
}

.ci-canada-go-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: black;
    text-decoration: none;
    cursor: pointer;
    border-bottom: 1px solid #d5d5d5;
}
.ci-canada-go-link:hover {
    text-decoration: none;
    color: black;
    background-color: #DDDDDD;
}
.ci-canada-go-link img {
    width: 70px;
    height: 70px;
}
.ci-canada-go-link div {
    padding: 5px 10px;
}
.ci-canada-go-link h4 {
    margin: 0;
    font-size: 17px;
    font-weight: normal;
}
.ci-canada-go-link p {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.ci-tab {
    border-right: 1px solid #d5d5d5;
}

.ci-tabcontent {

}

.ci-tabcontent img {
    margin: 30px;
}

.ci-go-free-estimation-container {
    clear: both;
}
.ci-go-free-estimation-container .ci-free-estimation-btn {
    margin: auto;
}

.ci-js-select-region-btn-selected {
    background-color: darkgreen !important;
}

.ci-js-select-region-btn-unselected {
    background-color: darkgray !important;
}
.ci-js-select-region-btn-unselected:hover {
    background-color: darkgreen !important;
}

/*  Certificates page  */

.ci-certificates-main {
    margin-top: 45px;
    margin-bottom: 45px;
}

.ci-certificate {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    margin: auto;
}

.ci-certificate-info {
    padding-right: 30px;
}

.ci-certificate-info-photo {
    max-width: 204px;
    max-height: 264px;
    border: #297240 solid 2px;
}

.ci-certificate-info-photo img {
    width: 100%;
}

.ci-certificate-info-person {
    display: flex;
}

.ci-certificate-info-date {
    display: flex;
}

.ci-certificate-info-contact {
    display: flex;
}

.ci-certificate-info-contact {
    display: flex;
}

.ci-certificate-field-name {
    font-size: 9.511px;
    color: rgba(82, 82, 82, 0.471);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    -moz-transform: matrix( 1.67907787799247,0,0,1.6822452135341,0,0);
    -webkit-transform: matrix( 1.67907787799247,0,0,1.6822452135341,0,0);
    -ms-transform: matrix( 1.67907787799247,0,0,1.6822452135341,0,0);
}

.ci-page-404-main {
    background-image: url('/img/ci-page404.png');
    background-repeat: no-repeat;
    background-position: center center;
    height: 100vh;
    /*background-size: 100% 100%;*/
    background-size: contain;
    max-width: 990px;
    max-height: 580px;
    margin: 5px auto;
    position: relative;
}

.ci-page-404-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    text-align: center;
}
.ci-page-404-content h1 {
    font-size: clamp(12px, 3vw, 44px);
    margin-bottom: 0;
}
.ci-page-404-content a {
    font-size: clamp(12px, 3vw, 40px);
    text-decoration: underline;
}

