@charset "utf-8";

/* ----------------------------------
Name: style.css
Version: 1.0
----------------------------------
Google Font
Primary CSS
Customs
Header
Navbar
Slider (Banner)
Services
Portfolio
Our Team
Pricing Table
Testimonals
Contact Us
Footer
Blog Page CSS

*/


/* ===================================
Google Font
====================================== */

@import url('https://fonts.googleapis.com/css?family=Didact+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700,800,900&display=swap');
@font-face {
    font-family: 'black_roadsdemoblack';
    src: url('../fonts/black_roadsdemo-webfont.woff2') format('woff2'), url('../fonts/black_roadsdemo-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'spaceGrotesk_regular';
    src: url('../fonts/SpaceGrotesk-Regular.woff2') format('woff2'), url('../fonts/SpaceGrotesk-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'spaceGrotesk_medium';
    src: url('../fonts/SpaceGrotesk-Medium.woff2') format('woff2'), url('../fonts/SpaceGrotesk-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'spaceGrotesk_semiBold';
    src: url('../fonts/SpaceGrotesk-SemiBold.woff2') format('woff2'), url('../fonts/SpaceGrotesk-SemiBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* ===================================
Primary CSS
====================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
}

a {
    text-decoration: none;
    color: #3c3c3c;
    cursor: pointer;
    outline: 0;
}

a:hover,
a:focus {
    text-decoration: none;
}

a:focus {
    outline: none;
}

img {
    max-width: 100%;
    width: auto;
}

ul,
ol {
    margin: 0px;
    list-style: none;
}

input,
button,
button:focus {
    outline: 0;
}

input,
textarea,
select {
    border: 1px solid #dfdfdf;
    font-size: 11px;
    padding: 8px 15px;
    width: 100%;
    margin: 0 0 20px 0;
    max-width: 100%;
    resize: none;
}

input[type="submit"] {
    width: auto
}

input[type="button"],
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
textarea,
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}

input:focus,
textarea:focus {
    border: 1px solid #3c3c3c;
    outline: none;
}

input[type="submit"]:focus {
    border: none;
}

select::-ms-expand {
    display: none;
}

iframe {
    border: 0;
}

iframe,
embed,
object {
    max-width: 100%;
}

iframe {
    border-width: 0px;
}

* {
    transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
    border-radius: 0px;
}

::selection {
    color: #fff;
    background: rgba(62, 120, 183);
}

::-moz-selection {
    color: #fff;
    background: rgba(62, 120, 183);
}

::-webkit-input-placeholder {
    color: #999;
    text-overflow: ellipsis;
}

:-moz-placeholder {
    color: #999;
    text-overflow: ellipsis;
    opacity: 1;
}

::-moz-placeholder {
    color: #999;
    text-overflow: ellipsis;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #999;
    text-overflow: ellipsis;
    opacity: 1;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    -moz-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background: rgba(60, 60, 60, 1);
}

::-webkit-scrollbar-thumb {
    background: rgba(62, 120, 183);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .5);
    -moz-box-shadow: inset 0 0 6px rgba(0, 0, 0, .5);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .5);
    cursor: pointer;
}


/* Customs */

.padding_90 {
    padding: 90px 0;
}

.main_home {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.vertical_middle {
    display: table-cell;
    vertical-align: middle;
}

.box_shadow {
    transition: 0.3s ease-in-out !important;
    display: inline-block;
}

.box_shadow:hover {
    -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .18), 0 4px 15px 0 rgba(0, 0, 0, .15)!important;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .18), 0 4px 15px 0 rgba(0, 0, 0, .15)!important;
}

.Default_BG {
    background: rgba(62, 120, 183);
}

.Default_BG_op2 {
    background: #f6f6f6;
}

.secondary_BG {
    background: #3c3c3c;
}

.default_color {
    color: rgba(62, 120, 183);
}

.secondary_color {
    color: #3c3c3c;
}

.default_border {
    /* border: 1px solid rgba(62, 120, 183, .4); */
    box-shadow: 0 0 20px 0 rgba(62, 120, 183, .4);
}

