@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    box-sizing: border-box;
}

::-moz-selection {
    background: #8d2681;
    color: #fff;
    text-shadow: none;
}
    
::selection {
    background: #8d2681;
    color: #fff;
    text-shadow: none;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #666f71;
    font-weight: 400;
    line-height: normal;
    overflow-x: hidden !important;
}

a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
}

a {
    color: #222;
    transition: all 0.3s ease 0s
}

a:hover,
a:active,
a:focus {
    color: #8d2681;
}

body p {
    line-height: 22px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
       font-family: inherit;
    line-height: normal;
    font-weight: 400;
}


/* ============================================
HELPER CLASSES
============================================ */

.bg-grad {
background: #4747ff;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #9d257f, #4747ff);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #9d257f, #4747ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.bg-dark
{
    background-color: #212c31 !important;
}

.bg-l-grey
{
    background-color: #f5f5f5 !important;
}

.text-black {
    color: #222 !important;
}

.text-purple {
    color: #8d2681 !important;
}

.box-shadow {
    box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.15);
}
.text-shadow {
   text-shadow: 4px 1px 2px rgba(0,0,0,0.20);
}

.font-reg {
    font-weight: 400 !important;
}

.font-med{
    font-weight: 500 !important;
}


.bullet-list li {
    margin-bottom: 12px;
}

.modal-sm {
    max-width: 700px;
    width: 96%;
}

.modal-md {
    max-width: 700px;
    width: 96%;
}

.modal-lg {
    max-width: 900px;
    width: 96%;
}


.close {
    position: absolute;
    right: 14px;
    top: 14px;
}


.btn-link {
    font-weight: normal;
    color: #222;
    border-radius: 0;
}

.btn-link:hover {
    color: #8d2681;
}

.btn {
    border-radius: 30px !important;
    padding: 0 20px;
    line-height: 35px !important;
    white-space: normal;
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
    transform: scale(1);
}

.btn-sm {
    border-radius: 30px !important;
    line-height: 25px !important;
    font-size: 13px;
    padding: 0 10px;
        text-transform: capitalize !important;
}

.btn-lg {
    border-radius: 30px !important;
    padding: 0 30px;
    line-height: 45px !important;
    font-size: 18px;
}

.btn.btn-rounded-0 {
    border-radius: 3px !important;
}


.btn .btn-icon
{
transform: rotate(0deg);
position: relative;
top: -2px;
transition: all 0.5s ease 0s;
}

.btn:hover,
.btn:focus {
    outline: none !important;
    transform: scale(1.01);
}

.btn:hover .btn-icon
{
transform: rotate(360deg);

}

.btn-grad
{
    position: relative;
    color: #fff !important;
    border-radius: 30px;
background: #4747ff;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #9d257f, #4747ff);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #9d257f, #4747ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
box-shadow: none;
transform: translateY(0);
transition: all 0.3s ease 0s;

}

.btn-grad:hover
{
    color: #fff !important;
transform: translateY(-3px);
box-shadow:0 0 40px 1px rgba(0,0,0,0.20);
}




section {
    float: left;
    width: 100%;
}
section.panel {
    width: 100%;
    height: 100%;
}

.card-float
{
    transform:translateY(0);
    box-shadow:none !important;
    transition:all 0.5s ease 0s;
}

.card-float:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 20px 1px rgba(0,0,0,0.20) !important;
}


.section-title {
    font-weight: 400;
    text-align: center;
    font-size: 50px;
    text-transform: uppercase;
    color: #222;
margin-bottom: 70px;
position: relative;
}


.section-title .overlay-txt {
    position: absolute;
    text-transform: uppercase;
    font-size: 130px;
    font-weight: 500;
    color: #000;
    opacity: 0.05;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-32%);
    letter-spacing: 40px;

}

.section-title + p {
    font-size: 18px;
}

.form-control::-webkit-input-placeholder {
    color: #a3a3a3;
}

.form-control::-moz-placeholder {
    color: #a3a3a3;
}

.form-control:-ms-input-placeholder {
    color: #a3a3a3;
}

.form-control:-moz-placeholder {
    color: #a3a3a3;
}


.form-control::placeholder
{
  color: #a3a3a3;
}

.form-control {
  color: #a3a3a3;
    border: none;
    outline: none;
    box-shadow: none;
    line-height: 33px;
    font-size: 15px;
    border-radius: 5px;
    transition: all 0.4s ease 0s;
}


.form-control:focus
{
    color: #104457;
    border:none;
    outline: none;
    box-shadow: 0 0px 10px 0px rgba(0,0,0,0.10);
}

.styled-select {
  position: relative;
}

.styled-select::after {

    position: absolute;
    content: url(../images/select-arrow.png);
    right: 12px;
    top: 6px;
    z-index: 2;

}

.styled-select select {
  -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
}


.preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    text-align: center;
    line-height: 100vh;
    z-index: 99999;
}


/* ============================================
HEADER
============================================ */
.header {
    width: 100%;
    padding: 15px 0;
    background-color: transparent;
    position: absolute;
    z-index: 9999;
}
.header .navbar-brand {
    max-width: 170px;
}

