
/* default */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-size: 62.5%;
    box-sizing: inherit;
font-family: 'Cairo', sans-serif;
}


/* typoraphy */
.header-2
{
    font-size: 4rem;
    color: #2192DD;
    margin: 2rem 0 ;
}


.text
{
    color: #494949;
    font-size: 2rem;
    margin: 1rem 0;
}

/* default Color 
#2192DD
*/
/* navbar */

.start-header {
	opacity: 1;
	transform: translateY(0);
	padding: 10px 0;
	box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.start-header.scroll-on {
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
	padding: 5px 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.start-header.scroll-on .navbar-brand img{
	height: 28px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navigation-wrap{
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar{
	padding: 0;
}
.navbar-brand
{
  position: relative;
    right: 100%;   
}

.navbar-brand img{
	height: 52px;
	width: auto;
	display: block;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
   
}
.navbar-toggler {
	float: right;
	border: none;
	padding-right: 0;
}
.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none;
}
.navbar-light .navbar-toggler-icon {
	width: 24px;
	height: 17px;
	background-image: none;
	position: relative;
	border-bottom: 1px solid #000;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after, 
.navbar-light .navbar-toggler-icon:before{
	width: 24px;
	position: absolute;
	height: 1px;
	background-color: #000;
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after{
	top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
}
.nav-link{
	color: #212121 !important;
	font-weight: 500;
    transition: all 200ms linear;
}
.nav-item:hover .nav-link{
	color: #2192DD

 !important;
}
.nav-item.active .nav-link{
	color: #777 !important;
}
.nav-link {
	position: relative;
	padding: 5px 0 !important;
	display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
}
.nav-item:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 90%;
    margin: unset;
    height: 2px;
    content: '';
    background-color: #2192DD
;
    opacity: 0;
    transition: all 200ms linear;
    text-align: center;
}
.nav-item:hover:after{
	bottom: 0;
	opacity: 1;
}
.nav-item.active:hover:after{
	opacity: 0;
}
.nav-item{
	position: relative;
    transition: all 200ms linear;
    padding: 0 2rem;
}

/* End Navbar */


/* default Buttons */

.btn-home 
{
  background-color: white;
    font-size: 2rem;
    color: #2192DD !important;
    padding: 5px 25px;
    text-align: center;
    border: 1px solid #2192DD;
    transition: all 0.2s ease-out;
}

.btn-home:hover
{
    background-color: #2192DD;
    color: white !important;
            border-radius: 10px;
}

.btn-default
{
     background-color: #2192DD;
    font-size: 2rem;
    color: white!important;
    padding: 5px 25px;
    text-align: center;
    border: 1px solid #2192DD;
    transition: all 0.2s ease-out;

}
.btn-default:hover
{
    background-color: white;
    color: #2192DD !important;
            border-radius: 10px;
}

/* Owl Carousel */
.owl-carousel .owl-item {
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
    opacity: .2;
}

.owl-carousel .owl-item.active {
    opacity: 1;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -10px;
    opacity: 1;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-prev:focus,
.owl-carousel .owl-nav .owl-prev:active,
.owl-carousel .owl-nav .owl-next:hover,
.owl-carousel .owl-nav .owl-next:focus,
.owl-carousel .owl-nav .owl-next:active {
    outline: none;
    opacity: 1;
}

.owl-carousel .owl-nav .owl-prev i:before,
.owl-carousel .owl-nav .owl-next i:before {
    font-size: 40px;
    color: white;
}

.owl-carousel .owl-nav .owl-prev {
    left: 30px !important;
}

.owl-carousel .owl-nav .owl-next {
    right: 30px !important;
}

.owl-carousel .owl-dots {
    text-align: center;
}

.owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    background: none;
    background: #fff;
    opacity: .5;
}

.owl-carousel .owl-dots .owl-dot.active {
    opacity: 1;
}

.owl-carousel.centernonloop .owl-dots,
.owl-carousel.centernonloop2 .owl-dots {
    margin-top: 50px;
}

.owl-carousel.centernonloop .owl-dots.disabled,
.owl-carousel.centernonloop2 .owl-dots.disabled {
    display: block !important;
}

.owl-carousel.centernonloop .owl-dots .owl-dot,
.owl-carousel.centernonloop2 .owl-dots .owl-dot {
    display: inline-block;
}

.owl-carousel.centernonloop .owl-dots .owl-dot > span,
.owl-carousel.centernonloop2 .owl-dots .owl-dot > span {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #ccc;
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
}



.owl-carousel.centernonloop .owl-dots .owl-dot:active,
.owl-carousel.centernonloop .owl-dots .owl-dot:focus,
.owl-carousel.centernonloop2 .owl-dots .owl-dot:active,
.owl-carousel.centernonloop2 .owl-dots .owl-dot:focus {
    outline: none;
}

.owl-carousel.home-slider,
 {
    z-index: 1;
    position: relative;
}

.owl-carousel.home-slider .btn-link,
 {
    color: #fff;
}

.owl-carousel.home-slider .owl-nav,
 {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.owl-carousel.home-slider .owl-nav button,
 {
    color: #fff;
}

.owl-carousel.home-slider:focus .owl-nav,
.owl-carousel.home-slider:hover .owl-nav{
    opacity: 1;
    visibility: visible;
}

.owl-carousel.home-slider .slider-item,
 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: calc(100vh);
    min-height: 700px;
    position: relative;
}

.owl-carousel.home-slider .slider-item:before,
 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    content: "";
}

.owl-carousel.home-slider .slider-item .slider-text,
 {
    color: #fff;
    height: calc(100vh);
    min-height: 700px;
}

.owl-carousel.home-slider .slider-item .slider-text .child-name,
 {
    font-size: 40px;
    color: #fff;
}

.owl-carousel.home-slider .slider-item .slider-text h1,
.owl-carousel.home-slider-loop-false .slider-item .slider-text h1 {
    font-size: 6rem;
    color: #fff;
    line-height: 1.2;
    font-weight: 800 !important;
    text-transform: uppercase;
}

@media (max-width: 991px) {

    .owl-carousel.home-slider .slider-item .slider-text h1,
    .owl-carousel.home-slider-loop-false .slider-item .slider-text h1 {
        font-size: 40px;
    }
}

.owl-carousel.home-slider .slider-item .slider-text p,
.owl-carousel.home-slider-loop-false .slider-item .slider-text p {
    font-size: 3rem;
    line-height: 1.5;
    font-weight: 300;
    color: white;
}

.owl-carousel.home-slider .slider-item .slider-text a,
.owl-carousel.home-slider-loop-false .slider-item .slider-text a {
    color: #fff;
    text-decoration: underline;
}

.owl-carousel.home-slider .slider-item .slider-text .btn,
.owl-carousel.home-slider-loop-false .slider-item .slider-text .btn {
    text-decoration: none;
}

.owl-carousel.home-slider.inner-page .slider-item,
.owl-carousel.home-slider-loop-false.inner-page .slider-item {
    height: calc(50vh - 117px);
    min-height: 550px;
}

.owl-carousel.home-slider.inner-page .slider-item .slider-text,
.owl-carousel.home-slider-loop-false.inner-page .slider-item .slider-text {
    color: #fff;
    height: calc(50vh - 117px);
    min-height: 550px;
}

.owl-carousel.home-slider .owl-dots,
.owl-carousel.home-slider-loop-false .owl-dots {
    position: absolute;
    bottom: 100px;
    width: 100%;
}

.owl-carousel.home-slider .owl-dots .owl-dot,
.owl-carousel.home-slider-loop-false .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    outline: none !important;
    position: relative;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.owl-carousel.home-slider .owl-dots .owl-dot.active,
.owl-carousel.home-slider-loop-false .owl-dots .owl-dot.active {
    border: 2px solid white;
}

.owl-carousel.home-slider .owl-dots .owl-dot.active span,
.owl-carousel.home-slider-loop-false .owl-dots .owl-dot.active span {
    background: white;
}

.owl-carousel.major-caousel .owl-stage-outer {
    padding-top: 30px;
    padding-bottom: 30px;
}

.owl-carousel.major-caousel .owl-nav .owl-prev,
.owl-carousel.major-caousel .owl-nav .owl-next {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    color: #495057;
}

.owl-carousel.major-caousel .owl-nav .owl-prev:hover,
.owl-carousel.major-caousel .owl-nav .owl-prev:focus,
.owl-carousel.major-caousel .owl-nav .owl-next:hover,
.owl-carousel.major-caousel .owl-nav .owl-next:focus {
    color: #2192DD;
    outline: none;
}

.owl-carousel.major-caousel .owl-nav .owl-prev.disabled,
.owl-carousel.major-caousel .owl-nav .owl-next.disabled {
    color: #dee2e6;
}

.owl-carousel.major-caousel .owl-nav .owl-prev {
    left: -60px !important;
}

.owl-carousel.major-caousel .owl-nav .owl-next {
    right: -60px !important;
}

.owl-carousel.major-caousel .owl-dots {
    bottom: -30px !important;
    position: relative;
}

.slider-item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: calc(100vh);
    min-height: 700px;
    position: relative;
}

.slider-item:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    content: " ";
}

.slider-item .slider-text {
    color: #fff;
    height: calc(100vh);
    min-height: 700px;
}

.slider-item .slider-text .child-name {
    font-size: 40px;
    color: #fff;
}

.slider-item .slider-text h1 {
    font-size: 5rem;
    color: #fff;
    line-height: 1.2;
    font-weight: 800 !important;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .slider-item .slider-text h1 {
        font-size: 40px;
    }
}

.slider-item .slider-text p {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;
    color: white;
}

.slider-item .slider-text a {
    color: #fff;
    text-decoration: underline;
}

.slider-item .slider-text .btn {
    text-decoration: none;
}

.slider-wrap {
    position: relative;
}

.slider-wrap:after {
    content: "";
    width: 100%;
    height: 210px;
    background: #2192DD;
    z-index: 1;
    bottom: -210px;
    background-color: #2192DD;
    left: 0;
    position: absolute;
    -webkit-transform: skewY(-6deg);
    -ms-transform: skewY(-6deg);
    transform: skewY(-6deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}

.slider-wrap.no-slanted:after {
    display: none;
}

.owl-custom-nav {
    float: right;
    position: relative;
    z-index: 10;
}

.owl-custom-nav .owl-custom-prev,
.owl-custom-nav .owl-custom-next {
    padding: 10px;
    font-size: 30px;
    background: #ccc;
    line-height: 0;
    width: 60px;
    text-align: center;
    display: inline-block;
}

.section {
    padding: 15em 0;
    position: relative;
    z-index: 2;
}

.section-subscribe {
    padding: 2em 0;
}

.quote-content {
    max-width: 350px;
    font-size: 16px;
    color: #000;
    font-style: italic;
    position: relative;
    display: table;
}

@media (max-width: 991px) {
    .quote-content {
        max-width: 100%;
    }
}

.quote-content .text,
.quote-content .quote {
    display: table-cell;
    vertical-align: top;
}

.quote-content .quote {
    font-size: 100px;
    line-height: .5;
    z-index: 0;
}

.quote-content .text {
    padding-left: 40px;
    line-height: 2;
}

.quote-content.float-right {
    position: relative;
    margin-left: 2em;
    margin-right: -10em;
}

@media (max-width: 991px) {
    .quote-content.float-right {
        margin-left: 0em;
        margin-right: 0em;
        float: none !important;
    }
}

.quote-content.float-left {
    position: relative;
    margin-right: 2em;
    margin-left: -10em;
}

@media (max-width: 991px) {
    .quote-content.float-left {
        margin-right: 0em;
        margin-left: 0em;
        float: none !important;
    }
}
 /* end of carousel */

/* about section */

.about-img
{
    border-radius: 20px;
}

.inner-box
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-box-icon
{
    width: 300px;
    height: auto;
    border-radius: 50%;
    border: 1px solid #2192DD;
}

.inner-box-icon img
{
        padding: 10px;

}

.inner-box-text .header-3
{
    text-align: justify;
    padding: 0 2rem;
    font-weight: 700;
    color: #2192DD
}
.inner-box-text .text-2
{
    font-size: 1.5rem;
    font-weight: 700;
}


/* Quote */

.quote {
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: darken;
    min-height: 450px;
    width: 100%;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.q-2
{
        min-height: 250px;

}

.quote .header-4
{
    color: white;
    font-size: 3.5rem;
}

.site-footer {
    position: relative;
    z-index: 5;
    padding: 5em 0;
}

.site-footer:before {
    content: "";
    width: 100%;
    height: 240px;
    z-index: -1;
    top: 0px;
    background-color: #fff;
    left: 0;
    position: absolute;
    -webkit-transform: skewY(-6deg);
    -ms-transform: skewY(-6deg);
    transform: skewY(-6deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}

.site-footer p:last-child {
    margin-bottom: 0;
}

.site-footer h3 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
    color: #2192DD;
}

.site-footer .footer-link li {
    line-height: 1.5;
    margin-bottom: 15px;
}

.site-footer hr {
    width: 100%;
}

.site-footer p
{
    font-size: 1.7rem;
    font-weight: 700;
}

.footer-social a {
    line-height: 0;
    border-radius: 50%;
    margin: 0 5px 5px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 4rem;
    height: 4rem;
    text-align: center;
    display: inline-block;
    color: #2192DD;
    font-size: 2rem;
    transition: all 0.3s ease-in;
}

.footer-link
{
    font-size: 1.5rem;
    font-weight: 700;
}


.footer-social a:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}


.contacts
{
        border-bottom: 1px solid #ccc;   
}
.contact
{
    font-size: 1.7rem;

}

.form-control,
label
{
    font-size: 2rem !important;
    color:#2192DD;
    text-align: right;
    width: 100%;
}


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size: 2rem;
}
::-moz-placeholder { /* Firefox 19+ */
 font-size: 2rem;}
:-ms-input-placeholder { /* IE 10+ */
 font-size: 2rem;}
:-moz-placeholder { /* Firefox 18- */
 font-size: 2rem;}


.form-control:focus
{
    border-color: #2192DD;
    outline: 0;
    box-shadow: none !important;
    transition: all 0.2s ease-in;
}

.contact_icon i
{ 
    font-size: 2rem;
    border: 1px solid #2192DD;
    background-color: #2192DD;
    color: white;
    padding: 1rem;
}



/* about */

.about_p , .s-2

{
border-bottom: 1px solid #ccc;
 margin-bottom: 2rem 0 ;

}



.footer_2
{
    width: auto;
    margin: 0;
    padding: 0;
}

.t-3
{
width: 80%;
    text-align: center;
    margin: 1rem auto;
}

#aniimated-thumbnials a
{
    height: 200px ;
    flex: 0 0 25% ;
    padding: 2rem;
    margin: 1rem 0;
    transition: all 0.2s ease-in;
}


.footer_2::before
{
    height: 0;
}


.lg-outer {
    direction: ltr !important;
}


.nonloop-block-13 .owl-nav {
  display: none;
    direction: ltr!important;

}

.nonloop-block-13 .owl-dots {
  margin-top: 30px;
  width: 100%;
  text-align: center; }
  .nonloop-block-13 .owl-dots .owl-dot {
    display: inline-block;
    margin: 5px; }
    .nonloop-block-13 .owl-dots .owl-dot span {
      display: inline-block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #e6e6e6; }
    .nonloop-block-13 .owl-dots .owl-dot.active span {
      background-color: #2192DD; }

.nonloop-block-13 .owl-stage {
  padding-top: 3rem;
  padding-bottom: 3rem; }

.nonloop-block-13 .owl-item {
  position: relative;
  z-index: 2;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.1s all cubic-bezier(0.17, 0.67, 0.86, 0.2);
  -o-transition: 0.1s all cubic-bezier(0.17, 0.67, 0.86, 0.2);
  transition: 0.1s all cubic-bezier(0.17, 0.67, 0.86, 0.2); }
  .nonloop-block-13 .owl-item:hover {
    z-index: 3;
    -webkit-transform: scale(1.07);
    -ms-transform: scale(1.07);
    transform: scale(1.07); }

.work-thumb {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-transition: .2s all ease-in-out;
  -o-transition: .2s all ease-in-out;
  transition: .2s all ease-in-out; 
    overflow: hidden;
    height: auto;
}
  .work-thumb:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: rgba(33, 146, 221, 0.6);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
  .work-thumb .work-text {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    z-index: 2;
      font-size: 2rem;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    margin-top: 20px; }
    .work-thumb .work-text h3 {
      font-size: 2.4rem;
      font-weight: 900;
      color: #fff;
      margin: 0;
      padding: 0; }
    .work-thumb .work-text .category {
      font-size: 1.8rem;
      color: rgba(255, 255, 255, 0.7);
      text-transform: uppercase; }
  .work-thumb:hover {
    z-index: 3;
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03); }
    .work-thumb:hover:after {
      opacity: .9;
      visibility: visible; }
    .work-thumb:hover .work-text {
      -webkit-transition-delay: .2s;
      -o-transition-delay: .2s;
      transition-delay: .2s;
      opacity: 1;
      visibility: visible;
      margin-top: 0px; }

.services .inner-box-icon img
{
    padding: 20px;
}

/* default media Query */

@media screen and (max-width: 767px)
{
    
    html,body
    {
        font-size: 40%;
    }
    .nav-link
    {
        font-size: 2rem;
    }
    .navbar-brand {
        right: 0;
}
    .inner-box-icon
    {
        width: auto;
    }
    .inner-box-text .header-3
    {
        font-size: 2.2rem;
    }
    .quote-description h4
    {
        font-size: 2.5rem;
    }
    .text-2
    {
        font-size: 2rem;
    }
    .inner-box-text .text-2 {
font-size: 2rem;
        font-weight: 700;
    padding: 0 1rem;
}
    #aniimated-thumbnials a {
        flex:0 0 50% !important;
        padding: 0 1rem !important;
    }
    input,label
    {
        font-size: 2.5rem;
    }
    
   

}
