html, body{
    width: 100%;
    height: 100%;
}

.mt-12{
    margin-top: 120px;
}

.mb-12{
    margin-bottom: 120px;
}

.pt-12{
    padding-top: 120px;
}

.pb-12{
    padding-bottom: 120px;
}

.align-center{
    align-items: center;
}

.spin{
    animation: spinner;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg) }
}

.section-title{
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    color: #1c1c1c;
}

.line{
    display: inline-block;
    width: 50px;
    height: 2px;
    background: #6C63FF;
    position: relative;
    z-index: 1;
    left: 10px;
}

.line::before{
    content: " ";
    position: absolute;
    left: -15px;
    height: 2px;
    width: 10px;
    background: #6C63FF;
}

.overlay-bg{
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover !important;
    background-repeat: no-repeat!important;
    background-position: bottom!important;
}

/*
============ NAVBAR SECTION ============
*/

.navbar{
    padding-top: 40px;
    transition: all .5s;
}

.navbar-brand img{
    max-width: 170px;
}

.navbar ul>li>a{
    color: #333333;
    background-color: transparent !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.06em;
    padding: 5px 0;
}

.navbar ul>li>a.active,
.navbar ul>li>a:hover{
    color: #6C63FF !important;
}

.navbar-scroll{
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #fff;
}

/*
============ HOME SECTION ============
*/

.radiant-home{
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.radiant-home .container,
.radiant-home .container .wrapper,
.radiant-home .container .wrapper .row{
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.radiant-home .wrapper{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
}

.radiant-home .text-welcome span{
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    letter-spacing: .03em;
    color: #6C63FF;
    display: inline-block;
}

.overlay-image-gear{
    position: absolute;
    top: 60px;
    left: 60px;
    z-index: -1;
    box-sizing: border-box;
}

/*
============ FEATURE SECTION ============
*/

.radiant-feature{
    min-height: 100vh;
    background-color: #eff6ff;
    position: relative;
    padding-bottom: 120px;
}


.overlay-image-gear img{
    width: 78px;
    height: 89px;
}

.feature-box{
    border: 1px solid hsla(0,0%,45%,.2);
    padding: 35px 30px;
    border-radius: 10px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.feature-icon i{
    font-size: 40px;
    color: #303591;
}

.text-info{
    color: #6C63FF!important;
}

/*
============ PORTFOLIO SECTION ============
*/

.radiant-portfolio{
    height: 100vh;
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 120px;
}


.radiant-portfolio .tabs #porto-tabs{
    padding: 50px;
    background-color: #6C63FF;
    border: none;
}

.radiant-portfolio .tabs #porto-tabs li{
    margin: 15px 0;
}

.radiant-portfolio .tabs #porto-tabs li a{
    padding: 10px 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    border: 1px dashed rgba(255, 255, 255, 0.6);
    color: #ffffff;
    text-align: left;
    font-weight: 700;
}

.radiant-portfolio .tabs #porto-tabs li a.active{
    background-color: #ffffff;
    color: #232323;
    border-color: #dee2e6 #dee2e6 #fff;
}

/*
  ========== BLOG SECTION ===========
*/

.radiant-blog{
    min-height: 100%;
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
    background: #eff6ff;
}

.blog-box{
    border: 1px solid hsla(0,0%,45%,.2);
    padding: 35px 30px;
    border-radius: 10px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.blog-title h4 a{
    text-decoration: unset;
    color: #000;
}

/*
  ========== CONTACT SECTION ===========
*/

.radiant-contact{
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

.radiant-contact .contact h2{
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 1.2;
    color: #232323;
}

.radiant-contact .contact{
    padding-left: 80px;
    padding-right: 80px;
}

.radiant-contact .contact .form-item{
    position: relative;
    z-index: 1;
}

.radiant-contact .contact .form-item i.span-ico{
    position: absolute;
    top: 17px;
    left: 25px;
    color: #999999;
}

.radiant-contact .contact .form-item .form-control{
    padding-left: 35px;
    border: none;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background: transparent;
    border-bottom: 1px solid #e7e7e7;
    height: 50px;
    color: #495057;
}

.radiant-contact .contact .form-item textarea.form-control{
    padding-top: 11px;
    height: auto;
}

.radiant-contact .contact .form-item .form-control:focus{
    box-shadow: none;
}

.radiant-contact .contact .form-item button{
    background-color: #6C63FF;
    color: #ffffff;
    padding: 10px 35px;
    border: 2px solid #6C63FF !important;
    border-radius: 30px;
    text-transform: capitalize;
    font-weight: 700;
    margin-top: 20px;
}

.iframe-container{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Ratio 16:9 ( 100%/16*9 = 56.25% ) */
}

.iframe-container > *{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

/*
  ========== FOOTER SECTION ===========
*/

footer{
    position: relative;
    z-index: 1;
}

footer p{
    color: #adb5bd;
}

footer .footer-bg{
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.5;
    z-index: -1;
}

footer .footer-bg img{
    max-width: 100%;
    vertical-align: middle;
}

.footer-content{
    padding-top: 70px;
    padding-bottom: 120px;
}

.footer-info img{
    margin-bottom: 30px;
}

.footer-link h4{
    font-weight: 700;
    text-transform: capitalize;
    color: #ffffff;
    margin-bottom: 30px;
}

.footer-link ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.footer-link li{
    margin-top: 20px;
}

.footer-link ul li a{
    color: #adb5bd;
    font-weight: 600;
    text-decoration: none;
}

.footer-link .address li:first-child{
    margin-top: 0;
}

.footer-link .address li{
    display: flex;
}

.footer-link .address li i{
    color: #6C63FF;
    font-size: 24px;
    position: relative;
    top: 5px;
    font-weight: 900;
}

.footer-link .address li strong{
    display: block;
    color: #ffffff;
    font-weight: 900;
}

.footer-link .address li .icon{
    padding-right: 15px;
}

.copyright{
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p{
    color: #cccccc;
    font-weight: 400;
    text-transform: none;
}

.copyright a{
    color: #6C63FF !important;
    text-decoration: none;
}


