@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}


/***** Font Files *****/

@font-face {
    font-family: 'ArsenalSC-Regular';
    src: url(../fonts/ArsenalSC-Regular.ttf);
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

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

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

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

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

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.btn10 {
    border: 1px solid #a30000!important;
    text-align: center;
    position: relative;
    overflow: hidden!important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #a30000!important;
    z-index: 10;
    display: inline-block;
    color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: 17px;
    font-family: Poppins;
    font-weight: 400
}

.btn10:hover {
    border: 1px solid #a30000!important;
    color: #fff!important
}

.btn10::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #a30000;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000!important
}

.btn10::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #fff;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000!important
}

.btn10:hover::before,
.btn1O:hover::before {
    opacity: 1;
    width: 116%
}

.btn10:hover::after,
.btn1O:hover::after {
    opacity: 1;
    width: 120%
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

a.btn1 {
    background: #004a98;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    transition: 1s;
}

a.btn1:hover {
    background: #00aeef;
    box-shadow: inset 150px 0px 0px 0px #fff;
    color: #000;
    transition: 1s;
}

h1 {
    font-family: 'ArsenalSC-Regular';
    font-size: 55px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 55px;
    line-height: 60px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'ArsenalSC-Regular';
    font-size: 50px;
    line-height: 1;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'ArsenalSC-Regular';
    font-size: 24px;
    line-height: 1;
    color: #fff;
    font-weight: 600;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 1;
    color: #000;
    font-weight: 500;
    margin: 0 0 14px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 16px;
    line-height: 1;
    color: #00aeef;
    font-weight: 600;
    margin: 0 0 22px;
}

p {
    color: #4c4b4b;
    font-size: 16px;
    line-height: 28px;
    font-family: 'Poppins', Sans-Serif;
    font-weight: 400;
    margin: 0 0 30px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

header {
    position: absolute;
    width: 100%;
    z-index: 9;
    top: 0;
    left: 0;
}

ul#menu {
    margin-top: 20px;
}

.nav-btn {
    margin-top: 26px;
}

.menuSec {
    padding: 10px 0;
    position: relative;
    z-index: 9;
}

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

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 35px;
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 400;
    text-transform: uppercase;
}

.menuSec ul li a i {
    font-size: 30px;
}


/*.menuSec ul li a:after {



    content: '';



    position: absolute;



    top: 35%;



    right: 0;



    width: 1px;



    height: 13px;



    background-color: #393939;



}*/


/*.menuSec ul li:last-child a {



    padding-right: 0px;



}*/


/*.menuSec ul li:last-child a:after {



    display: none;



}*/

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #00aeef;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

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

.menuSec li:hover li {
    float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */

.banner_text {
    position: relative;
    z-index: 1;
}

.banner_img.wow.bounceIn {
    position: relative;
    resize: horizontal;
    FONT-VARIANT: JIS90;
}

.banner_img {
    position: relative;
    z-index: 1;
}

.banner_img img {
    height: auto;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

.banner_text h2 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    color: #000;
}

.banner_text h1 {
    font-size: 100px;
    color: #000;
    line-height: 1;
    margin: 0;
}

.banner_text h3 {
    font-size: 55px;
    color: #000;
    font-weight: 700;
    line-height: 1;
}

.banner_text h6 {
    font-size: 16px;
    color: #00aeef;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
}

.banner_text p {
    font-size: 16px;
    font-family: 'Poppins';
    line-height: 1.7;
    color: #545353;
    font-weight: 500;
}

.banner-btn {
    display: flex;
    align-items: center;
}

.banner-btn a {
    margin: 30px 10px 0 0;
}

a.btn1.btn_badam {
    background: #fff;
    color: #000;
    font-weight: 500;
    width: 140px;
    transition: 1s;
}

a.btn1.btn_badam:hover {
    background: #00aeef;
    box-shadow: inset 100px 0 0 0 #004a98;
    transition: 1s;
}

.banner_img {
    position: relative;
}

.banner_img img {
    border-radius: 20px;
    width: 92% !important;
    float: right;
    object-fit: cover;
    height: 530px;
}

.play-btn i {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #169fdd;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 30px;
}

.play-btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 180px;
}

section.main_slider {
    position: relative;
    z-index: 1;
}

section.main_slider:before {
    content: '';
    position: absolute;
    background: #ffffffeb;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-repeat: no-repeat;
    right: 0;
    top: 0;
    filter: contrast(0.5);
}


/*banner End*/


/*about Start*/

.about-txt h6 {
    position: relative;
    margin: 0 0 30px 50px;
}

.about-txt h6:before {
    content: '';
    position: absolute;
    background: #00aeef;
    width: 37px;
    height: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 4px;
    bottom: 0;
    left: -9%;
}

.about-txt p {
    text-align: justify;
}

.about-img img {
    height: 600px;
    width: 80%;
    object-fit: cover;
    object-position: left;
    border-radius: 30px;
}

.about-img2 img {
    height: auto;
    width: 100%;
    border: 4px solid #fff;
}

img.about-imag-1 {
    object-position: 0 -130px;
}

.about-img {
    position: relative;
}

.about-img2 {
    position: absolute;
    bottom: -15%;
    right: 0%;
}

section.about-sec {
    padding: 90px 0 190px;
}

.about-txt {
    margin: 60px 0 0;
}


/*about end*/


/*work start*/

