/********** Template CSS **********/
:root {
/*    --primary: #EB1616;
    --secondary: #191C24;
    --light: #ffffff;
    --dark: #000000;*/
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
  	border:none !important;
  	box-shadow:none !important;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 38px;
    height: 38px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    color: var(--light);
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.shadow-sm .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--light);
    }
}

@media (min-width: 992px) {
    .navbar.shadow-sm .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 10;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(0, 0, 0, .45);*/
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    /*#header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }*/
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Service ***/
.service-item .btn {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 50px;
    height: 50px;
    color: var(--primary);
    background: var(--dark);
    opacity: 0;
}

.service-item:hover .btn {
    right: 0;
    bottom: 0;
    opacity: 1;
}


/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .85);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 3px;
    color: var(--primary);
    background: var(--dark);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--secondary);
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
}

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


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 1.5rem;
    font-size: 15px;
    background: var(--dark);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.background-color-container
{
         
         background-color: #00509f;

  		 
}
.background-color-container2
{
  background-color:#0c153a;
 /*   background: radial-gradient(117.67% 99.18% at 50% .82%,#1F0425 0,#6F0B51 50.39%,#6F0B51 100%);*/
/*background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);*/
}

.card-image-size
{

height: 200px;
margin-top: 40px;
background-size: 100% 100%;   
}
.visa-card
{
    /*background: radial-gradient(117.67% 99.18% at 50% .82%,#1F0425 0,#6F0B51 50.39%,#6F0B51 100%);*/
    background-color:#0c153a;
    border-radius: 10px;
}

@media (max-width: 575.98px) { 
  
   .space-package{
  margin-left:71px;
  }


.rotate-img{
    height: 30px;
} 
.icon-size
{
    font-size:50px;
    padding-right: 15px;
}
.card-image-size
{
height: 200px;
background-size: 100% 100%;   
text-align: center;
align-items: center;
}


 }
 @media (max-width: 991.98px) { 
    .space-package{
  margin-left:71px;
  }

    .rotate-img{
    height: 50px;
}

    .icon-size
{
    font-size:50px;
    padding-right: 15px;
}
.card-image-size
{
background-size: 100% 100%;   
text-align: center;
}

  }
@media (max-width: 1199.98px) { 
	 .space-package{
	  margin-left:71px;
  	}

    .rotate-img{
    height: 60px;
}

    .icon-size
{
    font-size:50px;

}
.card-image-size
{
background-size: 100% 100%;   
text-align: center;
}
 }

@media (min-width: 1200px) { 
  .space-package{
  margin-left:71px;
  }
.rotate-img{
    height: 60px;
}
.icon-size
{
    font-size:50px;

}
.card-image-size
{

background-size: 100% 100%;   
text-align: center;
}

 }

 .carousel-bg-image
 {
    width: 100%;
    height: 500px;
    background-size: 100% 100%;
 }

 .rotate {
  animation: rotation 8s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.bg-div
{
    position: relative;
}
.arrows {
    width: 60px;
    height: 72px;
    position: absolute;
    left: 49%;
    bottom: 20px;
    top: 88%;
    z-index: 99;
}

.arrows path {
    stroke: #FFF;
    fill: transparent;
    stroke-width: 5px;  
    animation: arrow 2s infinite;
    -webkit-animation: arrow 2s infinite; 
}

@keyframes arrow
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

@-webkit-keyframes arrow 
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

.arrows path.a1 {
    animation-delay:-1s;
    -webkit-animation-delay:-1s; 
}

.arrows path.a2 {
    animation-delay:-0.5s;
    -webkit-animation-delay:-0.5s; 
}

.arrows path.a3 {   
    animation-delay:0s;
    -webkit-animation-delay:0s;
}
.text-design-reuse
{

font-size: 18px;
background: #F1C936; 
  background: -webkit-linear-gradient(to right, #F1C936, #F1C936); 
  background: linear-gradient(to right, #F1C936, #875a05);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.btn-bg-color
{
    background-color:#000066;
    color: white;
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
  	border:none !important;
  	box-shadow:none !important;
    
}
.accordion-button:not(.collapsed)
{
    background-color: #C7A836;
    color: white;
    box-shadow: none !important;
    border-color: #540942;
}
.bg-card-design
{
    width: 16rem;
    background-color: #0e2429;
    border-radius: 10px;

}
.small-box-design
{
    height:60px;width: 70px;background-color: #2C3837;
}
.bg-card-design:hover{
    border-color: #fff;
    box-shadow: 0px 0px 8px 0 #fff;
    transition: 0.3s;
    background-color: #000000;
}
.why-choose-design
{
    border-radius: 10px;
    /*background-color: #2C3837;*/
    border-color: #fff;
    box-shadow: 0px 0px 8px 0 #f2c937 !important;
    transition: 0.3s;
}
.text-small-size
{
    font-size: 14px;
    font-weight: none !important;
}
.txt-color-design
{
    background: #F1C936; 
  background: -webkit-linear-gradient(to right, #F1C936, #F1C936); 
  background: linear-gradient(to right, #F1C936, #875a05);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bg-reuse-color
{
    background-color:#000066;
}
.card-img-resize
{
    height: 300px;
    background-size: 100% 100%;
}
.text-design-reuse2
{

 background: #F1C936; 
  background: -webkit-linear-gradient(to right, #F1C936, #F1C936); 
  background: linear-gradient(to right, #F1C936, #875a05);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.red-color
{
  color:#C81313;
}
.bg-color-1
{
    background-color:#0c153a;
}
.text-justify
{
    text-align: justify;
}