/* default color */
/* #3377ff */

/* secondary color */
/* #473bf0 */

/* ===================================
    01. Google font
====================================== */

@import url('https://fonts.googleapis.com/css?family=Inter:200,300,400,500,600,700&amp;subset=latin-ext');

/* ===================================
    02. Reset
====================================== */

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {  display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal {  display: none; width : 0; height: 0; }

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }

/* ===================================
    03. Typography
====================================== */

/* font family */
body {
    font-size: 14px;
    line-height: 24px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Inter', sans-serif;
    color: #1d1d1b;
    font-weight: 400;
}

/* general */
a {
    display: inline-block;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

button {
    border: none;
    cursor: pointer;
}

.btn:hover,
.btn:focus,
.btn:active {
    text-decoration: none;
    outline: none;
    box-shadow: none !important;
}

p {
    font-size: 14px;
    line-height: 24px;
    padding: 0;
    letter-spacing: 0;
    font-weight: 400;
}

.small {
    font-size: 12px !important;
}

/* heading */
h1 {
    font-size: 80px;
    line-height: 84px;
}

h2 {
    font-size: 50px;
    line-height: 64px;
}

h3 {
    font-size: 32px;
    line-height: 41px;
}

h4 {
    font-size: 24px;
    line-height: 34px;
}

h5 {
    font-size: 18px;
    line-height: 28px;
}

h6 {
    font-size: 14px;
    line-height: 24px;
}

/* text color */
.text-light {
    color: #ffffff !important;
}

.text-dark {
    color: #1f1f1f !important;
}

.text-orange {
    color: #fd8f22 !important;
}

.text-grey {
    color: #6e7a84 !important;
}

.text-grey-alt {
    color: #6e727d !important;
}

.text-blue {
    color: #3377ff !important;
}

/* font weight */
.font-weight-300 {
    font-weight: 300
}

.font-weight-400 {
    font-weight: 400
}

.font-weight-500 {
    font-weight: 500
}

.font-weight-600 {
    font-weight: 600
}

.font-weight-700 {
    font-weight: 700
}

/* Typography Responsive Start */
@media (max-width:768px){
    h1 {
        font-size: 24px;
        line-height: 30px;
    }
    h2 {
        font-size: 20px;
        line-height: 26px !important;
    }
    h3 {
        font-size: 18px;
        line-height: 24px !important;
    }
    h4 {
        font-size: 16px;
        line-height: 22px !important;
    }
    h5 {
        font-size: 14px;
        line-height: 20px !important;
    }
}
/* Typography Responsive End */
/* TYPOGRAPHY END */

/* MAIN START */
.solid-bg-1 {
    background-color: #f1f5ff;
}

.solid-bg-2 {
    background-color: #2b354f;
}

.solid-bg-3 {
    background-color: #3377ff;
}

.solid-bg-4 {
    background-color: #f4f7fa;
}

.deco-bg-1 {
    background-image: url(../img/deco-bg-1.jpg);
    background-repeat: repeat;
}

.separator {
    border: 0;
    width: 65px;
    height: 5px;
    background: #3377ff;
    display: inline-block;
}

.page-title {
    font-size: 48px;
    line-height: 56px;
    font-weight: 700;
}

.sub-text {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
}

/* Custom Popup Start */
.img-holder {
    position: relative;
}

.img-holder .song-button {
    position: absolute;
    top: 56%;
    left: 45%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.song-button .circle {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: #3377ff;
    margin: auto;
    transform: scale(1, 1);
}

.song-button .circle.pulse {
    animation-timing-function: ease;
    animation: pulse 2s infinite;
    background-color: #99bbff;
}

.img-holder .popup-video-button {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.popup-video-button .circle {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: #3377ff;
    margin: auto;
    transform: scale(1, 1);
}

.popup-video-button .circle.pulse {
    animation-timing-function: ease;
    animation: pulse 2s infinite;
    background-color: #99bbff;
}

.popup-video-button svg {
    fill: #ffffff;
    stroke: #ffffff;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: all 0.3s;
}
.popup-video-button svg:hover {
    cursor: pointer;
    transform: scale(1.2, 1.2);
}

.song-button i {
    color: #ffffff;
    position: absolute;
    font-size: 25px;
    top: 30%;
    left: 32%;
    transition: all 0.3s;
}

.song-button i:hover {
    transform: scale(1.2, 1.2);
}

@keyframes pulse {
    0% {
        transform: scale(1, 1);
   }
    25% {
        transform: scale(1, 1);
   }
    50% {
        transform: scale(1.2, 1.2);
   }
    100% {
        transform: scale(1, 1);
   }
}

/* Custom Popup End */
/* Main Responsive Start */
@media (max-width:1024px){
    #inner-content {
        padding-top: 1rem !important;
    }
}
/* Main Responsive End */
/* MAIN END */

/* BUTTON START */
/* Back to Top */
.back-to-top {
    background-color: #fd8f22;
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border: none;
    width: 50px;
    height: 50px;
    line-height: 34px;
}

.back-to-top:hover {
    background-color: #2b354f;
    color: #ffffff;
    transform: translate3d(0, -5px, 0);
    -webkit-transform: translate3d(0, -5px, 0);
    border: none;
}

.back-to-top:active {
    outline: none !important;
    border: none;
    background-color: #2b354f;
    color: #ffffff;
}

.back-to-top:focus {
    background-color: #2b354f;
    color: #ffffff;
    border: none;
    outline: none;
}

.back-to-top i {
    font-size: 20px;
}

/* Button Style One */
.button-style-one {
    color: #ffffff;
    background-color: #3377ff;
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 600;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    outline: none !important;
}

.button-style-one:hover {
    background-color: #2b354f;
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

.button-style-one:focus {
    background-color: #2b354f;
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

.button-style-one:active {
    background-color: #2b354f;
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

/* Button Style Two */
.button-style-two {
    color: #3377ff;
    background-color: transparent;
    border-style: solid;
    border-width: 0px 0px 2px 0px;
    border-radius: 0px 0px 0px 0px;
    padding: 0px 0px 10px 0px;
    font-weight: 600;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    outline: none !important;
}

.button-style-two:hover {
    color: #3377ff;
    text-decoration: none;
    outline: none;
}

.button-style-two:focus {
    color: #3377ff;
    text-decoration: none;
    outline: none;
}

.button-style-two:active {
    color: #3377ff;
    text-decoration: none;
    outline: none;
}

/* Read More Button Start */
.read-more-btn {
    color: #6e7a84;
    font-weight: 600;
    font-size: 14px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}

.read-more-btn:hover {
    color: #3377ff;
}

/* BUTTON END */

/* HEADER START */
#mainNav .dropdown-submenu {
    position: relative;
}
  
#mainNav .dropdown-submenu>a:after {
    float: right;
    border: none;
    font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f0da";
}
  
#mainNav .dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0px;
    margin-left: 0px;
}

#mainNav .dropdown-menu {
    min-width: 200px !important;
    padding: 0 0 !important;
    border-radius: 0px !important;
}

#mainNav .nav-link {
    font-weight: 600;
    font-size: 13px;
    color: #1d1d1b;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

#mainNav .nav-link:hover {
    color: #fd8f22;
}

