@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* ===================================
    02. CSS color variable
====================================== */

body {
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
    font-size: 15px;
    line-height: 1.8;
    font-family: "Outfit", sans-serif;
    
    overflow-x: hidden;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
a:focus {
    text-decoration: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
::-webkit-scrollbar {
    background-color: #ccc;
    width: 8px;
    height: 4px;
}
::-webkit-scrollbar-thumb {
    background-color: #426C94;
}
a:focus,
a:hover {
    text-decoration: none;
}
a,
i,
span {
    display: inline-block;
}
ul {
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6{
    font-weight: 600;
}
a {
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    
    text-decoration: none;
}
::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}
::-moz-placeholder {
    color: inherit;
    opacity: 1;
}
:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}
::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}
::placeholder {
    color: inherit;
    opacity: 1;
}
@media (min-width: 1400px) {
    .container-1470 {
        max-width: 1470px;
    }
}
.main-btn {
    padding: 22px 45px;
    background-color: #f9a946;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    position: relative;
    z-index: 1;
    border: none;
}
.main-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    background-color: #6a5d75;
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
    visibility: hidden;
}
.main-btn:hover {
    color: #fff;
}
.main-btn:hover::before {
    width: 100%;
    opacity: 1;
    visibility: visible;
}
.main-btn i {
    margin-right: 5px;
    position: relative;
    top: 2px;
}
.main-btn.main-btn-2 {
    background-color: #b7c3d6;
}
.main-btn.main-btn-3 {
    background-color: #fff;
    color: #0c59db;
}
.main-btn.main-btn-3:hover {
    color: #fff;
}
.main-btn.icon-right i {
    margin-right: 0;
    margin-left: 5px;
}


/*Header*/
header{
/*	background-color: #426c94;*/
/*    background: rgba(66, 108, 148, 0.6);*/
/*    position: absolute;*/
    top: 0;
    z-index: 2;
    width: 100%;
}

.header-navigation{
    border-bottom: 1px solid #f1f1f1;
}
.header-navigation .primary-menu li {
    display: inline-block;
    line-height: 60px;
    position: relative;
}
.header-navigation .primary-menu li a {
    font-size: 18px;
    color: #222;
    padding: 10px;    
    text-transform: uppercase;
    margin: 0 10px;
    letter-spacing: 1px;
    font-weight: 500;
    font-style: normal;
}
.header-navigation .primary-menu li a.btn-secondary {	
    background-color: #F14D3A;
    border-color: #F14D3A;
	border: none;
	padding: 10px 16px;
	margin: 17px 10px;
    color: #fff;
    
    transition: 0.3s ease all;
}
.header-navigation .primary-menu li a.btn-secondary:hover{
	 background-color: #5983ac;
	 color: #fff;
     transition: 0.3s ease all;
}

@media (max-width: 1199px) {
    .header-navigation .primary-menu li a {
        padding: 8px;
        margin: 0 5px;
        font-size: 15px;
    }
}
.header-navigation .primary-menu li a:hover {
    color: #F14D3A;
}

.header-navigation .site-logo img {
    width: 80%;
    padding: 10px 0px ;
}

@media (min-width: 992px) {
    .header-navigation .header-extra {
        margin-left: 20px;
        display: none !important;
    }
}
.header-navigation .nav-toggler,
.header-navigation .offcanvas-icon {
    position: relative;
    width: 25px;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
    cursor: pointer;
}
.header-navigation .nav-toggler span,
.header-navigation .offcanvas-icon span {
    background-color: #0c59db;
    height: 2px;
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    position: relative;
}
.header-navigation .nav-toggler {
    display: none;
}
.header-navigation .nav-close {
    display: none;
    font-size: 35px;
    color: #d45840;
    position: absolute;
    right: 20px;
    top: 20px;
    line-height: 1;
}

.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 30px;
    display: none;
    z-index: 1040;
}
.back-to-top a {
    color: #555;
    background: #99D2DB;
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 35px;
    font-size: 16px;
}
.call_Icon{
    position: fixed;
    right: 15px;
    bottom: 30px;
    display: block;
    z-index: 999999;
    width: 60px;
    height: 60px;
box-shadow: -1px 2px 10px #ccc;
    background-color: #5DBD76;
    text-align: center;
    border-radius: 50%;
    top: 50%;
    }

