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


/* GLOBAL */
::-moz-selection { color: #fff;background: #00bfec;}
::selection { color: #fff;background: #00bfec; }
.textBlue {color: #030938 !important;}
.textOrange {color: #ff4c1c !important;}
.textSkyBlue {color: #00bfec !important;}
.textGray {color: #ccc !important;}
.textMutedGray {color: #999 !important;}
.fontWeight200 {font-weight: 200 !important;}
.fontWeight300 {font-weight: 300 !important;}
.fontWeight400 {font-weight: 400 !important;}
.fontWeight500 {font-weight: 500 !important;}
.fontWeight600 {font-weight: 600 !important;}
.fontWeight700 {font-weight: 700 !important;}
.bg-gray {background: #eceef6;}
.bgRed {background: #f83930 !important;}
.font16 {font-size: 16px;}
.font18 {font-size: 18px;}
.font24 {font-size: 24px;}
.font40 {font-size: 40px;}
.font45 {font-size: 45px;}
.font50 {font-size: 50px;}
.font65 {font-size: 65px;}
.font70 {font-size: 70px;}
.font80 {font-size: 80px;}
.font120 {font-size: 120px !important;}
.letterSpacing2 {letter-spacing: 2px;}
.letterSpacing5 {letter-spacing: 5px;}
.borderRadius4 {border-radius: 4px;}
.borderRadius20 {border-radius: 20px;}
.lineHeight28 {line-height: 28px;}
.lineHeight55 {line-height: 55px;}
.bg-darkBlue {
    background-color: #022e43 !important;
}
.pt100 {padding-top: 100px !important;}
.pb100 {padding-bottom: 100px !important;}

.bgNeviBlue {background: #f8fafd;}
.bgDarkBlack {background: #0c0c0c;}
.bgYellow {background: #fab51a;}
.bgBlack {background: #161617;}
.bgDarkGray {background: #1f2021;}
.bgLightGray {background: #2a2b2c;}

.height65 {height:65px;}
.height470 {height:470px;}


.poppinsFamily {font-family: 'Poppins', sans-serif;}

.form-control {
    border: 1px solid transparent;
  }
.form-control:focus {
    border: 1px solid #595a5a !important;
    /* background-color: #2a2b2c !important; */
    outline: 0;
    box-shadow: none;
}



.customCheckbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

/* Hide the browser's default checkbox */
.customCheckbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
     position: absolute;
    top: 3px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.customCheckbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.customCheckbox input:checked ~ .checkmark {
  background-color: #00bfec;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.customCheckbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.customCheckbox .checkmark:after {
left: 7px;
    top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}









.mainCustomBtnDiv {
    display: flex;
    justify-content: center;
    align-items: center;
}
.customRadioBtn {
        display:inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-transform: uppercase;
}



.customRadioBtn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.customRadioBtn .checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.customRadioBtn:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.customRadioBtn input:checked ~ .checkmark {
    background-color: #00bfec;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.customRadioBtn input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.customRadioBtn .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.custom-select {
     position: relative;
    padding: 0;
    height: auto;
     font-size: 1.25rem;
    color: #797979;
    display: block;
    background: transparent;
    border: transparent;
    border-radius: 0;   
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: #fff;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 30px;
  right: 20px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #000 transparent transparent transparent;

}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #000 transparent;
  top: 22px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
  height: 65px;
  display: flex;
    align-items: center;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

hr {
    border-top: 1px solid #2a2b2c;
}


a,a:hover,a:visited{text-decoration:none !important;color:inherit;display:inline-block;cursor:pointer;}
a:focus{color:inherit;outline:none;}

.whatsapp {    bottom: 110px;
    height: 64px;
    min-height: 64px;
    min-width: 64px;
    overflow: hidden;
    position: fixed;
    right: 20px;
    width: 64px;
    z-index: 2147483600;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.1));}




/*Buttons*/

.theme-btn-one {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 16px;
    font-weight: 500;
    color: #fff !important;
    text-align: center;
    padding: 13px 20px;
        background: #00bfec;
     border-radius: 5px;
    text-transform: uppercase;
    z-index: 1;
    border: 1px solid #00bfec;
    /* box-shadow: 0 20px 30px rgb(211 220 232 / 80%); */
    transition: all 500ms ease;
}


.theme-btn-one:before {
    position: absolute;
    content: '';
    background: #022e43;
    width: 0%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0;
    border-radius: 0;
    z-index: -1;
    transition: all 500ms ease;
}

.theme-btn-one:hover {
    background: #00bfec;
    border: 1px solid #022e43;
}

.theme-btn-one:hover:before {
    width: 100%;
    opacity: 1;
}

.borderWhiteBtn {border:1px solid #fff;}
.borderBlackBtn {border:1px solid #373435; color: #373435 !important;}


.vincent_back_to_top.show {opacity: 1;bottom: 15px;}
.vincent_back_to_top {    border-radius: 8px;display: block;width: 50px;height: 50px;position: fixed;z-index: 9999;bottom: -100px;right: 15px;cursor: pointer;transition: all 0.2s ease-out;opacity: 0;background: rgb(253 241 1 / 70%);-webkit-transition: 0.3s;-o-transition: 0.3s;transition: 0.3s;}
.vincent_back_to_top:hover {background-color: #fdf101;}
.vincent_back_to_to.show {display: block !important;}
.vincent_back_to_top:after {display: block;font-size: 33px;line-height: 45px;width: 100%;text-align: center;height: 45px;font-family: 'Font Awesome 5 Pro';content: "\f106";color: #373435;position: absolute;top: 50%;left: 0;margin-top: -24px;}



/*********************************************** Start Index Page Css **********************************************************/

body{font-family: 'Poppins', sans-serif;    color: #022e43;}
header {     width: 100%; position: absolute;    margin: 25px 0 0 0;}
.gj-datepicker-bootstrap [role=right-icon] button {
    width: 38px;
    position: relative;
    border: 0 !important;
    background: #2a2b2c;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gj-datepicker-bootstrap [role=right-icon] button .gj-icon, .gj-datepicker-bootstrap [role=right-icon] button .material-icons {
      position: unset !important;
}
.gj-datepicker-bootstrap [role=right-icon] button:hover {
    color: #6c757d;
    background-color: #404142 !important;
}


/*.slider-1 {background: url(../images/bg-slide-1.jpg) no-repeat;}
.slider-2 {background: url(../images/bg-slide-2.jpg) no-repeat;}
.slider-3 {background: url(../images/bg-slide-3.jpg) no-repeat;}*/



.customSlide {
    position: relative;
    background: #f3f6ff;
    width: 100%;
}

.headerWithSlide {
        padding: 200px 0 140px 0;
    min-height: 815px;
}




.imgs-wrapper{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.imgs-wrapper img{
  position: absolute;
}
.imgs-wrapper img:nth-child(1){
    bottom: 0;
    left: 0;
}
.imgs-wrapper img:nth-child(2){
    right: 0;
    top: 0;
}





.headerWithSlide .alignCenter {align-items: center;  }




/* Starts Pure CSS Responsive Dropdown Menu*/
.logo {
    position: relative;
    z-index: 123;
}
.logo a {
  
}
.logo a img {       width: 200px;  }

#cssmenu ul.firstUlWrap {   

    position: relative;
    float: none;
    text-align: right;
    margin: 0;
    z-index: 100;
    width: 100%;
            text-align: center;

 }

#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #head-mobile {
  border: 0;
  list-style: none;
  line-height: 1;
  /*display: block;*/
  /*position: relative;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cssmenu:after,
#cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#cssmenu #head-mobile {
  display: none;
}
#cssmenu {
    z-index: 10;
    /*margin: 0 80px;*/
    /* border-radius: 8px; */
    align-items: center;
    /*display: flex;
    justify-content: space-between;*/
    background: transparent;
    /*position: relative;*/
    padding:20px 0;
    transition:all 500ms ease-in-out;
}
#cssmenu > ul > li {
  float: none;
      display: inline-block;
  margin: 0 15px;
}



.whitespace-nowrap {
    white-space: nowrap;
}

#cssmenu > ul > li > a {
    padding: 10px;
    font-size: 16px;
    /* letter-spacing: 1px; */
    text-decoration: none;
    text-transform: uppercase;
        font-weight: 600;
}
#cssmenu > ul > li:hover > a,
#cssmenu ul li.active a {
  color: #00bfec;
}
#cssmenu > ul > li:hover,
#cssmenu ul li.active:hover,
#cssmenu ul li.active,
#cssmenu ul li.has-sub.active:hover {
  /*background: #e2292c !important;*/
  -webkit-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
#cssmenu > ul > li.has-sub > a {
  padding-right: 30px;
}
#cssmenu > ul > li.has-sub > a:after {
  position: absolute;
  top: 25px;
  right: 17px;
  width: 8px;
  height: 2px;
  display: block;
  background: #383436;
  content: "";
}
#cssmenu > ul > li.has-sub > a:before {
  position: absolute;
  top: 22px;
  right: 20px;
  display: block;
  width: 2px;
  height: 8px;
  background: #383436;
  content: "";
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#cssmenu > ul > li.has-sub:hover > a:before {
  top: 23px;
  height: 0;
}
#cssmenu ul ul {
  position: absolute;
  left: -9999px;
}
#cssmenu ul ul li {
  height: 0;
	padding:0;
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  background:none;
  transition: all 0.25s ease;
}
#cssmenu ul ul li:hover {
}
#cssmenu li:hover > ul {
  left: auto;
  width: 250px;
}
#cssmenu li:hover > ul > li {
  height:auto;
}
#cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}
/* #cssmenu ul ul li a {
    padding:0;
    width: 100%;
    font-size: 16px;
    text-decoration: none;
    color: #3e3e3e;
    font-weight: 700;
} */
#cssmenu ul ul li:last-child > a,
#cssmenu ul ul li.last-item > a {
  border-bottom: 0;
}
/* #cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
     color: #fff;
    background: #383436;
} */
#cssmenu ul ul li.has-sub > a:after {
  position: absolute;
  top: 20px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #ddd;
  content: "";
}
#cssmenu ul ul li.has-sub > a:before {
  position: absolute;
  top: 17px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #ddd;
  content: "";
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#cssmenu ul ul > li.has-sub:hover > a:before {
  top: 17px;
  height: 0;
}
#cssmenu ul ul li.has-sub:hover,
#cssmenu ul li.has-sub ul li.has-sub ul li:hover {
  background: #f5f5f5;
}
#cssmenu ul ul ul li.active a {
  border-left: 1px solid #333;
}
#cssmenu > ul > li.has-sub > ul > li.active > a,
#cssmenu > ul ul > li.has-sub > ul > li.active > a {
  border-top: 1px solid #333;
}


