/* ============= start: reset ============= */

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
    margin: 0;
    padding: 0;
    border: 0;
}
body {
    font-family: 'Open Sans', sans-serif;
    color: #787878;
    font-size: 16px;
}
ul,
ol {
    list-style: none;
}
a {
    text-decoration: none;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}
textarea {
    resize: none;
    overflow-y: auto;
    -ms-overflow-style: auto;
}
textarea:hover,
textarea:focus,
textarea:active {
    outline: none;
    box-shadow: none !important;
}
input:hover,
input:active,
input:focus {
    outline: none;
    box-shadow: none !important;
}
select:hover,
select:active,
select:focus {
    outline: none;
    box-shadow: none !important;
}
input[type=number] {
    -moz-appearance: textfield;
    /*For FireFox*/
}
input[type=number]::-webkit-inner-spin-button {
    /*For Webkits like Chrome and Safari*/
    -webkit-appearance: none;
    margin: 0;
}
button,
button:hover,
button:focus,
button:active {
    outline: none;
    box-shadow: none !important;
}
img {
    border: none;
}
a img {
    border: 0px;
}

/* ============= end: reset ============= */


/* =========== start: global =========== */

.custom-container {
    width: 100%;
    max-width: 1400px;
    padding: 0 15px;
    box-sizing: border-box;
    margin: 0 auto;
}
.custom-container::after {
    content: '';
    clear: both;
    display: table;
}
.custom-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.custom-col {
    padding-left: 15px;
    padding-right: 15px;
}
.clear::after {
    content: '';
    clear: both;
    display: table;
}
figure {
    margin: 0;
    padding: 0;
}
h1 {
    font-weight: bold;
    font-size: 40px;
    line-height: 54px;
}
p {
    font-size: 16px;
}
.title_dark {
    color: #1E1E1E;
}
.title_center_dark {
    color: #1E1E1E;
    text-align: center;
}
.title_center_white {
    color: #FFFFFF;
    text-align: center;
}
.title_underline_center img {
    display: block;
    margin: 40px auto 0;
    width: 100%;
    max-width: 328.15px;
}

/* custom-button */

.cus-btn1 {
    outline: none;
    border: none;
    background-color: #6C4796;
    border: 1px solid #6C4796;
    border-radius: 10px;
    padding: 13px 39.1px;
    font-weight: 600;
    line-height: 22px;
    color: #FFFFFF;
    -webkit-transition: all 250ms ease 0s;
    -moz-transition: all 250ms ease 0s;
    -ms-transition: all 250ms ease 0s;
    -o-transition: all 250ms ease 0s;
    transition: all 250ms ease 0s;
    cursor: pointer;
    font-size: 16px;
}
.cus-btn1:hover {
    background-color: #E5E5E5;
    border: 1px solid #E5E5E5;
    color: #1E1E1E;
}
.cus-btn2 {
    outline: none;
    border: none;
    background-color: #6C4796;
    border: 1px solid #6C4796;
    border-radius: 60px;
    padding: 13px 39.1px;
    font-weight: 600;
    line-height: 22px;
    color: #FFFFFF;
    display: inline-block;
    -webkit-transition: all 250ms ease 0s;
    -moz-transition: all 250ms ease 0s;
    -ms-transition: all 250ms ease 0s;
    -o-transition: all 250ms ease 0s;
    transition: all 250ms ease 0s;
    cursor: pointer;
    font-size: 16px;
}
.cus-btn2:hover {
    background-color: #E5E5E5;
    border: 1px solid #E5E5E5;
    color: #1E1E1E;
}
.cus-btn3 {
    outline: none;
    border: none;
    background-color: #E5E5E5;
    border: 1px solid #E5E5E5;
    color: #1E1E1E;
    border-radius: 60px;
    padding: 13px 39.1px;
    font-weight: 600;
    line-height: 22px;
    display: inline-block;
    -webkit-transition: all 250ms ease 0s;
    -moz-transition: all 250ms ease 0s;
    -ms-transition: all 250ms ease 0s;
    -o-transition: all 250ms ease 0s;
    transition: all 250ms ease 0s;
    cursor: pointer;
    font-size: 16px;
}
.cus-btn3:hover {
    background-color: #6C4796;
    border: 1px solid #6C4796;
    color: #FFFFFF;
}
.cus-btn4 {
    outline: none;
    border: none;
    background-color: #3873B9;
    border: 1px solid #3873B9;
    color: #fff;
    font-size: 16px;
    border-radius: 60px;
    padding: 13px 68px;
    font-weight: 600;
    line-height: 22px;
    display: inline-block;
    -webkit-transition: all 250ms ease 0s;
    -moz-transition: all 250ms ease 0s;
    -ms-transition: all 250ms ease 0s;
    -o-transition: all 250ms ease 0s;
    transition: all 250ms ease 0s;
    cursor: pointer;
}
.cus-btn4:hover {
    background-color: #6C4796;
    border: 1px solid #6C4796;
    color: #FFFFFF;
}