.call_Icon i{
    color: #fff;
    font-size: 28px;
    line-height: 60px;
}
.header-one .heeader-gap {
    margin: 0 50px;
}

/*video section*/
.video_section{
/*	padding: 70px 0px;*/
}

.video_section video{
	border: 4px solid #426c94;
    border-radius: 5px;
}


/*begin your journey*/
.journey_section{
    padding: 50px 0px;
}
.journey_section h1{
    text-align: center;
    margin-bottom: 50px;
}
.journey_section p{
    font-size: 21px;
    font-weight: 300;
}
.journey_section  form{
    border-radius: 5px;
    background-color: #f1f1f1; 
    padding: 40px 20px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    border:1px solid #ccc;
}
.journey_section  form .btn-warning{
	background-color: #F14D3A;
    border-color: #F14D3A;
    color: #fff;
}
.journey_section  form .form-control{
    height: calc(1.5em + .75rem + 15px)!important;
    background-color: rgba(255, 255, 255, 0.8);
}


/*our programs section*/
.program_section{
    padding: 50px 0px;
}
.program_section h1{
    text-align: center;
    margin-bottom: 40px;
}
.program_section img{
    position: relative;
    border-radius: 5px;
    box-shadow: 0px 2px 23px #666;
}

.program_section .inner_box{
position: absolute;
top: 0;
left: 0;
width: 90%;
height: 100%;
color: #fff;

margin: 0px 15px;
    padding: 70px 0px 0px;
    
    border-radius: 5px;
}
.program_section .inner_box.grid-1{
/*    background-color: #526eb1;*/
background-color: rgba(241, 219, 74, 0.85);
}
.program_section .inner_box.grid-2{
/*    background-color: #76bb7d;*/
background-color: rgba(82, 110, 177, 0.85);
}
.program_section .inner_box.grid-3{
/*    background-color: #f1db4a;*/
background-color: rgba(118, 187, 125, 0.85);
}
.program_section .inner_box.grid-4{
/*    background-color: #de5c36;*/
background-color: rgba(222, 92, 54, 0.85);
}

.program_section .inner_box p{
    font-size: 20px;
}



/*differentiators section */
.diff_section{
/*	background: #eafafd;*/
/*background: #fff9e9;*/
background-color:#f1f1f1;
/*background: #446a97;*/
	padding: 50px 0px;
	
	border-radius: 6px;
	overflow: hidden;
	position: relative;

}