@media screen and (min-width:992px){
    .navbar-default.navbar-fixed{
        background:#fff !important;
        box-shadow:0 4px 6px rgba(0,0,0,.1);
        padding:10px 0 !important;
    }

}



@media (min-width: 1281px) and (max-width: 1367px) {
#cssmenu ul.firstUlWrap {
           padding: 0 0 0 80px;
        margin: 0;
}
}





@media (min-width: 1001px) and (max-width: 1280px) {


#cssmenu ul.firstUlWrap {
    padding: 0 0 0 16px;
    margin: 0;
}
    header {
        padding: 0;
        position: absolute;
    }
    .breadcurmbs {
        background: #022e43 !important;
    }
    .logo {
        position: absolute;
        top: 0;
        left: 100px;
        width: 100px;
        float: none;
    }
#cssmenu > ul > li.has-sub > a {
    padding-right: 20px;
}

#cssmenu > ul > li > a {
    padding: 17px 7px;
    font-size: 14px !important;
        letter-spacing: 0;
                color: #fff;
}
#cssmenu > ul > li:nth-child(1), #cssmenu > ul > li:nth-child(2), #cssmenu > ul > li:nth-child(3), #cssmenu > ul > li:nth-child(4) {
    float: none;
}
#cssmenu > ul > li {
    float: none;
    display: inline-block;
    margin: 0 0;
}
.quoteBtnTop a {
    font-size: 14px !important;}

