@charset "utf-8";

/* ----------------------------------

Table of contents
        
    01. Google font
    02. Reset
    03. Typography
    04. Background color
    05. Button
    06. Header
    07. Page Sections
    08. Footer
    09. Others
    10. Responsive

*/

/* ===================================
    Google font
====================================== */

@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&amp;subset=latin-ext');

/* ===================================
    Reset
====================================== */

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

/* ===================================
    Typography
====================================== */

/* font family */
body {
    font-size: 14px;
    line-height: 26px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Poppins', sans-serif;
    color: #4e4e4e;
    font-weight: 400;
}

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

button {
    border: none;
    cursor: pointer;
}

.btn:hover,
.btn:focus,
.btn:active {
    text-decoration: none;
    outline: none;
    box-shadow: none !important;
}

p {
    font-size: 14px;
    line-height: 26px;
    padding: 0;
    letter-spacing: 0;
    font-weight: 400;
}

.small {
    font-size: 12px !important;
}

.divider {
    background: #e5e8ec;
    margin: 40px 0px;
}

/* heading */
h1 {
    font-size: 42px;
    line-height: 55px;
}

h2 {
    font-size: 36px;
    line-height: 48px;
}

h3 {
    font-size: 30px;
    line-height: 44px;
}

h4 {
    font-size: 24px;
    line-height: 30px;
}

h5 {
    font-size: 18px;
    line-height: 28px;
}

h6 {
    font-size: 14px;
    line-height: 26px;
}

/* text color */
.text-light {
    color: #ffffff !important;
}

.text-dark {
    color: #000000 !important;
}

.text-grey {
    color: #828282 !important;
}

.text-orange {
    color: #f9b851 !important;
}

.text-pink {
    color: #fe688b !important;
}

/* font weight */
.font-weight-300 {
    font-weight: 300
}

.font-weight-400 {
    font-weight: 400
}

.font-weight-500 {
    font-weight: 500
}

.font-weight-600 {
    font-weight: 600
}

.font-weight-700 {
    font-weight: 700
}

/* ===================================
    Background color
====================================== */

.bg-light-blue {
    background-color: #eaf3fb;
}

.bg-light-grey {
    background-color: #f7f8fb;
}

.bg-light-green {
    background-color: #f7fbf3;
}

.bg-orange {
    background-color: #f9b851;
}

.bg-pink {
    background-color: #fe688b;
}

.bg-light-pink {
    background-color: #fbf5f3;
}

/* ===================================
    Button
====================================== */

/* Back to Top */
.back-to-top {
    background-color: #3d59e8;
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border: none;
    width: 50px;
    height: 50px;
    line-height: 34px;
    z-index: 2000;
}

.back-to-top:hover {
    background-color: #fe688b;
    color: #ffffff;
    transform: translate3d(0, -5px, 0);
    -webkit-transform: translate3d(0, -5px, 0);
    border: none;
}

.back-to-top:active {
    outline: none !important;
    border: none;
    background-color: #fe688b;
    color: #ffffff;
}

.back-to-top:focus {
    background-color: #fe688b;
    color: #ffffff;
    border: none;
    outline: none;
}

.back-to-top i {
    font-size: 20px;
}

/* Button Style One */
.button-style-one {
    color: #ffffff;
    background-color: #3d59e8;
    padding: 13px 34px 13px 34px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.3px;
    display: inline-block;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 30px;
    outline: none !important;
}

