@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900');

*,
ul {
    margin: 0;
    padding: 0;
}

body {
    font-size: 14px;
    line-height: 25px;
    font-family: 'Roboto', sans-serif;
}

ul,
ol {
    list-style: none;
}

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

input:focus,
a:hover,
a:focus,
a:active,
button:focus,
select:focus {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
li ::marker{
    text-align-last: none !important;
}
/*----------- start section title -----------*/

.section-title {
    margin-bottom: 30px;
}

.section-title h3 {
    font-size: 36px;
    text-transform: capitalize;
    font-weight: 700;
    letter-spacing: 2px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
    line-height: 30px;
}

.section-title h3 span {
    color: #00aeef;
}

.section-title h3:after,
.section-title h3:before {
    position: absolute;
    content: '';
    height: 5px;
    left: 50%;
    bottom: 0;
}

.section-title h3:after {
    width: 50%;
    background: #212121;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.section-title h3:before {
    background: #00aeef;
    width: 10%;
    z-index: 1;
    -webkit-transform: skew(-45deg) translateX(-50%);
    transform: skew(-45deg) translateX(-50%);
}

.section-title p {
    font-size: 16px;
    font-weight: 300;
}

/*---------- Start more button ----------*/

.more-btn {
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: 110px;
    display: inline-block;
    position: relative;
    height: 40px;
    line-height: 40px;
    background: #00aeef;
    text-align: center;
    font-weight: 700;
    margin-top: 15px;
    z-index: 1;
    padding-left: 10px;
}

.more-btn:after {
    position: absolute;
    content: '';
    background: #00aeef;
    left: 14%;
    top: 0;
    -webkit-transform: skew(-35deg);
    transform: skew(-35deg);
    height: 100%;
    width: 100%;
    z-index: -1;
}

.more-btn:hover,
.more-btn:hover:after {
    background: #212121;
    color: #fff;
}




/*==================== (01). End Common Style Css ====================*/


/*==================== (02). Start header section ====================*/


/*------------ Start top header ------------*/

.top-header {
    padding: 10px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.top-header:before,
.top-header:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    -webkit-transform: skew(45deg);
    transform: skew(45deg);
}

.top-header:before {
    left: -50.5%;
    background: #212121;
}

.top-header:after {
    background: #00aeef;
    left: 50.5%;
}

.top-social li a {
    color: #fff;
}

.top-social li,
.top-time li {
    font-size: 18px;
    margin-right: 30px;
    display: inline-block;
}

.top-social li:last-child,
.top-time li:last-child {
    margin-right: 0;
}

.top-time {
    position: relative;
    z-index: 1;
    text-align: right;
}


/*------------ Start site menu ------------*/

.sticky-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999999;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.site-menu.sticky-menu {
    z-index: 2;
}

.site-menu .logo img {
    width: fit-content;
    height: fit-content;
}

.menubar ul li {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    margin-right: 30px;
    font-weight: 600;
    position: relative;
}

.menubar ul li:last-child {
    margin-right: 0;
}

.menubar ul li a {
    color: #212121;
    padding: 25px 0;
    display: block;
    position: relative;
}

.menubar ul li a:after,
.menubar ul li a:before {
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    background: #00aeef;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.menubar ul li a:after {
    left: 0;
    top: 20px;
}

.menubar ul li a:before {
    right: 0;
    bottom: 20px;
}

.menubar ul li.current a:after,
.menubar ul li.current a:before,
.menubar ul li:hover a:after,
.menubar ul li:hover a:before {
    width: 50%;
}

.menubar ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    background: #00aeef;
    min-width: 150px;
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform-origin: top;
    transform-origin: top;
    white-space: nowrap;
}

.menubar ul ul li {
    display: block;
    margin-right: 0;
    text-align: left;
    border-bottom: 1px solid #f3c923;
}

.menubar ul ul li a {
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 600;
}