#cssmenu > ul > li.has-sub > a:after {
    right: 5px;
}
#cssmenu > ul > li.has-sub > a:before {
    right: 8px;
}

}


@media screen and (max-width: 1000px) {
  .logo {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100px;    float: none;
  }

#cssmenu {    padding: 0;
    display: table;
    margin: 0 auto;
    width: 90%;}


#cssmenu ul.firstUlWrap {  
    padding: 0;  float: none;
    width: 100%;background: #fff;
    top: 0;
}

#cssmenu > ul > li > a {
    color: #373435;
}
/*.quoteBtnTop {
     position: absolute;
    right: 0;
    top: 50px;
}*/
.quoteBtnTop a {
 font-size: 14px !important;
    padding: 10px 12px !important;
}
header {padding: 0;}
.logo a img {
    width: 100%;
}


  .logo2 {
    display: none;
  }
  nav {
    width: 100%;
  }

  #cssmenu ul {
    width: 100%;
    display: none;
  }
  #cssmenu ul li {
    width: 100%;
    border-top: 1px solid #d5e1e7;
    margin: 0;  
  }
  #cssmenu ul li:hover {
    background: #fff;
    color: #373435;
  }
  #cssmenu ul ul li,
  #cssmenu li:hover > ul > li {
    height: auto;
  }
  #cssmenu ul li a,
  #cssmenu ul ul li a {
    width: 100%;
    border-bottom: 0;
            text-align: left;
  }
  #cssmenu > ul > li {
    float: none;
  }
  #cssmenu ul ul li a {
    padding-left: 25px;
  }
  #cssmenu ul ul li {
    background: #333 !important;
  }
  #cssmenu ul ul li:hover {
    background: #4a4a4a !important;
  }
  #cssmenu ul ul ul li a {
    padding-left: 35px;
  }
  #cssmenu ul ul li a {
    color: #ddd;
    background: none;
  }
  #cssmenu ul ul li:hover > a,
  #cssmenu ul ul li.active > a {
    color: #fff;
    
    background: #4a4a4a;
  }
  #cssmenu ul ul,
  #cssmenu ul ul ul {
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left;
  }
  #cssmenu > ul > li.has-sub > a:after,
  #cssmenu > ul > li.has-sub > a:before,
  #cssmenu ul ul > li.has-sub > a:after,
  #cssmenu ul ul > li.has-sub > a:before {
    display: none;
  }
  /*#cssmenu #head-mobile {*/
  /*  display: block;*/
  /*  padding: 23px;*/
  /*  color: #ddd;*/
  /*  font-size: 12px;*/
  /*  font-weight: 700;*/
  /*}*/
  .button {
    width: 55px;
    height: 46px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 12399994;
  }
  .button:after {
    position: absolute;
    top: 22px;
    right: 20px;
    display: block;
    height: 8px;
    width: 20px;
    border-top: 2px solid #012e43;
    border-bottom: 2px solid #012e43;
    content: "";
  }
  .button:before {
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: 16px;
    right: 20px;
    display: block;
    height: 2px;
    width: 20px;
    background: #012e43;
    content: "";
  }
  .button.menu-opened:after {
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    top: 23px;
    border: 0;
    height: 2px;
    width: 19px;
    background: #012e43;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .button.menu-opened:before {
    top: 23px;
    background: #012e43;
    width: 19px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #cssmenu .submenu-button {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid #234552;
    height: 51px;
    width: 46px;
    cursor: pointer;
  }
  #cssmenu .submenu-button.submenu-opened {
    background: #262626;
  }
  #cssmenu ul ul .submenu-button {
    height: 45px;
    width: 34px;
  }
  #cssmenu .submenu-button:after {
    position: absolute;
    top: 22px;
    right: 19px;
    width: 8px;
    height: 2px;
    display: block;
    background: #ddd;
    content: "";
  }
  #cssmenu ul ul .submenu-button:after {
    top: 21px;
    right: 13px;
  }
  #cssmenu .submenu-button.submenu-opened:after {
    background: #fff;
  }
  #cssmenu .submenu-button:before {
    position: absolute;
    top: 19px;
    right: 22px;
    display: block;
    width: 2px;
    height: 8px;
    background: #ddd;
    content: "";
  }
  #cssmenu ul ul .submenu-button:before {
    top: 18px;
    right: 16px;
  }
  #cssmenu .submenu-button.submenu-opened:before {
    display: none;
  }
  #cssmenu ul ul ul li.active a {
    border-left: none;
  }
  #cssmenu > ul > li.has-sub > ul > li.active > a,
  #cssmenu > ul ul > li.has-sub > ul > li.active > a {
    border-top: none;
  }
}


