﻿/*------------------------------------------------------------------
[Core]

Project: Digital experience week
Version: 1.0
Update: 30-01-21
------------------------------------------------------------------*/
/*--------------------------------
[Vendors]
/--------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@import url("https://use.fontawesome.com/releases/v5.8.1/css/all.css");

/*--------------------------------
[Base]
---------------------------------*/
/*------------------------------------------------------------------
Name: _reset

Project: Digital experience week
Version: 1.0
Update: 30-01-21
------------------------------------------------------------------*/
*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.row {
    margin: 0;
}

[class*='col-'] {
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 30px;
}

img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
}

/*------------------------------------------------------------------
Name: _typography

Project: Digital experience week
Version: 1.0
Update: 30-01-21
------------------------------------------------------------------*/
* {
    font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-top: 0;
    font-weight: 600;
    margin-bottom: .5rem;
    line-height: 1.2;
}

h1,
.h1 {
    font-size: 2.5rem;
}

h2,
.h2 {
    font-size: 2rem;
}

h3,
.h3 {
    font-size: 1.75rem;
}

h4,
.h4 {
    font-size: 1.5rem;
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1rem;
}

ul,
ol {
    list-style: none;
}

a {
    color: #666768;
    text-decoration: none;
    background-color: transparent;
    -webkit-transition: all .3s;
    transition: all .3s;
}

    a:hover {
        color: #4aaf4d;
        text-decoration: none;
    }

    a:not([href]), a:not([href]):hover {
        color: #666768;
        text-decoration: none;
    }

label {
    font-size: 0.92rem;
}

/*------------------------------------------------------------------
Name: _utilities

Project: Digital experience week
Version: 1.0
Update: 30-01-21
------------------------------------------------------------------*/

.cgc-rotate-45 {
    transform: rotate(45deg);
}

/*------------------------------------------------------------------
Name: _header

Project: Digital experience week
Version: 1.0
Update: 30-01-21
------------------------------------------------------------------*/


/*------------------------------------------------------------------
Name: _layout

Project: Digital experience week
Version: 1.0
Update: 30-01-21
------------------------------------------------------------------*/
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-thumb {
    background-color: #257DB2;
}

*::-webkit-scrollbar-track {
    background-color: #f8f9fa;
    border-radius: 4px;
}