/* custom-input */

.custom-input {
    outline: none;
    background: #FFFFFF;
    border: 1px solid #A5A5A5;
    box-sizing: border-box;
    border-radius: 10px;
    width: 100%;
    height: 55px;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 14px;
    line-height: 26px;
    color: #787878;
    font-family: 'Open Sans', sans-serif;
}
.custom-input:focus {
    outline: none;
}
textarea.custom-input {
    height: auto;
}
select.custom-select {
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    appearance: none;
    background-image: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    background-position: right 18px center;
}

/*For IE*/

select.custom-select::-ms-expand {
    display: none;
}

/* =========== end: global =========== */


/* =========== start: header =========== */

#navbar {
    background: #fff;
    position: relative;
}
#navbar::after {
    content: '';
    clear: both;
    display: table;
}
.navbar_left {
    float: left;
}
.navbar_left .logo {
    display: block;
    width: 70px;
    margin-bottom: -5px;
}
.navbar_left .logo img {
    width: 100%;
}
.navbar_right {
    float: right;
    padding-top: 33px;
}
.main_nav{
    display: flex;
}
.main_nav ul {
    margin: 0;
    padding: 0px;
    list-style: none;
    float: left;
}
.main_nav ul li {
    float: left;
    margin: 0 0 0 50px;
    position: relative;
    letter-spacing: 1px;
    font-weight: 300;
    position: relative;
}
.main_nav ul li:first-child {
    margin-left: 0;
}
.main_nav ul li a {
    display: block;
    text-decoration: none;
    padding: 5px 0px;
    font-weight: 400;
    line-height: 22px;
    color: #000000;
    -webkit-transition: all 250ms ease 0s;
    -moz-transition: all 250ms ease 0s;
    -ms-transition: all 250ms ease 0s;
    -o-transition: all 250ms ease 0s;
    transition: all 250ms ease 0s;
    position: relative;
    overflow: hidden;
}
.main_nav ul li:hover > a {
    color: #000000
}
.main_nav ul li a::after {
    content: '';
    clear: both;
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: #6C4796;
    transition: all 0.25s ease 0s;
    -webkit-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
}
.main_nav ul li a:hover:after {
    left: 0;
}
.main_nav ul li i {
    position: absolute;
    right: 0;
    top: 10px;
    color: #fff;
}
.main_nav ul li:hover > i {
    color: #0a91da
}
.main_nav ul ul {
    float: none;
    position: absolute;
    left: 0;
    top: calc(100% + 15px);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 250ms ease 0s;
    -moz-transition: all 250ms ease 0s;
    -ms-transition: all 250ms ease 0s;
    -o-transition: all 250ms ease 0s;
    transition: all 250ms ease 0s;
    pointer-events: none;
}
.main_nav ul ul li {
    float: none;
    margin: 0;
    border-bottom: 1px solid #fff;
}
.main_nav > ul > li > ul:after {
    content: "";
    position: absolute;
    bottom: 100%;
    height: 16px;
    width: 100%;
    left: 0;
}
.main_nav ul ul ul {
    left: 100%;
    top: 0;
}
.main_nav ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.main_nav ul ul li a {
    background: #022335;
}
.main_nav ul li:hover ul li:hover > a {
    color: #fff;
    background: #0a91da;
}
.main_nav ul ul li:hover i {
    color: #fff;
}
.hamburger-menu-container {
    position: relative;
    display: none;
    margin-top: 15px;
}
.hamburger-menu div {
    width: 25px;
    height: 3px;
    border-radius: 3px;
    background-color: #000;
    position: relative;
    transition: .5s;
}
.hamburger-menu div:before,
.hamburger-menu div:after {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #000;
    border-radius: 3px;
    transition: .5s;
}
.hamburger-menu div:before {
    transform: translateY(-7px);
}
.hamburger-menu div:after {
    transform: translateY(7px);
}
#menuTrigger {
    cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    top: -8px;
    padding: 0;
    margin: 0;
    width: 25px;
    height: 25px;
    z-index: 999;
    appearance: none;
    background: transparent;
    opacity: 0;
}
#menuTrigger:checked ~ .hamburger-menu div {
    background-color: transparent;
}
#menuTrigger:checked ~ .hamburger-menu div:before {
    transform: translateY(0) rotate(-45deg);
}
#menuTrigger:checked ~ .hamburger-menu div:after {
    transform: translateY(0) rotate(45deg);
}
.menuTrigger-active {
    transform: translateX(0%) !important;
}
.main_nav .form-grp {
    float: left;
    padding: 4px 0 0 40px;
}