#cssmenu ul li.quoteBtnTop {margin: 0 0 0 120px;}



#cssmenu > ul > li.quoteBtnTop:hover { border-radius: 10px;}

/* Ends Pure CSS Responsive Dropdown Menu*/




.aboutSection {
    overflow: hidden;
}
.aboutSection .container-fluid .row .col-lg-6 {
    padding: 0;
}

.rightContent {position: relative;padding: 35px 0;}
.rightContent h2 {position: relative;z-index: 1}
.customSidebox {    position: absolute;
    width: 70px;
    height: 250px;
    top: 0;
    left: -35px;}



.taxi-item {
    border: 1px solid #dee2e6 !important;


}
.taxi-img {




}
.taxi-content {
    position: relative;
}
.taxi-content:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 6px;
    background: #022e43;
    border-radius: 50px;
    left: 50%;
    top: -4px;
    transform: translateX(-50%);
}

.taxi-content ul li {
    padding: 4px 0;
}
.taxi-content ul li i {
    width: 30px;
    height: 30px;
    line-height: 28px;
    color: #fff;
    border-radius: 50px;
    margin-right: 10px;
    text-align: center;
    background: #00bfec;
}

.taxi-content ul li span {
    float: right;
}


.mostTrusted {
/*     background: url(../images/paralax_bg3.jpg) no-repeat;
    background-attachment: fixed;
    width: 100%;
    background-size: cover;
    background-position: center center; */
	background:#002e43;
    padding:60px 0;
    position: relative;
    z-index: 1;
}

.mostTrusted:before{
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	background:rgba(0,0,0,.7);
	left:0;
	top:0;
}

.mostTrusted .phone{
	background:#00bfec;
	border-radius:5px;
	padding:12px 25px;
}

.mostTrusted .phone:hover{
	background:#022e43;
}