.grey_text {
    color: #333333 !important;
}

hr {
    border-color: rgba(60, 60, 60, 0.3);
}


/* ===================================
Navbar
====================================== */

header {
    border-bottom: 1px solid rgba(0, 0, 0, .8);
    padding: 10px 0;
    position: fixed;
    z-index: 9999;
    width: 100%;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}

.bg_color,
.darkHeader,
.dark_toggler {
    background: #000;
    border-bottom: 1px solid rgba(62, 120, 183);
    padding: 8px 0;
    transition: 0.3s ease-in-out;
}

a.navbar-brand {
    max-width: 200px;
    width: 100%;
    font-size: 26px;
    font-weight: 700;
    /* filter: brightness(0) invert(1); */
    color: #fff;
    transition: 0.5s ease-in-out;
}

.darkHeader a.navbar-brand {
    max-width: 150px;
}

button.navbar-toggler {
    border: 0 none;
    padding: 0;
    cursor: pointer;
}

li.nav-item {
    padding: 0 10px;
}

a.nav-link {
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    color: #000;
    text-transform: uppercase;
    padding: 4px 0 !important;
    margin: 2px 0;
    position: relative;
    text-shadow: 0px 9px 15px rgba(1, 0, 1, 1);
}

.bg_color a.nav-link,
.darkHeader a.nav-link,
.dark_toggler a.nav-link {
    color: #fff;
}

a.nav-link::after,
a.nav-link::before,
li.nav-item a.active::after,
li.nav-item a.active::before {
    content: "";
    width: 0%;
    position: absolute;
    height: 2px;
    transition: 0.3s ease-in-out;
}

a.nav-link::after {
    background: rgba(255, 255, 255, 0);
    left: 0;
    top: 0;
}

a.nav-link::before {
    background: rgba(62, 120, 183);
    right: 0;
    bottom: 0;
}

a.nav-link:hover:after,
a.nav-link:hover:before,
li.nav-item a.nav-link.active::after,
li.nav-item a.nav-link.active::before {
    width: 100%;
}


/* ===================================
Slider
====================================== */

.slider {
    position: relative;
    /* background: rgba(60, 60, 60, 0) url('../img/BG1.jpg') no-repeat scroll center/cover; */
    background-image: url('../img/slider/slid_1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}


/* rgba(60, 60, 60, 0) url('img/slider/slid_1.jpg') no-repeat scroll center/cover
 rgba(60, 60, 60, 0) url('img/slide_bg.png') no-repeat scroll right; */

#home .owl-nav {
    opacity: 0;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

#home:hover .owl-nav {
    opacity: 1;
}

#home button.owl-prev {
    left: 0px;
}

#home button.owl-next {
    right: 0px;
}

#home .owl-dots {
    padding: 20px 0 0;
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 20px;
}