section.schdule-sec {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(rgb(0 0 0 / 90%), rgb(0 0 0 / 95%)), url(../images/work-back.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.work-txt i {
    font-size: 50px;
    color: #00aeef;
    margin: 0 0 30px;
}

.work-img img {
    height: 620px;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.work-txt p {
    color: #fff;
}

.work-txt:nth-child(2) {
    margin-top: 60px;
}


/*work End*/


/*service Strat*/

.service-head h6 {
    color: #004a98;
}

.service-head {
    text-align: center;
}

.service-img img {
    width: 100%;
    object-fit: cover;
    height: 370px;
    border-radius: 30px 30px 0 0;
}

.servic-txt h4 {
    color: #000;
    text-transform: capitalize;
}

a.ser-btn:hover {
    box-shadow: 0 6px 0 0 #56c6e0;
    transition: 1s;
}

a.ser-btn {
    font-size: 14px;
    color: #004a98;
    border-bottom: 1px solid #004a98;
    font-weight: 500;
    transition: 1s;
}

.servic-txt {
    padding: 40px 30px;
    /*height: 310px;*/
}

.servic-txt p {
    /*height: 115px;*/
    overflow: auto;
}

.servic-txt p::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.servic-txt p::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}

.servic-txt p::-webkit-scrollbar-thumb {
    background-color: #00aeef;
    border: 2px solid #00aeef;
}

.home-minor-sec .servic-txt {
    height: 250px;
}

.service-img {
    box-shadow: 0 0 3px 0 #00000094;
    border-radius: 30px;
    border: 1px solid #0003;
}

section.service-sec {
    padding: 80px 0;
}

.home-minor-sec {
    padding-bottom: 80px !important;
}

.service-slider .slick-next:before {
    content: '\f061';
    font-family: 'Font Awesome 5 Pro';
    background: #00aeef;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff !important;
}

.service-slider .slick-prev:before {
    content: '\f060';
    font-family: 'Font Awesome 5 Pro';
    background: #00aeef;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff !important;
}

.service-slider .slick-prev {
    left: -11px;
    z-index: 1;
    top: 36%;
}

.service-slider .slick-next {
    right: 22px;
    top: 36%;
}


/*service End*/


/*over working Strat*/

section.over-working-sec {
    background-image: url(../images/working-back.jpg);
    padding: 100px 0;
    background-size: cover;
    width: 100%;
}

.over-rating h2 {
    color: #fff;
    font-size: 57px;
    font-weight: 800;
    margin: 20px 0;
}

.over-rating h6 {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    margin: 0;
}

.over-rating {
    text-align: center;
}

.over-rating img {
    margin-bottom: 20px;
}

.over-rating:nth-child(2) {
    margin-top: 60px;
}

h3.white {
    color: #fff;
}

ul.working-list li h4 {
    font-weight: 400;
    line-height: 1.6;
}

ul.working-list li {
    list-style: disc;
}

ul.working-list li::marker {
    font-size: 24px;
    color: #fff;
}

ul.working-list {
    margin: 0;
}


/*over working End*/


/*choose start*/

.choose-txt ul li:first-child {
    width: 15%;
}

.choose-txt ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-txt ul li h4 {
    color: #004a98;
    font-weight: 700;
    border: 2px solid #004b99;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: #fff;
}

.choose-list:before {
    content: '';
    position: absolute;
    background: #004b99;
    width: 2px;
    height: 320px;
    top: 8%;
    left: 24px;
    z-index: -1;
}

.choose-list {
    position: relative;
}

.choose-img img {
    height: 530px;
    object-fit: cover;
    width: 100%;
    border-radius: 30px;
    float: right;
}

section.choose-sec {
    padding: 100px 0;
}


/*choose End*/


/*portofolio-sli*/

.portofilo-sec {
    position: relative;
    z-index: 0;
    padding: 120px 0;
}

.portofilo-sec::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: top right;
    background-attachment: fixed;
    z-index: -1;
    background-image: url("../images/portofilo-sec-bg.png");
}

.portofilo-sec h3 {
    color: #ffffff;
    line-height: 60px;
}

.portofilo-sec h2 span {
    display: block;
}

.portofilo-sec h5 {
    color: #00aeef;
    font-size: 16px;
    font-family: 'Poppins';
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.portofilo-sec .container-fluid {
    padding: 0;
}

.portofolio-sli {
    margin-top: 50px;
}

.portofolio-sli .slick-slide {
    opacity: 1;
}

.portoflio-box {
    position: relative;
}

.portoflio-box:hover .p-box-img img {
    transform: scale(1.2);
}

.portoflio-box .p-box-img img {
    transition: 0.3s ease-in-out;
}

.portoflio-box .p-box-img {
    overflow: hidden;
    border-radius: 50px;
}

.portoflio-box .p-box-txt {
    position: relative;
    width: 80%;
    margin: 0% auto;
    background-color: #00aeef;
    padding: 20px 20px;
    border-radius: 10px;
    z-index: 0;
    margin-top: -60px;
    transition: 0.3s ease-in-out;
    opacity: 0;
}

.portoflio-box .p-box-txt h6::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    height: 3px;
    width: 50px;
    background-color: #fff;
}

.portoflio-box .p-box-txt h6 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 20px;
    margin: 0;
    padding-left: 60px;
    position: relative;
}

.portoflio-box .p-box-txt h3 {
    color: #fff;
    font-size: 30px;
    margin: 0;
    line-height: 40px;
}

.portoflio-box:hover .p-box-txt a {}

.portoflio-box:hover .p-box-txt a i {
    color: #4a9c2d;
}

.portoflio-box .p-box-txt a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    height: 50px;
    width: 50px;
    color: #000;
    border-radius: 5px;
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translate(0, -50%);
    transition: 0.3s ease-in-out;
}

.portoflio-box .p-box-txt a i {
    font-weight: 700;
    font-size: 20px;
    transition: 0.1s ease-in-out;
}

.portofolio-sli .slick-slide.slick-current.slick-active.slick-center .portoflio-box .p-box-txt {
    opacity: 1;
}

.portofolio-sli .slick-dots li button:before {
    content: '';
    opacity: 1;
}

.portofolio-sli .slick-dots li.slick-active button:before {
    opacity: 0;
}

.portofolio-sli .slick-dots li.slick-active {
    width: 30px;
}

.portofolio-sli .slick-dots li {
    width: 10px;
    transition: 0.2s ease-in-out;
}