.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(22, 22, 22, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar  .navbar-toggler {
    padding: 3px;
    border: 1px solid #222;
}

.header nav li {
    padding-right: 32px;
}

.header nav li:last-child{
    padding-right: 0px;
}


.header nav li a {
    text-transform: uppercase;
    padding: 8px 0 !important;
    background-color: transparent;
    position: relative;
    z-index: 1;
    color: #222 !important;
    text-shadow: none;
    position: relative;
    transition: all 0.3s ease 0s;
}

.header nav li a:after{
 position: absolute;
 content: "";
 left: 0;
 bottom: 0;
 width: 0; 
 height: 2px;
 background-color: #8d2681; 
    transition: all 0.5s ease 0s;
}


.header nav li a:hover, .header nav li a:active, .header nav li.active a 
{
color: #8d2681 !important;
}

.header nav li a:hover:after, .header nav li a:active:after, .header nav li.active a:after 
{
    width: 100%;
}




/* ============================================
Banner
============================================ */
.banner {
    position: relative;
    height: 100vh !important;
    overflow: hidden;
}

.banner #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}

.banner-cont p {
    font-size: 22px;
    line-height: 34px;
}

.banner-cont .banner-title {
    font-size: 44px;
}

.banner-img {
    z-index: 1;
    top: -185px;
}
.banner-img img {
    box-shadow: 20px -10px 30px 1px rgba(0,0,0,.20);
    position: relative;
    z-index: 1;
}

/*.banner:before
{
    position: absolute;
    content: "";
    right: -55vh;
    top: -5vh;
    width: 110vh;
    height: 110vh;
    border-radius: 50%;
    opacity: 0.5;
    background: #4747ff;  
background: -webkit-linear-gradient(to left, #9d257f, #4747ff);
background: linear-gradient(to left, #9d257f, #4747ff); 
}*/
.banner:after
{
    position: absolute;
    content: "";
    right: -45vh;
    top: 5vh;
    width: 90vh;
    height: 90vh;
    border-radius: 50%;
    background: #4747ff;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #9d257f, #4747ff);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #9d257f, #4747ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
animation-name: slideInRight;
animation-duration: 1.5s;
}

/* ============================================
About Section
============================================ */
.abt-sec {
    padding: 100px 0 50px;
        padding-right: 0px;
        padding-left: 0px;
}

.abt-sec .sec-cont p {
    line-height: 26px;
}

/* ============================================
Service Section
============================================ */
.serv-sec {
    padding: 100px 0 50px;
        padding-right: 0px;
        padding-left: 0px;
}
.card-group > .serv-bx {
    -ms-flex: 1 0 33%;
    flex: 1 0 33%;
}

.serv-bx{
    text-align: center;
    border-color: #e5e5e5 !important;
    box-shadow: none;
transform: scale(1);
    transition: all 0.3s ease 0s;
}
.serv-bx:hover{
        position: relative;
    border: 1px solid transparent !important;
    z-index: 2;
transform: scale(1.01);
    box-shadow: 0 0 30px 1px rgba(0,0,0,0.10);
}

.serv-bx .serv-icon {
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 114px;
    padding: 0 25px;
    position: relative;
    transition: all 0.5s ease 0s;
}

.serv-bx .serv-icon:before {
    position:absolute;
    content: "";
    width: 126px;
    height: 126px;
    top: -3px;
    left: -3px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.10;
    background: #000;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #000, #000);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #000, #000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    transition: all 0.5s ease 0s;
}

.serv-bx:hover .serv-icon:before {
background: #4747ff;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #9d257f, #4747ff);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #9d257f, #4747ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    opacity: 1;
}

.serv-bx .card-title a {
    color: #666f71;
    transition: all 0.5s ease 0s;
}

.serv-bx:hover .card-title a {
    color: #222;
}


.gal-sec {
    padding: 100px 0 70px;
    position: relative;
}


.gal-sec .gal-img
{
    display: block;
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 0 30px 1px rgba(0,0,0,0.15);
 cursor: url(../images/expand-cursor.png), auto;
background: #4747ff;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #9d257f, #4747ff);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #9d257f, #4747ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.gal-sec .gal-img img
{
    opacity: 1;
    transition: all 0.5s ease 0s;
}

.gal-sec .gal-img:hover img
{
opacity: 0.3;
}


.shape
{
    position: absolute;
}

.gal-sec .shape-lft
{
    left: 0;
    top: 10%;
} 


.gal-sec .shape-rht
{
    right: 0;
    bottom: 10%;
} 

.join-cta
{
    padding: 70px 0;
}

.join-cta p {
    line-height: 28px;
    font-size: 18px;
}   


.contact-info .media p
{
    color: #222;
    font-size: 15px;
}

.contact-sec
{
        padding:100px 0 70px;
}

.contact-info .media .icon {
    font-size: 28px;
    width: 35px;
    margin-top: 10px;
    text-align: center;
    background: #4747ff;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #9d257f, #4747ff);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #9d257f, #4747ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
 -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer {
    background-color: #212c31;
    width: 100%;
float: left;
    position: relative;
    padding: 70px 0 50px;
}

.footer p, .footer a
{
 color: #8c97a1;
}
.footer a:hover
{
 color: #fff;
}

.foot-social ul li {
    display: inline-block;
    margin: 0 5px;
}

.foot-social ul li a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,0.30);
    border-radius: 3px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 40px;
    transition: all 0.5 ease 0s;
}

.foot-social ul li a:hover
{
    background-color: rgba(255,255,255,0.10);

}


.foot-link li {
    display: inline-block;
}

.foot-link li a {
    padding: 0 12px;
}


.foot-link li:not(:last-child)::after {

    position: relative;
    content: "|";

}


