/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    /*background: var(--primary);*/
    background: #B1040E;
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#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;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

/*-------------------------------------------------------------------*/
/* 2.8 Sponsors SECTION
---------------------------------------------------------------------*/
.lgx-sponsors {
  background: url('') bottom center no-repeat;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}
.lgx-sponsors .lgx-inner {
  background: rgba(255, 255, 255, 0.88);
}
.lgx-sponsors-black {
  /*background: url('../img/banner-bg2.jpg') top center no-repeat fixed;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;*/
}
.lgx-sponsors-black .lgx-inner {
  background: rgba(27, 39, 61, 0.95);
}
.lgx-sponsors-christmas {
  background: transparent;
}
.lgx-sponsors-christmas .lgx-inner {
  background: #f1f1f1;
}
.sponsored-heading {
  font-size: 26px;
  line-height: 39px;
  font-size: 2.6rem;
  line-height: 3.9000000000000004rem;
  font-weight: 700;
  color: #554bb9;
  text-transform: uppercase;
  text-align: center;
  margin: 6.8rem 0 2rem 0;
  display: block;
}
.sponsored-heading.first-heading {
  margin-top: 0;
}
.sponsored-heading.secound-heading {
  color: #ec398b;
}
.sponsored-heading.third-heading {
  color: #efa506;
}
.sponsors-area {
  text-align: center;
}
.sponsors-area .single {
  overflow: hidden;
  margin: 0 .5%;
  padding: 1.6rem;
  border-radius: 16px;
  width: 23%;
  display: inline-block;
  margin-bottom: .6rem;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -moz-box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.05);
  -webkit-box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.05);
  box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.05);
}
.sponsors-area .single a {
  display: block;
  text-align: center;
}
.sponsors-area .single a img {
  width: 100%;
}
.sponsors-area .single:hover {
  opacity: 1;
}
.sponsors-area .single:hover a img {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-transform-origin: center;
  transform-origin: center;
  animation-duration: 400ms;
  animation-timing-function: linear;
}
.sponsors-area-col3 .single {
  width: 32%;
}
.sponsors-area-nogap .single {
  margin: 0 0;
  margin-bottom: 4px;
  display: inline-table;
}
.sponsors-area-border .single {
  border: 5px solid #ddd;
}
.sponsors-area-border .single:hover {
  border: 5px solid #554bb9;
}
.sponsors-area-noshadow .single {
  box-shadow: none;
}
.sponsors-area-noshadow .single:hover {
  -moz-box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.05);
  -webkit-box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.05);
  box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.05);
}
.sponsors-area-colorfull .single {
  background: #554bb9;
}
.sponsors-area-colorfull .single img {
  -webkit-filter: grayscale(40%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(40%);
}
.sponsors-area-colorfull .single:nth-child(1) {
  background: #ff6600;
}
.sponsors-area-colorfull .single:nth-child(2) {
  background: #ff9400;
}
.sponsors-area-colorfull .single:nth-child(3) {
  background: #ffc600;
}
.sponsors-area-colorfull .single:nth-child(4) {
  background: #8cc700;
}
.sponsors-area-colorfull .single:nth-child(5) {
  background: #0fad00;
}
.sponsors-area-colorfull .single:nth-child(6) {
  background: #00a3c1;
}
.sponsors-area-colorfull .single:nth-child(7) {
  background: #0061b5;
}
.sponsors-area-colorfull .single:nth-child(8) {
  background: #6300a4;
}
.sponsors-area-colorfull .single:nth-child(9) {
  background: #ff0000;
}
.sponsors-area-colorfull .single:nth-child(10) {
  background: #ff6600;
}
.sponsors-area-colorfull .single:nth-child(11) {
  background: #ff9400;
}
.sponsors-area-colorfull .single:nth-child(12) {
  background: #ffc600;
}
.sponsors-area-colorfull .single:nth-child(13) {
  background: #8cc700;
}
.sponsors-area-colorfull .single:nth-child(14) {
  background: #0fad00;
}
.sponsors-area-colorfull .single:nth-child(15) {
  background: #00a3c1;
}
.sponsors-area-colorfull .single:nth-child(16) {
  background: #0061b5;
}
.sponsors-area-colorfull .single:nth-child(17) {
  background: #6300a4;
}
.sponsors-area-colorfull .single:nth-child(18) {
  background: #ff0000;
}
.sponsors-area-colorfull .single:nth-child(19) {
  background: #ff6600;
}
.sponsors-area-colorfull .single:nth-child(20) {
  background: #ff9400;
}
.sponsors-area-colorfull .single:nth-child(21) {
  background: #ffc600;
}
.sponsors-area-colorfull .single:nth-child(22) {
  background: #8cc700;
}
.sponsors-area-colorfull .single:nth-child(23) {
  background: #0fad00;
}
.sponsors-area-colorfull .single:nth-child(24) {
  background: #00a3c1;
}
.sponsors-area-colorfull .single:nth-child(25) {
  background: #0061b5;
}
.sponsors-area-colorfull .single:nth-child(26) {
  background: #6300a4;
}
.sponsors-area-colorfull .single:nth-child(27) {
  background: #ff0000;
}
.sponsors-area-colorfull .single:nth-child(28) {
  background: #ff6600;
}
.sponsors-area-colorfull .single:nth-child(29) {
  background: #ff9400;
}
.sponsors-area-colorfull .single:nth-child(30) {
  background: #ffc600;
}
.sponsors-area-colorfull .single:nth-child(31) {
  background: #8cc700;
}
.sponsors-area-colorfull .single:nth-child(32) {
  background: #0fad00;
}
.sponsors-area-colorfull .single:nth-child(33) {
  background: #00a3c1;
}
.sponsors-area-colorfull .single:nth-child(34) {
  background: #0061b5;
}
.sponsors-area-colorfull .single:nth-child(35) {
  background: #6300a4;
}
.sponsors-area-colorfull .single:nth-child(36) {
  background: #ff0000;
}
.sponsors-area-colorfull .single:hover img {
  -webkit-filter: grayscale(0);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0);
}
.sponsors-area-colorfull-border .single {
  background: #fff;
}
.sponsors-area-colorfull-border .single:nth-child(1) {
  border: 8px solid #ff6600;
}
.sponsors-area-colorfull-border .single:nth-child(2) {
  border: 8px solid #ff9400;
}
.sponsors-area-colorfull-border .single:nth-child(3) {
  border: 8px solid #ffc600;
}
.sponsors-area-colorfull-border .single:nth-child(4) {
  border: 8px solid #8cc700;
}
.sponsors-area-colorfull-border .single:nth-child(5) {
  border: 8px solid #0fad00;
}
.sponsors-area-colorfull-border .single:nth-child(6) {
  border: 8px solid #00a3c1;
}
.sponsors-area-colorfull-border .single:nth-child(7) {
  border: 8px solid #0061b5;
}
.sponsors-area-colorfull-border .single:nth-child(8) {
  border: 8px solid #6300a4;
}
.sponsors-area-colorfull-border .single:nth-child(9) {
  border: 8px solid #ff0000;
}
.sponsors-area-colorfull-border .single:nth-child(10) {
  border: 8px solid #ff6600;
}
.sponsors-area-colorfull-border .single:nth-child(11) {
  border: 8px solid #ff9400;
}
.sponsors-area-colorfull-border .single:nth-child(12) {
  border: 8px solid #ffc600;
}
.sponsors-area-colorfull-border .single:nth-child(13) {
  border: 8px solid #8cc700;
}
.sponsors-area-colorfull-border .single:nth-child(14) {
  border: 8px solid #0fad00;
}
.sponsors-area-colorfull-border .single:nth-child(15) {
  border: 8px solid #00a3c1;
}
.sponsors-area-colorfull-border .single:nth-child(16) {
  border: 8px solid #0061b5;
}
.sponsors-area-colorfull-border .single:nth-child(17) {
  border: 8px solid #6300a4;
}
.sponsors-area-colorfull-border .single:nth-child(18) {
  border: 8px solid #ff0000;
}
.sponsors-area-colorfull-border .single:nth-child(19) {
  border: 8px solid #ff6600;
}
.sponsors-area-colorfull-border .single:nth-child(20) {
  border: 8px solid #ff9400;
}
.sponsors-area-colorfull-border .single:nth-child(21) {
  border: 8px solid #ffc600;
}
.sponsors-area-colorfull-border .single:nth-child(22) {
  border: 8px solid #8cc700;
}
.sponsors-area-colorfull-border .single:nth-child(23) {
  border: 8px solid #0fad00;
}
.sponsors-area-colorfull-border .single:nth-child(24) {
  border: 8px solid #00a3c1;
}
.sponsors-area-colorfull-border .single:nth-child(25) {
  border: 8px solid #0061b5;
}
.sponsors-area-colorfull-border .single:nth-child(26) {
  border: 8px solid #6300a4;
}
.sponsors-area-colorfull-border .single:nth-child(27) {
  border: 8px solid #ff0000;
}
.sponsors-area-colorfull-border .single:nth-child(28) {
  border: 8px solid #ff6600;
}
.sponsors-area-colorfull-border .single:nth-child(29) {
  border: 8px solid #ff9400;
}
.sponsors-area-colorfull-border .single:nth-child(30) {
  border: 8px solid #ffc600;
}
.sponsors-area-colorfull-border .single:nth-child(31) {
  border: 8px solid #8cc700;
}
.sponsors-area-colorfull-border .single:nth-child(32) {
  border: 8px solid #0fad00;
}
.sponsors-area-colorfull-border .single:nth-child(33) {
  border: 8px solid #00a3c1;
}
.sponsors-area-colorfull-border .single:nth-child(34) {
  border: 8px solid #0061b5;
}
.sponsors-area-colorfull-border .single:nth-child(35) {
  border: 8px solid #6300a4;
}
.sponsors-area-colorfull-border .single:nth-child(36) {
  border: 8px solid #ff0000;
}
.sponsors-area-colorfull-border .single:hover {
  background: white;
  border: 8px solid #fff;
}
.sponsors-area-colorfull-border .single:hover img {
  -webkit-filter: grayscale(0);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0);
}
.sponsors-area-bg {
  align-items: center;
}
.sponsors-area-bg .single {
  background: #fff;
  margin: 0 .5% 1rem;
  padding: 2rem;
}