#mainNav .nav-link:focus, 
#mainNav .nav-link.active {
    background-color: transparent;
    color: #fd8f22;
}

#mainNav .dropdown-item:hover {
    color: #fd8f22;
}

#mainNav .dropdown-item:focus, 
#mainNav .dropdown-item:active {
    background-color: transparent;
    color: #fd8f22;
}

#mainNav .dropdown-menu .dropdown-item {
    font-size: 12px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    padding: 5px 15px !important;
}

/* Toggler Start */
#mainNav .navbar-toggler {
    border: none;
    padding: 10px 0px;
    outline: none !important;
}
#mainNav .navbar-toggler span {
    display: block;
    width: 14px;
    height: 2px;
    background: #1d1d1b;
    margin-left: auto;
    margin-right: auto;
}

#mainNav .navbar-toggler span+span {
    margin-top: 4px;
    width: 22px;
}

#mainNav .navbar-toggler span+span+span {
    width: 14px;
}
/* Toggler End */

/* Header Responsive Start */
@media (min-width: 991px) {
    .dropdown-menu {
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
  }
/* Header Responsive End */
/* HEADER END */

/* PAGE SECTIONS START */
/* Homepage Start */

/* Homepage Video Start */
#myPlayer {
    height: 700px;
}

#mutebtn {
    color: #ffffff;
    background-color: rgba(29, 29, 27, 0.7) !important;
    padding: 5px 10px;
}

#tiptext {
    color: #ffffff;
    background-color: rgba(29, 29, 27, 0) !important;
    padding: 5px 10px;
}

#video-text {
    position: absolute;
    color: #FFFFFF;
    left: 50%;
    top: 65%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#video-text .social-icons li a {
    width: 35px;
    height: 35px;
    color: #fff;
    line-height: 35px;
    text-align: center;
    display: inline-block;
    background-color: #fd8f22;
    -webkit-transition: all 0.25s linear;
    transition: all 0.25s linear;
    border-radius: 50%;
}

#video-text .social-icons li a:hover {
    background-color: #fd8f22;
    color: #ffffff;
}

#video-text .social-icons li {
    margin-right: 8px;
}

#video-text .social-icons li:last-child {
    margin-right: 0px;
}
/* Homepage Video End */