.diff_section h1{
	margin-bottom: 40px;
}
.diff_section .icon_section{
	font-size: 18px;
	color: #333;
    
}
.diff_section .icon_section .icon_box{
    background-color: #fff;
    border-radius: 5px;
    height: 200px;
    align-content: center;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.diff_section .icon_section .icon_box span{
    color: #506E78;
}
.diff_section .icon_section img{
	width: 90px;
	margin-bottom: 15px;
    
}
.diff_section a.btn{
	color: #fff;
}

.diff_section .icon_section img.edupath{
/*    background-color: #f1db4a;*/
    
    border-radius: 5px;
}
.diff_section .icon_section img.unqpd{
/*    background-color: #76bb7d;*/
    
    border-radius: 5px;
}



/*at a glance section*/
.usp_section{
	padding: 0px 0px 50px;
}
.usp_section h1{
    
    margin-bottom: 50px;
}

.usp_section .nav-pills {
    display:none;
}
.usp_section .nav-pills a{
    color: #333;
    font-size: 36px;
    padding: 67px 40px;
    border-radius: 0px;
    position: relative;
    font-weight: 500;
}
.usp_section .nav-pills a p{
    font-size: 18px;
    font-weight: 300;
    color: #f4f4f4;
    line-height: 25px;
}
.usp_section .nav-pills a i{
    position: absolute;
    font-size: 50px;
    top: 75px;
    right: 40px;
    opacity: 0;
    transition: 0.7s ease all;
    font-weight: 400;
    color: #333;
}
.usp_section .nav-pills a:hover i{
    
    right: 25px;
    opacity: 1;
}
.usp_section .nav-pills .nav-link.active i, 
.usp_section .nav-pills .show>.nav-link i{
right: 25px;
opacity: 1;

}

.usp_section .nav-pills a:nth-child(1){
/*    background-color: #F14D3A;*/
/*background-color: #f96e5e;*/
/*background-color: #99D2DB;*/
/*background: #c3411e;*/
/*background-color: #fff;*/
/*color: #F14D3A!important;*/
}
.usp_section .nav-pills a:nth-child(2){
/*    background-color: #99D2DB;*/
/*background-color: #f96e5e;*/
/*background: #267355;*/
/*background-color: #fff;*/
/*color: #99D2DB;*/
}
.usp_section .nav-pills a:nth-child(3){
/*    background-color: #426C94;*/
/*background-color: #5983ac;*/
/*background: #273879;*/
/*background-color: #fff;*/
/*color: #426C94;*/
}
.usp_section .nav-pills a:nth-child(4){
/*    background-color: #FFCF51;*/
/*background-color: #f6d171;*/
/*background: #d3ae6f;*/
/*background-color: #fff;*/
/*color: #FFCF51;*/
}

@media(min-width:768px) {
    .usp_section .nav-pills {
        display: flex;
    }
    
    .usp_section .card {
        border: none;
    }
       .usp_section .card-body {
            padding: 0;
        }

    .usp_section .card .card-header {
        display:none;
    } 
    
    .usp_section .card .collapse{
        display:block!important;
    }
}

@media(max-width:767px){
    .usp_section .tab-pane {
        display: block !important;
        opacity: 1;
    }
    .usp_section .card-body {
            padding: 0;
            position: relative;
        }
}

.usp_section .tab-content .card-body img{
    position: relative;
    filter: grayscale(0);
}
.usp_section .tab-content .card-body .img_overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    color: #fff;
    
}
.usp_section .tab-content .card-body .img_overlay p{
    text-shadow: 1px 1px 3px #000;
    font-size: 22px;
    line-height: 35px;
    font-weight: 300;
}
.usp_section .tab-content .card-body .img_overlay a.btn{
    padding: 12px 18px;
    border-radius: 50px;
    
}
.usp_section .tab-content .card-body .img_overlay a.btn i{

}

.usp_section .nav-pills .nav-link.active, 
.usp_section .nav-pills .show>.nav-link{
position: relative;
color: #333;
background-color: #fff;
}

/*testimonial*/
.testmonial_main{
    background: linear-gradient(0deg, rgba(235, 250, 252, 0.6), rgba(235, 250, 252, 0.6)), url("../assets/img/bg-02.png") no-repeat center center;
      background-size:cover; 
      padding: 50px 0px 0px ;
}
.testim {
    
}

.testim .wrap {
    position: relative;
    width: 100%;

    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #666;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;    
    -ms-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;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
        cursor: pointer;
}

.testim .arrow:hover {
    color: #ea830e;
}
    

.testim .arrow.left {
    left: 10px;
}

.testim .arrow.right {
    right: 10px;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
        height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #666;
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;    
    -ms-transition: all .5s ease-in-out;    
    -moz-transition: all .5s ease-in-out;    
    -o-transition: all .5s ease-in-out;    
    transition: all .5s ease-in-out;
        position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #F14D3A;
    border-color: #F14D3A;
}

.testim .dots .dot.active {
    -webkit-animation: testim-scale .5s ease-in-out forwards;   
    -moz-animation: testim-scale .5s ease-in-out forwards;   
    -ms-animation: testim-scale .5s ease-in-out forwards;   
    -o-animation: testim-scale .5s ease-in-out forwards;   
    animation: testim-scale .5s ease-in-out forwards;   
}
    
.testim .cont {
    position: relative;
        overflow: hidden;
}

.testim .cont > div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont > div.inactive {
    opacity: 1;
}
    

.testim .cont > div.active {
    position: relative;
    opacity: 1;
}
    

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
    background-color: #FFCF51;
    padding: 20px;
    transform: rotate(180deg)!important;
}

.testim .cont div h5 {
    color: #426C94;
/*    font-size: 1em;*/
    margin: 15px 0;
    text-transform: uppercase;
}

.testim .cont div p {
    
    font-size: 18px;
    width: 80%;
    text-align: justify;
    margin: 0px auto 15px;
}