.menubar ul ul li a:before,
.menubar ul ul li a:after {
    display: none;
}

.menubar ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}


/*==================== (02). End header section ====================*/


/*==================== (03). Start Home page ====================*/

.page-banner .single-item {
    position: relative;
    height: 650px;
}

.page-banner .single-item:before,
.page-banner .owl-dots,
.single-item-overlay,
.single-item-overlay:after,
.single-item-overlay:before,
.single-item-overlay .banner-btn:after {
    position: absolute;
}

.page-banner .single-item:before,
.single-item-overlay:after,
.single-item-overlay:before,
.single-item-overlay .banner-btn:after {
    content: '';
}

.page-banner .single-item:before {
    background: rgba(33, 33, 33, 0.3);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.page-banner .owl-dots {
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.page-banner .owl-theme .owl-dots .owl-dot {
    display: block;
    zoom: 1;
}

.page-banner .owl-theme .owl-dots .owl-dot span,
.page-banner .owl-theme .owl-dots .owl-dot.active span {
    width: 30px;
    height: 10px;
}

.page-banner .owl-theme .owl-dots .owl-dot span {
    background: transparent;
    border: 1px solid #fff;
    width: 15px;
}

.page-banner .owl-theme .owl-dots .owl-dot.active span {
    background: #00aeef;
    border: none;
}

.single-item-overlay {
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single-item-overlay h2 {
    font-size: 40px;
    font-weight: 600;
}

.single-item-overlay p {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-top: 10px;
}

.page-banner .more-btn:hover,
.page-banner .more-btn:hover:after {
    background: #00aeef;
    color: #212121;
}
/*------------ Start about us section ------------*/

.aboutus {
    padding: 130px 0;
    overflow: hidden;
    position: relative;
}

.welcome-text h3 {
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 30px;
    line-height: 30px;
}

.welcome-text p {
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    margin-bottom: 10px;
}

.aboutus img {
    position: absolute;
    bottom: 0px;
    width: 288px;
    right: 15px;
}

/*------------ Start faq section ------------*/

.faq {
    background: #fafafa;
    padding: 100px 0 70px;
}

.accordion .card {
    border: none;
    margin-bottom: 30px;
}

.faq .btn-link {
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
    background: #212121;
    color: #fff;
    border-radius: 0;
    padding: 10px 15px;
    font-size: 16px;
    overflow: hidden;
    border: none;
}

.faq .btn-link:hover,
.faq .btn-link:focus {
    text-decoration: none;
}

.faq .btn-link:after {
    position: absolute;
    content: '\f068';
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: fontawesome;
}

.faq .btn-link.collapsed:after {
    content: '\f067';
}

.faq .btn-link:before {
    position: absolute;
    content: '';
    background: #00aeef;
    -webkit-transform: skew(-35deg);
    transform: skew(-35deg);
    height: 100%;
    width: 50%;
    left: 90%;
    top: 0;
}

.card-header {
    padding: 0;
    background: transparent;
    border-bottom: none;
}

.card-body {
    position: relative;
    text-align: justify;
}

.card-body:after {
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    left: 0;
    bottom: 0;
    background: #212121;
}

.card-body:before {
    position: absolute;
    content: '';
    height: 2px;
    width: 50%;
    left: 0;
    bottom: 0;
    background: #00aeef;
    z-index: 1;
}
.submit{
    display: grid;
    align-items: center;
    text-align: center;
    color: #f3c923;
    font-size: large;
}
.button-sub{
    text-align: center;
    margin-top: none;
    background-color: #212121;
}


/*------------ Start subscribe section ------------*/

.subscribe {
    background-color: #2e2e2e;
    padding: 100px 0 84px;
    position: relative;
    color: #fff;
    z-index: 1;
}

.subscribe:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.subscribe .btn-primary {
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 50px;
    height: 40px;
    line-height: 43px;
    padding: 0;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    width: 150px;
    color: #fff;
    align-items: center;
    align-content: center;
}

.subscribe .btn-primary:hover {
    background: #212121 !important;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
}

.subscribe .btn-primary,
.subscribe .btn-primary:focus,
.subscribe .btn-primary:active {
    background: #00aeef !important;
    border: none !important;
    outline: 0 !important;
    box-shadow: none !important;
}




/*==================== (03). End Home page ====================*/


/*==================== (09). Star footer section ====================*/

.footer {
    background: #212121;
}

.top-footer {
    padding: 100px 0 95px;
}

.top-footer,
.top-footer a {
    color: #fff;
}

.info-text {
    font-size: 14px;
    line-height: 30px;
    text-align: left;
    margin: 6px 0 10px;
}

.footer-social ul li {
    margin-right: 30px;
    font-size: 18px;
}

.footer-social ul li:last-child {
    margin-right: 0;
}

.footer-social ul li:hover a {
    color: #00aeef;
}

.ftr-title h4 {
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 35px;
    position: relative;
}

.ftr-title h4:after {
    position: absolute;
    content: '';
    width: 20%;
    height: 2px;
    background: #00aeef;
    left: 0;
    top: 150%;
}

.ftr-title h4:before {
    position: absolute;
    content: '';
    width: 10%;
    height: 2px;
    background: #fff;
    left: 0;
    top: 150%;
    z-index: 1;
}

.ftr-links>li {
    line-height: 30px;
    font-size: 16px;
}

.ig-post a {
    display: inline-block;
    width: 32.33%;
    padding: 4px 2px;
}

.copy-right {
    color: #fff;
    padding: 15px 0;
    border-top: 1px solid #4c4c4c;
}
/*==================== (09). End footer section ====================*/


/*==================== (08). Start contact page ====================*/

.contact-us {
    margin-top: 195px;
}

.contact-info {
    border: 1px solid #c1c1c1;
    padding: 15px;
    text-align: center;
    min-height: 150px;
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
}

.contact-info i.fa {
    font-size: 28px;
    color: #d6d6d6;
    margin-bottom: 10px;
}

.contact-info:hover {
    border: 1px solid #00aeef;
    cursor: pointer;
}

.contact-info:hover i.fa {
    color: #00aeef;
}

.contact-info .title {
    text-transform: capitalize;
    font-weight: 700;
    color: #212121;
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-info p,
.contact-info p a {
    font-size: 14px;
    color: #212121;
}

.contact-us .form-control {
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 15px;
    border: 1px solid #c1c1c1;
}

.contact-us .form-control::-webkit-input-placeholder {
    color: #999;
    font-size: 15px;
    text-transform: capitalize;
}

.contact-us .form-control::-moz-placeholder {
    color: #999;
    font-size: 15px;
    text-transform: capitalize;
}

.contact-us .form-control:-ms-input-placeholder {
    color: #999;
    font-size: 15px;
    text-transform: capitalize;
}

.contact-us .form-control:focus {
    border: 1px solid #00aeef;
}

.contact-us input[type="text"],
.contact-us input[type="email"] {
    height: 50px;
}

.contact-us .btn-primary {
    border-radius: 0;
    outline: none;
    border: none;
    min-width: 150px;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    text-align: center;
    height: 45px;
    line-height: 38px;
    z-index: 1;
}

.contact-us .btn-primary,
.contact-us .btn-primary:hover,
.contact-us .btn-primary:focus,
.contact-us .btn-primary:active {
    background: #00aeef !important;
    color: #212121 !important;
    box-shadow: none !important;
}

.contact-us .btn-primary:after {
    position: absolute;
    content: '';
    background: #00aeef;
    height: 100%;
    width: 100%;
    -webkit-transform: skew(-35deg);
    transform: skew(-35deg);
    top: 0;
    left: 10%;
    z-index: -1;
}

#googleMap {
    height: 500px;
    width: 100%;
    margin-top: 70px;
}

/*==================== (08). End contact page ====================*/