/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    /*font-family: 'Nunito', sans-serif;*/
    font-family: Source Sans Pro,Helvetica Neue,Helvetica,Arial,sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 550;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    /*color: var(--dark);*/
    color: #000;
}
.sticky-top.navbar-dark .navbar-nav .nav-link:hover,
.sticky-top.navbar-dark .navbar-nav .nav-link.active {
    /*color: var(--primary);*/
    color: #B1040E;
}


.navbar-dark .navbar-nav .nav-link.active {
    /*color: var(--primary);*/
    color: color: #FFFFFF;
}
.navbar-dark .navbar-nav .nav-link:hover{
    color: #FFFFFF;

}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
    .head-logo {
        margin-bottom: -50px;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        /*background: #FFFFFF;*/
        background: linear-gradient(0deg,transparent,rgba(0,0,0,.99)),linear-gradient(0deg,transparent 20%,rgba(0,0,0,.6));
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
        /*background: linear-gradient(0deg,#CB4D0C,#B1040E),linear-gradient(0deg,transparent 20%,rgba(0,0,0,.6));*/

    }
    .sticky-top .head-logo {
        margin-bottom: -33px;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #FFFFFF;
        transition: .5s;
    }
    .sticky-top.navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #B1040E;
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: #B1040E;
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;

    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}