.slider::after {
    background: rgba(60, 60, 60, 0.7) url('../img/slide_bg.png') no-repeat scroll right center / auto 100%;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

.playbtn {
    font-size: 12px;
    font-family: 'Didact Gothic', sans-serif;
    background-color: transparent;
    border: 0;
    letter-spacing: 1.2px;
    color: rgb(255, 255, 255);
    line-height: 2.455;
    position: absolute;
    left: 50px;
    bottom: 50px;
    z-index: 9999;
    cursor: pointer;
}

.playbtn:hover {
    opacity: .7;
}

button.playbtn img {
    width: 50px;
}

.close {
    position: absolute;
    display: inline-block;
    right: -20px;
    top: -33px;
    color: #fff;
    opacity: 1;
    font-size: 40px;
    line-height: 40px;
}


/* 
.slider img {
  width: 100%;
} */

.slider-content {
    position: absolute;
    text-align: right;
    color: #000;
    max-width: 420px;
    width: 100%;
    top: 55%;
    right: 50px;
    transform: translateY(-50%);
    z-index: 999;
}

.slider-title {
    font-family: 'black_roadsdemoblack';
    font-size: 30px;
    line-height: 34px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 3px;
}

.slider-desc {
    font-size: 20px;
    letter-spacing: 0.9px;
    font-family: 'Didact Gothic', sans-serif;
    line-height: 50px;
    padding-top: 50px;
    margin: 0;
}

.default_btn {
    font-size: 13px;
    padding: 11px 25px;
    line-height: 18px;
    background: transparent;
    text-transform: uppercase;
    color: rgba(62, 120, 183);
    font-weight: 600;
    border: 2px solid rgba(62, 120, 183);
    transition: 0.3s ease-in-out;
}

.default_btn:hover {
    background: rgba(62, 120, 183);
    color: #fff;
}

.secondary_btn {
    background: rgba(62, 120, 183);
    color: #fff;
    font-size: 13px;
    padding: 11px 25px;
    line-height: 18px;
    text-transform: uppercase;
    font-weight: 600;
    border: 2px solid rgba(62, 120, 183);
    transition: 0.3s ease-in-out;
}

.secondary_btn:hover {
    background: transparent;
    color: rgba(62, 120, 183);
}


/* .slid_img_box {
  width: 100%;
  height: 130px;
} */

.slid_img_box .gallery_box {
    width: 100%;
    /* height: 130px; */
    margin: 0;
    padding: 2px;
    text-align: center;
}

.slick-list {
    /* padding: 60px !important; */
}

.slick-slide {
    padding: 5px;
    transition: 0.3s ease-in-out;
    position: relative;
}


/* .slick-slide.slick-current.slick-active.slick-center {
  transform: scale(1.2);
  z-index: 999;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, .4);
} */

.slick-slide img {
    margin: 0 auto;
}

.slick-prev:before,
.slick-next:before {
    color: #000;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: #0077b7;
}


/* services */

.hed_title h2 {
    font-family: 'black_roadsdemoblack';
    font-size: 20px;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    color: #3c3c3c;
    font-weight: 600;
    margin: 0;
    padding: 2px 0;
    letter-spacing: 1px;
}

.hed_title h2::after,
.hed_title h2::before {
    position: absolute;
    content: "";
    width: 44%;
    height: 3px;
}

.hed_title h2::after {
    background: rgba(62, 120, 183);
    top: 100%;
    right: 0;
}

.hed_title h2::before {
    background: rgba(0, 0, 0);
    bottom: 100%;
    left: 0;
}

.title_desc {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    max-width: 650px;
    color: #3c3c3c;
    line-height: 24px;
    padding-bottom: 15px;
    margin: 0 auto;
}

.service_box {
    padding: 10px;
    box-shadow: 0px 0px 2px 0px rgba(62, 120, 183, 0.5);
    cursor: pointer;
    transition: 0.3s ease-in-out;
    height: 100%;
}

img.defaultimg {
    width: 50px;
}

.sv_img_box {
    border: 1px solid rgba(60, 60, 60, 0.1);
    max-height: 210px;
    overflow: hidden;
}

.sv_img_box img {
    width: 100%;
}

.box_title {
    font-size: 18px;
    font-weight: 700;
    color: #3c3c3c;
    text-transform: uppercase;
    padding: 15px 0 0;
}

.box_desc {
    font-size: 16px;
    padding: 0 0 10px;
    color: rgba(62, 120, 183);
}


/* New */

.servicesboxs * {
    transition: 0.3s ease-in-out;
}

.servicesboxs {
    position: relative;
    width: 400px;
    height: 400px;
}

.servicesboxs li {
    float: left;
    padding: 20px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.servicesboxs li>div {
    background-color: #fff;
    border: 4px solid rgba(44, 107, 176, .589);
    width: 160px;
    height: 160px;
    padding: 40px;
    box-shadow: 0 12px 11px 0 rgba(11, 11, 11, .5);
    border-radius: 50%;
    transition: .3s;
    overflow: hidden;
    text-align: center;
}

.servicesboxs li .sicon img {
    width: 72px;
}

.servicesboxs .sdescbox {
    display: none;
    padding: 15px;
    max-width: 260px;
    margin: 0 auto;
}

.servicesboxs .sdescbox h5 {
    font-size: 16px;
    font-family: 'spaceGrotesk_semiBold';
    color: rgb(67, 122, 174);
    text-transform: uppercase;
}

.servicesboxs .sdescbox p {
    font-family: 'spaceGrotesk_regular';
    margin: 0;
    font-size: 14px;
    padding-bottom: 6px;
}

.servicesboxs li:hover>div {
    border: 8px solid rgba(44, 107, 176, .8);
    position: absolute;
    width: 100%;
    height: 100%;
    transition: .3s;
    padding: 15px;
}

.servicesboxs li:hover .sdescbox {
    display: block;
}

.servicesboxs li:hover:nth-child(1)>div {
    top: 0;
    left: 0;
}

.servicesboxs li:hover:nth-child(2)>div {
    right: 0;
    top: 0;
}

.servicesboxs li:hover:nth-child(3)>div {
    left: 0;
    bottom: 0;
}

.servicesboxs li:hover:nth-child(4)>div {
    right: 0;
    bottom: 0;
}

.servicesboxs li:hover>div .sicon img {
    width: 50px;
}

.servicesboxs li:hover>div {}

.servicesboxs li:hover>div {}


/* Gallery */

.main_gallery_box {
    display: flex;
    flex-wrap: wrap;
}

.gallery_box {
    position: relative;
    margin: 15px;
    width: calc(16.666% - 30px);
    min-height: 150px;
    background-color: #fff !important;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .3);
}

.gallery_box:hover img {
    /* opacity: 0.6; */
}

.iconbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-70%, -50%);
    transition: all .3s;
    will-change: transform;
    opacity: 0;
}