.dice-about-service-list li {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
.dice-about-service-list li i {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 8px;
    text-align: center;
    line-height: 40px;
    color: #00bfec;
    margin-right: 20px;
    background-color: #d2f6ff;
}
.app-btn .service-app {
   max-height: 50px;
}

.locationThumbnail { display: flex;   justify-content: space-between;}
.locationThumbnail li {position: relative;     margin: 0 10px;}
.locationThumbnail li img {}
.locationThumbnail li h2 {    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    background: rgb(0 0 0 / 50%);
    margin: 0 0 20px 0;
    padding: 5px 0;}













.leftMainText h3 {  }
.leftMainText h4 {   
    line-height: 75px;}

.rightSideImg {  }
.rightSideImg img {}




.companyPlacement {padding: 120px 0 80px 0;position: relative; z-index:1;
        overflow: hidden;}

.companyPlacement .column{
    position:relative;
    margin-bottom:30px;

}

.companyPlacement .column .inner{
    position:relative;
    text-align:center;

}

.companyPlacement .column .inner:before{
    position:absolute;
    content:'';
    right:-20px;
    top:95px;
    width:12px;
    height:12px;
    border-radius:50px;
    background: #ff4c1c;
}

.companyPlacement .column:last-child .inner:before{
    display:none;
}

.companyPlacement .column .inner .content {
    position: relative;
    background: -webkit-linear-gradient(top, #F8F8F8 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(180deg, #F8F8F8 0%, rgba(255, 255, 255, 0) 100%);
    border-image-source: linear-gradient(90deg, #ECF2F6 0%, rgba(236, 242, 246, 0) 70.31%);
    background-color: #fff;
    margin: 0 30px;
    padding: 30px 0;
    border-radius: 10px;
}

.companyPlacement .column .inner .content:hover {background-color: #ecf2f6;}



.companyPlacement .column .inner .iconn{
    position:relative;
    font-size:54px;
    line-height:1em;
    font-weight: 500;
    margin-bottom:22px;
    transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    font-family: "flaticon";
    
    color:#05bcf7;
    line-height:1em;
    background-image: linear-gradient(to left, #05bcf7 0%, #0751cc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.companyPlacement .column .inner:hover .iconn{
    -webkit-transform: scale(-1) rotate(180deg);
    -moz-transform: scale(-1) rotate(180deg);
    -ms-transform: scale(-1) rotate(180deg);
    -o-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
}

.companyPlacement .count-outer .percentage{
    position:relative;
    font-weight:700;
    color:#000000;
    font-size:36px;
    line-height:1em;
    font-family: 'Poppins', sans-serif;
}

.companyPlacement .column .inner .count-outer{
    position: relative;
    font-weight: 700;
    color: #030938;
    font-size: 40px;
    line-height: 1em;
}

.companyPlacement .column .inner .counter-title{
    position:relative;
    color:#030938;
    font-size:24px;
    margin-top:10px;
    line-height:1.4em;
    font-family: 'Poppins', sans-serif;
}

.companyPlacement .column .inner .count-outer i{
    position:relative;
    right:-4px;
    top:-15px;
    font-style:normal;
    color:#000c3f;
    font-size:20px;
}


.content-inner-2 {
  padding: 40px 0 70px 0;
      position: relative;
}
.srMarkshape7 {
     top: -18px;
    left: -150px;
    z-index: 0;
}

.content-inner-2 .srMarkshape8 {
    left: 70px;
    top: 100px;
    z-index: 0;
    -webkit-animation: Pr_mark_animation_2 12s infinite linear alternate;
    animation: Pr_mark_animation_2 12s infinite linear alternate;
}
.content-inner-2 .srMarkshape10 {
    left: 40%;
    top: 0;
    -webkit-animation: 10s apldg_rotate_animation linear infinite;
    animation: 10s apldg_rotate_animation linear infinite;
}


.about-bx1 .dz-media {
    position: relative;
    overflow: unset;
}
.srMarkshape5 {top: 0;right: 55px;z-index: 0;-webkit-animation: Pr_mark_animation_3 15s infinite linear alternate;animation: Pr_mark_animation_3 15s infinite linear alternate;}

@-webkit-keyframes Pr_mark_animation_3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes Pr_mark_animation_3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.srMarkshape4 {
    right: 0;
    bottom: -70px;
    z-index: 0;
    -webkit-animation: Pr_mark_animation_2 12s infinite linear alternate;
    animation: Pr_mark_animation_2 12s infinite linear alternate;
}

@-webkit-keyframes Pr_mark_animation_2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes Pr_mark_animation_2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.srMarkshape6 {
    bottom: 0;
    left: 123px;
    z-index: -1;
}



  


.about-text-bx {
    position: relative;
    box-shadow: 0 24px 48px -15px rgb(153 161 170 / 25%);
    border-radius: 8px;
    display: flex;
        padding: 20px;
            background: linear-gradient(180deg, #F8F8F8 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid;
    border-image-source: linear-gradient(90deg, #ECF2F6 0%, rgba(236, 242, 246, 0) 70.31%);
}



.teamBoxx {    margin: 0 0 0 20px;}
.teamBoxx h4 {font-size: 22px;}
.teamBoxx p {font-size: 16px;margin: 0;}


.investMore {display: flex;      margin: 50px 0 0 0;  align-items: center;}
.investMore p {margin: 0 20px 0 0;    font-weight: 700;font-size: 24px;}
.investMore .theme-btn-one {      font-size: 18px !important;
    padding: 20px 35px !important;}






.topRecruiters {padding: 80px 0;}
.topRecruiters .partnerContent {margin: 50px 0 0 0;}
.topRecruiters .partnerContent ul {margin: 0;}
.topRecruiters .partnerContent li {
    padding: 0px 20px;
        display: inline-block;
    margin-bottom: 50px;
}
.topRecruiters .partnerContent li img {
    transition: 0.4s all ease-in-out;
    filter: grayscale(1);
        border-radius: 10px;
            border: 1px solid #e0e3eb;
}
.topRecruiters .partnerContent li img:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

.services {}
.wrapService {text-align: center;  
  }

.wrapService:hover h6 {
      -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-box-shadow: 6.891px 24.032px 80px 0px rgb(189 189 189 / 30%);
    box-shadow: 6.891px 24.032px 80px 0px rgb(189 189 189 / 30%);
        background: #fdf101;
}


.wrapService .placesImg {}
.wrapService .placesImg img {border-radius: 15px;}
.wrapService h6 {    display: inline-block;
    -webkit-box-shadow: 6.891px 24.032px 80px 0px rgb(189 189 189 / 30%);
    box-shadow: 6.891px 24.032px 80px 0px rgb(141 141 141 / 30%);
    background: #fff;
    margin: -21px 0 0 0;
    position: relative;
    padding: 20px 15px;
    width: 200px;
    text-transform: uppercase;
    border-radius: 10px;
  -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
  }
.sparkeffect:hover:after {width: 120%;background-color: transparent;-webkit-transition: all .3s ease-out;-moz-transition: all .3s ease-out;-ms-transition: all .3s ease-out;-o-transition: all .3s ease-out;transition: all .3s ease-out;}
.sparkeffect:after {content: "";position: absolute;top: 0;left: 0;width: 0;height: 100%;background-color: rgba(255,255,255,.4);-webkit-transition: none;-moz-transition: none;-ms-transition: none;-o-transition: none;transition: none;}

.services-grid.service-style-2:hover, .services-grid.service-style-2.active {
    background-color: #ecf2f6;
}

.services-grid .thumbnail {
    margin-right: 25px;
    max-width: 85px;
}

.services-grid.service-style-2 {
    background: -webkit-linear-gradient(top, #F8F8F8 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(180deg, #F8F8F8 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid;
    border-image-source: linear-gradient(90deg, #ECF2F6 0%, rgba(236, 242, 246, 0) 70.31%);
    background-color: var(--color-white);
    margin-bottom: 30px;
}

.services-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 50px 50px 40px;
    border-radius: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    padding: 50px 30px 40px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.services-grid.service-style-2 .content .title a {font-weight: 700;font-size: 22px;line-height: 36px;color: #343f52;}
.services-grid.service-style-2 .content p {font-weight: 300;font-size: 16px;line-height: 28px;color: #60697b;}









.weCareFor {
    background: url(../images/bg-car.jpg) no-repeat;
    background-attachment: fixed;
    width: 100%;
    background-size: cover;
    background-position: center center;
    padding: 150px 0 150px 0;
    position: relative;
    z-index: 1;
}



.wrapBoxxServices {      
    transition: 500ms all ease;
}
.wrapBoxxServices:hover {    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}
.wrapBoxxServices:hover i {    -webkit-animation: icon-bounce 0.8s ease-out infinite;
    animation: icon-bounce 0.8s ease-out infinite;}


.wrapBoxx {      
    transition: 500ms all ease;
}
.wrapBoxx:hover {    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}



.wrapBoxx:hover i {    -webkit-animation: icon-bounce 0.8s ease-out infinite;
    animation: icon-bounce 0.8s ease-out infinite;}




.wrapBoxx h2 {     
  }


.wrapBoxx p {
  color: #ccc;
}

.bookCall {}
.bookCall .qut-btn {    border: 1px solid #fff !important;}



.wrapBoxx:hover img {    -webkit-animation: icon-bounce 0.8s ease-out infinite;
    animation: icon-bounce 0.8s ease-out infinite;}

@-webkit-keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}




.maxiText {text-align: center;}
.maxiText h2 {font-size: 200px;}


.videoSection {}

.video-popup {
    background: url(../images/video-banner.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    height: 468px;
        display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.video-popup .btn-inner {
    display: inline-block;
    border-radius: 50%;
}
.video-popup a {
    position: relative;
    width: 60px;
    height: 60px;
    display: inline-block;
    background: #fdf101;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    text-align: center;
    line-height: 62px;
    font-size: 19px;
    color: #fe4c1c;
}
.video-popup a i {
    margin-left: 8%;
}
.video-popup a span {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #fdf101;
    z-index: 1;
    animation: circle-fade-before 2s infinite ease-in-out;
    -webkit-animation: circle-fade-before 2s infinite ease-in-out;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}
.video-popup a .circle-2 {
  animation: circle-fade-after 2s infinite ease-in-out;
  -webkit-animation: circle-fade-after 2s infinite ease-in-out;
}

@keyframes circle-fade-before {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes circle-fade-after {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}





.benifits {  }



.wrapBenifits img {
  height: 60px;
}


.turnYourJourney {}
.wrapJourney {
}

.wrapJourney .ptImgOne {    position: absolute;
    bottom: 0;
    left: 0;}
.wrapJourney .ptImgtwo {    position: absolute;
    right: 0;
    top: 0;}
.wrapTestimonial {
    padding: 40px;
}



.footer {
    background: url(../images/footer_bg.jpg) no-repeat;
    background-attachment: fixed;
    width: 100%;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
}
.bottomlogo a img {
    width: 155px;
}

.bottomMenus {}
.bottomMenus ul {display: flex;align-items: center;justify-content: center;margin: 0;}
.bottomMenus ul li {margin: 0 20px;}
.bottomMenus ul li a {    color: #999 !important; }
.bottomMenus ul li a:hover {    color: #fff !important;;}

.socialBoxx {border-bottom: 1px solid #4a494f;padding: 60px 0;}
.socialIcons { display:flex;justify-content:center; }
.socialIcons li {margin: 0 5px;}
.socialIcons li a {
      background: #424343;
    display: block;
    width: 41px;
    height: 41px;
    font-size: 19px;
    line-height: 41px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.socialIcons li a:hover {
    background: #fff;
    color: #303334;
}



.socialIcons li a i {}
.footer a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}


.site-footer__social {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin: 0;
    justify-content: center;
}
.site-footer__social a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: #999;
    font-size: 22px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.site-footer__social a+a {
    margin-left: 36px;
}


.infoPages {}
.infoPages ul {}
.infoPages ul li {}
.infoPages ul li a:hover {color: #f83930 !important;}



.copyrwrite {color: #fff;}




/* ---------------------------------------- Starts Breadcurmbs ----------------------------------------------- */

.breadcurmbs {
  padding:170px 0 50px 0;
    background: #f3f6ff;
    background-attachment: fixed;
    width: 100%;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;


}
.diceCape-page-breadcurmb {justify-content: center;align-items: center;margin: 0;}

.diceCape-page-breadcurmb li  {
  margin-right:10px;
  padding-right:18px;
  font-size: 16px;
  position: relative;
}

.diceCape-page-breadcurmb li:last-child{
    margin-right:0;
    padding-right:0;
}

.diceCape-page-breadcurmb li a{
    color:#022e43;
}

.diceCape-page-breadcurmb li a:hover {    color: #11b3dc;}

.diceCape-page-breadcurmb li:after {
 /*content: '\f111';
 font-weight: 900;
 font-size: 12px;
 font-family: 'Font Awesome 5 pro';
 margin: 0 0 0 25px;*/
 content:"";
 position:absolute;
 width:8px;
 height:8px;
 background:#00bfec;
 border-radius:50%;
 right:0;
 top:0;
 bottom:0;
 margin:auto 0;
}
.diceCape-page-breadcurmb li:last-child:after {display: none;}


/* ---------------------------------------- Ends Breadcurmbs ----------------------------------------------- */







/********************************************************** CONTACT US STARTS *******************************************************/


.contactForm {}

.wrapContactForm .form-group .form-control, .wrapContactForm .form-group textarea {
    padding: 12px 20px;
    border: 1px solid #cfcfcf;
    height: 50px;
}

.wrapContactForm .form-group textarea {
    height: auto !important;
}

.wrapContactForm .gj-icon {
top: 0 !important;
    left: 0 !important;
    line-height: 50px !important;
    width: 100% !important;
}

.submitBtn {}
.submitBtn .theme-btn-one {
      background: #fdf101;
    color: #373435 !important;
    border: 1px solid #fdf101;
}


.mapContact {background: #fff;height: 600px;    margin: 0 0 60px 0;}
.contactArea {background: #fff;}
.mainAddress {    -webkit-transition: 500ms all ease;
    transition: 500ms all ease; position: relative; margin-top: 30px;border: 1px solid #ebebeb;border-radius: 10px;background: #fff;padding: 54px 40px 50px;min-height: 210px;}
    .mainAddress:hover {    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-box-shadow: 6.891px 24.032px 80px 0px rgb(189 189 189 / 30%);
    box-shadow: 6.891px 24.032px 80px 0px rgb(189 189 189 / 30%);}
.mainAddress .icon {border: 1px solid #ebebeb;width: 78px;height: 78px;color: #5c5c5c;line-height: 73px;text-align: center;border-radius: 100%;background: #fff;font-size: 28px;position: absolute;top: -43px;left: 47px;}
.mainAddress:hover .icon {    background: #fdf101;
    border-color: #fdf101;
    color: #383435;}
.mainAddress .inner h4.title {}
.mainAddress .inner p {margin-bottom: 0;}


/********************************************************** CONTACT US ENDS *******************************************************/



/********************************************************** About Page STARTS *******************************************************/




.turnYourJourney .owl-theme .owl-controls {
    text-align: center;
    width: 100%;
    margin: 40px 0 0 0;
}


/********************************************************** About Page ENDS *******************************************************/


#back-button {
  display:inline-block;
  background-color:#00bfec;
  width:50px;
  height:50px;
  line-height:50px;
  text-align:center;
  border-radius:50%;
  position:fixed;
  bottom:25px;
  right:25px;
  opacity:0;
  visibility:hidden;
  z-index:1000;
  cursor:pointer;
  box-shadow:0 6px 16px rgba(0,0,0,.4);
}

#back-button.show {
  opacity:1;
  visibility:visible;
}

.form-group label{
    margin-bottom:8px;
}

.form-group textarea{
    height:110px;
    resize:none;
}

.form-btn .btn{
    display:block;
    width:100%;
    font-size: 15px;
    line-height: 16px;
    font-weight: 500;
    color: #fff !important;
    text-align: center;
    padding: 16px 20px;
    background: #00bfec;
    border:none;
    border-radius: 5px;
    text-transform: uppercase;
}

.wrapBoxxServices a{
    color:#022e43;
}

.wpcf7-list-item{
    display:block !important;
}

.cta-btn{
  left:0;
  bottom:0;
  z-index:999;
}

.cta-btn li a{
  display:block;
  font-size:15px;
  color:#fff;
  line-height:17px;
  text-transform:uppercase;
  background:#00bfec;
  padding:15px 20px;
}

.cta-btn li:last-child a{
  background:#012e43;
}

.page-id-39 .entry-header{
    display:none;
}

.bg-color{
	background:#f7f7f7;
}

.inner_list{
	list-style:disc;
	margin-left:20px;
}

img{
	max-width:100%;
}


/* Media Queries */

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}




@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
}


/* ---------------------------------------- Starts Training and Internship ----------------------------------------------- */

.staffing .textBigg {
    font-size: 100px;
    margin: 0 15px;
    width: 100%;
}

/* ---------------------------------------- Ends Training and Internship ----------------------------------------------- */





}
@media (min-width: 1280px) and (max-width: 1312px) {
  #cssmenu > ul > li > a {
    padding: 17px 7px;
    font-size: 14px !important;
    letter-spacing: 0;
}

}
@media (min-width: 1199px) and (max-width: 1280px) {


}
@media (min-width: 992px) and (max-width: 1199px) {
.font65 {
    font-size: 40px;
}
.font120 {
    font-size: 50px !important;
}
.font80 {
    font-size: 40px;
}
.qut-btn {
      padding: 10px 20px;
    font-size: 14px;
}
    .logo {
        position: absolute;
        top: 0;
        left: 100px;
        width: 100px;
        float: none;
    }
    header {
        padding: 0;
        position: absolute;
    }
.font50 {
    font-size: 24px;
}


}

@media (min-width: 768px) and (max-width: 991px) {

.font65 {
    font-size: 40px;
}
.font120 {
    font-size: 50px !important;
}
.font80 {
    font-size: 40px;
}
.qut-btn {
      padding: 10px 20px;
    font-size: 14px;
}
     .logo {
        position: absolute;
        top: 15px;
        left: 100px;
        width: 100px;
        float: none;
    }
        .breadcurmbs {
        background: #022e43 !important;
    }
    header {
        padding: 0;
        position: absolute;
    }
.font50 {
    font-size: 24px;
}




.maxiText h2 {
    font-size: 50px;
}

.wrapService {
    margin: 0 0 30px 0;
}
.bottomlogo {
  text-align: center;
}
.bottomMenus ul {
      margin: 20px 0;
}

.bottomMenus ul li {
    margin: 0 7px;
}
.bottomMenus ul li a {
    font-size: 14px;
}
.site-footer__social {
    justify-content: center;
}
/* ---------------------------------------- Starts Breadcurmbs ----------------------------------------------- */

.bgGradient {
    background: transparent;
}
.breadcrumbInner ul.page-list {
    text-align: center;
}

.bradcrumbs {
    padding: 130px 0 20px 0;
}
.bradcrumbs .container {
    border-top: 1px solid #3c3c3c;
}

    
x

/* ---------------------------------------- Ends Breadcurmbs ----------------------------------------------- */


.customSidebox {
    position: absolute;
    width: 70px;
    height: 250px;
    top: 0;
    left: 0;
    margin: 0 0 0 25px;
}

.rightContent h2 {
    margin: 0 0 0 60px;
}

.locationThumbnail {
    display: block;
}
.locationThumbnail li {
   width: 43%;
    display: inline-block;
    float: left;
    margin: 15px;
}




}














@media (max-width: 767px){
.font65 {
    font-size: 40px;
}
.font120 {
    font-size: 50px !important;
}
.font80 {
    font-size: 40px;
}
.qut-btn {
      padding: 10px 20px;
    font-size: 14px;
}
    .logo {
        position: relative;
        top: 0;
        left: 0;
        width: 130px;
        float: none;
    }
    .breadcurmbs {
      background:#f3f6ff !important;
    }
    header {
        padding: 0;
        position: absolute;
    }
.font50 {
    font-size: 24px;
}

.section-head {
        margin-bottom: 20px !important;
}
.customSidebox {
    position: absolute;
    width: 70px;
    height: 250px;
    top: 0;
    left: 0;
    margin: 0 0 0 25px;
}
.height470 {
    height: auto;
}
.rightContent h2 {
    margin: 0;
}
.aboutSection .container-fluid .row .col-lg-6 {
    padding-right: 15px;
    padding-left: 15px;
}
.customSidebox {
  display: none;
}

.rightContent {
    border-bottom: 1px solid #6c6767;
}


.whatsapp {
    bottom:85px;
    right: 0;
}
.whatsapp img {
    width: 50px;
}
.headerWithSlide {    padding: 100px 0 0 0;min-height: 515px;background: #f3f6ff;}
.leftMainText {text-align: center;}
.leftMainText h3 {
    margin: 20px 0 25px 0;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0;
    text-transform: unset;
}
.leftMainText h4 {
    font-size: 30px;
    line-height: 40px;
}

.leftMainText .paraGraphMain {
    font-size: 14px;}
.leftMainText .paraGraphMain i {
    margin: 0 10px 0 0;
}

.innerCreativeText h3 {
    font-size: 55px;
}

.wrapTestimonial {
    padding: 15px;
}

.height65 {
    height: 50px;
}




.aboutSection {
    padding-bottom: 0;
}

.wrapBoxxServices {
    margin-top: 15px;
}



.letterSpacing2 {
    letter-spacing: 2px;
}

.font16 {
    font-size: 14px;
}
.pb100 {
    padding-bottom: 40px !important;
}
.pt100 {
    padding-top: 40px !important;
}
.theme-btn-one {
    padding: 14px 24px;
    font-size: 13px;
  }
.lineHeight55 {
    line-height: 34px;
}
.font45, .font40 {
    font-size: 24px;
}

.maxiText h2 {
    font-size: 50px;
}

.bottomlogo {
  text-align: center;
}
.bottomMenus ul {
      margin:0 0 20px 0 !important;
      display: block;
}

.bottomMenus ul li {
           margin: 10px 0;
}
.bottomMenus ul li a {
    font-size: 16px;
}
.site-footer__social {
    justify-content: center;
}

.benifits {
    padding: 138px 0 40px 0;
}
.wrapBoxx h2 {
    margin: 20px 0 10px 0;
    font-size: 17px;
}


.mostTrusted {
    padding: 60px 0;
  }
.wrapService {
    margin: 0 0 30px 0;
}


.weCareFor {
    padding: 50px 0;
}







/* ---------------------------------------- Starts Breadcurmbs ----------------------------------------------- */

.bgGradient {
    background: transparent;
}
.breadcrumbInner ul.page-list {
    text-align: center;
}

.bradcrumbs {
    padding: 130px 0 20px 0;
}
.bradcrumbs .container {
    border-top: 1px solid #3c3c3c;
}

    .breadcurmbs {
    padding: 120px 0 30px 0;
    background: url(../images/footer_bg.jpg) no-repeat;
    background-attachment: fixed;
    width: 100%;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
}


/* ---------------------------------------- Ends Breadcurmbs ----------------------------------------------- */





}




@media (min-width: 480px) and (max-width: 768px) {


.locationThumbnail {
    display: block;
}
.locationThumbnail li {
   width: 43%;
    display: inline-block;
    float: left;
    margin: 15px;
}






}





@media (min-width: 150px) and (max-width: 479px) {

.locationThumbnail {
    display: block;
}
.locationThumbnail li {
   margin-top: 15px;
}
}


@media screen and (max-width:767px){
    #cssmenu{
        width:100%;
        background:#fff;
        box-shadow:0 4px 6px rgba(0,0,0,.1);
        padding:12px 0;
    }
	
	.app-btn .service-app{
		width:150px;
	}
	
	.socialBoxx{
		padding:30px 0;
	}

    #back-button{
        right:20px;
        bottom:35px;
    }

    .thankyou-sec img{
        width:220px;
    }
	
	.mostTrusted{
		padding:40px 0;
	}

}