.button-style-one:hover {
    background-color: #fe688b;
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

.button-style-one:focus {
    background-color: #fe688b;
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

.button-style-one:active {
    background-color: #fe688b;
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

/* Button Style Two */
.button-style-two {
    color: #fe688b;
    background-color: transparent !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.button-style-two:hover {color: #fe688b;}
.button-style-two:focus {color: #fe688b;}
.button-style-two:active {color: #fe688b;}

/* Button Style Three */
.button-style-three {
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #ffffff;
    padding: 11px 34px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.3px;
    display: inline-block;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 30px;
    outline: none !important;
}

.button-style-three:hover {
    background-color: #ffffff;
    color: #fe688b;
    text-decoration: none;
    outline: none;
}

.button-style-three:focus {
    background-color: #ffffff;
    color: #fe688b;
    text-decoration: none;
    outline: none;
}

.button-style-three:active {
    background-color: #ffffff;
    color: #fe688b;
    text-decoration: none;
    outline: none;
}

/* Button Style Four */
.button-style-four {
    color: #fe688b;
    background-color: transparent;
    border: 2px solid #fe688b;
    padding: 11px 34px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.3px;
    display: inline-block;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 30px;
    outline: none !important;
}

.button-style-four:hover {
    background-color: #fe688b;
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

.button-style-four:focus {
    background-color: #fe688b;
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

.button-style-four:active {
    background-color: #fe688b;
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

/* Modal Close Button */
#closebt-container {
	position: relative;
	width:100%;
	text-align:center;
	margin-top:40px;
}

.closebt {
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	cursor:pointer;
	width: 52px;
	height: 52px;
}

.closebt:hover {
	transform:rotate(90deg);
}


/* ===================================
    06. Header
====================================== */
/* #mainNav */
#mainNav {
    background-color: #ffffff;
    padding: 30px 0px;
}
#mainNav .nav-link {
    font-size: 13px;
    color: #777777;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#mainNav .nav-link:hover {
    color: #000000;
    text-decoration: none;
    position: relative;
}
#mainNav .nav-link.active {
    outline: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-decoration: none !important;
    color: #000000 !important;
}
/* Navbar Toggler Start */
#mainNav  .navbar-toggler {
    border: none;
    padding: 10px 0px;
    outline: none !important;
}
#mainNav .navbar-toggler span {
    display: block;
    width: 20px;
    height: 2px;
    background: #000000;
    border-radius: 50em;
    margin-bottom: 4.25px;
}
#mainNav .navbar-toggler span:nth-child(2) {
    width: 16px;
}
/* Navbar Toggler End */
/* Dropdown Start */
#mainNav .dropdown-menu {
    border-radius: 0 !important;
    border: 1px solid #d5d5d5;
    background-color: #fff;
    padding: 0;
    font-size: 13px;
}
#mainNav .dropdown-menu .dropdown-item.active,
#mainNav .dropdown-menu .dropdown-item:hover,
#mainNav .dropdown-menu .dropdown-item:focus {
    background-color: #2aabe3 !important;
    color: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.nav-link.dropdown-toggle::after {
    border: none !important;
    font-family: "Font Awesome 5 Free";
    font-size: 8px;
    font-weight: 900;
    margin-left: 8px;
    content: "\f107";
}
.dropdown-item.dropdown-toggle::after {
    border: none !important;
    font-family: "Font Awesome 5 Free";
    font-size: 8px;
    font-weight: 900;
    margin-left: 16px;
    content: "\f105";
}
/* Dropdown End */

/* ===================================
    Page Sections
====================================== */

/* About */
.why-box {
    border-radius: 5px;
    -webkit-box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
    padding: 30px;
    background-color: #fff;
}

.why-box .inner-box {
    position: relative;
    display: block;
}


/* Testimonials */
.carousel-inner>.carousel-item>.commentator>div {
    vertical-align: middle;
}

.carousel-indicators {
    margin-right: 0 !important;
    margin-left: 0 !important;
    justify-content: unset;
    top: 10px;
}

.carousel-indicators a {
    width: 25px;
    height: 25px;
}

.carousel-indicators a i {
    color: #3d59e8;
    font-size: 30px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.carousel-indicators a i:hover {
    color: #fe688b;
}

/* Plan */
.process {
    position: relative;
}

.process:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    left: 21px;
    top: 0;
    border-left: 1px dashed #3d59e8;
}

.process li {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.process li:not(:last-child) {
    margin-bottom: 20px;
}

.process li .process-number {
    float: left;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #3d59e8;
    background: #fff;
    text-align: center;
}

.process li .process-number i {
    color: #3d59e8;
    position: relative;
    top: 6px;
    font-size: 12px;
}

.process li .process-body {
    width: 80%;
    float: right;
}

/* AA */
.aa-box {
    border-radius: 5px;
    -webkit-box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
    padding: 45px 5%;
    background-color: #fff;
}

/* Event Creators */
.eventcreators li {
    padding: 7px 0px;
    border-bottom: 1px solid #ebeff1;
}

/* ===================================
    Footer
====================================== */
#contact {
    position: relative;
    clear: both;
}

#footer #sub-footer {
    border-top: 1px solid #e5e8ec;
}

/* Footer Social Icons */
#footer .social-icons {
    font-size: 14px;
    padding: 0;
}
#footer .social-icons li a {
    color: #828282;
}
#footer .social-icons li a,
#footer .social-icons li a:active,
#footer .social-icons li a:focus,
#footer .social-icons li a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none !important;
}
#footer .social-icons li a:hover {
    color: #000000;
}
#footer .social-icons li:not(:first-child) {
    margin-left: 20px;
}

/* ===================================
    Others
====================================== */