/*style="font-size: 55px; font-weight: 600; font-family: Raleway, sans-serif;"*/

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

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


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    /*background: var(--primary);*/
    background: #B1040E;
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** publication ***/
.publication-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.publication-item .publication-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: var(--primary);*/
    border-radius: 2px;
    /*transform: rotate(-45deg);*/
}

.publication-item .publication-icon i {
    transform: rotate(45deg);
}

.publication-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.publication-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37517e;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #47b2e4;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #47b2e4;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Archive Dates Section
--------------------------------------------------------------*/



/*#archivesection {
  padding: 60px 0;
}*/

#archivesection .sponsors-wrap {
  border-top: 1px solid #e0e5fa;
  border-left: 1px solid #e0e5fa;
  margin-bottom: 30px;
}

#archivesection .sponsor-logo {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #e0e5fa;
  border-bottom: 1px solid #e0e5fa;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  height: 160px;
}

#archivesection .sponsor-logo:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#archivesection img {
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# Carbonads 
--------------------------------------------------------------*/

.carbon-example {
  padding: 8px;
  background-color: #fff;
  width: 295px;
  box-sizing: border-box;
  border-radius: 6px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 5;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
  margin-top:20px;
  margin-bottom:20px;
}

.carbon-example img {
  margin-right: 9px;
  max-width: 125px;
}

.carbon-example .inner-wrapper {
  text-align: left;
}

.carbon-example .inner-wrapper p {
  font-size: 12px;
  line-height: 1.33;
  margin: 8px 0;
}

.carbon-example .inner-wrapper p.fine-print {
  font-size: 8px;
  color: #131417;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 500;
}

.flex-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .flex-wrapper.two-col {
    display: block;
    text-align: center;
  }
}

.flex-wrapper.two-col > * {
  width: 50%;
}

.flex-wrapper.two-col > *:first-of-type {
  padding-right: 130px;
}
@media screen and (max-width: 991px) {

  .flex-wrapper.two-col > * {
    width: 100%;
  }

  .flex-wrapper.two-col > *:first-of-type {
    padding-right: 0;
  }
}

.flex-wrapper.two-col.reversed > *:first-of-type {
  order: 2;
  padding-right: 0;
}
@media screen and (min-width: 992px) {
  .flex-wrapper.two-col.reversed > *:first-of-type {
    padding-left: 130px;
  }
}

.flex-wrapper.three-col {
  text-align: left;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .flex-wrapper.three-col {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.flex-wrapper.three-col > * {
  width: 33.3%;
}
@media screen and (max-width: 767px) {
  .flex-wrapper.three-col > * {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .flex-wrapper.three-col li {
    padding-left: 20px;
    padding-right: 20px;
  }
  .flex-wrapper.three-col li:first-child {
    padding-left: 0;
  }
  .flex-wrapper.three-col li:last-child {
    padding-right: 0;
  }
}

.flex-wrapper.three-col .flex-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .flex-wrapper.three-col .flex-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }

  .flex-wrapper.three-col .flex-wrapper:not(:first-of-type) {
    margin-top: 40px;
  }
}

.flex-wrapper.three-col .flex-wrapper .icon {
  top: 0;
  transform: none;
}





/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

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

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

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

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/bg3.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
    @media (min-width: 767.98px) {
    .header-top-logo {
        margin-bottom: -75px;
    }
}