#entrance {
    padding: 70px 0px;
}

@media all and (max-width:992px) {    
    #entrance {
        padding: 40px 0px;
    }
}

/* Homepage Services Start */
.services-box {
    background-color: #ffffff;
    padding: 35px 35px 35px 40px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    border-style: solid;
    border-width: 4px 0px 0px 4px;
    border-color: #FFFFFF;
}

.services-box:hover {
    cursor: default;
    border-style: solid;
    border-width: 4px 0px 0px 4px;
    border-color: #3377ff;
    box-shadow: 0px 10px 40px 0px rgb(71 59 240 / 9%);
}

.service-thumb {
    margin-right: 25px;
}

.service-thumb img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
}
/* Homepage Services End */

/* Homepage Responsive Start */
@media all and (max-width:576px) { 
    .services-box > div {
        display: inline-block !important;
    }
    .service-thumb {
        margin-right: 0px !important;
        margin-bottom: 15px;
    }
}
/* Homepage Responsive End */
/* Homepage End */

/* About Us Start */
.our-company {
    padding: 60px 0px 30px 0px;
}

.who-are-we {
    background-image: url(../img/team-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.who-are-we-content p {
    margin-bottom: 10px;
}

.who-are-we-content p:last-child {
    margin-bottom: 0px;
}

.modal-content.text-left p {
    margin-bottom: 10px;
}

.modal-content.text-left p:last-child {
    margin-bottom: 0px;
}
/* About Us End */

/* Our Works Start */
.filter-buttons li {
    color: #1f1f1f;
    font-weight: 700;
    cursor: pointer;
}

.filter-buttons li.active {    
    color: #3377ff;
}

.works-box {
    border: 1px solid #e3e6ef;
}

.works-content {
    padding: 15px;
}

.works-date h6 {
    font-size: 12px !important;
}

.works-name {
    font-size: 14px !important;
    font-weight: 700;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 24px !important;
}
/* Our Works End */

/* Contact Start */
.contact-box {
    background-color: #f4f7fa;
    padding: 70px 50px 60px 60px;
}

.box-item {
    margin-bottom: 30px;
}

.box-item:last-child {
    margin-bottom: 0px;
}

.box-icon i {
    font-size: 35px;
    color: #fd8f22;
}

/* Form Start */
.form-control-contact {
    font-size: 14px;
    background-color: #f4f7fa;
    padding: 10px 10px 10px 30px;
    border: none;
    color: #161c2d;
    border-radius: 0px !important;
    height: 50px;
    width: 100%;
    box-shadow: none !important;
}

.form-control-contact::-moz-placeholder {
    color: #161c2d;
}

.form-control-contact:-ms-input-placeholder {
    color: #161c2d;
}

.form-control-contact::-webkit-input-placeholder {
    color: #161c2d;
}

.form-control-contact:focus {
    border-color: none;
    outline: none;
    background-color: #f4f7fa;
}

form label.error {
    color: #F12A55;
    font-size: 12px;
}

@media all and (max-width:992px) {    
    .contact-box {
        padding: 30px;
    }
}
/* Form End */
/* Contact End */
/* PAGE SECTIONS END */


/* FOOTER START */

/* Footer Social Icons */
#footer .copyright {
    color: #a4a8b4;
    font-weight: 500;
}

#footer .social-icons {
    font-size: 13px;
    padding: 0;
    margin-bottom: 0px !important;
}

#footer .social-icons li a {
    display: block;
    background-color: transparent;
    border: 1px solid #a4a8b4;
    color: #a4a8b4;
    width: 35px;
    height: 35px;
    line-height: 35px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#footer .social-icons li a,
#footer .social-icons li a:active,
#footer .social-icons li a:focus {
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none !important;
}

#footer .social-icons li a:hover {
    background-color: #3377ff;
    color: #ffffff;
    border: 1px solid #3377ff;
}

/* Footer Responsive Start */
@media all and (max-width: 767.98px) {
    #footer {
        text-align: center;
    }
    #footer .row {
        -webkit-box-direction: reverse!important;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important;
    }
    #footer .social-icons {
        padding-bottom: 20px;
    }
    #footer .btn-group {
        margin-left: 0px !important;
        padding-bottom: 15px;
    }
    #footer .btn-group.dropup {
        float: none;
    }
    #footer .social-icons {
        float: none;
    }
}

@media all and (max-width:992px) {    
    #footer .copyright {
        font-size: 12px;
    }
}

@media all and (max-width:576px) { 
    #footer {
        text-align: center;
    }
    #footer .row {
        -webkit-box-direction: reverse!important;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important;
    }
    #footer .social-icons {
        padding-bottom: 20px;
    }
}
/* Footer Responsive End */
/* FOOTER END */