.iconbox {
    display: inline-block;
    font-size: 14px;
    line-height: 0px;
    text-align: center;
    padding: 20px 5px;
    color: #3c3c3c;
    font-weight: 500;
    border-radius: 5px;
    width: 45px;
    height: 25px;
    background: #fff;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, .4);
    cursor: pointer;
}

.iconbox:hover {
    color: #3c3c3c;
    box-shadow: 0 0 0 100px rgba(62, 120, 183, .8);
}

.gallery_box:hover .iconbox {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.social {
    padding: 15px 0;
}

.social ul,
.social li {
    display: flex;
    padding: 0;
    justify-content: space-between;
}

.social a .fab {
    width: 44px;
    height: 44px;
    line-height: 44px;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    transition: 0.3s ease-in-out;
}

.social li a:hover .fab {
    opacity: 0.8;
}

.social a .fab.fa-facebook-f {
    background: #3b5998;
}

.social a .fab.fa-twitter {
    background: #00aced;
}

.social a .fab.fa-google-plus-g {
    background: #dd4b39;
}

.social a .fab.fa-linkedin-in {
    background: #0077b7;
}


/* New */


/* .owl-item.active:nth-child(2) {
  transform: scale(1.5);
} */


/* Testimonal */

.owl-item {
    cursor: w-resize;
}

.testi_pro_img {
    width: 100px;
    height: 100px;
    border-radius: 80px;
    overflow: hidden;
    margin: 0 auto;
}

.testi_pro {
    width: 150px;
    float: left;
}

.testi_desc {
    background: rgba(62, 120, 183, 0.25);
    float: right;
    width: 80%;
    position: relative;
    padding: 40px;
    margin-right: 15px;
}

.testi_desc::after {
    position: absolute;
    content: "";
    border-top: 20px solid transparent;
    border-left: 20px solid rgba(62, 120, 183, .25);
    transform: rotate(45deg);
    left: -10px;
    top: calc(36% - 10px);
}

.testi_desc b {
    font-size: 20px;
    line-height: 20px;
    padding: 0 10px;
}

button.owl-prev,
button.owl-next {
    position: absolute;
    top: calc(50% - 30px);
}

button.owl-prev {
    left: -40px;
}

button.owl-next {
    right: -40px;
}

button.owl-prev span,
button.owl-next span {
    border: 15px solid transparent;
    font-size: 0;
    color: rgba(62, 120, 183);
    transition: 0.3s ease-in-out;
}

button.owl-prev span {
    border-right: 15px solid;
}

button.owl-next span {
    border-left: 15px solid;
    right: 0;
}

button.owl-prev span:hover,
button.owl-next span:hover {
    color: rgba(60, 60, 60);
}

button.owl-dot {
    width: 10px;
    height: 10px;
    background: rgba(60, 60, 60) !important;
    display: inline-block;
    margin: 5px;
}

button.owl-dot:hover,
button.owl-dot.active {
    background: rgba(62, 120, 183) !important;
}

.owl-dots {
    padding: 20px 0 0;
    text-align: center;
}


/* Contact Us */

.form-group {
    position: relative;
    margin-bottom: 30px !important;
}

.help-block.with-errors {
    position: absolute;
    bottom: 0;
    right: 0;
    text-transform: uppercase;
    color: #f00;
}

.list-unstyled {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 15px;
}

.form-control {
    padding: 15px 20px;
    margin: 0;
    line-height: 16px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(60, 60, 60) !important;
    border: 1px solid rgba(62, 120, 183, 0.25);
    transition: border-color .3s ease-in-out, box-shadow .3s ease-in-out;
}

.form-control:focus {
    color: #3c3c3c;
    background-color: #fff;
    border-color: rgba(62, 120, 183);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(62, 120, 183, 0.5);
}

.details-icon .fab {
    font-size: 18px;
    width: 20px;
    text-align: center;
    height: 20px;
}

#contact-form {
    padding: 25px;
    background: #fff;
    border: 1px solid rgba(62, 120, 183, 0.4);
}