.portofolio-sli .slick-dots li button {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #ffffff;
    transition: 0.2s ease-in-out;
}

.portofolio-sli .slick-dots .slick-active {
    opacity: 1;
}

.portofolio-sli .slick-dots li.slick-active button {
    opacity: 1;
    background-color: #00aeef;
    width: 30px;
    border-radius: 5px;
}

.portofolio-sli .slick-dots {
    bottom: -13%;
}

.slick-slide {
    opacity: 1 !important;
}


/*portofolio-sli*/


/*csss for fun*/

.tetsiomal-sli .slick-slide {
    opacity: 1;
}

.testiomal-sec {
    position: relative;
    padding: 80px 0;
}

.testiomal-sec h5 {
    font-size: 18px;
    line-height: 23px;
    color: #004b99;
    font-weight: 600;
    margin: 0 0 20px;
}

.testiomal-sec h2 {
    font-size: 50px;
    line-height: 55px;
    color: #000;
    font-weight: 600;
    margin: 0 0 40px;
    /* text-transform: uppercase; */
}

.testiomal-sec h2 span {
    display: block;
    text-transform: lowercase;
}

.testio-box::before {
    content: '';
    position: absolute;
    letter-spacing: 0;
    width: 95%;
    border-radius: 5px;
    border: 3px solid #004b99;
    z-index: -1;
    height: 78%;
    bottom: 0;
}

.testio-box::after {
    content: '\f10d';
    font-weight: 600;
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    right: 5%;
    top: 23%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #004b99;
    color: #fff;
    font-size: 22px;
}

.testio-box {
    position: relative;
    margin: 20px 0;
    padding: 20px 40px;
    z-index: 0;
}

.testio-box ul {
    display: flex;
}

.testimon-reply {
    padding: 20px 55px;
}

.testimon-reply .form-testim {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.testimon-reply .form-testim textarea {
    width: 85%;
    height: 36px;
    border-radius: 4px;
}

.testimon-reply .form-testim button {
    background: #004b99;
    color: #fff;
    border: 0;
    padding: 0 16px;
    font-size: 15px;
    height: 36px;
    position: absolute;
    right: 0;
    border-radius: 4px;
}

.testimon-reply .user-repl h5 {
    font-size: 13px;
    line-height: 10px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    color: #000;
}

.testimon-reply .user-repl h5 span {
    font-size: 10px;
}

.testimon-reply .user-repl p {
    font-size: 12px;
    line-height: 20px;
    margin: 4px 0;
}

.testio-box ul li img {
    margin-right: 50px;
    height: 150px;
    object-fit: contain;
}

.testio-box ul li h5 {
    color: #000;
    font-size: 25px;
    margin-bottom: 10px;
}

.testio-box ul li h6 {
    font-size: 14px;
}

.testio-box p {
    width: 80%;
    margin: 10px auto;
    font-size: 18px;
    color: #545454;
    line-height: 35px;
}

.testio-box .d-flex {
    justify-content: center;
    background-color: #000;
    border-radius: 50px;
    padding: 10px;
    width: 150px;
    float: right;
}

.testio-box .d-flex i {
    color: #ffc107;
    padding-right: 5px;
}


/*csss for fun*/


/*footer*/

.footerSec {
    background-color: #000000;
    width: 100%;
    height: 100%;
    padding: 100px 0 0px;
}

.contact-icon {
    display: flex;
    align-items: center;
    margin: 23px 0px;
}

.contact-icon i {
    font-size: 33px;
    color: red;
    margin-right: 20px;
    color: white;
}

.contact-icon a,
.linkList a,
.footerSec p,
.footerSec h5 {
    color: white;
}

.footerSec h5 {
    font-size: 25px;
    text-transform: capitalize;
    margin: 0 0 40px;
}

.linkList li {
    margin: 0px 0 20px;
}

.footerForm i {
    color: #000000;
}

.footerForm .input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: 2px;
}

.footerForm button {
    background-color: #00aeef;
}

.footerForm button:hover {
    outline: 1px solid #999897;
    background-color: #4e4a4a;
}

.linkList a:hover {
    color: #00aeef;
}

.linkList a i {
    margin-right: 10px;
}

.socialLinks a {
    width: 40px;
    height: 40px;
    color: #fff;
    margin-right: 10px;
    transition: 0.5s all;
    border: 1px solid #fff;
    border-radius: 100px;
    display: grid;
    place-content: center;
}

.socialLinks a img {
    width: 15px;
    height: 15px;
    object-fit: scale-down;
    margin: 0;
}