/* Contact Start */
.input-style-1 {
    font-size: 14px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(176, 174, 172, 1);
    color: #1f1140;
    border-radius: 0px !important;
    height: 44px;
    width: 100%;
    box-shadow: none !important;
}

.input-style-1::-moz-placeholder {
    color: #adadad;
}

.input-style-1:-ms-input-placeholder {
    color: #adadad;
}

.input-style-1::-webkit-input-placeholder {
    color: #adadad;
}

.input-style-1:focus {
    border-color: inherit;
    outline: none;
}

#contactform label.error {
    color: #ff5168 !important;
    margin-bottom: 0px;
    font-size: 12px;
}
/* Contact End */

/* Modal */
.modal {
    padding: 0 !important;    
}

.modal-full {
    min-width: 100%;
    margin: 0;
}

.modal-full .modal-content {
    min-height: 100vh;
    border-radius: 0 !important;
    border: none !important;
}

/* Custom Popup */
.custom-popup {
    background-color: #ffffff;
    text-align: center;
    padding: 50px 40px 42px 40px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: none !important;
}

.popup-icon {
    color: #000000;
    font-size: 50px;
    position: relative;
    line-height: 125px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    background-color: #f7f8fb;
    text-align: center;
    -moz-box-shadow: 0 25px 70px rgb(0 0 0 / 7%);
    -webkit-box-shadow: 0 25px 70px rgb(0 0 0 / 7%);
    box-shadow: 0 25px 70px rgb(0 0 0 / 7%);    
    overflow: hidden;
}

/* Paddings & Margins Start */
/* padding top */
.pt-5px {
    padding-top: 5px;
}

.pt-10px {
    padding-top: 10px;
}

.pt-15px {
    padding-top: 15px;
}

.pt-20px {
    padding-top: 20px;
}

.pt-25px {
    padding-top: 25px;
}

.pt-30px {
    padding-top: 30px;
}

.pt-35px {
    padding-top: 35px;
}

.pt-40px {
    padding-top: 40px;
}

.pt-50px {
    padding-top: 50px;
}

.pt-60px {
    padding-top: 60px;
}

.pt-70px {
    padding-top: 70px;
}

.pt-80px {
    padding-top: 80px;
}

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

.pt-100px {
    padding-top: 100px;
}

.pt-110px {
    padding-top: 110px;
}

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

.pt-130px {
    padding-top: 130px;
}

.pt-140px {
    padding-top: 140px;
}

.pt-150px {
    padding-top: 150px;
}

/* padding bottom */
.pb-5px {
    padding-bottom: 5px;
}

.pb-10px {
    padding-bottom: 10px;
}

.pb-20px {
    padding-bottom: 20px;
}

.pb-30px {
    padding-bottom: 30px;
}

.pb-40px {
    padding-bottom: 40px;
}

.pb-50px {
    padding-bottom: 50px;
}

.pb-60px {
    padding-bottom: 60px;
}

.pb-70px {
    padding-bottom: 70px;
}

.pb-80px {
    padding-bottom: 80px;
}

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

.pb-100px {
    padding-bottom: 100px;
}

.pb-110px {
    padding-bottom: 110px;
}

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

.pb-130px {
    padding-bottom: 130px;
}

.pb-140px {
    padding-bottom: 140px;
}

.pb-150px {
    padding-bottom: 150px;
}

/* margin left */
.ml-5px {
    margin-left: 5px;
}

.ml-10px {
    margin-left: 10px;
}

.ml-15px {
    margin-left: 15px;
}

.ml-20px {
    margin-left: 20px;
}

.ml-25px {
    margin-left: 25px;
}

.ml-30px {
    margin-left: 30px;
}

.ml-35px {
    margin-left: 35px;
}

.ml-40px {
    margin-left: 40px;
}

.ml-45px {
    margin-left: 45px;
}

.ml-50px {
    margin-left: 50px;
}

/* margin right */
.mr-5px {
    margin-right: 5px;
}

.mr-10px {
    margin-right: 10px;
}

.mr-15px {
    margin-right: 15px;
}

.mr-20px {
    margin-right: 20px;
}

.mr-25px {
    margin-right: 25px;
}

.mr-30px {
    margin-right: 30px;
}

.mr-35px {
    margin-right: 35px;
}

.mr-40px {
    margin-right: 40px;
}

.mr-45px {
    margin-right: 45px;
}

.mr-50px {
    margin-right: 50px;
}

/* padding left */
.pl-5px {
    padding-left: 5px;
}

.pl-10px {
    padding-left: 10px;
}