/* =========== end: header =========== */


/* =========== start: banner-slider =========== */

#banner-slider .banner__slide-item {
    overflow: hidden;
}
#banner-slider .slide__content--details {
    width: 100%;
    max-width: 430px;
}
#banner-slider .slide__content--details h1 {
    font-weight: 800;
    font-size: 60px;
    line-height: 82px;
    color: #221F1E;
}
#banner-slider .slide__content--details p {
    font-weight: 600;
    line-height: 26px;
    color: #000000;
    padding-top: 25px;
}
#banner-slider .slide__content--details a {
    margin-top: 55px;
}

/* =========== end: banner-slider =========== */


/* =========== start: about-urban =========== */

.about-urban {
    padding: 90px 0;
}
.about-urban-inner {
    width: 100%;
    max-width: 1359.86px;
    margin: 0 auto;
    text-align: center;
}
.about-urban-inner p {
    font-weight: 600;
    line-height: 26px;
    padding-top: 32px;
}
.about-urban-inner .cus-btn3 {
    margin-top: 32px;
    padding: 13px 55.1px;
}

/* =========== end: about-urban =========== */


/* =========== start: social =========== */

.social {
    padding: 60px 0 50px;
    background-image: url(../images/section-bg1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.social h1 {
    margin-bottom: 55px;
}
.social-col {
    width: 33.33%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}
.social-box {
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    box-sizing: border-box;
    overflow: hidden;
}
.social-box .image-container {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.social-box .image-container::after {
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background: #CF95C2;
    opacity: 0;
    visibility: hidden;
    background-image: url(../images/instagram-big-circle.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 200px;
    -webkit-transition: all 400ms ease 0s;
    -moz-transition: all 400ms ease 0s;
    -ms-transition: all 400ms ease 0s;
    -o-transition: all 400ms ease 0s;
    transition: all 400ms ease 0s;
}
.social-box:hover .image-container::after {
    opacity: 0.77;
    visibility: visible;
    width: 100%;
    height: 100%;
}
.social-box .image-container img {
    width: 100%;
    height: 437px;
    object-fit: cover;
    object-position: center bottom;
}
.social-box .text-container {
    padding: 18px 23px;
}
.social-box .text-container figure {
    display: flex;
    align-items: center
}
.social-box .text-container figure img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}
.social-box .text-container figcaption {
    padding-left: 15px;
}
.social-box .text-container a {
    color: unset;
    text-decoration: none;
}
.social-box .text-container figcaption h5 {
    font-weight: 600;
    line-height: 26px;
    color: #000000;
    font-size: 16px;
}
.social-box .text-container figcaption p {
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
}
.social-box .text-container figcaption p span {
    position: relative;
    padding-left: 25px;
}
.social-box .text-container figcaption p span::before {
    content: '';
    clear: both;
    position: absolute;
    top: 8px;
    left: 10px;
    width: 6px;
    height: 6px;
    background-color: #787878;
    border-radius: 50%;
}
.circle-dots .slick-dots {
    display: table !important;
    margin: 50px auto 0 !important;
}
.circle-dots .slick-dots li {
    display: inline-block;
    width: 16.23px;
    height: 16.23px;
    background: #FFFFFF;
    opacity: 0.4;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
.circle-dots .slick-dots li.slick-active {
    opacity: 1;
}
.circle-dots .slick-dots li button {
    display: none;
}

/* =========== end: social =========== */


/* =================== start: what-people-say =================== */

.what-people-say {
    padding: 65px 0 175px;
    background-color: #EEEEEE;
    background-image: url(../images/section-bg2.png);
    background-size: 1437px;
    background-repeat: no-repeat;
    background-position: center center;
}
.what-people-say h1 {
    margin-bottom: 60px;
}
.what-ps-col {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}
.what-ps-box {
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border-bottom: 4.56px solid #6C4796;
    padding: 30px;
    box-sizing: border-box;
}
.what-ps-box .text-container p {
    font-weight: 600;
    line-height: 26px;
}
.what-ps-user {
    display: flex;
    margin: 35px 0 0;
}
.wps-user-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}
.wps-user-text {
    padding-left: 15px;
}
.wps-user-text h5 {
    font-weight: 600;
    line-height: 26px;
    color: #000000;
    font-size: 16px;
}
.wps-user-text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
}
.wps-user-quote {
    margin-left: auto;
    margin-right: 50px;
}
.slick-arrow-icon .slick-prev,
.slick-arrow-icon .slick-next {
    position: absolute;
    bottom: -110px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    border: 2px solid #B8C2C8;
    box-sizing: border-box;
    border-radius: 10px;
    width: 56.54px;
    height: 56.54px;
    font-size: 30px;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}
.slick-arrow-icon .slick-prev i,
.slick-arrow-icon .slick-next i {
    opacity: .5;
}
.slick-arrow-icon .slick-prev:hover i,
.slick-arrow-icon .slick-next:hover i {
    opacity: 1;
}
.slick-arrow-icon .slick-prev {
    margin: 0 0 0 -40px;
}
.slick-arrow-icon .slick-next {
    margin: 0 0 0 40px;
}

/* =================== end: what-people-say =================== */


/* =================== start: contact-us =================== */

.contact-us {
    padding: 75px 0;
}
.contact-us-row {
    display: flex;
    flex-wrap: wrap;
}
.contact-us-left {
    width: 628.97px;
}
.contact-us-left .circle-dots .slick-dots {
    margin: 30px auto 0 !important;
}
.contact-us-left .circle-dots .slick-dots li {
    border: 1px solid #6C4796 !important;
    width: 11.77px;
    height: 11.77px;
}
.contact-us-left .circle-dots .slick-dots li.slick-active {
    background-color: #C4C4C4;
    border: 1px solid #C4C4C4 !important;
}
.contact-us-left ul li img {
    width: 100%;
}
.contact-us-right {
    box-sizing: border-box;
    padding-left: 80px;
    width: calc(100% - 628.97px);
}
.contact-us-right h1 {
    margin-bottom: 30px;
}
.contact-us-right address p {
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    color: #1E1E1E;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
}
.contact-us-right address p:last-child {
    margin-bottom: 0;
}
.contact-us-right address p a {
    text-decoration: none;
    color: inherit;
}
.contact-us-right address .custom-icon {
    position: absolute;
    left: 0;
    top: 2px;
}
.contact-us-form {
    margin-top: 50px;
}
.contact-us-form ul {
    margin-left: -10px;
    margin-right: -10px;
}
.contact-us-form ul li {
    margin-bottom: 18px;
    width: 50%;
    float: left;
    box-sizing: border-box;
    padding: 0 10px;
}
.contact-us-form ul li:last-child {
    width: 100%;
}
.contact-us-form ul li textarea {
    height: 107.2px;
}
.contact-us-form button {
    margin: 0 auto;
    display: table;
}

/* =================== end: contact-us =================== */


/* =================== start: footer-top =================== */

.footer-top {
    background-color: #1E1E1E;
    padding: 0 0 40px;
}
.footer-top .custom-row {
    justify-content: space-between;
}
.ftr-about {
    display: flex;
}
.ftr-logo {
    margin-right: 45px;
}
.ftr-logo img{
    width: 112px;
    height: 159px;
}
.footer-top p {
    font-weight: 600;
    line-height: 26px;
    color: #FFFFFF;
}
.custom-col.ftr-about {
    width: 44%;
}
.custom-col.ftr-quick-links {
    width: 15%;
}
.custom-col.ftr-address {
    width: 29%;
}
.custom-col.ftr-about p {
    padding-top: 45px;
}
.footer-top h2 {
    font-weight: bold;
    font-size: 20px;
    line-height: 26px;
    color: #FFFFFF;
    padding: 45px 0 35px;
}
.ftr-quick-links ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}
.ftr-quick-links ul li:last-child {
    margin-bottom: 0;
}
.ftr-quick-links ul li::before {
    content: '';
    clear: both;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 6.46px;
    height: 6.46px;
    border-radius: 50%;
    background-color: #C4C4C4;
}
.ftr-quick-links ul li a {
    line-height: 30px;
    font-weight: 400;
    color: #FFFFFF;
}
.ftr-address address p {
    font-style: normal;
    font-weight: 400;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
}
.ftr-address address p:last-child {
    margin-bottom: 0;
}
.ftr-address address p .custom-icon {
    position: absolute;
    left: 0;
    top: 4px;
}
.ftr-address address p a {
    color: inherit;
    text-decoration: none;
}

/* =================== end: footer-top =================== */


/* =================== start: footer-bottom =================== */

.footer-bottom {
    background-color: #0E0E0E;
}
.footer-bottom .custom-row {
    align-items: center;
    padding-top: 9px;
    padding-bottom: 9px;
}
.ftr-copyright p {
    font-size: 12px;
    line-height: 26px;
    font-weight: 400;
    color: #FFFFFF;
}
.ftr-social-icons {
    margin-left: auto;
}
.footer-bottom ul li {
    display: inline-block;
    margin-right: 8px;
}
.footer-bottom ul li:last-child {
    margin-right: 0;
}

/* =================== end: footer-bottom =================== */