.socialLinks {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.socialLinks a:hover {
    transform: rotate(360deg) scale(1.2);
    background-color: #00aeef;
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: #fff;
    border: 0;
    opacity: 0.25;
}

.footerSec img {
    margin: 0 0 20px;
    width: 40%;
}


/*footer*/


/*inner banner start*/

img.img-fluid {
    width: 100%;
    HEIGHT: 1000px;
    object-fit: cover;
    object-position: top;
}

.banner_img img {
    height: 570px;
    object-fit: cover;
}

section.inner-baner-sec img {
    height: 600px;
}

section.inner-baner-sec {
    position: relative;
    background: #000;
}

section.inner-baner-sec>img {
    opacity: 0.5;
}

.inner-banner-txt {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    bottom: 0;
}

.inner-banner-txt h1 {
    font-size: 72px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

section.inner-baner-sec img.img-fluid {
    display: none;
}

section.inner-baner-sec {
    height: 450px;
    background: linear-gradient(135deg, #0072ff, #ff1e1e);
}

section.inner-baner-sec .inner-banner-txt {
    top: 20%;
}

h1 {}

section.about-inner {
    padding: 100px 0 10px;
}


/*team start*/

.team-img {
    text-align: center;
    display: block;
    position: relative;
}

.team-img a {
    display: block;
}

.team-img i {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #002250;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 30px;
    margin: 0 auto;
    position: absolute;
    bottom: 21%;
    right: 0;
    left: 0;
}

.team-img h5 {
    margin-top: 50px;
}

.slick-active {
    opacity: 1;
}

.team-img span {
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

section.team-sec {
    padding: 80px 0;
}

.team-slider .slick-dots li button:before {
    font-family: 'slick';
    font-size: 10px;
    line-height: 20px;
    position: absolute;
    top: 40px;
    left: 0;
    width: 20px;
    height: 20px;
    content: '\f111' !important;
    text-align: center;
    opacity: 1 !important;
    color: #00aeef;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: bold;
    font-family: 'Font Awesome 5 Free';
}

.team-slider .slick-dots li.slick-active button:before {
    opacity: 1 !important;
    color: #004a98;
    font-size: 8px;
    border: 1px solid #004a98;
    border-radius: 50%;
    content: '\f111' !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
}


/*team End*/


/*booking*/

.book-in input {
    width: 100%;
    height: 40px;
    border: 1px solid #000;
    margin: 0 0 30px;
    padding: 20px;
}

.book-in textarea {
    width: 100%;
    height: 150px;
    border: 1px solid #000;
    margin: 0 0 30px;
    padding: 20px;
}

section.book-sec {
    padding: 90px 0;
}

.book-in {
    text-align: center;
}

.book-in button:hover {
    background: #004a98;
}

.book-in button {
    width: 50%;
    border: none;
    height: 50px;
    background: #002250;
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    border-radius: 6px;
    text-align: center;
    margin: 0 auto;
}


/*booking*/


/*contact start*/

.contact-us-pg {
    padding: 70px 0px;
}

.contact-us-pg h3 {
    text-transform: none;
    color: #000000;
    font-size: 36px;
    font-family: 'Poppins';
    font-weight: 600;
    margin-bottom: 20px;
}

h6.contactinfo {
    color: #000 !important;
}

.contact-us-pg p span {
    display: block;
}

.contact-us-pg p {
    font-size: 14px;
    line-height: 30px;
    font-family: 'Poppins';
    font-weight: 400;
    color: #000000;
}

.contact-us-pg input {
    margin-top: 20px;
    width: 100%;
    padding: 15px 10px;
    border: 1px solid #d2d2d2;
    border-radius: 5px;
    height: 50px;
}

.contact-us-pg input::placeholder {
    color: #000 !important;
}

.contact-us-pg textarea::placeholder {
    color: #000 !important;
}

.contact-us-pg textarea {
    margin-top: 20px;
    width: 100%;
    padding: 15px 10px;
    border: 1px solid #d2d2d2;
    border-radius: 3px;
    height: 120px;
    resize: none;
}

.detai-s {
    position: relative;
    padding: 36px 15px;
}

.contact-us-pg input::placeholder {
    color: #bab9b9;
}

.contact-us-pg textarea::placeholder {
    color: #bab9b9;
}

.detai-s {
    margin-top: 0px;
    padding-bottom: 0px;
}

.detai-s i {
    color: #000000;
    line-height: 80px;
    font-size: 22px;
}

.detai-s a {
    color: #000000;
    font-size: 14px;
    line-height: 25px;
}

.socails ul {
    display: flex;
}

.socails ul li {
    padding-right: 15px;
}

.socails ul li i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 43px;
    color: #fff;
    border: 1px solid #ffffff;
    background: #004a98;
    font-size: 20px;
    transition: 1.5s ease-in-out;
}

.socails ul li i:hover {
    transform: rotate(360deg);
    font-size: 21px;
}

.f-1 {
    background-color: #e6be8a;
}

.f-2 {
    background-color: #00adef;
}

.f-3 {
    background-color: #cc0001;
}

.f-4 {
    background-color: #2c567e;
}

.f-5 {
    background-color: #f96a02;
}

.detai-s img {
    height: 50px;
    line-height: 53px;
    margin-top: 20px;
}

.detai-s h6 {
    margin: 0;
    color: #ffffff;
}

.detai-s .row {
    display: flex;
    align-items: center;
    margin: 0 0 30px;
}

.Leave-wrap {
    background: #fff;
    box-shadow: 0 0 8px 0 #b7b7b7;
    /* padding: 60px 20px; */
    background: #ffffff;
    padding-left: 0;
    margin-left: 0;
    z-index: -1;
    height: 605px;
    padding: 40px 60px;
}

.carousel-inner.pag .carousel-caption {
    top: 10%;
}

.Leave-wrap p {
    color: #000000;
    margin: 0;
    line-height: 20px;
}

.Leave-wrap button {
    font-family: 'Poppins';
    color: #fff;
    background: #004a98;
    font-size: 14px;
    width: 20%;
    padding: 10px 20px;
    border-radius: 5px;
    border: unset;
}

section.contact-us-pg {
    position: relative;
}

section.contact-us-pg:after {
    content: '';
    position: absolute;
    background-image: url(../images/circle-yellow.png);
    width: 22%;
    height: 449px;
    top: -218px;
    background-repeat: no-repeat;
    left: 0;
    z-index: -1;
}


/*robot*/

.captcha {
    background-color: #f9f9f9;
    border: 2px solid #d3d3d3;
    border-radius: 5px;
    color: #4c4a4b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 48%;
    margin: 10px 0;
    height: 85px;
}

.text {
    font-size: 14px;
    font-weight: 500;
    margin-right: 0;
    margin-left: 10px;
}

.spinner {
    position: relative;
    width: 50%;
    height: 2em;
    display: flex;
    margin: 2em 1em;
    align-items: center;
    justify-content: center;
}

input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

input[type="checkbox"]+.checkmark {
    display: inline-block;
    width: 2em;
    height: 2em;
    background-color: #fcfcfc;
    border: 2.5px solid #c3c3c3;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

input[type="checkbox"]+.checkmark span {
    content: '';
    position: relative;
    /*



    position:absolute;



    border-bottom:3px solid;



    border-right:3px solid;



    border-color:#029f56;*/
    margin-top: -3px;
    transform: rotate(45deg);
    width: .75em;
    height: 1.2em;
    opacity: 0;
}

input[type="checkbox"]+.checkmark>span:after {
    content: '';
    position: absolute;
    display: block;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #029f56;
}

input[type="checkbox"]+.checkmark>span:before {
    content: '';
    position: absolute;
    display: block;
    width: 3px;
    bottom: 0;
    right: 0;
    background-color: #029f56;
}

input[type="checkbox"]:checked+.checkmark {
    animation: 2s spin forwards;
}

input[type="checkbox"]:checked+.checkmark>span {
    animation: 1s fadein 1.9s forwards;
}

input[type="checkbox"]:checked+.checkmark>span:after {
    animation: .3s bottomslide 2s forwards;
}

input[type="checkbox"]:checked+.checkmark>span:before {
    animation: .5s rightslide 2.2s forwards;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes bottomslide {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes rightslide {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    align-self: flex-end;
    margin: 0.5em 1em;
}

.logo img {
    height: 2em;
    width: 2em;
}

.logo p {
    color: #9d9ba7;
    margin: 0;
    font-size: 1em;
    font-weight: 700;
    margin: .4em 0 .2em 0;
}

.logo small {
    color: #9d9ba7;
    margin: 0;
    font-size: .8em;
}

@keyframes spin {
    10% {
        width: 0;
        height: 0;
        border-width: 6px;
    }
    30% {
        width: 0;
        height: 0;
        border-radius: 50%;
        border-width: 1em;
        transform: rotate(0deg);
        border-color: rgb(199, 218, 245);
    }
    50% {
        width: 2em;
        height: 2em;
        border-radius: 50%;
        border-width: 4px;
        border-color: rgb(199, 218, 245);
        border-right-color: rgb(89, 152, 239);
    }
    70% {
        border-width: 4px;
        border-color: rgb(199, 218, 245);
        border-right-color: rgb(89, 152, 239);
    }
    90% {
        border-width: 4px;
    }
    100% {
        width: 2em;
        height: 2em;
        border-radius: 50%;
        transform: rotate(720deg);
        border-color: transparent;
    }
}

::selection {
    background-color: transparent;
    color: teal;
}

::-moz-selection {
    background-color: transparent;
    color: teal;
}


/*robot*/


/*contact start*/


/*detail*/

.ser-img img {
    object-fit: cover;
    width: 100%;
    border-radius: 30px;
    height: 70vh;
}

section.ser-detail-sec {
    padding: 80px 0;
}

.ser-img h3 {
    font-size: 30px;
    margin-top: 40px;
}


/*detail*/


/*pricing*/

.pricing-img {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-img h4 {
    font-size: 30px;
    color: #004a98;
    margin-top: 40px;
}

.pricing-img img {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* margin: 0 auto; */
    /* border: 40px solid #197b4c8f; */
    /* border-radius: 50%; */
    width: 16%;
    /* height: 220px; */
    object-fit: cover;
    /* padding: 23px; */
}

.pricing-head {
    text-align: center;
}

.pricing-head h3 {
    line-height: 1.4;
}

section.pricing-sec {
    padding: 80px 0;
}

.pricing-img ul li {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.pricing-img ul li i {
    width: 10%;
    color: #47972b;
}

.pricing-img span {
    font-size: 21px;
}

.btn2 {
    border-radius: 0 !important;
    background: #47972b !important;
    text-transform: uppercase;
    margin: 0 auto;
}

.pricing-img-circle {
    position: relative;
    height: 220px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-img-circle:before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border: 36px solid #368c6340;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    border-radius: 50%;
    margin: 0 auto;
}


/*pricing*/

a.btn3 {
    background: #47972b;
}


/*inner banner End*/


/*responsive*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    header {
        position: relative;
    }
    .menuSec ul li a {
        padding: 0px 10px;
        font-size: 11px;
    }
    .nav-btn {
        margin-top: 0;
    }
    ul#menu {
        margin-top: 10px;
    }
    .menuSec {
        padding: 10px 0;
    }
    .banner_text h3 {
        font-size: 28px;
        margin: 0;
    }
    .banner_text h1 {
        font-size: 34px;
    }
    .banner_text h2 {
        font-size: 30px;
    }
    .banner_text h6 {
        font-size: 12px;
        margin: 0 0 10px;
    }
    .banner_text p {
        font-size: 11px;
        line-height: 1.5;
        margin: 0 0 10px;
    }
    .banner-btn a {
        margin: 0 10px 0 0;
    }
    .banner_img img {
        height: 290px;
    }
    .play-btn {
        top: 80px;
    }
    .about-txt h6:before {
        left: -17%;
    }
    .about-img img {
        width: 100%;
    }
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    .carousel-inner img {
        height: 550px;
    }
    header {
        position: relative;
    }
    .nav-btn {
        margin-top: 26px;
        margin: 10px auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    a.btn1 {
        width: 150px;
        font-size: 12px;
    }
    .banner-btn a {
        margin: 0px 10px 0 0;
    }
    .banner_img img {
        width: 100% !important;
        height: 160px !important;
        margin: 10px 0;
    }
    .banner_text h2 {
        font-size: 36px;
    }
    .banner_text h1 {
        font-size: 40px;
    }
    .banner_text h3 {
        font-size: 40px;
        margin: 0 0 10px;
    }
    .banner_text h6 {
        font-size: 12px;
        margin: 0 0 10px;
    }
    .banner_text p {
        font-size: 11px;
        margin: 0 0 10px;
    }
    .play-btn i {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    .play-btn {
        top: 60px;
        right: 0;
        left: 0;
    }
    .about-img img {
        height: 350px;
        width: 100%;
    }
    .about-img2 img {
        height: auto !important;
        width: 100% !important;
        border: 4px solid #fff;
    }
    .about-txt h6:before {
        left: -18%;
    }
    h3 {
        font-size: 34px;
        margin: 0 0 20px;
    }
    p {
        font-size: 11px;
        line-height: 16px;
        margin: 0 0 16px;
    }
    section.about-sec {
        padding: 20px 0 20px;
    }
    h4 {
        font-size: 18px;
        margin: 0 0 10px;
    }
    .work-txt:nth-child(2) {
        margin-top: 30px;
    }
    section.schdule-sec {
        padding: 20px 0;
    }
    .work-img img {
        height: 240px;
        margin: 0 0 20px;
    }
    section.service-sec {
        padding: 20px 0;
    }
    h6 {
        font-size: 12px;
        margin: 0 0 10px;
    }
    .service-img img {
        height: 170px;
    }
    .servic-txt {
        padding: 16px 14px;
    }
    section.over-working-sec {
        padding: 20px 0;
    }
    .over-rating img {
        margin-bottom: 0;
    }
    .over-rating h2 {
        font-size: 40px;
        margin: 10px 0;
    }
    .over-rating:nth-child(2) {
        margin-top: 30px;
    }
    .over-rating {
        margin: 0 0 15px;
    }
    section.choose-sec {
        padding: 20px 0;
    }
    .choose-list:before {
        content: '';
        position: absolute;
        background: #004b99;
        width: 2px;
        height: 320px;
        top: 10%;
        left: 24px;
        z-index: -1;
    }
    .choose-txt ul li:first-child {
        width: 20%;
    }
    .choose-list:before {
        height: 318px;
        top: 13%;
        left: 25px;
        z-index: -1;
    }
    .choose-img img {
        height: 330px;
    }
    .portofilo-sec {
        padding: 20px 0;
    }
    .p-box-img img {
        height: 300px;
        object-fit: cover;
        width: 100%;
    }
    .portoflio-box .p-box-txt h3 {
        font-size: 16px;
        line-height: 1;
    }
    .portofilo-sec h3 {
        line-height: 1;
    }
    .testiomal-sec h2 {
        font-size: 40px;
        line-height: 1;
        margin: 0 0 20px;
    }
    .testiomal-sec h5 {
        font-size: 12px;
    }
    .testio-box {
        padding: 0;
    }
    .testio-box p {
        font-size: 11px;
        line-height: 25px;
    }
    .testio-box::before {
        top: 38%;
    }
    .testio-box ul li h5 {
        margin-bottom: 3px;
    }
    .testio-box ul li img {
        margin-right: 0;
        width: 80%;
    }
    .testio-box::after {
        right: 11%;
        top: 31%;
    }
    .footerSec {
        background-color: #004a98;
        width: 100%;
        height: 100%;
        padding: 30px 0 0px;
    }
    section.inner-baner-sec img {
        height: 200px;
    }
    .inner-banner-txt h1 {
        font-size: 28px;
    }
    .captcha {
        width: 100%;
    }
    .Leave-wrap button {
        width: 40%;
    }
    .Leave-wrap {
        padding: 20px 20px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    .carousel-inner img {
        height: 550px;
    }
    header {
        position: relative;
    }
    .nav-btn {
        margin-top: 26px;
        margin: 10px auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    a.btn1 {
        width: 150px;
        font-size: 12px;
    }
    .banner-btn a {
        margin: 0px 10px 0 0;
    }
    .banner_img img {
        width: 100% !important;
        height: 160px !important;
        margin: 10px 0;
    }
    .banner_text h2 {
        font-size: 36px;
    }
    .banner_text h1 {
        font-size: 40px;
    }
    .banner_text h3 {
        font-size: 40px;
        margin: 0 0 10px;
    }
    .banner_text h6 {
        font-size: 12px;
        margin: 0 0 10px;
    }
    .banner_text p {
        font-size: 11px;
        margin: 0 0 10px;
    }
    .play-btn i {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    .play-btn {
        top: 60px;
        right: 0;
        left: 0;
    }
    .about-img img {
        height: 350px;
        width: 100%;
    }
    .about-img2 img {
        height: auto !important;
        width: 100% !important;
        border: 4px solid #fff;
    }
    .about-txt h6:before {
        left: -18%;
    }
    h3 {
        font-size: 34px;
        margin: 0 0 20px;
    }
    p {
        font-size: 11px;
        line-height: 16px;
        margin: 0 0 16px;
    }
    section.about-sec {
        padding: 20px 0 20px;
    }
    h4 {
        font-size: 18px;
        margin: 0 0 10px;
    }
    .work-txt:nth-child(2) {
        margin-top: 30px;
    }
    section.schdule-sec {
        padding: 20px 0;
    }
    .work-img img {
        height: 240px;
        margin: 0 0 20px;
    }
    section.service-sec {
        padding: 20px 0;
    }
    h6 {
        font-size: 12px;
        margin: 0 0 10px;
    }
    .service-img img {
        height: 170px;
    }
    .servic-txt {
        padding: 16px 14px;
    }
    section.over-working-sec {
        padding: 20px 0;
    }
    .over-rating img {
        margin-bottom: 0;
    }
    .over-rating h2 {
        font-size: 40px;
        margin: 10px 0;
    }
    .over-rating:nth-child(2) {
        margin-top: 30px;
    }
    .over-rating {
        margin: 0 0 15px;
    }
    section.choose-sec {
        padding: 20px 0;
    }
    .choose-list:before {
        content: '';
        position: absolute;
        background: #004b99;
        width: 2px;
        height: 320px;
        top: 10%;
        left: 24px;
        z-index: -1;
    }
    .choose-txt ul li:first-child {
        width: 20%;
    }
    .choose-list:before {
        height: 318px;
        top: 13%;
        left: 25px;
        z-index: -1;
    }
    .choose-img img {
        height: 330px;
    }
    .portofilo-sec {
        padding: 20px 0;
    }
    .p-box-img img {
        height: 300px;
        object-fit: cover;
        width: 100%;
    }
    .portoflio-box .p-box-txt h3 {
        font-size: 16px;
        line-height: 1;
    }
    .portofilo-sec h3 {
        line-height: 1;
    }
    .testiomal-sec h2 {
        font-size: 40px;
        line-height: 1;
        margin: 0 0 20px;
    }
    .testiomal-sec h5 {
        font-size: 12px;
    }
    .testio-box {
        padding: 0;
    }
    .testio-box p {
        font-size: 11px;
        line-height: 25px;
    }
    .testio-box::before {
        top: 38%;
    }
    .testio-box ul li h5 {
        margin-bottom: 3px;
    }
    .testio-box ul li img {
        margin-right: 0;
        width: 80%;
    }
    .testio-box::after {
        right: 11%;
        top: 31%;
    }
    .footerSec {
        background-color: #004a98;
        width: 100%;
        height: 100%;
        padding: 30px 0 0px;
    }
    section.inner-baner-sec img {
        height: 200px;
    }
    .inner-banner-txt h1 {
        font-size: 28px;
    }
    ul.working-list {
        margin: 0 30px;
    }
    .service-img {
        margin: 10px 0;
    }
    .contact-us-pg h3 {
        font-size: 28px;
    }
    .Leave-wrap {
        padding: 18px 8px;
    }
    .captcha {
        width: 100%;
    }
    .text {
        font-size: 0.75em;
        font-weight: 500;
        margin-right: 1em;
    }
    .Leave-wrap button {
        width: 50%;
    }
}


/*responsive*/

html {
    overflow-x: hidden;
}

.header-logo img {
    width: 40%;
    object-fit: cover;
}

.footer-logo {
    width: 80%;
}

.inner-service-sec .service-img {
    margin: 0 0 40px;
}

.map iframe {
    width: 100%;
    height: 500px;
}


/*MAin Service Start*/

.main-ser-txt h4 {
    color: #000;
    margin: 0;
}

.main-ser-txt {
    text-align: center;
    background: #fff;
    box-shadow: 0 0 20px 0 #00000057;
    padding: 40px 20px;
    margin: 0 0 30px;
    transition: 0.5s ease-in-out;
}

.main-ser-txt:hover {
    background: #00aeef;
    transition: 0.5s ease-in-out;
}

section.main-services-sec {
    padding: 0 0 80px;
}


/*MAin Service Start*/

.detai-s i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #004a98;
    width: 55px;
    height: 55px;
    color: #fff;
    border-radius: 50%;
}

.socails {
    margin-top: 40px;
}

.logo-robot {
    text-align: center;
    transform: scale(0.7);
}


/*Claender Start*/

.calendar-wrapper {
    border: 1px solid #ccc;
    margin-bottom: 30px;
    padding: 10px;
}

.calendar-header {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 5px;
}

.day-names,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.day-name,
.day {
    border: 1px solid #ddd;
    padding: 5px;
    text-align: center;
    min-height: 80px;
    position: relative;
}

.day .icons {
    position: absolute;
    top: 2px;
    left: 2px;
    font-size: 14px;
    cursor: pointer;
}

.day .job {
    background: #d2e3fc;
    margin: 2px 0;
    padding: 2px;
    border-radius: 4px;
    font-size: 12px;
}

.day.full {
    background-color: #666;
    color: white;
}

.day.weekend {
    background-color: #ddd !important;
    pointer-events: none;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255);
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 20px;
    width: 400px;
}

.close {
    float: right;
    font-size: 20px;
    cursor: pointer;
}

.calendar-controls {
    margin-bottom: 20px;
}

.calendar-controls label,
.calendar-controls select {
    margin-right: 10px;
}

.jobs {
    margin-top: 24px;
}

.day-name {
    background: #00b0f0;
    color: #fff;
}

.day-name,
.day {
    border: 1px solid #000000;
}

.calendar-wrapper {
    border: 0;
    padding: 0;
    width: 80%;
    margin: 0 auto;
}

section.calendar-sec {
    padding: 100px 0;
}

.calendar-header {
    font-size: 40px;
    line-height: 50px;
    color: #ffffff;
    /* background: #004a98; */
    padding: 10px 20px;
    width: fit-content;
    margin: 0 auto 0;
    display: flex;
    padding-bottom: unset;
}

.day .job {
    background: #4892dc;
    border: 1px solid #000;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.calendar-controls {
    text-align: center;
    margin: 0 0 30px;
}

.calendar-controls label,
.calendar-controls select {
    font-size: 20px;
    font-weight: 500;
    height: 50px;
    -webkit-appearance: auto;
    width: fit-content;
}

.close {
    text-align: right;
    font-size: 40px;
}

.modal-content h2 {
    background: #00b0f0;
    color: #000000;
    text-align: center;
    padding: 14px 0;
    margin: 0 0 10px;
    font-size: 40px;
    line-height: 50px;
}

.modal-content input {
    height: 45px;
    margin: 0 0 10px;
    padding: 0 20px;
    border: 1px solid #000;
    border-radius: 5px;
    color: #000;
    width: 100%;
}

.modal-content {
    margin: 1% auto;
    width: 600px;
    box-shadow: 0 0 20px 0 #0000006b;
}

.modal-content textarea {
    margin: 0 0 5px;
    padding: 6px 20px;
    border: 1px solid #000;
    border-radius: 5px;
    color: #000;
    width: 100%;
    resize: none;
}

.modal-content select {
    height: 45px;
    margin: 0 0 10px;
    padding: 0 20px;
    border: 1px solid #000;
    border-radius: 5px;
    color: #000;
    width: 100%;
    -webkit-appearance: auto;
}

.btn-calender {
    background: #004a98;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    transition: 1s;
    border: 0;
    width: 100%;
}

.jobs-container {
    max-height: 220px;
    overflow-y: auto;
    margin: 3px 0;
    padding-right: 3px;
    scrollbar-width: thin;
}

.jobs-container::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.jobs-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.jobs-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.jobs-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.job {
    padding: 4px;
    margin: 2px 0;
    background: #e3f2fd;
    border-radius: 3px;
    font-size: 12px;
    cursor: pointer;
    word-break: break-word;
    transition: background 0.2s;
}

.job:hover {
    background: #bbdefb;
}

.day {
    min-height: 100px;
    position: relative;
}

.training-page .calendar {
    width: 100%;
    background: #fff;
    padding: 20px;
}

.training-page .calendar h1 {
    text-transform: uppercase;
    font-size: 30px;
    font-family: unset;
    font-weight: 300;
    text-align: center;
    color: #fff;
    background: #00b0f0;
    width: fit-content;
    margin: 0 auto;
    padding: 10px 19px;
}

.training-page .calendar p {
    font-size: min(0.8vw, 16px);
    font-style: italic;
    margin-bottom: min(2%, 32px);
}

.training-page .calendar table {
    width: 100%;
    border-collapse: collapse;
}

.training-page .calendar table th,
.training-page .calendar table td {
    width: min(10vw, 200px);
}

.training-page .calendar table th:last-child,
.training-page .calendar table td:last-child {
    color: #fff;
}

.training-page .calendar table thead {
    font-size: min(1.4vw, 28px);
    text-align: center;
}

.training-page .calendar table thead th {
    font-weight: 500;
    border-bottom: 0;
    background: #00b0f0;
    color: #fff;
    padding: 10px;
    font-size: 20px;
    position: relative;
    text-align: center;
    padding-bottom: 54px;
    width: 14.6%;
    border: 1px solid #000;
    margin: 0 10px;
}

.training-page .calendar table tbody {
    font-weight: 900;
}

.training-page .calendar table tbody tr {
    /* height: min(6vw, 120px); */
    position: relative;
}

.training-page .calendar table tbody tr::after {
    /* content: ''; */
    position: absolute;
    height: 15px;
    width: 100%;
    background: #1b1b1b;
    left: 0;
    bottom: 0;
}

.training-page .calendar table tbody tr.active {
    background-color: #ebebeb;
}

.training-page .calendar table tbody td {
    font-size: min(3vw, 60px);
    padding: min(1%, 16px);
    text-align: center;
}

.training-page .calendar table tbody td[data-day] {
    cursor: pointer;
    color: #000;
    font-size: 24px;
    font-family: 'Poppins' !important;
    font-weight: 500;
    border: 1px solid #000;
    text-align: center;
}

.training-page .calendar table tbody td.active {
    outline: min(1vw, 16px) solid #e40022;
}

.training-page .calendar table tbody td:nth-child(7) {
    color: #000;
    font-size: 24px;
    font-family: 'Poppins' !important;
    font-weight: 500;
    background: #00000054;
}

.training-page .calendar table tbody td:first-child {
    color: #000;
    font-size: 24px;
    font-family: 'Poppins' !important;
    font-weight: 500;
}

.training-page .calendar table tbody td {
    text-align: left;
    padding-bottom: 0px;
    /* background-color: #131313; */
    position: relative;
    height: 120px;
    border: 1px solid #000;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    color: #000;
}

.training-page .calendar table tbody td::after {
    /* content: ''; */
    position: absolute;
    height: 100%;
    width: 15px;
    background: #1b1b1b;
    right: 0;
    bottom: 0;
}

.training-page .calendar table thead th:after {
    /* content: ''; */
    position: absolute;
    width: 100%;
    height: 15px;
    bottom: 0;
    left: 0;
    background: #1b1b1b;
}

.training-page .calendar table thead th:before {
    /* content: ''; */
    position: absolute;
    width: 15px;
    height: 100%;
    bottom: 0;
    right: 0;
    background: #1b1b1b;
}

section.training-page {
    padding: 50px 0;
}

td.for-color {
    background: #ababab;
}

.main-headiung-calendar h2 {
    text-align: center;
    color: #000;
    text-transform: uppercase;
    font-size: 40px;
}

a.save-icon img {
    width: 20px;
    position: absolute;
}

section.training-page button#prev-month {
    border: 1px solid #000;
    background: #fff;
}

section.training-page button#next-month {
    border: 1px solid #000;
    background: #fff;
}

section.calendar-sec .calendar-header {
    font-size: 40px;
    line-height: 50px;
    color: #fff;
    background: #00b0f0;
    padding: 10px 20px;
    width: fit-content;
    margin: 0 auto 0;
    display: flex;
    padding-bottom: 10px;
    font-weight: 500;
    margin-bottom: 0px;
}

.work-img img {
    object-position: top;
}


/*Claender Start*/


/* Overlay */

.login-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}


/* Modal Box */

.login-box {
    background: #f5f5f5;
    width: 550px;
    max-width: 90%;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: popup 0.3s ease;
}

@keyframes popup {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.login-box img {
    width: 100px;
    margin: -60px auto 40px;
    display: block;
}

.login-box h2 {
    font-weight: 500;
    font-size: 20px;
    color: #000;
    line-height: 1;
    margin: 0 0 20px;
    text-transform: capitalize;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group input:focus {
    border-color: #004a98;
    outline: none;
}


/* Login Button */

.login-btn {
    width: 100%;
    padding: 10px;
    background: #004a98;
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.login-btn:hover {
    background: #004a98;
}

.extra-links {
    margin-top: 10px;
    font-size: 14px;
}

.extra-links a {
    color: #555;
    text-decoration: none;
}

.extra-links a:hover {
    text-decoration: underline;
    color: #004a98;
}


/* Close Button */

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

.detai-s ul li.ckasnd a {
    width: 40px;
    height: 40px;
    color: #fff;
    margin-right: 10px;
    transition: 0.5s all;
    border: 1px solid #fff;
    border-radius: 100px;
    background: #004a98;
    display: grid;
    place-content: center;
    padding: 0;
}

.detai-s ul li.ckasnd img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin: 0;
}