.contact-details {
    background: #fff;
    color: rgba(60, 60, 60, 0.7);
    padding: 5px 20px;
    height: 100%;
    display: table;
    border: 1px solid rgba(62, 120, 183, 0.4);
}

.contact_details_box {
    display: table-cell;
    vertical-align: middle;
}

.details-text {
    width: 88%;
}

.contact-details .box_title {
    color: rgba(60, 60, 60, 0.7);
}

.has-danger {
    box-shadow: 0 0 0 0.2rem rgba(221, 75, 57, .7);
}


/* New */

.contact_box ul li>div {
    display: inline-flex;
    padding: 10px;
    padding-right: 20px;
    font-family: 'black_roadsdemoblack';
    border: 4px solid #000;
    border-radius: 40px 50px 50px 40px;
    margin: 10px 0;
}

.contact_icon {
    padding: 0px 20px;
}

.contact_info a {
    letter-spacing: 5px;
    display: inline-block;
}

.contact_box ul li .contact_icon img {
    height: 30px;
}


/* Footer */

footer .social ul,
footer .social li {
    justify-content: normal;
    margin: 0 auto;
    display: inline-block;
}

footer .social li {
    transform: rotate(-24deg);
}

footer i.fab:hover {
    transform: rotate(24deg);
}


/* Blog Page */

.blog img {
    width: 100%;
}

.page_title {
    top: calc(50% - 25px);
    position: absolute;
    left: 0;
    right: 0;
    color: #fff;
    z-index: 10;
}

.page_title h1 {
    font-size: 46px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.blog_dec h3 a {
    transition: 0.3s ease-in-out;
}

.blog_dec h3 a:hover {
    color: rgba(62, 120, 183);
}

.desc_blog_text p {
    margin-bottom: 0px;
}

.blogs p i {
    font-size: 12px;
}


/* Return To Top */

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(60, 60, 60, 1);
    width: 40px;
    height: 40px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: calc(50% - 5px);
    top: calc(50% - 12px);
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top:hover {
    background: rgba(62, 120, 183);
}

#return-to-top:hover i {
    /* color: rgba(60, 60, 60, 1); */
    top: 5px;
}

.fa-bars:before {
    color: #000;
}

.bg_color .fa-bars:before,
.darkHeader .fa-bars:before,
.dark_toggler .fa-bars:before {
    color: #0077b7;
}

.modal-content {
    background-color: transparent;
    border: 0px solid rgba(0, 0, 0, .2);
}

.modal {
    z-index: 99999;
}