.testim .cont div.active .img img {
    -webkit-animation: testim-show .5s ease-in-out forwards;            
    -moz-animation: testim-show .5s ease-in-out forwards;            
    -ms-animation: testim-show .5s ease-in-out forwards;            
    -o-animation: testim-show .5s ease-in-out forwards;            
    animation: testim-show .5s ease-in-out forwards;            
}

.testim .cont div.active h2 {
    -webkit-animation: testim-content-in .4s ease-in-out forwards;    
    -moz-animation: testim-content-in .4s ease-in-out forwards;    
    -ms-animation: testim-content-in .4s ease-in-out forwards;    
    -o-animation: testim-content-in .4s ease-in-out forwards;    
    animation: testim-content-in .4s ease-in-out forwards;    
}

.testim .cont div.active p {
    -webkit-animation: testim-content-in .5s ease-in-out forwards;    
    -moz-animation: testim-content-in .5s ease-in-out forwards;    
    -ms-animation: testim-content-in .5s ease-in-out forwards;    
    -o-animation: testim-content-in .5s ease-in-out forwards;    
    animation: testim-content-in .5s ease-in-out forwards;    
}

.testim .cont div.inactive .img img {
    -webkit-animation: testim-hide .5s ease-in-out forwards;            
    -moz-animation: testim-hide .5s ease-in-out forwards;            
    -ms-animation: testim-hide .5s ease-in-out forwards;            
    -o-animation: testim-hide .5s ease-in-out forwards;            
    animation: testim-hide .5s ease-in-out forwards;            
}

.testim .cont div.inactive h5 {
    -webkit-animation: testim-content-out .4s ease-in-out forwards;        
    -moz-animation: testim-content-out .4s ease-in-out forwards;        
    -ms-animation: testim-content-out .4s ease-in-out forwards;        
    -o-animation: testim-content-out .4s ease-in-out forwards;        
    animation: testim-content-out .4s ease-in-out forwards;        
}

.testim .cont div.inactive p {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;    
    -moz-animation: testim-content-out .5s ease-in-out forwards;    
    -ms-animation: testim-content-out .5s ease-in-out forwards;    
    -o-animation: testim-content-out .5s ease-in-out forwards;    
    animation: testim-content-out .5s ease-in-out forwards;    
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -moz-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -ms-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -o-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);        
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -moz-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -ms-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        transform: scale(1);       
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        transform: scale(0);
    }
}

@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}

@media all and (max-width: 500px) {
    .testim .arrow {
        font-size: 1.5em;
    }
    
    .testim .cont div p {
        line-height: 25px;
    }

}





/*Footer*/
.footer-main{
    background-color: #506E78;
    padding: 70px 0px;
    color: #fff;
}
.footer-main h2{
    font-size: 44px;
    margin-bottom: 50px;
}
.footer-main h6{
    text-transform: uppercase;
    font-weight: 300!important;
}
.footer-main .contact_detail p{
    margin-bottom: 0px;
    font-size: 16px;
    text-transform: uppercase;

}

.footer-main .contact_detail a{
    font-size: 20px;
}
.footer-main a{
    color: #d1d1d3;
    text-decoration: none;
    font-weight: 300;
}
.footer-main a:hover{
    color: #fff;
}
.footer-main ul li{
    list-style: none;
    font-size: 18px;
}


/*tour section*/
.tourSection {
    padding: 50px 15px;
    text-align: center;
}
.tourSection .embed-responsive {
    margin: 30px 0px;
    border: 5px soild #426c94;
    border-radius: 5px;
}


/*methodology section*/
.methodology_section{
    background-color: #fff9e9;
    padding: 50px 0px;
}
.methodology_section h1{
    margin-bottom: 40px;
    text-align: center;
}

/*thank you page*/
.thankpage .alert b{
    font-size: 26px!important;
}

@media (max-width: 991px){
    .header-navigation .site-logo img{
    width: 100%!important;
    padding: 10px 0px ;
    margin: 0px auto!important;
    display: block;
}
    .heeader-gap{
        display: inline-block!important;
        width: 100%;
justify-items: center;
    }
    .primary-menu{
        text-align: center;
    }
}