.pl-15px {
    padding-left: 15px;
}

.pl-20px {
    padding-left: 20px;
}

.pl-25px {
    padding-left: 25px;
}

.pl-30px {
    padding-left: 30px;
}

.pl-35px {
    padding-left: 35px;
}

.pl-40px {
    padding-left: 40px;
}

.pl-45px {
    padding-left: 45px;
}

.pl-50px {
    padding-left: 50px;
}

/* padding right */
.pr-5px {
    padding-right: 5px;
}

.pr-10px {
    padding-right: 10px;
}

.pr-15px {
    padding-right: 15px;
}

.pr-20px {
    padding-right: 20px;
}

.pr-25px {
    padding-right: 25px;
}

.pr-30px {
    padding-right: 30px;
}

.pr-35px {
    padding-right: 35px;
}

.pr-40px {
    padding-right: 40px;
}

.pr-45px {
    padding-right: 45px;
}

.pr-50px {
    padding-right: 50px;
}

/* margin top */
.mt-5px {
    margin-top: 5px;
}

.mt-10px {
    margin-top: 10px;
}

.mt-20px {
    margin-top: 20px;
}

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

.mt-40px {
    margin-top: 40px;
}

.mt-50px {
    margin-top: 50px;
}

.mt-60px {
    margin-top: 60px;
}

.mt-70px {
    margin-top: 70px;
}

.mt-80px {
    margin-top: 80px;
}

.mt-90px {
    margin-top: 90px;
}

.mt-100px {
    margin-top: 100px;
}

.mt-110px {
    margin-top: 110px;
}

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

.mt-130px {
    margin-top: 130px;
}

.mt-140px {
    margin-top: 140px;
}

.mt-150px {
    margin-top: 150px;
}

/* margin bottom */
.mb-5px {
    margin-bottom: 5px;
}

.mb-10px {
    margin-bottom: 10px;
}

.mb-20px {
    margin-bottom: 20px;
}

.mb-30px {
    margin-bottom: 30px;
}

.mb-40px {
    margin-bottom: 40px;
}

.mb-50px {
    margin-bottom: 50px;
}

.mb-60px {
    margin-bottom: 60px;
}

.mb-70px {
    margin-bottom: 70px;
}

.mb-80px {
    margin-bottom: 80px;
}

.mb-90px {
    margin-bottom: 90px;
}

.mb-100px {
    margin-bottom: 100px;
}

.mb-110px {
    margin-bottom: 110px;
}

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

.mb-130px {
    margin-bottom: 130px;
}

.mb-140px {
    margin-bottom: 140px;
}

.mb-150px {
    margin-bottom: 150px;
}

/* padding all */
.p-10px {
    padding: 10px;
}

.p-25px {
    padding: 25px;
}

.p-30px {
    padding: 30px;
}

.p-40px {
    padding: 40px;
}

.p-50px {
    padding: 50px;
}

/* Paddings & Margins End */


/* ===================================
    Responsive
====================================== */

@media all and (max-width: 1024px){
    h1 {
        font-size: 32px;
        line-height: 38px;
    }
    
    h2 {
        font-size: 30px;
        line-height: 36px;
    }
    
    h3 {
        font-size: 26px;
        line-height: 32px;
    }
    .about-buttons {
        flex-direction: column!important;
        align-items: start!important;
    }
}
@media all and (max-width:768px) {
    #sub-footer {
        text-align: center;
    }
    #sub-footer .row {
        -webkit-box-direction: reverse!important;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important;
    }
    .copyright {
        font-size: 12px;
        line-height: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .copyright > span:first-child {
        display: none;
    }
}
@media (max-width: 768px) {
    .logo img {
        width: 220px;
    }
    #about {
        padding-top: 20px;
    }
    #mainNav {
        padding: 15px 0px !important;
    }
}

@media (min-width: 768px) {
    .copyright {
        font-size: 12px;
        text-align: left;
    }
}

@media (max-width: 991.98px) {
    #mainNav .dropdown-menu {
        border: none !important;
    }
}
@media (min-width: 992px){
	.dropdown-menu .dropdown-menu{
		margin-left:0; margin-right: 0;
	}
	.dropdown-menu li{
		position: relative;
	}
	.nav-item .submenu{ 
		display: none;
		position: absolute;
		left:100%; top:-7px;
	}
	.nav-item .submenu-left{ 
		right:100%; left:auto;
	}
	.dropdown-menu > li:hover{ background-color: transparent; }
	.dropdown-menu > li:hover > .submenu{
		display: block;
    }
}