*::-webkit-scrollbar-thumb:active {
    background-color: #2572a1;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #2572a1;
    -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

html {
    height: 100%;
    max-width: 2560px;
    margin: 0 auto;
    font-size: 14px;
}

body {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #666768;
    text-align: left;
    background: #FFF;
}

section {
    min-height: 100vh;
    padding: 25px 2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cgcloader {
    position: relative;
    top: 45%;
    left: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 0px;
    -webkit-animation: preloader_6 5s infinite linear;
    animation: preloader_6 5s infinite linear;
}

    .cgcloader span {
        width: 30px;
        height: 30px;
        position: absolute;
        display: block;
        -webkit-animation: preloader_6_span 1s infinite linear;
        animation: preloader_6_span 1s infinite linear;
    }

        .cgcloader span:nth-child(1) {
            background: #4aaf4d;
        }

        .cgcloader span:nth-child(2) {
            left: 32px;
            background: #195b8c;
            -webkit-animation-delay: .2s;
            animation-delay: .2s;
        }

        .cgcloader span:nth-child(3) {
            top: 32px;
            background: #195b8c;
            -webkit-animation-delay: .2s;
            animation-delay: .2s;
        }

        .cgcloader span:nth-child(4) {
            top: 32px;
            left: 32px;
            background: #195b8c;
            -webkit-animation-delay: .2s;
            animation-delay: .2s;
        }

@-webkit-keyframes preloader_6_span {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes preloader_6_span {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.loading-container {
    background-color: #fff;
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
}


/*--------------------------------
[Components]
---------------------------------*/
/*------------------------------------------------------------------
Name: _button

Project: Digital experience week
Version: 1.0
Update: 30-01-21
------------------------------------------------------------------*/
.btn {
    height: 50px;
    font-weight: 600;
    border: none;
    border-radius: 0.50rem;
}

.btn-blue {
    background-color: #00517A;
    color: #ffffff !important;
    font-weight: 400;
    font-size: 1.25em;
    width: 23rem;
    border: none;
    height: 4.5rem;
}

    .btn-blue:active,
    .btn-blue:focus,
    .btn-blue:hover {
        background-color: #006092;
    }

    .btn-blue:disabled {
        background-color: #00517A;
        opacity: 0.8;
    }

    .btn-blue:not(:disabled):not(.disabled).active, .btn-blue:not(:disabled):not(.disabled):active, .show > .btn-blue.dropdown-toggle {
        background-color: #00517A;
    }

.btn-light-blue {
    background-color: #00517A;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.9em;
    width: 10.5rem;
    border: none;
    height: 3rem;
}

    .btn-light-blue:active,
    .btn-light-blue:focus,
    .btn-light-blue:hover {
        background-color: #006092;
    }

    .btn-light-blue:disabled {
        background-color: #2572A1;
        opacity: 0.8;
    }

    .btn-light-blue:not(:disabled):not(.disabled).active, .btn-light-blue:not(:disabled):not(.disabled):active, .show > .btn-light-blue.dropdown-toggle {
        background-color: #2572A1;
    }

    .btn-light-blue.btn-sm-light-blue {
        width: 8.5rem;
        height: 2.5rem;
    }

.btn-gray {
    background-color: #9fa09f;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.9em;
    width: 10.5rem;
    border: none;
    height: 3rem;
}

    .btn-gray:active,
    .btn-gray:focus,
    .btn-gray:hover {
        background-color: #8a8c8a;
    }

    .btn-gray:disabled {
        background-color: #8a8c8a;
        opacity: 0.8;
    }

    .btn-gray:not(:disabled):not(.disabled).active, .btn-gray:not(:disabled):not(.disabled):active, .show > .btn-gray.dropdown-toggle {
        background-color: #8a8c8a;
    }

/*--------------------------------
[btn-secondary-outline]
--------------------------------*/

.btn-outline-primary {
    color: #00517A;
    border: 1px solid #00517A;
    height: 4.5rem;
    width: 4.5rem;
    font-size: 1.5rem;
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: #00517A;
        border-color: #195C8D;
        opacity: 0.9;
    }

    .btn-outline-primary:focus,
    .btn-outline-primary.focus {
        box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
    }

    .btn-outline-primary.disabled,
    .btn-outline-primary:disabled {
        color: #195C8D;
        background-color: transparent;
    }

    .btn-outline-primary:not(:disabled):not(.disabled):active,
    .btn-outline-primary:not(:disabled):not(.disabled).active,
    .show > .btn-outline-primary.dropdown-toggle {
        color: #fff;
        background-color: #195C8D;
        border-color: #195C8D;
    }

        .btn-outline-primary:not(:disabled):not(.disabled):active:focus,
        .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
        .show > .btn-outline-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
        }

/*------------------------------------------------------------------
Name. _Form

Version: 1.0
Update: 16-04-20
------------------------------------------------------------------*/
.custom-control-input:checked ~ .custom-control-label::before {
    color: white;
    border-color: #257DB2;
    background-color: #257DB2;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: .92rem;
    font-weight: 400;
    line-height: 1.5;
    color: #666766;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #eee;
    border-radius: .25rem;
    -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

/*------------------------------------------------------------------
Page
------------------------------------------------------------------*/

.cgc-section-primary {
    background: url('../../img/Pasted Image.png') no-repeat #FFF;
    background-position: 0 0;
    background-size: cover;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.cgc-section-primary__box {
    padding: 0 0 0 10%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.cgc-section-primary__box .cgc-section-primary__box-img {
    margin-bottom: 2rem;
}

.cgc-section-primary__box .cgc-section-primary__box-title {
    color: #4F4F4F;
    font-weight: 600;
    font-size: 2rem;
    display: block;
    max-width: 285px;
    width: 100%;
    text-align: center;
}
    
.cgc-new-title{
    color:white!important;
}

.cgc-section-primary__footer {
    background-color: #00517A;
    padding: 1rem 0
}

    .cgc-section-primary__footer .cgc-section-primary__footer-box-btn {
        position: absolute;
        padding: 3rem;
        bottom: 0;
        background-color: #00517A;
        width: 44%;
        display: flex;
        justify-content: center;
    }

.cgc-section-primary__footer .cgc-section-primary__footer-box-btn .btn {
    color: #fff;
    box-shadow: 2px 4px 20px 0 rgba(0, 0, 0, .13);
}

.cgc-section-primary__footer .cgc-section-primary__footer-box {
    position: absolute;
    padding: 5.25rem;
    right: 0;
    bottom: 0;
    background-color: #217AB2;
    width: 10%;
}

.cgc-blog-portal{
    margin-bottom:10%!important;
}

.img-portal{
    max-width:50%!important;
}

@media all and (max-width: 991px) {
    .img-portal {
        max-width: 100% !important;
    }
    .cgc-section-primary__box {
        padding: 0 10% 0 10%;
        align-items: center;
    }

    .cgc-section-primary__footer .cgc-section-primary__footer-box-btn {
        width: 100%;
        padding: 2rem 10%;
    }

    .cgc-section-primary__footer .cgc-section-primary__footer-box {
        display: none;
    }

    .info-text-form {
        text-align: center;
        display: block;
    }
}

@media all and (max-width: 500px) {
    .img-portal {
        max-width: 100% !important;
    }
}
    .cgc-bg-light-blue {
        background-color: #00517A;
    }

    .cgc-bg-blue {
        background-color: #00517A;
    }

    .cgc-section-secondary {
        display: block;
        padding: 0;
    }

        .cgc-section-secondary form {
            min-height: 100vh;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
        }

        .cgc-section-secondary .cgc-section-secondary__header {
            padding: 3.5% 4.25% 0;
        }

            .cgc-section-secondary .cgc-section-secondary__header .cgc-section-secondary__header-nav h2 {
                margin-bottom: 2.5rem;
                font-size: 1.3rem;
            }

            .cgc-section-secondary .cgc-section-secondary__header .cgc-section-secondary__header-nav a {
                color: #00517A;
                font-size: 1.4rem;
                font-weight: 600;
                padding-bottom: .35rem;
                text-align: center;
            }

                .cgc-section-secondary .cgc-section-secondary__header .cgc-section-secondary__header-nav a.active {
                    color: #00517A;
                    border-bottom: 4px solid #00517A;
                }

    .cgc-tab {
        margin: 0 -2rem;
    }

    .cgc-tab-box {
        display: block;
        border-radius: 10px;
        background-color: #FFF;
        box-shadow: 0 0px 5px 2px rgba(0,0,0,0.06);
        padding: 2rem 2rem 1rem;
        min-height: 100%;
    }

        .cgc-tab-box .cgc-tab-box__inscription {
            display: block;
            text-align: right;
            font-weight: 600;
            font-size: 0.88rem;
        }

        .cgc-tab-box .cgc-tab-box__hour {
            font-size: 1.096rem;
            display: block;
            margin-bottom: 0.25rem;
        }

        .cgc-tab-box .cgc-tab-box__title {
            font-weight: 600;
            font-size: 1.096rem;
            display: block;
            margin-bottom: 0.25rem;
        }

        .cgc-tab-box .cgc-tab-box__theme {
            display: block;
            margin-bottom: 0.25rem;
        }

        .cgc-tab-box .cgc-tab-box__author {
            font-size: 0.88rem;
            font-style: italic;
            display: block;
            color: #666766;
            margin-bottom: 0.25rem;
        }

        .cgc-tab-box .cgc-tab-box__subthemes span {
            display: block;
            margin-bottom: 0;
            font-size: 0.96rem;
        }


            .cgc-tab-box .cgc-tab-box__subthemes span::before {
                content: "\2022";
                color: #195C8D;
                font-size: 1.25em;
                font-weight: bold;
                display: inline-block;
                width: 1em;
            }

    .cgc-btn-array {
        padding: 0 4.25% 3.5%;
        text-align: right;
    }

    .sweet-alert button:hover {
        background-color: #006092 !important;
    }