/* Media CSS */

@media only screen and (max-width: 1024px) {
    .slider::after {
        background: rgba(60, 60, 60, 0.7) url(../img/slide_bg.png) no-repeat scroll right center / 60% 100%;
    }
}

@media only screen and (max-width: 990px) and (min-width: 768px) {
    .testi_pro {
        width: 120px;
        float: left;
    }
}

@media only screen and (max-width: 768px) {
    .slider::after {
        background: rgba(60, 60, 60, 0.7) url(../img/slide_bg.png) no-repeat scroll right center / 70% 100%;
        opacity: 0.7;
    }
    .slider-content {
        top: 53%;
    }
    a.navbar-brand {
        font-size: 20px;
    }
    ul.navbar-nav {
        display: block;
        padding: 8px 0;
        text-align: left !important;
    }
    ul.navbar-nav li {
        padding: 5px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    ul.navbar-nav li a {
        padding: 6px 0 !important;
    }
    .slider-content {
        width: 80%;
    }
    .slider-title {
        font-size: 36px;
        line-height: 40px;
    }
    .slider-desc {
        font-size: 14px;
        line-height: 20px;
    }
    .default_btn,
    .secondary_btn {
        padding: 9px 19px;
    }
    .main_gallery_box {
        padding: 0 10px;
    }
    .gallery_box {
        margin: 10px;
        width: calc(50% - 20px);
    }
    .pricing_box:hover,
    .pricing_box.active {
        transform: scale(1);
    }
    .social a .fab {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 14px;
    }
    .testi_pro {
        float: none;
        margin: 0 auto;
    }
    .testi_desc {
        float: none;
        margin: 30px auto 0;
    }
    .testi_desc::after {
        transform: rotate(135deg);
        left: calc(50% - 10px);
        top: calc(0% - 10px);
    }
    .box_title {
        font-size: 14px;
    }
}

@media only screen and (max-width: 600px) {
    #menu .container {
        width: 90%;
    }
    button.owl-prev {
        left: 0px;
    }
    button.owl-next {
        right: 0px;
    }
    .social a .fab {
        width: 44px;
        height: 44px;
        line-height: 44px;
        font-size: 14px;
    }
    .iconbox {
        font-size: 16px;
        line-height: 65px;
        padding: 0px;
        width: 65px;
        height: 65px;
    }
    #home .owl-nav {
        opacity: 1;
    }
    .slider-title {
        font-size: 30px;
        line-height: 36px;
    }
    .slider-desc {
        font-size: 13px;
        line-height: 16px;
    }
    .hed_title h2 {
        font-size: 24px;
    }
    .title_desc {
        font-size: 13px;
        line-height: 18px;
    }
    .gallery_box {
        /* max-height: 160px; */
    }
    .contact_box ul li>div {
        display: inline-block;
        text-align: center;
    }
    .contact_icon {
        padding-bottom: 10px;
    }
    .contact_info {
        text-align: center !important;
    }
    .contact_info a {
        letter-spacing: 3px;
    }
    .slider::after {
        background: rgba(60, 60, 60, 0.7) url(../img/slide_bg.png) no-repeat scroll right center / cover;
    }
    .playbtn {
        color: #0077b7;
    }
    .slider-desc {
        text-align: center;
    }
    .slider-content {
        width: 98%;
        right: 0;
        left: 0;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 426px) {
    .slider-title {
        font-size: 21px;
        line-height: 26px;
    }
    .iconbox {
        font-size: 20px;
        line-height: 85px;
        width: 85px;
        height: 85px;
    }
    .gallery_box {
        margin: 10px;
        width: calc(100% - 20px);
    }
    .morbtn .btn {
        width: 100%;
    }
    .servicesboxs {
        width: 100%;
        height: auto;
        text-align: center;
    }
    .servicesboxs li {
        margin: 0 auto;
        display: inline-block;
        float: unset;
    }
    .servicesboxs li:hover>div {
        height: 50%;
    }
    .slick-prev {
        left: -8px;
        z-index: 9;
    }
    .slick-next {
        right: -8px;
    }
}